1. Toad uses either of the following queries to retrieve the Created and Last DDL info.
Select owner, object_name, created, last_ddl_time
from sys.DBA_OBJECTS
where object_type = 'TABLE'
and owner = '<owner>';
Select user, object_name, created, last_ddl_time
from sys.user_objects
Where object_type = 'TABLE';
Run it to make sure you do have rights to access sys.DBA_OBJECTS or USER_OBJECTS and that there are data. If you see any ORA errors or if there are no data returned, then you need to look at the issue on Oracle end first - it is not a Toad issue.
2. If you are not getting any ORA error message or if you do have data the returns, run a SQL Tracker session to determine if either of the above query is being called. Refer to the steps outlined under the Additional Information section for how to run a SQL Tracker session.
3. If you do not see either of the queries being execute, it is likely a corrupt User Application Data file issue.
4. Close Toad and go to the following locations:
For Win Vista, 7, 2008 - C:Users\<user>\AppData\Local\Quest Software\Toad for Oracle
For Win XP - C:\Documents and Settings\<user>\Local Settings\Application Data\Quest Software\Toad for Oracle
5. Rename the 11.X folder to 11.X_OLD
6. Rename the SettingsLocations.ini to SettingsLocations.ini_OLD
7. Start Toad and you should see your Created and Last DLL info
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center