Search found 124 matches

by srinagesh
Mon Dec 08, 2008 3:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data flow cycle detected among operators in step
Replies: 4
Views: 3370

Data flow cycle detected among operators in step

Hi ! I was trying to do some fancy stuff in response to a query posted on this forum. The issue was to split a string Id, String 1, "a,b,c,d,e,f" as Id Value 1 a 1 b 1 c 1 d 1 e 1 f without really knowing the maximum number of "values" in the "String" I tried to design ...
by srinagesh
Tue Dec 02, 2008 10:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to create new user and password
Replies: 3
Views: 1325

I've never worked on DS installed on Windows Servers, But I think creation of users should be as simple as creating User Accounts in windows.
by srinagesh
Wed Nov 19, 2008 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Password Issue with DRS
Replies: 1
Views: 771

If I remember correctly, the password for Oracle Database should be between 4 & 30 characters.

The error you are seeing must be because of this.

Try to give a password of less than 30 characters and connect
by srinagesh
Thu Nov 06, 2008 9:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: stagevariable
Replies: 2
Views: 1288

Try something like

Code: Select all


if "*" : trans.empno = "*" : mast.empno then 1 else 0 

by srinagesh
Wed Sep 24, 2008 7:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Improper data type. Attempting to Cleanup after ABORT
Replies: 4
Views: 1929

What is the Data type as defined in transformer for

Code: Select all

A002_IN.GBP 
also let us know how are these defined

Code: Select all

A002_IN.GBP and l_wallpaper_lk.MULTIPLIER 
Can you also verify the Lookup to the ODBC stage and check that the data types (and also value) of the fields being looked up are compatible.
by srinagesh
Mon Sep 22, 2008 8:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination of stage:TRN (Transformer Stage)
Replies: 5
Views: 2856

when you reset the job, was there any message from "previous run"
by srinagesh
Thu Dec 06, 2007 7:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of transformer stage
Replies: 15
Views: 4251

are there any restrictions on your UNIX server that an process cannot remain active for more than 1 hour ? I may be wrong in my thinking, but I believe that the error you are getting is due to the UNIX process. It is getting killed. Can you do ps-ef|grep phantom and search for the Job that is gettin...
by srinagesh
Mon Dec 03, 2007 8:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look up Query with OR condition getting error ORA 1008
Replies: 7
Views: 2348

I remember this being a bug with Datastage 7.5.1A

Your look up using Hashed files would work correctly, but the look up against the OCI stage / DRS stage would result in the error "All Variables not bound".

I would suggest that you get in touch with IBM for the patch.
by srinagesh
Mon Dec 03, 2007 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error log routines
Replies: 2
Views: 902

can you tell me what you mean by error log routines ?

Do you want to capture all the Datastage Warnings / Errors ?
by srinagesh
Mon Dec 03, 2007 7:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Add years to Date
Replies: 5
Views: 2981

If your source is a database, you can use the database functions to generate this column.

Eg: In Oracle

select add_months(sysdate,12) from dual;

will add 12 months to current date.
by srinagesh
Fri Sep 21, 2007 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pivoting variable number of colums to rows
Replies: 1
Views: 865

Hi, I am unable to give you a datastage solution diagram for this problem, due to lack of time, but here is the logic Input: a, b, c, 4, 5, 6 p, q, r, 4, 5, 6 Assume that a,b,c are your primary keys and 4, 5, 6 are 4th,5th & 6th columns (structure of these columns will be 4.1 4.2 4.3.. 4.n for 4...
by srinagesh
Tue Sep 04, 2007 6:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSWaitForJob waiting indefinately
Replies: 9
Views: 8468

Check whether there are any network glitches / system activity at that time.

You can look for these messages in /var/adm/messages
by srinagesh
Tue Sep 04, 2007 5:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Telnet service does not start
Replies: 4
Views: 2553

I think Microsoft telnet services is not started on windows box.

Try to start the telnet service (if its not already started) and then restart the Datastage Service
by srinagesh
Mon Apr 16, 2007 8:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling job
Replies: 7
Views: 3331

The -14 error indicates that a job start request was issued and that 60 seconds have elapsed while waiting for a record to be written to a status file. If the lock tables are too small the job will fail to start and you will get a -14 error. If the system is under a heavy load the job process may no...
by srinagesh
Wed Mar 28, 2007 6:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to improve the performance in Server Job
Replies: 3
Views: 1217

You can find lots of tips on Performance improvement by using the Search facility.

There are tips like setting the Buffer Size, modifying the job design, partitioning the table etc etc..