Search found 53125 matches
- Tue May 24, 2011 1:18 am
- Forum: General
- Topic: Routine code issue
- Replies: 4
- Views: 1277
- Mon May 23, 2011 8:33 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Logic to find no. of saturdays and sundays betwen two dates.
- Replies: 17
- Views: 5464
That is quite database-specific, it's not a general solution A general solution could employ similar code within a DataStage routine. But a calendar table not only solves the weekend question, it also provides a solution to the holiday question. And it offers the flexibility to handle things like Is...
- Mon May 23, 2011 2:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Ustring to string
- Replies: 9
- Views: 5049
- Mon May 23, 2011 2:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Logic to find no. of saturdays and sundays betwen two dates.
- Replies: 17
- Views: 5464
Use a Lookup stage and a calendar table (perhaps a time dimension table) to ascertain day name, then count them conditionally.
Code: Select all
If Left(InLink.DayName,1) = "S" Then svWeekendCount + 1 Else svWeekendCount - Mon May 23, 2011 2:37 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Abnormal termination of DataStage -- Fault type is 6
- Replies: 5
- Views: 5069
Yes, it makes sense to me. You had logging set to perform logging into the metadata repository. Something went wrong with that - it seems to have been being accessed via (an internal) Connector. The change that Support recommended switches job logging to the engine tier, using the old style of loggi...
- Mon May 23, 2011 2:35 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Decimal error while compiling
- Replies: 5
- Views: 2496
- Mon May 23, 2011 2:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reading a EBCIDIC file from UNIX command line ?
- Replies: 3
- Views: 1279
- Mon May 23, 2011 5:14 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage parallel Routines
- Replies: 7
- Views: 4318
- Mon May 23, 2011 2:02 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to view data
- Replies: 10
- Views: 3094
- Mon May 23, 2011 1:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to view data
- Replies: 10
- Views: 3094
- Mon May 23, 2011 12:14 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Recursive logic
- Replies: 1
- Views: 1034
- Mon May 23, 2011 12:14 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Logic to find no. of saturdays and sundays betwen two dates.
- Replies: 17
- Views: 5464
Use a Lookup stage and a calendar table (perhaps a time dimension table) to ascertain day name, then count them conditionally.
Code: Select all
If Left(InLink.DayName,1) = "S" Then svWeekendCount + 1 Else svWeekendCount - Sun May 22, 2011 8:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Logic to find no. of saturdays and sundays betwen two dates.
- Replies: 17
- Views: 5464
Use a Lookup stage and a calendar table (perhaps a time dimension table) to ascertain day name, then count them conditionally.
Code: Select all
If Left(InLink.DayName,1) = "S" Then svWeekendCount + 1 Else svWeekendCount- Sun May 22, 2011 8:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hashed file problem
- Replies: 2
- Views: 1194
- Sun May 22, 2011 2:42 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: dataset
- Replies: 1
- Views: 1211
Re: dataset
No.pandeesh wrote:Is there any relation between the no of nodes specified in the configuration file and the number of instances we can run a multi instance job?