Search found 68 matches

by HariK
Wed Sep 22, 2010 6:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Funnel warning - Dropping "APT_0_comm_type"
Replies: 7
Views: 4006

Re: Funnel warning

suryadev wrote:"APT_0_comm_type" in transfer from "inRec" to "outRec"
Try running the job after deactivating the RCP option.
by HariK
Mon Sep 20, 2010 12:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Function Like and Soundex
Replies: 8
Views: 6340

chulett wrote:Soundex is Soundex and really should behave identically across platforms. Have you found that not to be the case? :?
My Bad. The function is based on the standard, open algorithm for SOUNDEX evaluation
by HariK
Fri Sep 17, 2010 5:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Function Like and Soundex
Replies: 8
Views: 6340

Javieregh wrote:and Soundex function ??
There is soundex function, but it does not behave same as the SQL funtion. search Soundex on help available on Datastage Designer
by HariK
Fri Sep 17, 2010 5:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Function Like and Soundex
Replies: 8
Views: 6340

Re: Function Like and Soundex

Javieregh wrote:index(table.column,'XXX',0) Is this syntax ???

Thanks
index(table.column,'XXX',1)
by HariK
Fri Sep 17, 2010 5:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Function Like and Soundex
Replies: 8
Views: 6340

Re: Function Like and Soundex

Javieregh wrote:Eg:- table.column like '%XXXX%'
index function in transformer stage.
Or
Filter stage supports Like
by HariK
Thu Sep 16, 2010 5:40 am
Forum: General
Topic: Viewing One Off Scheduled Job
Replies: 2
Views: 1405

Re: Viewing One Off Scheduled Job

markgeorgefath wrote: if we schedule a job to run as a one off we are unable to view it on the schedule.
If the job has started executing then the schedule will be cleared. If the job has not started yet you can definitely view it.
by HariK
Wed Sep 15, 2010 6:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Editing an Oracle WHERE clause
Replies: 5
Views: 1587

Re: Editing an Oracle WHERE clause

Code: Select all

 TABLE.SDATE >= TO_TIMESTAMP( CONCAT( ( TO_CHAR( SYSDATE  , 'YYYY'  ) - 2 )  , '-01-01 00:00:00'  )  , 'YYYY-MM-DD HH24:MI:SS'  )
Could you try the following, to check if whether Edit 1 has the issue.

Code: Select all

 TABLE.SDATE >= ADD_MONTHS(TRUNC( SYSDATE, 'YEAR') , - 24)
by HariK
Wed Sep 15, 2010 5:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performance problem in 8.1 server job
Replies: 3
Views: 2726

Re: performance problem in 8.1 server job

What are you doing with all the data that has been extracted? post more information about the job design.
by HariK
Thu Sep 09, 2010 5:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CLOSE COMMAND
Replies: 1
Views: 1106

Re: CLOSE COMMAND

jpraveen wrote:can we write multiple SQLs in a single CLOSE COMMAND
I have not tried in parallel, but think you can. The same works in Server After SQL.
by HariK
Thu Sep 09, 2010 12:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Plugin metadata not able to access
Replies: 2
Views: 1351

Re: DB2 Plugin metadata not able to access

Have you checked the OS variables PATH, LD_LIBRARY_PATH?
by HariK
Wed Sep 08, 2010 3:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored Procedure issue
Replies: 1
Views: 1341

Re: Stored Procedure issue

You can execute SQL Server Stored procedure using ODBC stage. Not sure though about row by row execution.
by HariK
Wed Sep 08, 2010 3:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Call an Oracle Function by using Stored Procedure stage
Replies: 13
Views: 10266

Assuming the problem is with reutrn type. In function it is Boolean, in DS job it is Varchar. Not sure if Boolean is supported in DS 7 version for Oracle.
by HariK
Fri Sep 03, 2010 7:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need some help
Replies: 5
Views: 2319

Do a search for 'DataStage Analysis' and most probably you would get what you are looking for.
by HariK
Fri Sep 03, 2010 7:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stages is missing from one project to another
Replies: 5
Views: 2919

export from prod1 , import in prod2?
by HariK
Fri Sep 03, 2010 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rerunning the job from fail point
Replies: 10
Views: 4075

agpt wrote:Thanks for the info Gaurav. But looking for some more robust solution if possible as we have millions of records.

is anybody else have done it in some other way?
Merge or Join can be used in place of Lookup if volume is the only concern.