nivedita Beginner
Joined: 04 Nov 2003 Posts: 22 Topics: 15
|
Posted: Tue Nov 25, 2003 11:41 pm Post subject: Info on BMC unload |
|
|
BMC unload executes ADUUMAIN.
UNLOAD SHRLEVEL CHANGE CONSISTENT NO QUIESCE
UNLOADDN(SYSRE)
USELRECL YES
SORTDEVT SYSDA
SORTNUM 12
FORMAT EXTERNAL
SELECT A
, B
, C
, D
, E
INTO A CHAR (2)
, B CHAR (4)
, C CHAR (6)
, D CHAR (1)
, E INTEGER EXTERNAL (4)
IF NULL VALUE(0)
FROM WW.TPRDIST
WHERE X = 'Y'
AND Y = '03'
AND Z IN ('005','010','015','020')
In the existing control card hard coding isused on certain fields because incorporating Joins in a BMC unload utility will reduce the performance and it will act like a normal DB2 DSNTIAUL utility.
My queries are:
1. Please clarify in what aspects the BMC unload process will be affected if we introduce a Join.
2. How will the performance impact by introducing Joins /sub selects than
hard coding for the same Volume of data. |
|