Search found 53125 matches
- Fri Feb 11, 2011 1:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: AIX 6.1 kernel parameters for IIS 8.5
- Replies: 4
- Views: 6298
- Fri Feb 11, 2011 1:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Invalid Format - Date
- Replies: 4
- Views: 5676
- Fri Feb 11, 2011 1:49 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Null Handling
- Replies: 3
- Views: 3890
- Fri Feb 11, 2011 1:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: String extract
- Replies: 13
- Views: 5160
Code: Select all
Right(StageVar,1)- Fri Feb 11, 2011 1:45 pm
- Forum: General
- Topic: Datastage jobs Using Oracle Table
- Replies: 4
- Views: 3330
- Fri Feb 11, 2011 1:43 pm
- Forum: General
- Topic: DataStage 8.1 installation on Windows
- Replies: 6
- Views: 2898
- Fri Feb 11, 2011 1:41 pm
- Forum: General
- Topic: DataStage 8.5 training
- Replies: 7
- Views: 4964
- Fri Feb 11, 2011 3:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Timestamp issue inserting into Oracle table from flat file
- Replies: 5
- Views: 2132
- Fri Feb 11, 2011 12:28 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: CONVERT 'MM-DD-YYYY' to YYYY-MM-DD
- Replies: 7
- Views: 3575
- Fri Feb 11, 2011 12:26 am
- Forum: General
- Topic: Sequence Failing wierdly. Job is running but seq failing
- Replies: 1
- Views: 1456
- Fri Feb 11, 2011 12:23 am
- Forum: General
- Topic: Code Quality Tool for DataStage
- Replies: 6
- Views: 6268
- Thu Feb 10, 2011 6:53 pm
- Forum: General
- Topic: Get string from file using Execute Cmd & UserVar activit
- Replies: 2
- Views: 1992
The problem when you execute an operating system command is that every line is terminated with a linefeed (or carriage-return linefeed if on Windows). When DataStage retrieves the output from the command it converts all line terminators into a special character called a field mark, the value of whic...
- Thu Feb 10, 2011 5:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Need to call a file in Server routine
- Replies: 3
- Views: 2349
Code: Select all
Call DSExecute("SH", "pathname_of_script", OutputOfCommand, ExitStatusOfCommand)- Thu Feb 10, 2011 3:27 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: subtract one day from date
- Replies: 5
- Views: 18206
Code: Select all
DateFromDaysSince(InLink.TheDate, -1)- Thu Feb 10, 2011 3:27 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: String extract
- Replies: 13
- Views: 5160
Code: Select all
svABCpos <--- Index(InLink.TheString, "ABC", 1)
Field(InLink.TheString[ABCpos+2,5], " ", 1, 1)