Search found 66 matches

by Bala R
Thu Oct 06, 2005 1:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem in configuring DSN in Unix
Replies: 7
Views: 3576

Isn't that you setup the ODBC DSN on the client machine which would be on Windows?
Or how did you setup your DSN?
by Bala R
Thu Oct 06, 2005 12:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem in configuring DSN in Unix
Replies: 7
Views: 3576

As the error message suggests - Did you check the host name and port number in your DSN setup?
Did you click on the Test Connection button on the ODBC DSN setup tab and verified you could establish a connection?
by Bala R
Wed Oct 05, 2005 9:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file creation & update clarification
Replies: 9
Views: 3053

Think you could not have a single hashstage with the same hash file for read and write. It would not compile. We have some couple of jobs that we have just to create a empty hashfile. SourceDB --- > xfm ---> HashStage where the output from the sourcedb is set to return no rows.. like where 1 = 2.
by Bala R
Tue Oct 04, 2005 7:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update existin rows only option's warnings
Replies: 4
Views: 1059

I have used the same tables as lookup using OCI stages, before I insert or update. Started the design with hashfile lookups and later changed to DB lookups. Have I gone down the wrong path?.
by Bala R
Sun Oct 02, 2005 11:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: If key already exists, do NOT pass record, else process it.
Replies: 9
Views: 4052

Please provide what you have tried and not working.
As far as I know you should be able to write and read from a hashfile in a job. Mebbe you could turn on caching WRITE IMMEDIATE while you write to the hashfile and use 'Disable, Lock for update' in preload option while you read.
by Bala R
Sun Oct 02, 2005 10:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: If key already exists, do NOT pass record, else process it.
Replies: 9
Views: 4052

On the tabular display of your output link in transformer, you would find a header called constraints. Double click on it to open the expression editor for constraints and enter lookup_ID.NOTFOUND, where lookup_ID is your lookup input link. When you have opened your transformer stage constraints edi...
by Bala R
Fri Sep 30, 2005 8:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to get the correct output for a user-defined SQL
Replies: 2
Views: 1779

Hi Tasneem,

Did you load the column metadata from oracle table definitions? If you haven't, load the columns definitions and check the data by clicking on view data.
IHTH.
by Bala R
Sat Sep 24, 2005 5:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Julian to Gregorian(DB2 format YYYYMMDD) date conversion
Replies: 6
Views: 8196

This post and this from Ray :D should help you.

You could slightly modify Arnd's solution with Iconv(1900+ DateString[1,3]:".01.01","D4YMD" to suit yours
by Bala R
Wed Sep 21, 2005 11:22 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Importing Oracle Meta
Replies: 10
Views: 8361

Can you check whether the user id with which you are logging into unix from the DataStage client has read permission on tnsnames.ora file?
by Bala R
Tue Sep 20, 2005 10:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to view data
Replies: 7
Views: 2422

Don't think its anything with the plugin... Got to do with the ODBC oracle driver you have setup for DS. Lookup the manual for the driver you have installed and whether it supports the datatypes and the length or precision you are trying to select.
by Bala R
Tue Sep 20, 2005 9:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to view data
Replies: 7
Views: 2422

What are the field types of X,Y and Z? Check if your driver supports these datatypes.
by Bala R
Tue Sep 20, 2005 1:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load date into SQL Server - datetime datatype)
Replies: 10
Views: 18464

SQL server is more lenient when you want to insert a date than other DBs(Oracle, DB2). If you pass the data in as a varchar in the format that matches the date format of the field, SQL server would do the cast for you internally. No need to append the time part. Inserting a date shouldn't be such a ...
by Bala R
Mon Sep 19, 2005 1:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: array size and transaction size
Replies: 7
Views: 3294

my job is doing 2 updates to same table different fileds with 2 links and one connection and 1 odbc stage when Array size1=10 and transactionsize1=20 Array size2=1 and transactionsize2=1 it thrwos error odbc coud not position table Array size1=10 and transactionsize1=20 Array size2=20 and transacti...
by Bala R
Mon Sep 19, 2005 12:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LongVarChar source and DS job fails to recognize it!!!
Replies: 15
Views: 6759

Are you trying to insert the selected CLOB value into another Oracle table downstream? Possibly the OCI_HANDLE_ERROR could occur because of the pointer to the LOBLocator exists in the session or OCI env where you did a select and becomes invalid when moved to another session. If thats the case may b...
by Bala R
Sun Sep 18, 2005 11:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load date into SQL Server - datetime datatype)
Replies: 10
Views: 18464

Re: Load date into SQL Server - datetime datatype)

SQLSTATE=23000, DBMS.CODE=273 [DataStage][SQL Client][ODBC][Microsoft][ODBC SQL Server Driver][SQL Server]Cannot insert a non-null value into a timestamp column. Use INSERT with a column list or with a default of NULL for the timestamp column. SQLSTATE=37000, DBMS.CODE=8180 [DataStage][SQL Client][...