Search found 531 matches

by prasson_ibm
Thu Jul 21, 2016 4:22 am
Forum: General
Topic: Date From and Date To in Sequence
Replies: 4
Views: 4243

Date From and Date To in Sequence

Hi All, I am stuck in requirement where I need to pass DATE_FROM and DATE_TO in sequence job activities where DATE_FROM is first day of previous moth and DATE_TO is last day of previous month if I am running my sequence in current month. Can anyone help me with the date derivation logic. Regards Pra...
by prasson_ibm
Thu Jul 21, 2016 4:08 am
Forum: General
Topic: Fallen Premium Poster: Kim Duke
Replies: 32
Views: 26473

RIP Kim!
by prasson_ibm
Fri May 13, 2016 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Salesforce.com with delta extract
Replies: 3
Views: 4131

Hi all,

We got resolution of this issue. We have created Datastage object in salesforce.com and it will store the Jobstatrttime and objectid and objectname. This will be used for extracting delta from sf.com.

Many Thanks
by prasson_ibm
Tue May 10, 2016 3:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Salesforce.com with delta extract
Replies: 3
Views: 4131

Hi All,

Anyone can help me on above topic.
by prasson_ibm
Thu Apr 28, 2016 7:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Salesforce.com with delta extract
Replies: 3
Views: 4131

Salesforce.com with delta extract

Hi, I am trying to extract the delta records from salesforce.com pack stage and I found the below post on this topic on dsxchange: http://www.dsxchange.com/viewtopic.php?p=441564 From the post it is clear for me that we need to add custom object called DataStage in salesforce.com with fields called ...
by prasson_ibm
Fri Apr 15, 2016 7:09 am
Forum: General
Topic: Reading SalesForce.com Objects
Replies: 4
Views: 3241

Upgrade to DataStage 11.5. The SalesForce.com pack is included for free.
by prasson_ibm
Tue Apr 05, 2016 2:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read multiple dataset (output) of a sql server procedure
Replies: 5
Views: 4636

Hi, You will have three options in stored procedure stage, source ,target and transform. If you don't have any input to stored procedure, then use it as a source and you will have option of return code and error code on the output link I believe , and based on this you can do the transformation. Ple...
by prasson_ibm
Fri Mar 11, 2016 12:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Handling for Change capture
Replies: 4
Views: 5123

If the column type is nullable =Yes then datastage will put null so I don't think there is an issue in comparing two input links.
by prasson_ibm
Tue Mar 08, 2016 12:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when checking composite operator at run-time
Replies: 5
Views: 4470

Or you can enable the APT_DISABLE_COMBINATION and execute the job,you will come to know which operator is having issues.

Thanks
PRasoon
by prasson_ibm
Fri Mar 04, 2016 2:14 am
Forum: General
Topic: Retrieve Fatal Error from DataStage Job
Replies: 6
Views: 5045

Hi, Below is the basic routine, it may help you. $INCLUDE DSINCLUDE JOBCONTROL.H JobName = FIELD(Arg1,"|",1) ****JobName = DSJ.ME hJob1 = DSAttachJob(JobName, DSJ.ERRNONE) jobStart = DSGetJobInfo (hJob1, DSJ.JOBSTARTTIMESTAMP) latestID = DSGetNewestLogId(hJob1,DSJ.LOGANY) DIM evtVector(lat...
by prasson_ibm
Thu Mar 03, 2016 11:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while executing Sql Server stored procedure
Replies: 8
Views: 5687

Hi All,

I am able to resolve the issue. I was getting error because there were two columns with same name and while importing the metadata in job, one of the column was not importing.

I raised this concern to associated team and they renamed one of the column.
by prasson_ibm
Wed Mar 02, 2016 9:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while executing Sql Server stored procedure
Replies: 8
Views: 5687

Ok I have removed row regenerator.

Now my design is :

Stored Procedure Stage -----> Peek Stage.

Still I am getting same error as I have mentioned before.

What could be the reason for this issue.

Thanks
Prasoon
by prasson_ibm
Wed Mar 02, 2016 7:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while executing Sql Server stored procedure
Replies: 8
Views: 5687

Ok, In my case data is going out so Source Stored Procedure will work. Now i am struggling with my first issue,with error like "al: Wrong number or types of arguments in call to dbo.UP_IN_AMBIT_PRICE" Here we don't have any argument passing to stored procedure and yes we are getting a retu...
by prasson_ibm
Wed Mar 02, 2016 7:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while executing Sql Server stored procedure
Replies: 8
Views: 5687

Hi,

I executed the PROC on sql server and its giving output:

USE[IMJID]
GO

DECLARE @return_value int

EXEC [odb].[UP_IN_AMBIT_PR]

SELECT 'Return Value' = @return_value

GO

In this case which stored procedure type will be appropriate (source/Transform).

Thanks
PRasoon