Search found 53125 matches
- Tue Mar 29, 2005 4:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Retrieving Last Run Date Information
- Replies: 2
- Views: 1074
- Tue Mar 29, 2005 4:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Numeric Validation
- Replies: 7
- Views: 1777
After using the Compare() function you need to test its result, rather than that of the Status() function.
Code: Select all
Test = Compare(Arg2, 0, "R")
Ans = (Test = 0)- Tue Mar 29, 2005 3:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Warning in Function compilation
- Replies: 4
- Views: 1770
All arguments are passed by reference, which is why DataStage generates the warnings, "just in case". There is a trick to emulate pass by value; in the caller use an expression rather than a variable. The easiest way to do this is to enclose the variable name in parentheses. This works because it is...
- Tue Mar 29, 2005 3:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: capture warning message
- Replies: 15
- Views: 5363
- Tue Mar 29, 2005 3:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to find out the data load in terms of MBs or GBs?
- Replies: 3
- Views: 1031
- Tue Mar 29, 2005 3:36 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: hello parallel extender job sequncer errors
- Replies: 1
- Views: 916
Welcome aboard! :D The message tells you that the job run under control of the job sequence aborted. The name of this job is probably part of the error message, though you've replaced it with the metasyntacic variable <job name>. What you need to do is to inspect the log for that job (<job name>) us...
- Tue Mar 29, 2005 4:45 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dealing with XML
- Replies: 5
- Views: 1141
Among your DataStage documents you should find one called XMLPACK_20_Designer.pdf. This is the manual for XML PACK v2.0, and explains how to use all the XML stages. If you read that, it will save me having to paraphrase much of what's in that manual. It should be in C:\Program Files\Ascential\DataSt...
- Tue Mar 29, 2005 4:39 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error in setOutputFieldAsString()
- Replies: 5
- Views: 1657
- Mon Mar 28, 2005 1:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Export data from DB2 (MAINFRAME) table into flat file
- Replies: 4
- Views: 2474
It's not possible. You want to do something without creating a DataStage job and get it to happen via dsjob, the command that runs DataStage jobs? The question is internally inconsistent. Further, DataStage is metadata-driven; there is no out-of-the-box mechanism for handling metadata dynamically. Y...
- Mon Mar 28, 2005 1:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: All the jobs missing from the project
- Replies: 11
- Views: 2455
It's almost certainly indexing in the Repository. Find a time when there are no developers connected and no jobs running and, logged in as DataStage administrator, execute the command DS.REINDEX ALL (from the Administrator client Command window or from a telnet session running dssh in the project di...
- Mon Mar 28, 2005 1:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dealing with XML
- Replies: 5
- Views: 1141
- Mon Mar 28, 2005 1:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to generate control files in a datastage job?
- Replies: 8
- Views: 6224
- Mon Mar 28, 2005 1:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: check for data consistancy
- Replies: 1
- Views: 919
- Mon Mar 28, 2005 1:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to create FB file using FTP Stage
- Replies: 3
- Views: 1281
Can you do it with regular FTP (that is, not with DataStage)? If so, have DataStage generate a local file then run a script to perform the FTP operation. As far as I know there is no property of the FTP stage that allows a file to be created as an FB file. Indeed, I don't think that the Sequential F...
- Mon Mar 28, 2005 1:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error from Folder Stage
- Replies: 4
- Views: 1481
The error "unable to locate NLS map" usually means that the map you have specified has not been loaded into memory. You will need the Administrator client to determine which NLS maps exist on the system, and which of these have been loaded into memory. After you specify a change to which maps are lo...