Search found 12 matches

by Smoker
Fri Oct 20, 2006 9:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dssh output
Replies: 2
Views: 1115

ray.wurlod wrote::idea: You might like to mark this topic as Resolved, then. ...
Tried several times but kept getting an error

Smoker
by Smoker
Thu Oct 19, 2006 11:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dssh output
Replies: 2
Views: 1115

dssh output

Greetings again I have been playing with dssh and found a problem that I can not figure out. The command is JOB="VertexBefore" $DSSH "SELECT * FROM DS_AUDIT WHERE INSTANCE='$JOB'; " > /tmp/file When from the command line the output looks good like this... Class\ID........ 2\Verte...
by Smoker
Thu Oct 19, 2006 7:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Identifying last user who change the job
Replies: 4
Views: 1703

There is a table called DS_AUDIT that records this information. It contains a nested table caled MODS that records the date/time and by whom modified. [url=http://www.dsxchange.com/viewtopic.php?t=9 ... Unfortunately I can not afford the cost of a membership (my employer won't pay). Is there any wa...
by Smoker
Wed Oct 18, 2006 12:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project/Job Report
Replies: 2
Views: 983

kcbland wrote:Oooo, don't think that's in a support API. We usually try to get info from DS_AUDIT, but that's kind of proprietary stuff. Search the forum for DS_AUDIT to see what other folks are doing.
Ah good stuff (I think)... will research that.

Thank You kc
by Smoker
Wed Oct 18, 2006 10:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project/Job Report
Replies: 2
Views: 983

Project/Job Report

Greetings Folks

I am trying to find a way (commands) from the (AIX) command line that will show me the last time a job has been compiled and/or modified.

I've gone through the dsjob command and options but no luck there.

Can anyone point me to some other commands that might help.

Thanks
Smoker
by Smoker
Tue May 16, 2006 9:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate a Record
Replies: 12
Views: 3059

Well I've got a file with the first record having the count of records that should be in the file. So without a lot of detail I am trying a method where a hash file would have the same number of records but containing that count. Then with another hash file having a list of records containing the co...
by Smoker
Tue May 16, 2006 7:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate a Record
Replies: 12
Views: 3059

OK so this is my output link derivation...

Code: Select all

If @OUTROWNUM = 1 then InLink.Record else Dup
What would be the stage variable (Dup) derivation ?
by Smoker
Tue May 16, 2006 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate a Record
Replies: 12
Views: 3059

I have tried adding another column with @OUTROWNUM and that being the key so that it would be unique and not trash records cause of the key field.

I am just not sure how to duplicate the first record to the output.
by Smoker
Tue May 16, 2006 6:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate a Record
Replies: 12
Views: 3059

I suppose I could use a seq file. it's just that I have more stages afterwards and thought a hash file was the way to go.
by Smoker
Tue May 16, 2006 5:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate a Record
Replies: 12
Views: 3059

Duplicate a Record

Greetings Folks

I've got a file (file1) that has the first record that I would like to duplicate into a hash file as many times as there are other records in the file (file1).

Is this possible with a transformer ?
by Smoker
Fri May 12, 2006 6:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Saving record column
Replies: 6
Views: 2059

I've got it to the point of getting a hash file with the first record (containing the record count, 3 in my example) and a second hash file with the data records. But where I am not able to move forward is the next step. To have some kind of logic that would say... if the hash file with the record c...
by Smoker
Thu May 11, 2006 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Saving record column
Replies: 6
Views: 2059

Saving record column

Greetings Folks This question will prolly tell oh so much about how new I am to DS but need to start somewhere and here looks like a great place :) I have a file being sent to me that has several records. The first record is simply a count of how many records (lines) are to follow. What I am grappli...