Search found 48 matches

by turash
Sat Dec 15, 2007 8:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sybase OC VS ODBC Stage
Replies: 9
Views: 6261

Yes My main issue is this i am planning to do transaction grouping using ODBC. ODBC stage does not captures some of the errors. Ok, just wanted to make sure you're using a supported version of Sybase. So... have you configured DataStage for Sybase? Meaning, have a Sybase client installed on the Data...
by turash
Sat Dec 15, 2007 10:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sybase OC VS ODBC Stage
Replies: 9
Views: 6261

Sybase 12.5

chulett wrote:What version of Sybase?
by turash
Fri Dec 14, 2007 4:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sybase OC VS ODBC Stage
Replies: 9
Views: 6261

Sybase OC VS ODBC Stage

I have a job which moves data for two tables

Source DB2

Target Sybase

If i run the job with Sybase OC stage it returns the following error

Sybase Server warning 515 (severity 16)

While similar job with ODBC Stage does not capture this error in the error log.
by turash
Fri Dec 14, 2007 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transaction Management on the target database
Replies: 11
Views: 3046

ODBC Settings Driver=/opt/dsadm/Ascential/DataStage/branded_odbc/lib/VMase19.so Description=DataDirect Sybase Wire Protocol ApplicationName= ApplicationUsingThreads=1 ArraySize=50 Charset= CursorCacheSize=1 Database=GDNADPWEB DefaultLongDataBuffLen=1024 EnableDescribeParam=0 EnableQuotedIdentifiers=...
by turash
Fri Dec 14, 2007 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transaction Management on the target database
Replies: 11
Views: 3046

Transaction Management using ODBC vs Sybase OpenClient I have job which transfer the data for two tables Source - DB2 Target - Sybase Scenario: First table insert 1 row without any error, Second Table have some data error while inserting in target If I use Sybase OC Stage with transaction size 0 for...
by turash
Tue Nov 06, 2007 2:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: db2 Date to string in YYYYmmdd
Replies: 2
Views: 1968

Thanks a lot
DSguru2B wrote:Try the following

Code: Select all

oconv(iconv(DSLink2.CODE_EFF_DATE, "D/MDY[2,2,4]"), "DYMD[4,2,2]":@VM:"MCN") 
by turash
Tue Nov 06, 2007 1:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: db2 Date to string in YYYYmmdd
Replies: 2
Views: 1968

db2 Date to string in YYYYmmdd

I am trying the following, does not get desired output
oconv(iconv(DSLink2.CODE_EFF_DATE, "D/MDY[2,2,4]"), "DYMD[4,2,2]")


I need output as YYYYmmdd format.

Thanks in advance!
by turash
Mon Oct 29, 2007 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row Count
Replies: 25
Views: 13046

Re: Row Count

Hi All, We need to develop a job which will give us the information of the number of records loaded in the final table. The design will be something like this: Source table -----------Transformer------------------Target Table | | | File The information will be trapped in the file , such as table na...
by turash
Thu Oct 25, 2007 3:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Webserivces Pack Installation Issues
Replies: 6
Views: 1670

chulett wrote:Talk to your DataStage admin. If it was installed, the stages would be showing up for you, so I'll wager it has not been.
DataStage admin is not sure how to check.
by turash
Thu Oct 25, 2007 3:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Webserivces Pack Installation Issues
Replies: 6
Views: 1670

chulett wrote:Talk to your DataStage admin. If it was installed, the stages would be showing up for you, so I'll wager it has not been.
DataStage admin is not sure how to check.
by turash
Thu Oct 25, 2007 2:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Webserivces Pack Installation Issues
Replies: 6
Views: 1670

chulett wrote:There's a Server component that needs to be installed as well, from what I recall.
How do i find if the webservices pack is installed on Server (Solaris)?
by turash
Thu Oct 25, 2007 1:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Webserivces Pack Installation Issues
Replies: 6
Views: 1670

Webserivces Pack Installation Issues

I have installed Webservices pack on the client for datastage. I am able to import the definition from webservices.

Problem:
I am not seeing the Web Services Transformer in my datastage client.

am i missing something?

Thanks in advance!!
by turash
Wed Oct 24, 2007 3:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I search a string for XYZ and replace with spaces
Replies: 15
Views: 5883

Very interesting to know ereplace() exists in datastage Came up with another option that should do what you want: use eReplace() instead. It would look something like this: eReplace(<fieldname,linkname,etc>, "<String to replace>", "<replacement values>", [# of instances to replac...
by turash
Wed Oct 24, 2007 3:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML stage
Replies: 2
Views: 1815

Re: XML stage

I think you have to define this as part of initial XML design. Hi All, I have a requirement. My XML output stage should generated the output format mentioned below: - <xtd:Data> - <![CDATA[ 01|3|34|343|01|01|361227|3|1|2007120600|JUL 2007 |2007120626|WK 26 - 08/04/2007 01|3|34|343|01|01|361227|1|1|2...
by turash
Wed Oct 24, 2007 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetLinkInfo to get the DSJ.LINKROWCOUNT
Replies: 6
Views: 2556

The link row counts will work if called from the after-job subroutine. RESOLVED Source --> Transform1 --> Target | |__ Hash file --> transform2 --> report I have moved the function to get out row count to transform2 level and called DSGetLinkInfo (DSJ.ME, "Transform1 ", "link2",...