Home » RDBMS Server » Server Administration » Re: Why can see table @ another DB ?
Re: Why can see table @ another DB ? [message #51887] Wed, 19 June 2002 22:15
Maaher
Messages: 7065
Registered: December 2001
Senior Member
If there are views or synonyms created that refer to the remote tables, this is normal:
Suppose you've got a session in DB1 and you issue the following command (assuming you have the rights):
SQL> CREATE view remote_view AS
  2  SELECT *
  3  FROM table_1@DB2;

View created.

or
SQL> CREATE synonym remote_synonym for table_1@DB2;

Synonym created.


You'll see, not all objects you can access are necessarily yours. You can check this by querying user_tables for the table_name that you don't think should be yours.

MHE
Previous Topic: Re: ocp
Next Topic: Adding Runtime Text Item
Goto Forum:
  


Current Time: Tue Sep 17 02:06:39 CDT 2024