user2686860
user2686860

Reputation: 107

SQL Developer get time when query is run

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

Answers (1)

Jon Heller
Jon Heller

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: enter image description here

Upvotes: 1

Related Questions