I have a script that i use to load my data into my tables in Oracle (by a list of insert statements). How can i get the execution time of the entire loading process? I have trie
If you are on Unix, you can also do it like that:
time sqlplus @inserts.sql
It will print:
real 0m9.34s user 0m2.03s sys 0m1.02s
The first line gives the total execution time.