I make a privileges to user on one schema at Oracle, when accessing oracle database using SSIS I saw all tables and schema. When I use SQL Plus show me only one schema.
What is the problem here?
I make a privileges to user on one schema at Oracle, when accessing oracle database using SSIS I saw all tables and schema. When I use SQL Plus show me only one schema.
What is the problem here?
What query are you running to see tables in SQL*Plus? If you are querying USER_TABLES
, you will only see the tables that the current user owns. If you are querying ALL_TABLES
, you will see all the tables that you have permission to query regardless of the owner. If you are querying DBA_TABLES
, you will see all the tables in the database (though you need additional privileges to query the DBA%
objects.
There is another question on how to get a list of all the tables in a database that goes into more detail about this.