Search found 472 matches

by tonystark622
Wed Oct 20, 2004 6:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: VOC file and commands
Replies: 7
Views: 1900

Good point, Ray. Most of them did, but not all, and the primary group wasn't 'dstage', but a department group. We made all the files and directories that we access through DataStage owned by the dstage group. That explains why we had to set the 's' bit on the group.

Thanks,
Tony
by tonystark622
Tue Oct 19, 2004 5:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: VOC file and commands
Replies: 7
Views: 1900

I'm not sure if this is normal, something specific to HP, or something we're not smart enough to figure out a way around, but we had to set the 's' permission on the group for the project directory and any directories where we wrote hash files or data. This is supposed to make any directories or fil...
by tonystark622
Tue Oct 19, 2004 3:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: VOC file and commands
Replies: 7
Views: 1900

Make sure you have your permissions and umask set right...

Tony
by tonystark622
Mon Oct 18, 2004 8:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling a sequence from unix prompt
Replies: 1
Views: 779

Andrew,

Look in the help files for the 'dsjob' command. That's the easiest way to call any DataStage job from the operating system.

Good Luck,
Tony
by tonystark622
Thu Oct 14, 2004 11:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom Error - Variable previously undefined
Replies: 3
Views: 1604

Also remember that DataStage basic is case sensitive, so a variable named TonysVariable is not the same as Tonysvariable. You may be seeing an issue where one of the variables that you're using is misspelled.

Good Luck,
Tony
by tonystark622
Wed Oct 13, 2004 8:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential files in the report format
Replies: 2
Views: 741

In a second transformer parse the row into columns using substring() or field().
Or use a Row Splitter stage instead of the second transformer to split the data out into columns (v7.1).

Tony
by tonystark622
Tue Oct 12, 2004 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Vertical Pivot
Replies: 7
Views: 9668

SonShe, Design your job like this: HashFile1 | | Hash_lu IN V SeqFile------->XFormer------->HashFile1----->XFormer----->SeqFile2 Make Fld1 the key when reading and writing in the hash file stages. For the derivation of Field2 put: If IsNull(Hash_lu.Fld1) Then IN.Fld2 Else Hash_lu.Fld2 : " "...
by tonystark622
Mon Oct 11, 2004 2:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job Parameters for Sequencer Jobs
Replies: 16
Views: 8939

Also consider the scalability of a RoutineActivity stage per job parameter. If you have 20+ parameters in a job (paths, credentials, dates, etc), then this becomes an nasty job. Yes it does, no argument from me. I wish we could stuff all these in a container, but there is no container stage in Sequ...
by tonystark622
Mon Oct 11, 2004 1:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job Parameters for Sequencer Jobs
Replies: 16
Views: 8939

Kenneth, I think that this answers Poorna_76's question, but since you said that the Sequencer can't do this, I'm not sure if I understood his question correctly. Can you review the scenario I describe below and let me know if I'm off base? Thanks! Poorna_76 We do this with most of our job sequencer...
by tonystark622
Fri Oct 08, 2004 12:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look for available number - routine question
Replies: 22
Views: 9834

You can do the same thing in DataStage, but I don't know if it will be any faster: 1) Create a new server job. 2) Add a transformer and a sequential file stage. 3) Create an output link from the transformer to the sequential file stage. 4) Create a new stage variable in the transformer stage. Call i...
by tonystark622
Wed Oct 06, 2004 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Protected Projects and DataStage Operator role
Replies: 4
Views: 5325

If a job truly is "released" you should not have to specify the job name plus the release number. At least the last time I tried it.

Tony
by tonystark622
Tue Oct 05, 2004 1:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: calling more than 1 after-job routine
Replies: 3
Views: 1650

Byron,

I usually write a new Routine and call all the after job routines from this one routine. Obviously, I just set this one new routine as the After Job routine.

HTH,
Tony
by tonystark622
Tue Oct 05, 2004 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Simple Job Running for long time
Replies: 7
Views: 2166

Yeah, I did. Sorry.
by tonystark622
Tue Oct 05, 2004 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Simple Job Running for long time
Replies: 7
Views: 2166

With proper indexing, I would think this would beat the pants off your ODBC lookups. Maybe even without proper indexing.
No, you pretty much have to have proper indexes when doing stuff like this unless the amount of data is very small. But it's pretty simple to add extra indexes.

Tony
by tonystark622
Mon Oct 04, 2004 1:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Migrating from Oracle 8 to Oracle 9i
Replies: 5
Views: 2804

If you're talking about the OCI8To9.b tool that Ascential distributes, I've used it a couple of times. It worked fine with no problems.

Tony