Search found 459 matches

by T42
Wed Mar 30, 2005 11:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: check that 'dbx' and 'sed' are installed and on your PATH
Replies: 4
Views: 4948

You found a bug! *fanfare* No, not your bug. DataStage's BUG! Report this to Ascential Support at your earliest convenience. In the meantime... Instead of concentating data, just do this: 1. Transformer Stage before the Sequential Stage -- Convert all fields to Char(specific length). Do the necessar...
by T42
Wed Mar 30, 2005 11:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings in join stage
Replies: 5
Views: 3566

This error message shows up when you are trying to do something down the stream that utilizes the sort data. Your sort key(s) must fit that stage's key(s). If it's an aggregator, you need the same keys. If it's a remove duplicate, you need one extra sort field beyond the keys. The list goes on. Hope...
by T42
Wed Mar 30, 2005 11:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in setOutputFieldAsString()
Replies: 5
Views: 2597

Unicode is usually added to your metadata if you have a NLS setup, and does not toggle off the Char -> Unicode option when you import metadata to the job. Obviously, your SQL server is not NLS enabled. I am not quite sure how to enable it without doing some hard core Googling. Anyone else know here?
by T42
Wed Mar 30, 2005 10:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OSH - hello world
Replies: 2
Views: 2159

You can not really run Orchestrate on a machine WITHOUT a full DataStage installation. You could call Orchestrate directly ($APT_ORCHHOME/bin/osh), but no, you can not run it independently.

Sorry, this is most likely part of the licensing agreement your company signed with Ascential.
by T42
Wed Mar 30, 2005 10:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning while loading the Look up file set
Replies: 4
Views: 1672

That warning message is typical for EE. In order to fix this, you need to go to the previous stage, click on its properties, select the "Advanced" tab, set "Preserve Partitioning" to "Clear". This is caused by the default behavior of DataStage which is to preserve parti...
by T42
Wed Mar 30, 2005 10:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Server
Replies: 2
Views: 1366

This is normal. Timestamp with microseconds are provided to 6 digits within DataStage.
by T42
Wed Mar 30, 2005 10:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PATH search failure
Replies: 10
Views: 5591

Sorry, other than to set up your dsenv file to ensure that your paths are correct on the server itself (the server requires an Oracle client, obviously). Care to paste the env path you have from the job run on here? Include all Oracle environment settings, please.
by T42
Wed Mar 30, 2005 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage PX Config file setup error
Replies: 5
Views: 5859

Be careful with using different names for your fastname. This would automatically cause DataStage EE to think that it's running as a MPP process, and will try to transfer the Transformer libraries over to the sgwbba01 server via RSH (see $APT_ORCHHOME/etc/distribute-component - that's the script tha...
by T42
Wed Mar 30, 2005 10:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Export data from DB2 (MAINFRAME) table into flat file
Replies: 4
Views: 3569

Ah, it appears he want a command line interface scripting tool.

I am sorry, but DataStage is not a command line interface scripting tool. Especially not EE. I believe you are better off using the tools provided with DB2.
by T42
Wed Mar 30, 2005 10:27 pm
Forum: Enhancement Wish List
Topic: Command Line Job Unlock Option
Replies: 9
Views: 8930

kill -9 <pid> There's your problem RIGHT THERE! Read my instructions very carefully. DO NOT USE -9. DO NOT USE -9. USE -14! You killed DataStage using a very hard-core Operating System kill -- where everything's destroyed without mercy. This is a last resort action. Kill -14 will tell DataStage, &q...
by T42
Sun Mar 27, 2005 1:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I read DataSet from Job Control ?
Replies: 9
Views: 4962

Wild idea: Create a server shared container that invokes the routine. Encapsule it within a Parallel job. Read from dataset and pass data to shared container.
by T42
Sun Mar 27, 2005 1:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PATH search failure
Replies: 10
Views: 5591

Forgive me for being a bit reluctant in answering -- there are a number of people who try to get us to help them install an illegal copy of DataStage in the past. I love DSXchange, and want it to succeed. In order to do so, we have to stay honest in the narrow legal definitions. So... Have you tried...
by T42
Sun Mar 27, 2005 12:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Varchar to decimal -
Replies: 2
Views: 1834

Code: Select all

If IsNull(input.value) Then 0.00 Else StringToDecimal(input.value)
In DataStage's transformer, Integer and Characters are interchangeable.

Edit:
will any official course provide the DS knowladge I seek or is it only an Ascential employee priviladge?
Depends on what you want to know! :lol:
by T42
Sun Mar 27, 2005 12:39 pm
Forum: IBM QualityStage
Topic: Error : User Id is a required stage property
Replies: 6
Views: 7256

user_id is missing and not supplied with a value.

Our answers greatly depends on what specific stage you are using. Please let us know.
by T42
Sun Mar 27, 2005 12:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: comparison between 2 rows
Replies: 8
Views: 3125

One other solution: Use: [Sort] -> [Transformer] Sort the key in order of case (ascending), and date (ascending). Use Transformer's Stage Variable to retain the current key. Initialize it to 0 (or some value that will never happens), and compare it with the case. If it's different, provide the new v...