Search found 142 matches

by pxraja
Sat Nov 15, 2008 3:16 am
Forum: General
Topic: How to find Version of Datastage using scripts at backend
Replies: 4
Views: 1603

Hi ray,

the command given is giving the admin information also, whether it is possible to get only the version of the datastage alone

thanks for your suggestion
by pxraja
Sat Nov 15, 2008 12:18 am
Forum: General
Topic: How to find Version of Datastage using scripts at backend
Replies: 4
Views: 1603

How to find Version of Datastage using scripts at backend

Hi all,

Would anyone please tell me how to find version of datastage at the back end using scripts .

In particular any command for finding the version in IBM Websphere Information Server 8.0

thanks in advance
by pxraja
Tue Oct 14, 2008 8:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: snapshot too old
Replies: 2
Views: 2423

snapshot too old

Hi all, my job got aborted and the log view is given below, .Transformer_2.DSLink7: DSD.BCIGetNext call to SQLFetch failed. SQLSTATE=S1000, DBMS.CODE=1555 [DataStage][SQL Client][ODBC][DataDirect][ODBC Oracle Wire Protocol driver][Oracle]ORA-01555: snapshot too old: rollback segment number 8 with na...
by pxraja
Fri Oct 10, 2008 9:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_seqopen() - error in 'open()' - Permission denied
Replies: 2
Views: 6653

ds_seqopen() - error in 'open()' - Permission denied

Hi all, my jobs got aborted by giving this fatal error message, Sequential_File_25.FileName: ds_seqopen() - error in 'open()' - Permission denied It is in the sequence, so the sequence got aborted without executing other jobs. change made is: moved the sequential file in the unix to different folder...
by pxraja
Wed Oct 08, 2008 12:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: weird issue in ODBC
Replies: 2
Views: 1454

weird issue in ODBC

Hi all, While I am trying to run the job in production I can see this message and the job got aborted without any rows transformed. DSD.BCIOpenW call to SQLPrepare failed. SQLSTATE=S1C00, DBMS.CODE=0 [DataStage][SQL Client][ODBC][DataDirect][ODBC Oracle Wire Protocol driver]Optional feature not impl...
by pxraja
Sat Oct 04, 2008 3:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar to Date format
Replies: 42
Views: 14722

Get your head around this idea. A date is a date is a date. Inside Oracle (or any other database, pretty much) it is stored as a binary value. Different tools have different requirements and ... my question is why its not populating the records into the target table in oracle? No lights blowing on ...
by pxraja
Sat Oct 04, 2008 3:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance issue with ODBC stage
Replies: 3
Views: 1958

If you write custom queries you're pretty much on your own. Why aren't you using generated query? A SELECT statement can never generate UNIQUE constraint violations. I suspect you're not managi ... Hi Ray, Unique constraint violation is given when writing to the target ODBC. I need to join 7 tables...
by pxraja
Sat Oct 04, 2008 3:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance issue with ODBC stage
Replies: 3
Views: 1958

Performance issue with ODBC stage

Hi All, I am using custom query as the input to ODBC Stage and transforming to target ODBC after adding 2 more columns, one having defaulted to zero and other having sequence no. using KeyMgtGetNextValue(1).. I.FIELD2 and I.FIELD15 are the primary columns in target the custom query appears like... S...
by pxraja
Sat Oct 04, 2008 2:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar to Date format
Replies: 42
Views: 14722

If you want alphbetic month characters you have to specify the same. One way to do this is: Oconv(Iconv(Left(Inlink.Field1,10),'DYMD[4,2,2]'),'D-DMY[2,A3,2] ...[/quote] I tried your code, but its not populating records into Outlink.Field1. my nls_date_format is like DD-MON-RR but when viewing in TO...
by pxraja
Sat Oct 04, 2008 1:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar to Date format
Replies: 42
Views: 14722

Hi Can you try with the follwoing formate Oconv(Iconv(DSLink3.FieldName,"D-DMY[2,3,2]"),"D/DMY[2,2,2]") Or Oconv(Iconv(DSLink3.HIREDATE,"D DMY[2,3,2]"),"D/DMY[2,2,2]") i found my nls_session_parameters having date format DD-MON-RR, and tried for my custom que...
by pxraja
Wed Oct 01, 2008 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar to Date format
Replies: 42
Views: 14722

Substrings and concatenation will be the most efficient, and remember that there are no data types within DataStage server jobs. Right(InLink.TheString,2) : "/" : InLi ...[/quote] Hi Ray, I am using custom query in the ODBC STAGE, in that I am using TO_DATE(Field1,'YYYYMMDD') getting as I...
by pxraja
Sat Sep 27, 2008 2:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar to Date format
Replies: 42
Views: 14722

Which particular "it"? There have been so many in this thread! Take a step back, and write out a specification in English (with no mention of any ETL tool) what it is you want to accomplish. And le ... that is, changing the date format from 20080922 to 22/09/2008. How to obtain this conve...
by pxraja
Fri Sep 26, 2008 1:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar to Date format
Replies: 42
Views: 14722

Yes, but don't. If you're using ODBC you must follow the ODBC rules (YYYY-MM-DD for dates), not the Oracle rules (whatever those have been set to). ... Hi Ray, what I Understood from your response is I can develop a single job but it is not advisable, Is that right? anyhow can you make it clear how...
by pxraja
Fri Sep 26, 2008 1:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar to Date format
Replies: 42
Views: 14722

Thanks for your support, I had a conversation with DBA, the Oracle Default Date format is MM/DD/YYYY and when using TO_DATE() in custom sql the data is populated into target table with data type DATE. Now I had created another job for populating into target table with DATE datatype. first job ODBC--...
by pxraja
Wed Sep 24, 2008 4:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar to Date format
Replies: 42
Views: 14722

Can any one clarify that the functions like Iconv,Oconv,TIMESTAMP.TO.DATE will work for Varchar datatype in oracle 10g

or

it will also work for DATE datatype also in Oracle10g

Thanks in advance