Search found 42189 matches
- Wed Apr 11, 2007 5:50 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: px installation on pc
- Replies: 6
- Views: 1734
Welcome aboard. The only versions that will run PX jobs on Windows is 7.5x2 and the new 8.0 release, so I hope you weren't planning on actually running them there. For help on compiling, we'd need to know what C++ compiler you have installed and the actual error message you get when you try to compi...
- Wed Apr 11, 2007 5:46 am
- Forum: General
- Topic: ownership History of datastage
- Replies: 3
- Views: 1881
- Wed Apr 11, 2007 5:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ODBC Connection from DS7.5.2 to SQLServer
- Replies: 2
- Views: 2492
First off, where are the two files that you mentioned - .odbc.in and uvodbc.config? Which is in the DSEngine directory and which is in your Project directory? Also, in your dsenv file - why are you manually setting DSHOME and ODBCINI near the end of the file? There's no need for that as they are alr...
- Wed Apr 11, 2007 5:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Timed out while waiting for an event
- Replies: 7
- Views: 6843
Your server is overloaded - period. It was unable to start your job within the timeout period (90 seconds?) and thus the error. There's more to it than just CPU usage when the word 'overload' is used. In your case it sounds like a matter of the number of concurrently running jobs - or the number yo...
- Wed Apr 11, 2007 5:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Return statement Usage
- Replies: 8
- Views: 2811
- Tue Apr 10, 2007 5:18 pm
- Forum: General
- Topic: Convert to day of week using date field, like MOn, Tue , Wed
- Replies: 4
- Views: 1401
- Tue Apr 10, 2007 10:05 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Parameters are quoted by DS when passed in when scheduled
- Replies: 10
- Views: 2930
- Tue Apr 10, 2007 9:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage vs COBOL
- Replies: 12
- Views: 5590
- Tue Apr 10, 2007 6:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reading input data from Sequential file
- Replies: 4
- Views: 1716
You have to read them, that's the nature of sequential media. You can skip them in the job using a constraint along the lines of:
Code: Select all
@INROWNUM > 5- Tue Apr 10, 2007 6:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: concatenate two fields in Transformer
- Replies: 9
- Views: 12979
- Tue Apr 10, 2007 6:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage vs COBOL
- Replies: 12
- Views: 5590
we are in a big project now to replace cobol with DataStage, and we are also moving the application to AIX, which is cheaper than MVS platform. The migration to another platform is key in your decision. For someone not changing platforms (like the OP) and needing to continue to maintain / enhance t...
- Tue Apr 10, 2007 6:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage vs COBOL
- Replies: 12
- Views: 5590
- Tue Apr 10, 2007 6:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage on Unix vs Datastage on Windows
- Replies: 4
- Views: 2727
- Tue Apr 10, 2007 6:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Setting Datadirect of DS to see Postgres DB
- Replies: 2
- Views: 1608
Welcome Aboard. :D Yes, DataStage does ship with 'branded' ODBC drivers but not one for Postgres. When people mention 'Datadirect' here, they mean for you to purchase the appropriate ODBC drivers from them. I really don't believe you have a solution 'out of the box' and that purchasing specific driv...
- Mon Apr 09, 2007 5:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: XML inputfile
- Replies: 5
- Views: 1168
If you already have a job that parses out the 'detail' records, why not check it after job to see if it found any records to process? Check your 'write' link for a rowcount and, if zero, send the email. You just need a generic "get a link's rowcount" routine (will come in handy in more than just thi...