Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. SELECT PIV.* FROM CNF.F_VORDERING_PIVOT PIV JOIN ETL.F_VORDERING_PIVOT_NEW N ON PIV.KOPPEL_ID_VOR_VER = N.KOPPEL_ID_VOR_VER where PIV.DWH_VALID_TO_DT = '9999-12-31'
  2.  
  3. QUERY PLANTEXT:
  4.  
  5. Hash Join (cost=54057.1..54324.8 rows=3459 width=664 conf=51)
  6. l: Sequential Scan table "N" (cost=0.0..139.5 rows=314541 width=21 conf=100)
  7. r: Hash (cost=54057.1..54057.1 rows=3182 width=664 conf=0)
  8. l: Sequential Scan table "PIV" (cost=0.0..54057.1 rows=3182 width=664 conf=64)
  9.  
  10.  
  11. SELECT PIV.* FROM CNF.F_VORDERING_PIVOT PIV JOIN ETL.F_VORDERING_PIVOT_NEW N ON PIV.KOPPEL_ID_VOR_VER = N.KOPPEL_ID_VOR_VER
  12.  
  13. QUERY PLANTEXT:
  14.  
  15. Hash Join (cost=139.5..54196.7 rows=20922206 width=664 conf=64)
  16. l: Sequential Scan table "PIV" (cost=0.0..54057.1 rows=156875138 width=664 conf=80) (FACT)
  17. r: Hash (cost=139.5..139.5 rows=314541 width=21 conf=0)
  18. l: Sequential Scan table "N" (cost=0.0..139.5 rows=314541 width=21 conf=100)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement