Search found 81 matches

by davidnemirovsky
Wed Mar 30, 2005 7:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Effeciency?
Replies: 6
Views: 3650

Hi and Welcome aboard! I think you need to clarify what you are trying to say. Are you suggesting to implement your loading, reference, lookup, staging, mapping and writing phases into one job you might have a maintenance nightmare. Generally smaller components will be easier to manage, although too...
by davidnemirovsky
Wed Mar 30, 2005 1:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: comparison between 2 rows
Replies: 8
Views: 3125

I might go with T42's sort solution. The conceptual design makes sense to me and T42's description should be all that you need to develop this solution. If T42's solution doesn't make sense then I would suggest some training (ask AscentialSoftware).
by davidnemirovsky
Tue Mar 29, 2005 11:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installing MQ Series Plug In
Replies: 3
Views: 1486

Yes, this sounds like a security issue to me.
by davidnemirovsky
Tue Mar 29, 2005 11:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scale of decimal column
Replies: 3
Views: 1298

No problem jzparad, we all make silly mistakes at one time or another. :lol:
by davidnemirovsky
Tue Mar 29, 2005 6:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scale of decimal column
Replies: 3
Views: 1298

SQL Type: Decimal
Length: 1
Scale: 3
If the length of the column is 1, then where do you expect the remainder to be stored?

Try increasing the length of your column.
by davidnemirovsky
Tue Mar 29, 2005 12:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command Line arguments for a Command Stage
Replies: 10
Views: 5458

Wouldn't you hide the code? No good giving away your hard earned experience to just anybody. Back to your conceptual question: I am almost certain that points 1 & 2 can be designed through a datastage job. 1) This job might look like this: UV stage --> Xfer --> Seq In the UV stage you will need ...
by davidnemirovsky
Tue Mar 29, 2005 12:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Basic command to capture if insertion is sucessful
Replies: 2
Views: 1603

Datastage has the capacity to accomplish your desired result but you have to take a different approach. Any database statement if successful will not return anything in the LOG otherwise the log would always be full of 'successful entries'. On the other hand, if a statement has not successfully comp...
by davidnemirovsky
Mon Mar 28, 2005 8:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command Line arguments for a Command Stage
Replies: 10
Views: 5458

Welcome aboard! I think what you are trying to do is export some information about your existing jobs in a certain project? If so, <a href="http://www.kennethbland.com">Kenneth Bland</a> has some great utilities for this. No point re-inventing the wheel. Register on his site and have a loo...
by davidnemirovsky
Mon Mar 28, 2005 6:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: info msg in job log:Unable to unlink operating system file
Replies: 4
Views: 1660

Perhaps try running the jobs in a Job Sequencer, not as an After Job subroutine.
by davidnemirovsky
Mon Mar 28, 2005 6:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TABLE GETS LOCKED
Replies: 3
Views: 1569

Just a general comment regarding your post. Sometimes during DS development incomplete jobs and processes that have incomplete or 'dodgy' code in them can lock tables and routines without unlocking them. When this happens to an internal Datastage component you can unlock it by telneting to the DS se...
by davidnemirovsky
Mon Mar 28, 2005 6:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing FileName as Parameter
Replies: 3
Views: 951

Shell scripting can be a powerful tool in Datastage, but don't forget about the power of Datastage BASIC. I'm sure there must be a million things that can both be done using either Datastage BASIC or Shell scripting. But becuase DatastageBASIC uses the internal Universe engine wouldn't that make for...
by davidnemirovsky
Mon Mar 28, 2005 5:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installing MQ Series Plug In
Replies: 3
Views: 1486

Try to register the plugin in Datastage Manager. If you get an error it could have something to do with permissions. When installing DataStage the Unix root account is used and when running Datastage Manager the DataStage Administrator account (dsadm) is used. Try installing the product as the root ...
by davidnemirovsky
Mon Mar 28, 2005 5:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in running unix ftp script as Before-job subroutine
Replies: 7
Views: 3961

I'm assuming you have selected 'ExecSH' in the 'Before Job Subroutine' drop down box. What is exact command you are using in the InputValue text box?
by davidnemirovsky
Mon Feb 28, 2005 9:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Join tables from 2 different databases
Replies: 14
Views: 5878

This may not be very efficient but it will work:

First design your job to grab the ORACLE table and export it out into a temporary DB2 table.

Code: Select all

OCI --> X --> DB2
Then perform your join in a DB2 stage and output your result set to an ORACLE stage.

Code: Select all

DB2 --> X --> OCI
by davidnemirovsky
Mon Feb 28, 2005 9:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: varchar to date conversion on DS 7.5
Replies: 6
Views: 5407

If you need to convert the date within Datastage you will need to change the incoming format into internal datastage formatting. Something like this: Oconv(IConv(Arg1[" ",1,3], "D MDY[A,2,4]"), "D-YMD[4,2,2]") This will result in your date coming out as YYYY-MM-DD. If y...