Does anyone know how to find the date a table was created through Toad Data Point? I am a former user of TOAD for Oracle and could find that information there, but in my introduction to Toad Data Point I have been unable to find that date, even within the viewer/database explorer. Thanks.
What type of database connection?
Debbie
Oracle connection.
Toad Data Point does not provide this information.
You can execute the following query to get it
SELECT created
FROM user_objects
WHERE object_name = <Your_Table_Name >
AND object_type = ‘TABLE’;
Thanks.