Search found 42189 matches

by chulett
Mon Jun 25, 2007 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in Loading an Oracle Table using Load Option in Data
Replies: 4
Views: 1340

Not an 'alias' but yes, a transformer to map the source columns to the target columns. There may be a 'better' stage for this for all I know, but that would work.
by chulett
Mon Jun 25, 2007 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Server Bulk Loader Issue
Replies: 4
Views: 1388

Re: SQL Server Bulk Loader Issue

pavan.nadiger wrote:An entry for the new column was made in all the relevant stages.

Well... the behaviour suggests that this isn't true. I'd suggest you triple-check your job. And this seems like one of those times when getting another pair of eyes to help would be prudent. :wink:
by chulett
Mon Jun 25, 2007 6:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem running multiple instance job in a sequence
Replies: 8
Views: 3605

Re: Problem running multiple instance job in a sequence

ds_team wrote:Where as when I run the same job sequence on datastage server version 7.5.1.A, it executes successfully.

If that's true and the exact same series of jobs work under 7.5.x but not under 8.x I'd say it's time to call in the calvary. Open a ticket with your Support provider.
by chulett
Mon Jun 25, 2007 6:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job to trucate tables
Replies: 14
Views: 4507

There's multiple ways to accomplish this. A job could source from a transformer, pass no rows to a DB stage and simply perform the 'truncate'. I have a multi-instance job that 'truncates any table' with the InvocationID being the table name. Food for thought. And a separate truncate step may very we...
by chulett
Mon Jun 25, 2007 6:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IS sybase OC 2.1 work with Sybase 15.
Replies: 1
Views: 655

Then you'd be best off contacting your official Support provider, get the official answer for those specific versions.
by chulett
Mon Jun 25, 2007 6:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parameter
Replies: 6
Views: 1439

Perhaps something like this would help.
by chulett
Mon Jun 25, 2007 5:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in Loading an Oracle Table using Load Option in Data
Replies: 4
Views: 1340

What is your job design, I'm guessing just the two Oracle stages? :?

If so, you'll need something between them to map the columns. For example, to map 'a' to 'd' (etc) in your second example.
by chulett
Sun Jun 24, 2007 10:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job to trucate tables
Replies: 14
Views: 4507

Sure, any script you can write can be run from the Execute Command stage... but are you sure that's the right approach? With the truncate built into the load job, it can be easily restarted. However, what if your load fails and the solution is to truncate again? Now you've got to find a way to rerun...
by chulett
Sun Jun 24, 2007 9:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: cannot open executable Job File RT_CONFIG222
Replies: 2
Views: 1087

Searching for your error message (leaving off the job number, of course) turns up 35 matches of people having similar problems. Some even with solutions, like this one.
by chulett
Sun Jun 24, 2007 9:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KBADifferent does not work Fractional part of Dec is 10 dig
Replies: 22
Views: 5870

DS4DRIVER wrote:Is there a way to Supress Trialing 0's?

Math. Add zero to the field, for instance.
by chulett
Sun Jun 24, 2007 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: deploy in testing environment
Replies: 2
Views: 706

Where / what exactly is this 'testing environment'? :?

You don't have alot of migration choices - it's pretty much either Version Control or Export/Import.
by chulett
Sun Jun 24, 2007 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we export joblog to a file
Replies: 27
Views: 11793

There's a wealth of information here on getting information out of job logs, all you need to do is search for it. Check the online help for the various DSGetLog related functions, if you want to write a routine, or the Command Line Interface section in the Server Job Developer's Guide if you want to...
by chulett
Sun Jun 24, 2007 7:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading output form Command Execute Stage
Replies: 7
Views: 2293

tsamui wrote:Instead of using 'ls' use 'ls -m'.

+1. Easiest way to build a delimited list of files for consumption by the Loop stages.
by chulett
Sun Jun 24, 2007 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KBADifferent does not work Fractional part of Dec is 10 dig
Replies: 22
Views: 5870

Ok. The original post led me a little astray but I see regardless of scale it's a precision issue. As Ken notes, I've had to switch to the 'string math' functions (and write an 'SMOD' routine) when working with numbers larger than the EXACTNUMERIC setting, which defaults to 15 not 4 or 9 or 7 or 14....