Search found 42189 matches

by chulett
Tue Feb 08, 2011 8:27 am
Forum: General
Topic: Setting parameters in sequencer
Replies: 1
Views: 1362

You already posted this, which I moved to the proper (General) forum:

viewtopic.php?p=389031

Moving this one as well and then locking it.
by chulett
Tue Feb 08, 2011 8:22 am
Forum: General
Topic: Email Notification
Replies: 12
Views: 5918

You could also write your own 'After Job' subroutine that did basically the same check I mentioned earlier and then conditionally called DSSendMail. If you do, make sure you Annotate that on the canvas and (perhaps) set the After Job area to run only if things are ending... gracefully.
by chulett
Mon Feb 07, 2011 11:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal Point
Replies: 2
Views: 1235

Sorry but I can't make any sense out of your question. Can you provide some actual data examples (rather than made up ones) and then the results you need to get from that data? Perhaps then someone can help you get there. Might also help if you exanded on what "multiply the data" means.
by chulett
Mon Feb 07, 2011 7:07 pm
Forum: General
Topic: Email Notification
Replies: 12
Views: 5918

Or build a Sequence job. A Routine Activity can check to see if anything was written down the reject link, or a Command Activity can check the size/row count of the file. If a non-zero value is found, the Notification Activity can be triggered to send an email and attach the file as well.
by chulett
Mon Feb 07, 2011 11:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird job run
Replies: 1
Views: 1081

The hashed file was truncated / emptied after the job ran. The 300000 number was the number of successful lookups, so it couldn't have been empty when it ran. And your target number was the number of update operations sent to Oracle, not anything like the number of records updated... keep in mind th...
by chulett
Mon Feb 07, 2011 11:02 am
Forum: General
Topic: hi this is srikanth
Replies: 1
Views: 1168

Google knows.

I'm going to lock this as it is not DataStage related in any fashion. Also please use proper subjects for your posts and I wouldn't include any personal contact information in the body of them either.
by chulett
Mon Feb 07, 2011 9:10 am
Forum: General
Topic: How to store Job start time,end time,job name in Oracle
Replies: 51
Views: 37920

Of course it can, as long as you have the proper permissions in place. Check with a SysAdmin to verify along the full path.
by chulett
Mon Feb 07, 2011 8:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToDate conversion problem
Replies: 11
Views: 7022

Show us what your timestamps look like.
by chulett
Mon Feb 07, 2011 8:15 am
Forum: General
Topic: not able to connect to oracle
Replies: 1
Views: 1207

Talk to your DBA and what might have changed or be going on that would cause your listener problem.
by chulett
Mon Feb 07, 2011 8:09 am
Forum: General
Topic: How to store Job start time,end time,job name in Oracle
Replies: 51
Views: 37920

Have you verified that you've built a valid path in the routine and your user has the access rights it would need?
by chulett
Sun Feb 06, 2011 11:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Variable not being assigned a value
Replies: 12
Views: 5282

If that was true, sure seems like your cut would be working just fine. And I don't see any way that source would get you 1SH no matter how you cut it. :? For grins, what happens if you always assign ScreenOutput<1> to your variables in all three places rather than just the first one? Also, try chang...
by chulett
Sun Feb 06, 2011 9:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CONVERT DD-MON-YY to YYYY-MM-DD
Replies: 2
Views: 15175

By any chance is your Oracle target column a DATE? If so then you don't need to convert it to any particular format, just convert it to a Date.
by chulett
Sat Feb 05, 2011 7:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Variable not being assigned a value
Replies: 12
Views: 5282

Show us the full output of the cat/grep/grep command before the cut.

'cat ':TDPATHbin:'/SurrKeyGen_Index_csv | grep -e ':LogSubject:' | grep -e ':NaturalKeyColumnName
by chulett
Sat Feb 05, 2011 1:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate Unique Timestamp for data
Replies: 2
Views: 1632

That's only going to work if you are generating <= 1 row/second. Why not use a true surrogate instead?
by chulett
Sat Feb 05, 2011 8:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert to Date , Convert YYYYMM to Start date for Month.
Replies: 4
Views: 1902

Start date as in the first of the month? Add the missing '01' to your string and then use StringToDate.