Search found 138 matches

by koolnitz
Fri Aug 20, 2010 8:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we protect a portion of project?
Replies: 6
Views: 3551

Thanks All for your responses. We do not want to toggle the jobs between RO and RW modes, as the developers will regularly be working on their respective jobs. So, this work-around is not working for us. As I mentioned, due to some biz decision, we can neither create separate projects. I understand ...
by koolnitz
Thu Aug 19, 2010 10:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we protect a portion of project?
Replies: 6
Views: 3551

Can we protect a portion of project?

Greetings to All ! Requirement is to restrict access/ protect/ hide a set of jobs placed under a specific category from a group of developers. Ideal would be if they can be barred to access a particular category. Even if they have Read Only access is acceptable. Kindly let me know if there's a way t...
by koolnitz
Fri Oct 02, 2009 10:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS upgrade from v7.5.1 to v7.5.3
Replies: 4
Views: 3023

Appreciate your help!
by koolnitz
Thu Oct 01, 2009 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS upgrade from v7.5.1 to v7.5.3
Replies: 4
Views: 3023

DS upgrade from v7.5.1 to v7.5.3

Hi DSXians, We have decided to upgrade DataStage from v7.5.1 to v7.5.3 in our project. During upgrade, we want to run both the versions in parallel for a short period of time, from testing perspective. Needless to say, both the versions would coexist, and on the same Unix server. My questions is: Ca...
by koolnitz
Wed Sep 16, 2009 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Version compatibility query
Replies: 2
Views: 2276

Thank you, Craig.
by koolnitz
Wed Sep 16, 2009 3:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Version compatibility query
Replies: 2
Views: 2276

Version compatibility query

Hello,

In one of my projects, we are upgrading the DataStage server from v7.5.1 to v7.5.3. Currently, we are using v7.5.1A versioned DS clients.

I'd like check if v7.5.1A clients are fully compatible with v7.5.3 server (Unix based).

Thanks in advance!
by koolnitz
Wed Nov 28, 2007 3:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to validate the date in the datastage
Replies: 1
Views: 1874

Use IsValid('DATE' , In_Date_Column) in Transformer stage
by koolnitz
Wed Nov 28, 2007 3:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequence
Replies: 2
Views: 2287

Check job log in Director for errors.
Post your sequence job design along with the error messages if you're unable to resolve.
by koolnitz
Wed Nov 28, 2007 3:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row generator
Replies: 3
Views: 2661

As Vasanth mentioned, INTEGER is a valid dataype in Row generator.
by koolnitz
Tue Nov 27, 2007 11:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get the no of days between two dates
Replies: 4
Views: 2852

JulianDayFromDate(defaultdate) - JulianDayFromDate(CurrentDate())

OR

Use DaysSinceFromDate() function.
by koolnitz
Tue Nov 27, 2007 10:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: to get duplicate records
Replies: 18
Views: 8469

Abhay, your question itself is not very clear. Do you want to capture all the records that occur more than once, and also the count of occurences? If yes, then try the following logic: Use a copy stage to split the incoming records into two streams. One stream goes to an Aggregator stage that groups...
by koolnitz
Tue Nov 27, 2007 7:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error running RUNSTATS from DB2 API stage
Replies: 5
Views: 4383

Hmm, so as a workaround I have written a small script that fires RUNSTATS statements, and calling this script from Execute Command in job sequence.

Thanks for the info, anyway!
by koolnitz
Tue Nov 27, 2007 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is the function to get the currentdate-1
Replies: 4
Views: 2647

Hope DateFromDaysSince(-1,Stgvar1) should work in a Transformer!

Define the datatype of your stage variable as DATE
by koolnitz
Tue Nov 27, 2007 6:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error running RUNSTATS from DB2 API stage
Replies: 5
Views: 4383

Thanks stefanfrost1 for your response.
Is it a limitation of DB2 API stage or it is supposed to behave this way?