Search found 91 matches

by suse_dk
Mon Sep 12, 2011 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delimiter for field "DIV_ID" not found
Replies: 2
Views: 1403

If you don't specify trim option and which character you want to remove then DS will perform a Trim on leading trailing spaces and tabs. http://publib.boulder.ibm.com/infocenter/iisinfsv/v8r5/index.jsp?topic=%2Fcom.ibm.swg.im.iis.ds.serverjob.dev.doc%2Ftopics%2Fr_dsvjbref_Trim_Function.html Also, if...
by suse_dk
Thu Sep 08, 2011 7:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: shared container
Replies: 11
Views: 7548

If you enable RCP in the shared container you should be able to input metadata that does not exist within the SC metadata definitions
by suse_dk
Sat Sep 03, 2011 3:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject link from ODBC connector stage causes error
Replies: 1
Views: 2104

Bonus info: the timestamp columns are nullable It seems that when a NULL is present in one of the timestamps columns then the "sql code" reject link crashes. My workaround so far is to give a default value in a transformer before the ODBC connector and the use a after SQL to update the rec...
by suse_dk
Fri Sep 02, 2011 11:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject link from ODBC connector stage causes error
Replies: 1
Views: 2104

Reject link from ODBC connector stage causes error

Hi - On my database table I have a unique key, and when I write to the table I want to catch the records which fails to be inserted due to a key violation with a reject link from the ODBC connector. However when records are rejected the job fails with the following error: [IIS-CONN-DAAPI-000045] Can...
by suse_dk
Thu Sep 01, 2011 12:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: help in joining two tables
Replies: 8
Views: 3383

Do a join on the tables. Ensure the data is sorted on name and id before passing into a transformer. Create stage variables in a transformer: - svNameIdSum (summarizing the value1 on name/id level) - svIdSum (summarizing the value on id level) - svTargetValue (the target value e.g. 100) Set the cont...
by suse_dk
Wed Aug 31, 2011 5:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD Type 1/2 mix - how to test for types of update
Replies: 13
Views: 9020

well... my assumption were that you had your history availiable in your EDW and that it was only a dimension table in a DM you were trying to populate.
by suse_dk
Wed Aug 31, 2011 4:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data type check
Replies: 2
Views: 1709

If you want to test if a value is purely alphabetical you can use Alpha() - it will return 1 if true
by suse_dk
Wed Aug 31, 2011 3:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD Type 1/2 mix - how to test for types of update
Replies: 13
Views: 9020

How big is your dimension table? - consider if not a full reload is faster and easier.
by suse_dk
Mon Aug 29, 2011 5:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Webservices Error
Replies: 13
Views: 13568

Hi -

Have anyone found a way of mapping the basic authentication from DS to the Windows authentication?

I'm having the same problem with calling a Sharepoint webservice which requires my userid to be windows authenticated (Kerberos)

Our DS installation is on Linux.

Thanks
by suse_dk
Sat Aug 27, 2011 2:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle multi delimiter (flat file) in DataStage ?
Replies: 6
Views: 3536

Is it only in the first line where you have the column names /header that you have a space delimiter?
by suse_dk
Fri Aug 26, 2011 4:10 pm
Forum: General
Topic: Unable to create the project
Replies: 6
Views: 3947

The problem you have is described in a technote from IBM: Failed to load JVM into the DataStage Server process (dsapi_slave) 8.0.x message: "(The connection is broken (81002))" 8.1 and later message: "CDSRUserAccess.EnterCS: Internal error - Failed to open file : UV.ACCOUNT (81002)&qu...
by suse_dk
Fri Aug 26, 2011 3:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job reports failure (code 139)
Replies: 1
Views: 1527

As you said - the error can have many causes, however in my experience a 'Parallel job reports failure (code 139)' is usually caused by running the job with the wrong parameter values. So, since the the job is running fine in one environment and not in the other, then check that you have the correct...
by suse_dk
Tue Aug 23, 2011 5:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column names issue in file pattern option
Replies: 8
Views: 4176

True. You can actually tic that option off in the sequential file stage when going for the pattern method. And I think it will remove column names from the first file in the list. The way DS processes the files is NOT reading one file at a time, but instead concatinating all the files in one huge fi...
by suse_dk
Thu Aug 18, 2011 6:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: index constraint
Replies: 7
Views: 4121

Put this in a stage variable and use the result to define the constraint.

If Index('___Joi|___Roi', to_transf._ID[1,6], 1) Then 1 Else 0
by suse_dk
Mon Aug 15, 2011 2:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL SERVER select statement issue
Replies: 10
Views: 13763

# and $ sign are reserved signs in DataStage, so maybe it is possible to use the internal representation of the signs in your select statement? http://publib.boulder.ibm.com/infocenter/iisinfsv/v8r1/topic/com.ibm.swg.im.iis.ds.parjob.adref.doc/topics/r_deeadvrf_Column_Name_Conversion_odbc.html?resul...