How make remote connection in database?
Answer / kalyana chakravarthy maddipati
You can make a remote connection in a database using DBLINK(Database link). it is a named object in the database.
To create a DBLINK this is the syntax
Create dblink XX(DBLInk Name) connect to USERNAME identified by PASSWORD using DATABASENAME.
To access data from remote place using DBLink this is the way
select * from table_name@xx(DBLink name).
Is This Answer Correct ? | 1 Yes | 0 No |
Can you explain what are commit and rollback in sql?
What is a transaction and what are ACID properties?
Explain transaction server isolation?
Ms sql server index?
Can a table have 2 primary keys?
Explain the disadvantages/limitation of the cursor?
What is difference between inner join and join?
Explain what are partitioned views and distributed partitioned views?
Is it possible to create tables in stored procedures using a variable for the table name?
Can we use pragma autonomous_transaction in trigger?
What is attribute relationships, why we need it? : sql server analysis services, ssas
List the ways in which dynamic sql can be executed?