schintala Beginner
Joined: 18 May 2005 Posts: 108 Topics: 31 Location: USA
|
Posted: Thu Jan 07, 2010 2:25 pm Post subject: Platinum Fast Unload |
|
|
Hi,
I am trying to unload the data from catalog tables using platinum fast unload utility. The data from output dataset is not readble. It could be due to unicode format of the catalog. How do I get the data from catalogs in readble format using fast unload of platinum util. My fast unload util control card as follows.
Code: | FASTUNLOAD
DISPLAY-STATUS 2000000,T
EXCP YES
INPUT-FORMAT TABLE
IO-BUFFERS 60
LOAD-CONTROL NONE
OUTPUT-FORMAT DSNTIAUL
UNLDDN SYSREC01 ASCII
SHRLEVEL CHANGE
SORTSIZE 8M
SORTNUM 6
ESTIMATED-ROWS 250000
SQL-ACCESS EXTENSION
SELECT B.COLLID , B.NAME , B.OWNER
FROM SYSIBM.SYSPACKDEP A, SYSIBM.SYSPACKAGE B
WHERE A.BQUALIFIER =
'PSSQATB '
AND A.BNAME = 'PSIPAYT'
AND A.BTYPE = 'T'
AND A.DLOCATION = B.LOCATION AND
A.DCOLLID = B.COLLID AND A.DNAME = B.NAME AND A.DCONTOKEN = B.CONTOKEN
ORDER BY B.COLLID , B.NAME , B.OWNER
; |
|
|