Search found 42189 matches

by chulett
Thu May 24, 2012 6:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata error: Request size exceeds maximum
Replies: 9
Views: 12769

I would imagine you could find the buffer size limit by asking your Teradata DBA.
by chulett
Thu May 24, 2012 6:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To transform data and carriage return
Replies: 16
Views: 6959

So, to get the date from a particular pair within the record: Field(Field(record,",",pair_number),"|",2) The inner Field() call returns the pair--such as BBB|5/24/11--then the outer Field() call returns the date from that pair--5/24/11. Exactly what I meant when I said "Inl...
by chulett
Thu May 24, 2012 11:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To transform data and carriage return
Replies: 16
Views: 6959

Inline Field() functions, perhaps. First use "," as the delimiter and then take the second "|" delimited field from the result.
by chulett
Thu May 24, 2012 8:05 am
Forum: General
Topic: new xml redbook published today...
Replies: 1
Views: 845

Done... thanks! :D
by chulett
Thu May 24, 2012 8:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TimeStamp Conversion Error
Replies: 3
Views: 2781

Your official support provider? Otherwise it seems to me that you'd need to wait for someone with both 8.7, SQL Server and extended timestamps experience to come along. I've got none of that, for example. :(
by chulett
Thu May 24, 2012 7:56 am
Forum: General
Topic: issue when ls command executed in datastage
Replies: 3
Views: 2394

I can't explain the behaviour off the top of my head... what flavor of UNIX is this? What happens if you change your command to this:

Code: Select all

cd /Gft_Prod/LEGREL2PDIN/ProjectData/input/PremiumPaid;ls -1atr *PREMIUMPAID*.txt |head -1;
by chulett
Thu May 24, 2012 7:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcput() - timeout waiting for mutex:
Replies: 4
Views: 2632

I'm going to suggest something that some might consider heresy - remove the IPC stages, disable row buffering. I found them to cause way more problems than they (allegedly) solve and never used them. As noted by Ernie and other folks way more smarter than me, they're no magic bullet.
by chulett
Thu May 24, 2012 7:41 am
Forum: General
Topic: Job not showing up in Director
Replies: 7
Views: 2776

Sounded like your repositories (there are two) were not in sync and may still not be... that or there is some element of corruption there. Best to get your official support provider involved for help with that.
by chulett
Thu May 24, 2012 7:39 am
Forum: General
Topic: Checkpoints & Job Logs
Replies: 2
Views: 1137

Yes, it is stored separately from the logs. If the job instance is no longer showing in the Director, I'd imagine you could still restart it from the command line.
by chulett
Wed May 23, 2012 9:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage Variables allowing calculations with null operands
Replies: 3
Views: 3343

In what release was support for null stage variables added? They didn't up until fairly recently, from what I recall.
by chulett
Wed May 23, 2012 9:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field Function
Replies: 9
Views: 3556

I already did. Convert() won't care how "dynamic" it is... assuming I understand what you mean by that.
by chulett
Wed May 23, 2012 9:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field Function
Replies: 9
Views: 3556

Yes, if that's really what you want. :?

What's not working about it? Why not just Convert() the commas to carriage returns?
by chulett
Wed May 23, 2012 8:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field Function
Replies: 9
Views: 3556

Your Field() function call is syntactically correct. Is your target a sequential file? If so, then you need to use CHAR(10) as the record delimiter. If not, you need to give us a better explanation of exactly what it is you are trying to accomplish, i.e. what your requirement is.
by chulett
Wed May 23, 2012 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata error: Request size exceeds maximum
Replies: 9
Views: 12769

Split to your own post, linked back to original.