Advertisement
Guest User

TD Explain_Plan

a guest
Mar 15th, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. explain select * from movies.movies;
  2.  
  3. explain select * from movies.movies;
  4.  
  5.  *** Help information returned. 12 rows.
  6.  *** Total elapsed time was 1 second.
  7.  
  8. Explanation
  9. ---------------------------------------------------------------------------
  10.   1) First, we lock movies.movies for read on a reserved RowHash to
  11.      prevent global deadlock.
  12.   2) Next, we lock movies.movies for read.
  13.   3) We do an all-AMPs RETRIEVE step from movies.movies by way of an
  14.      all-rows scan with no residual conditions into Spool 1
  15.      (group_amps), which is built locally on the AMPs.  The size of
  16.      Spool 1 is estimated with low confidence to be 1,730 rows (
  17.      425,580 bytes).  The estimated time for this step is 0.04 seconds.
  18.   4) Finally, we send out an END TRANSACTION step to all AMPs involved
  19.      in processing the request.
  20.   -> The contents of Spool 1 are sent back to the user as the result of
  21.      statement 1.  The total estimated time is 0.04 seconds.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement