Search found 53125 matches

by ray.wurlod
Wed Jan 06, 2010 10:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error: Added field has duplicate identifier()
Replies: 3
Views: 7807

Re: Fatal Error: Added field has duplicate identifier()

Note: But i have to maintain Those column names as same in target, source, and refrence No you don't. You can change them (to get things to work) and reinstate them downstream. Check that RCP is not enabled in the job and in the Lookup stage, even though you state that it is disabled as a project d...
by ray.wurlod
Wed Jan 06, 2010 9:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic in stage variable
Replies: 12
Views: 3055

The order is not correct. Also, stage variables in parallel jobs can not be null. svCol2NotNull <== NullToValue(inlink.col2value,"<<NULL>>") svIsChanged <== svCol2NotNull <> svPreviousValue svPreviousValue <== NullToValue(inlink.col2value,"<<NULL>>") svOutputCol <== If svIsChange...
by ray.wurlod
Wed Jan 06, 2010 8:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage import taking long time to complete
Replies: 4
Views: 2473

Just as a test, create a brand-new, empty project and try the import into that. Make sure that you specify "overwrite without query" and do not select "perform usage analysis".
by ray.wurlod
Wed Jan 06, 2010 6:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To check data spread across nodes defined in config file
Replies: 1
Views: 768

Use the Data Set Management tool, from the Tools menu in Designer or Director.

(There is a command line equivalent called orchadmin - you can Search DSXchange or the manuals for more information about this command.
by ray.wurlod
Wed Jan 06, 2010 6:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job has finished, status = 96 (Crahsed)
Replies: 4
Views: 1963

Is there anything useful in the job log for the OutBoundInterfaceIRS1099_CreateFile job?
by ray.wurlod
Wed Jan 06, 2010 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine Object File
Replies: 8
Views: 6449

Did you create a "parallel routine" entry in your Repository to allow DataStage to find your code at run time?
by ray.wurlod
Wed Jan 06, 2010 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: calling a parallel job many times using parameters
Replies: 10
Views: 7769

There's also a training DVD at DSXchange Learning Center on the various uses of the DataStage BASIC programming language.
by ray.wurlod
Wed Jan 06, 2010 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loop mechanism inside job.
Replies: 6
Views: 1972

A future version of DataStage (probably the next) will not have a Loop stage in jobs. It will have the ability to set up a looping construct within a Transformer stage - and consequently the ability for the Transformer to sent more rows to an output link than were received on its input link.
by ray.wurlod
Wed Jan 06, 2010 3:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic in stage variable
Replies: 12
Views: 3055

Stage variable has to be overwritten when the change key (generated in upstream Sort stage) is set, or accumulated otherwise. Let's call the stage variable svOutputRow If inlink.changeKey = 1 Then inlink.col2value Else If IsNull(inlink.col2value) Then svOutputRow Else If Len(svOutputRow) >= 20 Then ...
by ray.wurlod
Wed Jan 06, 2010 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Special Character - ^Ö
Replies: 4
Views: 1839

Is NLS enabled? This byte may be a leading byte in a multi-byte character.
by ray.wurlod
Wed Jan 06, 2010 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SalesForce.com integration
Replies: 5
Views: 4524

When ODBC protocol is used there are default maxima for the number of columns and size of rows that can be transferred. These can be overridden either globally or for a particular data source name by editing the uvodbc.config file and setting MAXFETCHCOLS and MAXFETCHBUFF parameters. The MAXFETCHBUF...
by ray.wurlod
Wed Jan 06, 2010 3:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User Id is a required stage property
Replies: 8
Views: 2659

Server shared containers do, because an interface has to be constructed to pass data to and from the "datatype free zone" that server components are. However, that ought not to have anything to do with generating "User Id is a required stage property" error - this is either cause...
by ray.wurlod
Wed Jan 06, 2010 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot login to project
Replies: 6
Views: 7723

First verify that the various tiers (services, ASB node, engine) are correctly started.
by ray.wurlod
Wed Jan 06, 2010 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can't compile any job in the project
Replies: 10
Views: 5999

Does the "no link to overflow group" in DS_JOBOBJECTS still occur? (This would mean that the problem existed before you backed it up.) Run UVFIXFILE against DS_JOBOBJECTS and let us know the results.

Did the file system on which DataStage projects are installed become full at any point?
by ray.wurlod
Wed Jan 06, 2010 3:25 pm
Forum: General
Topic: Backup of IIS project directories while websphere is down
Replies: 4
Views: 1255

Provided everything is installed with precisely the same pathnames as previously, you should be able to restore from backup and continue operations. Note that this advice applies to project directories, which was the question you asked. Backups of the respository and of the WebSphere app server, tha...