Reputation: 107
I am using sql developer to fire some queries. I want to know the time when query has run. I see that when you fire sql query, you can see "Task completed in x seconds". But here I want to see the time when query got execute. Is there a way like showtimestamp or something?
Upvotes: 3
Views: 3576
Reputation: 36922
Add select to_char(sysdate, 'YYYY-MM-DD HH24:MI:SS') from dual;
if the scripts can be modified.
If that's not an option then right-click on the Worksheet and select SQL History:
Upvotes: 1