Created
March 15, 2013 19:37
-
-
Save eduardordm/5172519 to your computer and use it in GitHub Desktop.
Traces for Arel (oracle.rb)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT * FROM ( | |
SELECT raw_sql_.*, rownum raw_rnum_ | |
FROM (SELECT "LANCAMENTOS".* FROM "LANCAMENTOS" ) raw_sql_ | |
) | |
WHERE raw_rnum_ between 1 and 30 | |
---------------------------------------------------------------------------------- | |
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | | |
----------------------------------------------------------------------------------- | |
| 0 | SELECT STATEMENT | | 4636K| 2701M| 23442 (2)| 00:04:42 | | |
|* 1 | VIEW | | 4636K| 2701M| 23442 (2)| 00:04:42 | | |
| 2 | COUNT | | | | | | | |
| 3 | TABLE ACCESS FULL| LANCAMENTOS | 4636K| 738M| 23442 (2)| 00:04:42 | | |
----------------------------------------------------------------------------------- | |
Predicate Information (identified by operation id): | |
--------------------------------------------------- | |
1 - filter("RAW_RNUM_"<=30 AND "RAW_RNUM_">=1) | |
Statistics | |
----------------------------------------------------------- | |
4 user calls | |
13 physical read total multi block requests | |
202588160 physical read total bytes | |
202588160 cell physical IO interconnect bytes | |
0 commit cleanout failures: block lost | |
0 IMU commits | |
0 IMU Flushes | |
0 IMU contention | |
0 IMU bind flushes | |
0 IMU mbu flush |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT * FROM ( | |
SELECT raw_sql_.*, rownum raw_rnum_ | |
FROM (SELECT "LANCAMENTOS".* FROM "LANCAMENTOS" ) raw_sql_ | |
WHERE rownum <= 30 | |
) | |
WHERE raw_rnum_ >= 0 | |
----------------------------------------------------------------------------------- | |
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | | |
----------------------------------------------------------------------------------- | |
| 0 | SELECT STATEMENT | | 30 | 18330 | 2 (0)| 00:00:01 | | |
|* 1 | VIEW | | 30 | 18330 | 2 (0)| 00:00:01 | | |
|* 2 | COUNT STOPKEY | | | | | | | |
| 3 | TABLE ACCESS FULL| LANCAMENTOS | 30 | 5010 | 2 (0)| 00:00:01 | | |
----------------------------------------------------------------------------------- | |
Predicate Information (identified by operation id): | |
--------------------------------------------------- | |
1 - filter("RAW_RNUM_">=0) | |
2 - filter(ROWNUM<=30) | |
Statistics | |
----------------------------------------------------------- | |
4 user calls | |
0 physical read total multi block requests | |
0 physical read total bytes | |
0 cell physical IO interconnect bytes | |
0 commit cleanout failures: block lost | |
0 IMU commits | |
0 IMU Flushes | |
0 IMU contention | |
0 IMU bind flushes | |
0 IMU mbu flush |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment