Collections:
Use SQL*Plus Built-in Timer in Oracle
How To Use SQL*Plus Built-in Timers in Oracle?
✍: FYIcenter.com
If you don't have a stopwatch/timer and want to measure elapsed periods of time, you can SQL*Plus Built-in Timers with the following commands:
The following tutorial exercise shows you a good example of using SQL*Plus built-in timers:
SQL> TIMING START timer_1 (some seconds later) SQL> TIMING START timer_2 (some seconds later) SQL> TIMING START timer_3 (some seconds later) SQL> TIMING SHOW timer_1 timing for: timer_2 Elapsed: 00:00:19.43 (some seconds later) SQL> TIMING STOP timer_2 timing for: timer_2 Elapsed: 00:00:36.32 SQL> TIMING 2 timing elements in use
⇒ What Is Oracle Server Autotrace in Oracle
⇐ SQL*Plus Commands Stored in a File in Oracle
2020-06-08, 4152🔥, 0💬
Popular Posts:
How To Install PHP on Windows in MySQL? The best way to download and install PHP on Windows systems ...
How To List All Login Names on the Server in SQL Server? If you want to see a list of all login name...
How To Change the Password for Your Own User Account in MySQL? If you want to change the password of...
How To Generate CREATE TABLE Script on an Existing Table in SQL Server? If you want to know how an e...
What Privilege Is Needed for a User to Delete Rows from Tables in Another Schema in Oracle? For a us...