Yes.
And it's all in the manuals.
Search found 53125 matches
- Sat Jun 30, 2007 11:41 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: 4 nodes 10 stages
- Replies: 10
- Views: 2602
- Sat Jun 30, 2007 11:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: counting number of rows in hash file
- Replies: 7
- Views: 3463
- Sat Jun 30, 2007 11:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Executing db2 sql command in a routine
- Replies: 11
- Views: 5958
- Sat Jun 30, 2007 2:58 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: does Datastage Handle ascii extended chars
- Replies: 3
- Views: 2831
- Sat Jun 30, 2007 2:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing job parameter from text file
- Replies: 4
- Views: 1456
Well, it's definitely been discussed before. You can't do it within the job - job parameters are fixed when the job starts. Use whatever method you like in a job sequence to read the lines from the parameter file. Load these up into, say, user variables and use these to supply parameter values to th...
- Sat Jun 30, 2007 2:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage software dump
- Replies: 4
- Views: 2129
- Sat Jun 30, 2007 11:59 am
- Forum: General
- Topic: Getting Rid of Nullable Warning Messages
- Replies: 6
- Views: 2218
- Sat Jun 30, 2007 7:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mkdbfile / CREATE.FILE
- Replies: 8
- Views: 1788
- Sat Jun 30, 2007 7:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mkdbfile / CREATE.FILE
- Replies: 8
- Views: 1788
- Sat Jun 30, 2007 7:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: In a given number if the fourth digit is 0 i wanto remove th
- Replies: 4
- Views: 844
- Sat Jun 30, 2007 7:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Executing db2 sql command in a routine
- Replies: 11
- Views: 5958
The latter code, with the SQL... functions, is leveraging the BASIC SQL Client Interface. In your previous post, is there anything in ResultText when SystemReturnCode is non-zero? What you're doing in this example is creating a virtual BAT file - SystemReturnCode captures its exit status and ResultT...
- Sat Jun 30, 2007 7:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: counting number of rows in hash file
- Replies: 7
- Views: 3463
- Sat Jun 30, 2007 7:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mkdbfile / CREATE.FILE
- Replies: 8
- Views: 1788
The file dictionary is where the metadata are stored. A better analogy is "system table" rather than index. Its presence or absence will make no difference whatsoever to how fast you can extract or load rows. The file dictionary exposes column names, how they are mapped to the record structure, and ...
- Sat Jun 30, 2007 5:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to initialize plugin
- Replies: 5
- Views: 1354
- Sat Jun 30, 2007 5:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mkdbfile / CREATE.FILE
- Replies: 8
- Views: 1788
Yes. CREATE.FILE creates a VOC entry, creates a file dictionary and adds an @ID item to the file dictionary. The mkdbfile does none of these things. (It is invoked twice by CREATE.FILE, once to create the data portion, the other to create the file dictionary portion). CREATE.FILE also sanity-checks ...