Search found 53125 matches

by ray.wurlod
Thu Oct 07, 2004 8:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Printing to a plotter
Replies: 12
Views: 3914

I've been a long time user of the old print screen and MS Paint combination. But don't tell the Ascential lawyers! Very handy for moving bits of a job into documentation and administrator guides. I've been assured (by Ascential) that producing in-house documentation is OK, provided their ownership ...
by ray.wurlod
Thu Oct 07, 2004 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Web based interface for viewing DataStage logs
Replies: 1
Views: 973

In 7.5 you can have the Director client on your PDA using the real time interface (RTI).

Apart from that there's nothing from Ascential, but check out Kim Duke's offeringsparticularly DSWebMon.
by ray.wurlod
Thu Oct 07, 2004 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset jobs via command line dsjob
Replies: 3
Views: 6728

Since reset is a form of run you will not be able to allow reset to a user ID that does not have authority to run the job.
by ray.wurlod
Thu Oct 07, 2004 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to create operating system file
Replies: 20
Views: 7117

Hijacker hihack! DYNAMIC hash files do not use the resizing commands, only the static hashfiles. Dynamic hashed files DO use the RESIZE command. The "modulo" figure is interpreted as minimum modulus, the "separation figure" is mapped to group size (sep 8 = group size 2, any other sep = group size 1)...
by ray.wurlod
Thu Oct 07, 2004 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can any body help me to answer these questions.
Replies: 2
Views: 1626

Contact Ascential to learn about training available in India. Peter Zeglis (peter.zeglis@ascentialsoftware.com) will be able to give you this information. You have a clear need. Answers to some of your questions can be found here, in on-line help, at Ascential Developer Net and/or in the manuals.
by ray.wurlod
Thu Oct 07, 2004 4:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we connect to MS SQL server thru DataStage
Replies: 2
Views: 2626

Look in the .odbc.ini file; there will be an entry for the SQL Server driver. Its library name is of the form vmmsssnn.so (or .sl).
Search the forum; others have done this before you.
by ray.wurlod
Thu Oct 07, 2004 4:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Aborted due to Oracle Error
Replies: 2
Views: 1329

Re-read the message back from Oracle. At the operating system prompt, use the oerr command to get more information about this error. What it suggests is that you can not parallel-load a table that has triggers or constraints enabled, which does seem odd but not impossible. Someone more knowledgable ...
by ray.wurlod
Thu Oct 07, 2004 12:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Printing to a plotter
Replies: 12
Views: 3914

Being cheap, I tend to use Alt PrintScreen and edit it (mainly tidy up the edges before pasting the image into documentation) with MS Paint or some other (free) image editor. Works fine for me, and the price is acceptable.
by ray.wurlod
Wed Oct 06, 2004 8:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract file name from path
Replies: 5
Views: 1458

Look in the BASIC manual for the following subroutines, the first of which is exactly what you want.
    !GET.PATHNAME
    !MAKE.PATHNAME
by ray.wurlod
Wed Oct 06, 2004 4:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How DS is Better than any other ETL tool?
Replies: 10
Views: 5052

For me the biggest factor is the oft-neglected facet of total cost of ownership "ease of maintenance".
I believe that DataStage's graphical design metaphor offers the most easily maintained mechanism in the market.
by ray.wurlod
Wed Oct 06, 2004 4:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Listing scheduled jobs that have not yet run
Replies: 3
Views: 1036

You can view the schedule using the DOS command AT with no command line options.
You can capture this output into a routine using a call to DSExecute with the Shell argument set to "DOS".
by ray.wurlod
Tue Oct 05, 2004 8:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Newbie question: resource disk and scratch disk management
Replies: 4
Views: 9116

Why does that text look vaguely familiar? Could it be because I've read the manual? :roll:

Please don't copy large slabs of the manuals into these fora; it wastes disk space. Everyone who has DataStage has the manuals. All you needed to do was to refer to the correct place in the manual.
by ray.wurlod
Tue Oct 05, 2004 4:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob -run -mode VALIDATE -param ...
Replies: 9
Views: 2542

Ah, yes, but Special K's! :lol:
by ray.wurlod
Tue Oct 05, 2004 4:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generate variable output records per input record
Replies: 12
Views: 3240

NEVER use a STOP statement in a Routine.

DataStage routines must always return, so that the "cleanup" can be managed gracefully even though something has gone wrong.
by ray.wurlod
Tue Oct 05, 2004 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: joining tables
Replies: 4
Views: 1082

If they're all in the same database, join them with SQL; you may require outer joins depending on the exact relationships.

If they're from disjoint databases, you can use the ODBC stage's multi-row return from lookup capability.