Search found 42189 matches

by chulett
Sun Dec 10, 2006 11:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RE.XML output stage
Replies: 6
Views: 2094

Re: RE.XML output stage

But I am not able to combine the XML output with the fields in CSV before inserting into the Database. Two steps. One to 'create the XML' and stage it in a hashed file (typically as a chunk) keyed in such a manner as to match your incoming csv's key fields. Then stream the csv files in again, pick ...
by chulett
Sun Dec 10, 2006 11:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: jobs not showing in Repository
Replies: 6
Views: 1548

He knows that, he's just being a smarty pants... and in a round about way saying that you should spell things like that out a little more. There are plenty of people here who wouldn't have a clue what you meant by "try DS.TOOLS 2".
by chulett
Sun Dec 10, 2006 11:13 pm
Forum: General
Topic: Running batch file from DS job
Replies: 11
Views: 6106

Those xcopy commands certainly should echo out what they are doing and be captured in the log. What exactly do you have in the Command and Parameter options inside the Command Activity stage? I don't see anything obvious. Perhaps some bread crumbs would help... add echo statements at key points, in ...
by chulett
Sun Dec 10, 2006 10:14 pm
Forum: General
Topic: Running batch file from DS job
Replies: 11
Views: 6106

Welcome aboard. :D How are you calling it 'from a job'? Are you passing in fully qualified paths for each directory? What happens if you comment out the '@ECHO OFF' and capture the screen output into you job's log? That may help figure out what is going on. However, the most common problem is the us...
by chulett
Sun Dec 10, 2006 3:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: designer window automatically closing
Replies: 1
Views: 764

'Closing' is also known as 'Crashing'. You are getting a CTD or a Crash To Desktop. This is a known issue for which a patch exists. I don't recall the Ecase # off the top of my head, but you can download it from the IBM eServices website as long as you have a logon there: m Or talk to your Support p...
by chulett
Sun Dec 10, 2006 3:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: general- server
Replies: 4
Views: 825

From what I've seen, you as an ETL developer may get sucked into the BI world if you end up needing to build marts or 'reporting tables' for them. Other than that, not so much.
by chulett
Sun Dec 10, 2006 12:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to schedule a batch with different dates in each month
Replies: 5
Views: 1135

How are you doing your job scheduling now? Not for this, but in general. Through the Director, you can simply 'Add to Schedule' 12 times using the proper date in each month. Or an Enterprise Scheduler like Control-M could do this easily. But I assume you somehow want to leverage this 'run_date' in y...
by chulett
Sat Dec 09, 2006 9:34 pm
Forum: General
Topic: running a series of scripts (ddl/dml) from job sequencer
Replies: 17
Views: 8543

You don't have to give, but you could give: Call DSLogInfo(SystemOutput,"1.sh") The second argument is the Calling Program Name and should be a literal, so put quotes around it. Check the online Help. When you do this 'for real' be much more careful with your spelling, or at least ...
by chulett
Sat Dec 09, 2006 7:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executing a shell script using an ExecuteCommand stage
Replies: 5
Views: 1542

No problem. How about a rating and marking the thread as Resolved? :wink:
by chulett
Sat Dec 09, 2006 7:49 pm
Forum: General
Topic: running a series of scripts (ddl/dml) from job sequencer
Replies: 17
Views: 8543

To continue my example: Call DSExecute("UNIX",CmdString,SystemOutput,ReturnCode) CmdString is the command to execute, SystemOutput is a variable that will capture any screen output, anything echoed from the command and ReturnCode is the variable which holds the exit code passed bac...
by chulett
Sat Dec 09, 2006 6:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executing a shell script using an ExecuteCommand stage
Replies: 5
Views: 1542

Relative paths. You should 'cd' to the directory you want to find these .txt files in before you list it out - unless you are expecting to farm the current job's Project directory. Are you? And if you always 'exit 0' you'll never know if anything went wrong expect by visual inspection of the log ent...
by chulett
Sat Dec 09, 2006 6:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running Stored Procedure in Oracle Enterprise Stage
Replies: 10
Views: 3775

Can't you do that in the 'Open Command' area, or whatever it is called? :?
by chulett
Sat Dec 09, 2006 6:02 pm
Forum: General
Topic: running a series of scripts (ddl/dml) from job sequencer
Replies: 17
Views: 8543

You build a complete 'command string', parameters and all, and pass that to DSExecute for it to run. We can't just 'give you the command' as each would be different. Use the concatenation operator - the colon (:) - and put together all the same parts you would put on the command line if you ran the ...
by chulett
Sat Dec 09, 2006 5:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: general- server
Replies: 4
Views: 825

First question that jumps into my mind is - do you know if they are using the PeopleSoft PACKS with DataStage for this, or are they accessing it directly, going directly against the source database? For direct access, then not only would you need all of the 'normal' areas of knowledg of ETL in gener...