Search found 53125 matches

by ray.wurlod
Fri Sep 16, 2005 4:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Logs
Replies: 4
Views: 1191

Yes.

But it's a DIY (do it yourself) solution. You need to extract events from the log tables and direct them to the file(s) in question.

An ideal mechanism would be a DataStage job! :D
by ray.wurlod
Fri Sep 16, 2005 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to compute the week of the month
Replies: 3
Views: 1027

Mod(DayNumber, 7) returns 0 for Sunday and 6 for Saturday where DayNumber is in DataStage internal format.

Applying that knowledge to the date you're testing and to the first day of the same month (see also MONTH.FIRST Transform) should give you an elegant solution.
by ray.wurlod
Fri Sep 16, 2005 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creation of user of DataStage.
Replies: 7
Views: 2186

There are three roles. Operator can only run released jobs. They can't even view all log entries unless this is allowed in the Administrator client. They can't modify jobs or metadata and therefore don't need Designer or Manager. Developers can modify jobs and metadata, and therefore can use Designe...
by ray.wurlod
Fri Sep 16, 2005 4:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User Defined SQL
Replies: 7
Views: 2628

In Director reset the job and read the "from previous run..." message.

Also check the logged event that shows the actual SQL that is used; make sure that it is the same as you believe you have pasted in.
by ray.wurlod
Fri Sep 16, 2005 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DRS stage Where condition being generated automatically
Replies: 5
Views: 1104

As Anand pointed out, a reference input link performs a "get row given key" function. The only way you can do this in SQL is using a WHERE clause so, when the DRS (or ODBC or any database stage type) serves a reference (lookup) input link, there is an automatically-generated WHERE clause in the SQL ...
by ray.wurlod
Fri Sep 16, 2005 4:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to specify Folder Path Name of NT box in Folder stage
Replies: 1
Views: 629

Any browser in DataStage looks on the DataStage server machine. It can use any mechanism (such as samba) that you may have in place to view Windows folders from UNIX.

Otherwise you can use an FTP stage if your Windows machine can act as an FTP server.
by ray.wurlod
Fri Sep 16, 2005 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: About modify stage
Replies: 11
Views: 3346

Had you searched here, as advised, you would have found this URL
by ray.wurlod
Fri Sep 16, 2005 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchestrate script calling issue
Replies: 12
Views: 4539

osh is the name of a shell, just like sh, csh, ksh. You can invoke it from UNIX, therefore you can invoke it from a Wrapper stage.
by ray.wurlod
Fri Sep 16, 2005 7:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use perl to query info from DS repository
Replies: 5
Views: 1060

Same person, new nick? That's one way to get to 10,000 users! :twisted:
by ray.wurlod
Fri Sep 16, 2005 7:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: role of VOC file
Replies: 2
Views: 788

how it will be used effectively in Datastage

The VOC file contains every word and token that can be used in that project, including table names, routines and lots more.

If it's not there, DataStage won't work at all in that project. That "effective" enough?
by ray.wurlod
Fri Sep 16, 2005 7:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Want to know about NEWACC
Replies: 4
Views: 894

NEWACC isn't a file, it's a directory. Ordinarily it contains six files. If yours is truly empty, it suggests an incomplete installation.
by ray.wurlod
Fri Sep 16, 2005 7:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchestrate script calling issue
Replies: 12
Views: 4539

You could possibly invoke it using a Wrapper stage. The important thing is to handle stdin and stdout properly.
by ray.wurlod
Fri Sep 16, 2005 4:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: replace null to string in a sequential file
Replies: 4
Views: 1600

There are no nulls in sequential files. Therefore the Format tab in a Sequential File stage allows you to specify how null is represented. By default a zero length string is interpreted as null. In the Columns grid you can specify a different representation of null for each particular column. But th...
by ray.wurlod
Fri Sep 16, 2005 4:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Want to know about NEWACC
Replies: 4
Views: 894

When a new account (project) is created, the VOC file is created and its contents loaded from the NEWACC ("new account") file.

Then other structures are copied from the Template project (which does not have a VOC) and pointers to anything necessary are created in the VOC file in the new project.
by ray.wurlod
Fri Sep 16, 2005 4:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Branching Code without Raising Director Warnings
Replies: 3
Views: 867

I agree. Sometimes I use the job's user status area as a mechanism to pass back a value. Since routine arguments are passed by reference, you can alter their values in the routine and retrieve the results from the arguments. It's not recommended practice, but it does work. Remember to document a war...