Search found 53125 matches
- Mon Oct 10, 2011 4:19 am
- Forum: General
- Topic: data stage installation
- Replies: 2
- Views: 1476
- Sun Oct 09, 2011 4:33 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Default value in column
- Replies: 4
- Views: 2433
- Sat Oct 08, 2011 9:00 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Pass the value to Parameter set from script
- Replies: 8
- Views: 3045
This is a different error than the syntax error you had before. DSJE_BADPARAM means one of three things: there is no parameter set called project_param_set in the project there is no parameter called data_path in the parameter set the parameter set has not been loaded into the job design Please veri...
- Sat Oct 08, 2011 8:57 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Default value in column
- Replies: 4
- Views: 2433
- Sat Oct 08, 2011 3:45 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: loading tables based upon counts
- Replies: 5
- Views: 1533
- Sat Oct 08, 2011 3:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Pass the value to Parameter set from script
- Replies: 8
- Views: 3045
- Sat Oct 08, 2011 3:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: TRANSPOSE ! is it possible?
- Replies: 19
- Views: 5010
- Sat Oct 08, 2011 3:36 pm
- Forum: General
- Topic: how to get the username from userno in LIST.READU
- Replies: 9
- Views: 7185
- Sat Oct 08, 2011 3:33 pm
- Forum: General
- Topic: server routine to get the datastage job log information
- Replies: 4
- Views: 4890
The server routine would need to: attach to the job (DSAttachJob) open the text file (OpenSeq or OpenSequentialFile) read through its log (DSGetLogSummary, DSGetNewestLogId, DSGetLogDetail) write required information to text file (WriteSeq) close text file (CloseSeq) detach from job (DSDetachJob) ha...
- Fri Oct 07, 2011 11:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Cannot insert duplicate key
- Replies: 2
- Views: 1828
Re: Cannot insert duplicate key
Stop trying to insert duplicate key.hargun wrote:can anyone advise me to solve this error.
You are trying to insert a row that has a key value that already exists in the table. The database server is - correctly - preventing you from doing this.
- Fri Oct 07, 2011 5:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Pass the value to Parameter set from script
- Replies: 8
- Views: 3045
Use "dot notation".
Code: Select all
-param parametersetname.parametername=value- Fri Oct 07, 2011 5:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: putRecord() called on output port 0 multiple times
- Replies: 4
- Views: 1677
- Fri Oct 07, 2011 5:06 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Viewing data in Oracle connector stage
- Replies: 2
- Views: 1009
- Fri Oct 07, 2011 5:05 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Tranformer logic
- Replies: 5
- Views: 1315
Not unless you write one yourself. I don't think it's that easy a task. Try formulating the specification in English of what you would need to do to implement this logic, and we can take a look at that to see whether any solution springs to mind. Is the longest path likely always to be the final one...
- Fri Oct 07, 2011 5:00 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: NZLoad Log Files
- Replies: 2
- Views: 2215
First question (from a non-Netezza person): are the NZLoad log files in text format or in some binary format? Second question: if they are in text format, is there any consistency to the layout of lines - that is, other than treating the line as a single VARCHAR, is there any metadata you could appl...