Search found 6797 matches

by DSguru2B
Thu Jan 18, 2007 11:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: <transform> Error when checking composite operator: g+
Replies: 11
Views: 6013

No. It is in the dsenv file. In the job's log file, open the second entry which has listings of all the environment variables. Search for the environment variables i mentioned and see if they are set properly.
by DSguru2B
Thu Jan 18, 2007 10:43 am
Forum: Data Quality Best Practices
Topic: how to use quality stage
Replies: 4
Views: 10684

Go through the manuals. That should give you a kick start on the "how to's". We have "Data Quality" forum dedicated to Quality Stage issues. You can refer to them.
by DSguru2B
Thu Jan 18, 2007 9:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: splitsingle row into multiple rows
Replies: 17
Views: 3587

This is a seperate problem and requires a new thread. Start a new thread.
by DSguru2B
Thu Jan 18, 2007 9:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Redbrick
Replies: 10
Views: 2669

Thanks for sharing the solution. You can mark your post as resolved.
by DSguru2B
Thu Jan 18, 2007 9:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: splitsingle row into multiple rows
Replies: 17
Views: 3587

:? :? :?
Really... :shock:
Anyways, heres the code.

Code: Select all

awk 'BEGIN{FS=",";OFS=","}{for(i=5;i<=NF;i++) print $1,$2,$3,$i,$4}' yourfile.txt > newfile.txt

The new file will have one row split into 12 rows the way you want it.
by DSguru2B
Thu Jan 18, 2007 8:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: splitsingle row into multiple rows
Replies: 17
Views: 3587

Did you try to do it yourself buddy. Give Roy's methodology a shot. Also if you dont know awk it will be hard for you to even understand the code i give you. Try to do it yourself, if nothing works out at the end then post again and i will give you the awk code.
by DSguru2B
Thu Jan 18, 2007 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Maximum number of Concurrent Job
Replies: 2
Views: 1411

I suggest having a chat with your unix system admin. He/she can give you an idea of how much the system can handle concurrently. If more processes need to be run, he/she can tune the kernal for the same.
by DSguru2B
Thu Jan 18, 2007 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: splitsingle row into multiple rows
Replies: 17
Views: 3587

A simple routine can do the trick as well using the methodoligy embedded in Craigs post. If you love awk, a single liner awk is enough.
by DSguru2B
Thu Jan 18, 2007 8:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding command stage
Replies: 33
Views: 5922

Just getting tired of all the pleading... the whole point of this place is helping others, people don't need to end every post with a plea for help. Hang tight, be patient, you'll get whatever help people can provide when they can provide it... no groveling required. Thats true Craig. Been seeing t...
by DSguru2B
Thu Jan 18, 2007 8:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User control for commit or rollback
Replies: 3
Views: 997

Do you have an explicit commit being passed at the end of your stored procedure inside the code? If yes then you need to take that out first and then try testing it.
by DSguru2B
Thu Jan 18, 2007 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting List of job names from script.
Replies: 5
Views: 1019

If you are writing a script then the simplest way is to go for dsjob -ljobs option and redirect them to a text file. That file will then contail all your job names for that particular project.
by DSguru2B
Thu Jan 18, 2007 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding command stage
Replies: 33
Views: 5922

chulett wrote:
Please Guru help me. :wink:


What gotton into you Craig :roll:
:wink:
by DSguru2B
Thu Jan 18, 2007 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: splitsingle row into multiple rows
Replies: 17
Views: 3587

Any special reason why you want to use the transformer for this?
by DSguru2B
Thu Jan 18, 2007 7:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Auto Archving of Logs
Replies: 7
Views: 1396

As ArndW suggested, nothing out of the box. What you could do is spit out the entire log using dsjob -logdetail to a file and then compress those files. Set AutoPurge option accordingly.
by DSguru2B
Wed Jan 17, 2007 9:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: <transform> Error when checking composite operator: g+
Replies: 11
Views: 6013

Welcome Aboard DBA :wink:
Does any job work with a transformer in it? Seems like the c++ compiler is not able to respond to the transformer. Double check the APT_LINKER and APT_COMPILER environment variables and assure that they are properly set.