Search found 42189 matches

by chulett
Thu Jan 17, 2013 10:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage slapping value -05:00 automatically while loading
Replies: 11
Views: 2679

rohitagarwal15 wrote:we are not using any NLS parameter also in the job.
Did not mean in your job, I specifically meant the NLS default settings in both databases. One example would be NLS_TIMESTAMP_TZ_FORMAT which you can check with your DBA.
by chulett
Thu Jan 17, 2013 7:54 am
Forum: General
Topic: how to run the script as root with the help of sudo
Replies: 3
Views: 1834

Your syntax was fine. What was the actual resolution?
by chulett
Thu Jan 17, 2013 7:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset being deleted - while using Change Apply
Replies: 5
Views: 1756

I think you were clear... I for one have no idea. It doesn't sound like expected behaviour, what exact 8.x version are you on? Current on your fixpacks? If so, I'd get this in front of your official support provider if you haven't already.
by chulett
Thu Jan 17, 2013 7:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate a single GUID to apply to two SQL Server tables
Replies: 3
Views: 1084

I don't know SQL Server but it looks like you may be able to select a GUID via a Lookup or even as a source:

SELECT NEWID()

or perhaps

SELECT NEWSEQUENTIALID()

If that works, you could then pass it to both targets.
by chulett
Wed Jan 16, 2013 10:55 pm
Forum: General
Topic: Job Compliation Error -- Datastage 9
Replies: 4
Views: 3695

And yet Windows itself is not case sensitive. Obviously, some aspect of this was however. :?
by chulett
Wed Jan 16, 2013 10:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading only file name in Datastage Windows
Replies: 3
Views: 1261

I don't think you'd need to "hardcode" any transformation logic. I've had to do something similar in the past and put together a generic routine that would count the number of delimiters and then use Field() to take the count+1 delimited field from the full path.
by chulett
Wed Jan 16, 2013 12:13 pm
Forum: General
Topic: Attachment in Notification Activity
Replies: 4
Views: 1858

From what I recall, the DOS option would appear when you specify a delimiter string rather than a delimiting character.
by chulett
Wed Jan 16, 2013 9:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage slapping value -05:00 automatically while loading
Replies: 11
Views: 2679

Can you verify the points in my post? I'm assuming Oracle is doing this, not DataStage.
by chulett
Tue Jan 15, 2013 9:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Packed decimal CFF Stage
Replies: 6
Views: 2162

For both questions, I'd really like to see the FD or whatever metadata you have on the incoming file. And that DecimalToString() conversion should have worked just fine if your incoming data is in fact a decimal, something you really didn't clarify or confirm. Any details you can provide on exactly ...
by chulett
Tue Jan 15, 2013 11:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage slapping value -05:00 automatically while loading
Replies: 11
Views: 2679

Yah, wondering if this is Oracle issue with a TIMESTAMP WITH TIMEZONE field. If so, I'd double-check that the NLS defaults are setup the same, source to target.
by chulett
Tue Jan 15, 2013 10:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: String as delimiter in Field Function
Replies: 3
Views: 1917

Those would be typical approaches in the Server world.
by chulett
Tue Jan 15, 2013 10:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: loss of performance for Loading Oracle
Replies: 3
Views: 1088

Confirm they are being used - have a DBA monitor the load while it runs and check the explain plan.
by chulett
Tue Jan 15, 2013 9:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Force a warning depending on Procedure Execution Result
Replies: 6
Views: 1563

The constraint idea could work as well, I would imagine.
by chulett
Tue Jan 15, 2013 9:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Force a warning depending on Procedure Execution Result
Replies: 6
Views: 1563

Downstream transformer. If that function is not available in a PX transformer, then perhaps a Server job or a Server Shared Container to leverage a BASIC transformer.
by chulett
Tue Jan 15, 2013 9:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: String as delimiter in Field Function
Replies: 3
Views: 1917

No, not that I recall. And the Server docs mention that the delimiter is the character that delimits the field.