Search found 42189 matches

by chulett
Thu Oct 22, 2009 6:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looping Using Stage Variable
Replies: 4
Views: 1965

I don't see how 'matches' can get you the last occurance, at least not easily. Perhaps Ray knows some magic for that. :? Me, I would build a routine that does the 'looping' you asked about. Check the length of the string, execute a For loop stepping from that to 1 step -1, use substring at that posi...
by chulett
Thu Oct 22, 2009 6:29 am
Forum: General
Topic: error while loading into table using ODBC
Replies: 1
Views: 804

I got at least 20 matches when I searched for that message, did none of them help you?
by chulett
Wed Oct 21, 2009 11:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job substituting default params in place of the passed ones
Replies: 13
Views: 2671

evee1 wrote:I know that containers will run slower so I would not want to go down this path in the long term
There's nothing about having things in containers that affects speed, they're just logical blocks of code that get compiled into the job. :?
by chulett
Wed Oct 21, 2009 11:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Execute Command Activity in Sequence Job -- return value
Replies: 8
Views: 11102

Did you try enabling the 'Include job status in email' option? That should pull that error from the log into the email body.
by chulett
Wed Oct 21, 2009 4:52 pm
Forum: General
Topic: Read only routines
Replies: 5
Views: 1672

They are usually read only for a reason. Are you sure you're in a project where they really should be edited? If so, any idea how they got to be read only?
by chulett
Wed Oct 21, 2009 4:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error with DRS stage
Replies: 3
Views: 2213

Have you been able to use the DRS stage successfully before (SQL Server or others) and just have a problem in this one job, or is this your first attempt to use it?
by chulett
Wed Oct 21, 2009 4:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading a CSV file with dynamic number of columns
Replies: 8
Views: 3414

Do you know the maximum number of non-key columns the file could contain? Is that your 9?
by chulett
Wed Oct 21, 2009 1:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job aborts after 50 warning messages
Replies: 7
Views: 2628

You really shouldn't have to do that and even the help for DSSetJobLimit tells you that. I assume you're actually running the batch job from Director, not the command line using dsjob, right?
by chulett
Wed Oct 21, 2009 1:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job aborts after 50 warning messages
Replies: 7
Views: 2628

Please explain what you mean by a "job control batch". Is this hand code using the DSRunJob() function?
by chulett
Wed Oct 21, 2009 10:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP a file with TIMESTAMP in name
Replies: 3
Views: 2396

Sure there is, you just need to do the 'dynamic' part outside of the job (for example, leveraging a Sequence) and then pass it in as a Job Parameter. That parameter can then be used in the FTP stage.
by chulett
Wed Oct 21, 2009 10:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extra character at the end of file
Replies: 2
Views: 1326

Try adding in... what the heck is it... the "/B" option and see if that helps.
by chulett
Wed Oct 21, 2009 10:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Conversion
Replies: 6
Views: 1592

In DataStage use the following to convert your static date value to the same format as the date in your timestamp: OConv(IConv(YourField,"D"),"D-YMD[4,2,2]") Then compare that to the first ten characters of your timestamp using YourTimestamp[1,10] . If this static string is comin...
by chulett
Wed Oct 21, 2009 9:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash Table has grown to ..
Replies: 3
Views: 2624

Post a sample of the actual unedited errors.
by chulett
Wed Oct 21, 2009 9:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aborting job while executing the select statement
Replies: 6
Views: 3151

First try using single quotes (') rather than that accent mark (`).