Search found 4992 matches
- Thu Dec 02, 2004 9:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: What is the maximum display length in a Sequential file?
- Replies: 5
- Views: 885
On a fixed width file the Display setting sets the maximum width of the data that can go into that column and will pad accordingly. I hope you're using a delimited file, in that case you do not have this limitation. The Display setting only pertains to viewing data, as far as writing data to the fil...
- Thu Dec 02, 2004 9:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Windows to Parallel X
- Replies: 12
- Views: 5392
That whizzing sound is something again going over my head. At which release of DataStage are you allowed to create PX jobs on Windoze? I haven't seen this one yet, is it 7.5? Because, as far as I know, only connecting to a DS project on a Unix server with a PX license allows you to create or even im...
- Thu Dec 02, 2004 2:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How can i change value of job parameter at run time.
- Replies: 11
- Views: 3947
I think you could modify the routine in m post and change a parameter value in the current job. This won't work if the job parameter is part of a filename AND the stream is continous (without a passive stage breaking the flow) So, if your job looks like this: SEQ --> XFM --> SEQ, then the target se...
- Thu Dec 02, 2004 12:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Join heterogenous data
- Replies: 13
- Views: 5478
- Wed Dec 01, 2004 11:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Windows to Parallel X
- Replies: 12
- Views: 5392
- Wed Dec 01, 2004 10:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: capture error log
- Replies: 3
- Views: 980
- Wed Dec 01, 2004 10:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Concatenate Hashfiles.
- Replies: 16
- Views: 4629
Hey, don't bust on Nag for splitting his hash files. If you're attempting to stay under a 32-bit limitation on either the filesystem or the hash file because of volume, splitting your hash files up into separate files can yield a lot of performance boost. Get ready to learn some new tricks here: 1. ...
- Wed Dec 01, 2004 10:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Get all the columns from input file in one variable
- Replies: 4
- Views: 999
Every DS job design has an number assigned to it. Every stage and link has a number assigned to it. To get the variable (array) that contains the entire row contents, you have to reverse engineer the job design information. To know the array name at runtime that contains the primary stream row in a ...
- Wed Dec 01, 2004 2:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Convert Julian Date to DB2 Date
- Replies: 5
- Views: 1584
- Wed Dec 01, 2004 10:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: about reference table and driving table
- Replies: 9
- Views: 2452
Yes but in different ways. If your data is two tables in the same source instance you may wish to just use SQL to solve the problem. If your data is in two sequential files you can use the Merge stage. You could also build hash files to accomplish what you wish, using a UV/ODBC stage with multi-row ...
- Wed Dec 01, 2004 10:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sorting Hashfile possible?
- Replies: 8
- Views: 3010
- Wed Dec 01, 2004 10:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: about reference table and driving table
- Replies: 9
- Views: 2452
- Wed Dec 01, 2004 10:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: about reference table and driving table
- Replies: 9
- Views: 2452
It does but that's not your problem. Your problem is that your design is wrong. You've assumed that the SQL is joining one way, but you need to cogitate about relational theory and realize what you think is the stream is really being handled as the "reference" vice versa. Change your stream link to ...
- Wed Dec 01, 2004 8:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Combining two files into a single based on certain critirea
- Replies: 1
- Views: 883
cat file_a file_b | sort -u > file_c This is an exact match bitwise, " x" and "x" will not be the same. It gives you unique rows from both files, a full outer join. Using a job, you can funnel/link collect all rows together and aggregate and group by and use min or max to collapse rows together. Th...
- Wed Dec 01, 2004 7:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Creating a File Header
- Replies: 4
- Views: 852
Depends on what your header information contains. If it is supposed to contain information about the row count, you have to create the header row after you created the file. Why not let DataStage create your file, then use an after-job script call to create the header and trailer record and then ass...