Search found 6797 matches

by DSguru2B
Mon Oct 16, 2006 6:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Want to delete the records giving specific date range
Replies: 12
Views: 3728

As ArndW suggests, use custom sql with the date supplied as parameters. Something like

Code: Select all

DELETE FROM TABLE where DATE BETWEEN #date1# AND #date2#

here date1 and date2 are parameters which are passed dynamically to this job.
by DSguru2B
Fri Oct 13, 2006 7:34 am
Forum: General
Topic: Dynamic Meta Data
Replies: 6
Views: 3490

Yea but then again, to dynamically change the meta data. Plus all that prework, thats a nightmare for the maintenance folks. Will need more than a couple of developers to support sucha beast. I dont know, i guess i will just have to push these guys to demand for a standard format until Hawk is reale...
by DSguru2B
Fri Oct 13, 2006 7:01 am
Forum: General
Topic: Dynamic Meta Data
Replies: 6
Views: 3490

Thanks Guys. I knew there was a halt somewhere. Just wanted to try my luck and get some advice.
by DSguru2B
Thu Oct 12, 2006 10:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to connect to DS
Replies: 2
Views: 1027

Your server must be down. At the unix level, do a
ps -ef | grep dsrpc. See if it returns anything.
by DSguru2B
Thu Oct 12, 2006 10:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OCONV-MCP replacement for PX
Replies: 7
Views: 2640

Yea, but isnt this dude sitting on windows? :roll:
by DSguru2B
Thu Oct 12, 2006 10:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data is getting rejected when loading to file.
Replies: 14
Views: 3720

Actually this is strange, a CHAR column with length 10 (for eg) will always result in 10 bytes when written to a fixed width file, regardless of the datatype of the source.
by DSguru2B
Thu Oct 12, 2006 9:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data is getting rejected when loading to file.
Replies: 14
Views: 3720

what is the length of you source and target?
You can stick a transformer in between and check for ISNULL and then explicity concatenate spaces.
by DSguru2B
Thu Oct 12, 2006 9:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Separate two command in "After Job Subroutine"
Replies: 9
Views: 3633

Did you try && ?
by DSguru2B
Thu Oct 12, 2006 9:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data is getting rejected when loading to file.
Replies: 14
Views: 3720

I understand. But if you change the target to Char. It can handle decimal values. I am not too sure, but give it a shot.
by DSguru2B
Thu Oct 12, 2006 9:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem using project variables
Replies: 3
Views: 1229

How are you coding the password in the param file. Is it just simple text or encrypted? I think you are just passing text and must have specified Password as an encrypted field in your job properties. You need to pass encrypted password. If this mechanism works just like it does in unix (read params...
by DSguru2B
Thu Oct 12, 2006 9:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data is getting rejected when loading to file.
Replies: 14
Views: 3720

Specify it as char in you job itself. That should take care of it.
by DSguru2B
Thu Oct 12, 2006 9:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Separate two command in "After Job Subroutine"
Replies: 9
Views: 3633

Here, reference thispost. Ray has a few options for you.
by DSguru2B
Thu Oct 12, 2006 9:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem using project variables
Replies: 3
Views: 1229

Are you sure you are passing the environment variable correctly to the jobs via the sequencer. Maybe a possiblity ?
by DSguru2B
Thu Oct 12, 2006 8:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequence Trigger is not getting Triggered
Replies: 23
Views: 8841

True. But if the OP wants the job to run regardless the earlier job is successful or failed. Then these three options should handle it. Right? Please correct me if i am wrong.