in tora program when i press f4 to open any table this massage appear "Object TABLE_NAME (DB_USER) cannot be described", please, how to solve.
Asked
Active
Viewed 106 times
1 Answers
0
The permissions are the issue:
A user account only allows a successful login
Permissions to view a table is granted by the table owner
Use a SELECT statement of the ALL_OBJECTS
data dictionary view to see which tables you have access to:
SELECT * FROM ALL_OBJECTS
Use the DBA_TABLES
data dictionary view to see all tables:
SELECT * FROM DBA_TABLES
References

Paul Sweatte
- 24,148
- 7
- 127
- 265