Get Parameter Manager for DataStage.
You can find out about it from here
Search found 53125 matches
- Wed Feb 04, 2004 8:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Add new parameter to all jobs
- Replies: 4
- Views: 1511
- Wed Feb 04, 2004 4:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSWaitForJobList
- Replies: 8
- Views: 2155
I've just checked on a DataStage version 5.2 system. There is no supplied DSWaitForJobList function here. Therefore, if you do have it, and it's compiled, it's in the "user written functions" part of the repository, so your DEFFUN declaration must refer to "DSU.DSWaitForJobList". DEFFUN DSWaitForJob...
- Wed Feb 04, 2004 4:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSWaitForJobList
- Replies: 8
- Views: 2155
"Array never dimensioned" errors usually mean that you've forgotten to include a DEFFUN declaration for a function. When the compiler encounters an identifier followed by a left parenthesis it assumes - because it's not been informed that the identifier is a function name - that the identifier is th...
- Wed Feb 04, 2004 3:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Migrating DS from one Unix server to another
- Replies: 1
- Views: 929
The obvious one is user IDs, permissions and privileges in the DataStage environment. A slightly less obvious one is things like system tables and indexes. Another less obvious one is licensing. Is it the same UNIX? If it isn't, your licensing won't be valid on the new system. I would not advocate y...
- Wed Feb 04, 2004 3:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Current timestamp in DB2 Stage
- Replies: 5
- Views: 3652
Can't you do someuser-defined SQL like:
Your job only provides values for c1, c2, c4 and c5.
Code: Select all
INSERT INTO table (c1, c2, c3, c4, c5)
VALUES ('?', '?', CURRENT_TIMESTAMP, '?', ?);Your job only provides values for c1, c2, c4 and c5.
- Wed Feb 04, 2004 3:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: teraread error in Datastage
- Replies: 5
- Views: 5197
Isolate the actual error messages. What do these tell you? APT_TeraUtils: Slave session CLI Error:: 'Fetch failed: Error Code = 220', error code = 1 message: 'Fetch failed: Error Code = 220' DBCAREA msg_txt: MTDP: EM_DBC_CRASH_A(220): Network connection to the DBC was lost. (The next piece reports t...
- Wed Feb 04, 2004 3:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Automatic reset of a abended job
- Replies: 6
- Views: 3991
Unless it's a "reset if needed then run" from a job sequence there is no such thing as automatic reset. A job can not reset itself if it has aborted. Recompiling the job has the same effect as resetting it. Maybe that's what's happened. Otherwise I suspect that one of your colleagues/operators has t...
- Wed Feb 04, 2004 3:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Validating Data question
- Replies: 2
- Views: 1081
Re: Validating Data question
Hello everyone, I am new to SDXchange and Ascential. I need to validate certain data coming in from an outside client an place it in an output file: My validations looks like this: If [field 4] > 0, [field 5] should have a date, if not reject the record If [field 5] has a date, [field 4] should hav...
- Wed Feb 04, 2004 3:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Read Hash file from BASIC Code
- Replies: 7
- Views: 3884
Re: Thanks
:D Thank you very much!!! Now all it is working fine. Your original post suggested that you were working on a 390 canvas. Clearly this is not the case; mainframe jobs generate COBOL code that is compiled and executed on a mainframe (OS/390) machine, and has no facility whatsoever for executing BASI...
- Wed Feb 04, 2004 3:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Carriage Returns in XML
- Replies: 6
- Views: 2823
- Wed Feb 04, 2004 3:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to transfer the whole database?
- Replies: 3
- Views: 1256
Re: how to transfer the whole database?
Sorry for may be very simple question, but I can't imagine how to make it easy. Can I use datastage for simple backup of database or transfer the whole database from one host to another(for example). And what is the the simplest way to do this job? For example if I have 50 tables with the same colu...
- Wed Feb 04, 2004 2:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Automatic reset of a abended job
- Replies: 6
- Views: 3991
Nice try, but there isn't one. What you need to do is any of the following. 1. When the job finishes detect its exit status using dsjob. If the exit status is "aborted", then run dsjob again, with -mode reset. 2. Run each job using a parent controlling job or job sequence. When the job finishes dete...
- Wed Feb 04, 2004 2:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pivot Stage - Columns to Rows
- Replies: 9
- Views: 2790
Do you want the solution to the four rows, four columns transpose (which is what you sought in your first mail)? Probably the easiest is to use a Routine or stage variables to capture and accumulate the results, write the output to a text file, then subsequently process just the last four lines of t...
- Wed Feb 04, 2004 1:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pivot Stage - Columns to Rows
- Replies: 9
- Views: 2790
- Wed Feb 04, 2004 1:34 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pivot Stage - Columns to Rows
- Replies: 9
- Views: 2790
The Pivot stage does NOT change data. You use a Transformer stage to change data. The only derivations in the Pivot stage are: (a) empty (a key column from the input is a pivot key - preserved in every output row) (b) a single input column (a non-key column from the input is a pivot key - preserved ...