Search found 18 matches

by sirishds
Mon Jul 07, 2014 9:41 am
Forum: General
Topic: What's the Coolest Feature of DataStage?
Replies: 18
Views: 9698

In most of the stages we have a flexibility to apply unix command,which i feel is very cool.

As per the new release 9.0.1 hadoop concept was introduced and handling JSON file format was also awersome,XML stages were revised.the above listed were something which i find intresting.

Sirish :)
by sirishds
Fri Jun 27, 2014 12:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema File with fixed length issue
Replies: 2
Views: 2210

Thank you for responding.

The issue is resolved now.It looks like the fixed length schema and the length of the data in the file doesnot match.because of which the data was not getting populated.

Cheers,
Sirish.
by sirishds
Fri Jun 27, 2014 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema File with fixed length issue
Replies: 2
Views: 2210

Schema File with fixed length issue

I have a schema file of fixed length. Schema file is as follows: record {record_length=fixed,delim=none} ( field1:nullable string[1] {width=1}; field2:nullable string[10] {width=10}; field3:nullable string[1] {width=1}; field3:nullable string[3] {width=3}; :nullable string[1] {width=1}; :nullable st...
by sirishds
Tue Dec 24, 2013 6:09 am
Forum: General
Topic: Datastage--How to track user deleted the parameter set
Replies: 1
Views: 1497

Datastage--How to track user deleted the parameter set

Hi Gurus, In our project we have more than 1000 etl jobs.In which there is a specific parameter set which is being used in 90% of the jobs and i see someone has deleted that parameter set which would result in failure of all the jobs. Is there a way that we can track the user who deleted it?. [As th...
by sirishds
Fri Dec 20, 2013 5:53 am
Forum: General
Topic: Email Notification without JOB STATUS REPORT
Replies: 4
Views: 3061

Re: Email Notification without JOB STATUS REPORT

Which version of datastage are you working on? what is that you are using for email notification is it Notification Activity or DssendemailAttachment Routine.If you are using Notification Activity switch to routine DSsendemailattachment.Hope this helps.
by sirishds
Thu Nov 28, 2013 5:45 am
Forum: General
Topic: Log File as an attachment in Email
Replies: 5
Views: 3036

Hi, You may have to change your routine such that it would save the log file as per the requiredconvention.so that going forward you can directly attach the file By means of notification Activity. Option 2: Hope the log file would be saved in the DSsrver.You can use UNIX commands to change the job c...
by sirishds
Fri Nov 22, 2013 2:40 pm
Forum: General
Topic: Searching for Jobs that use a particular table
Replies: 2
Views: 2469

Searching for Jobs that use a particular table

HI Gurus, I need to list all the jobs in a project for which a particular table is being used. The table name supposed to find is "R_DM_SCRB_DTL' ". In the jobs as per the convention, we need to prefix 'ora' or 'src' something as such before the table name so in the below query I used DS_J...
by sirishds
Mon Jun 21, 2010 5:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert multiple columns into rows.
Replies: 4
Views: 2659

Please look into the Pivot Enterprise stage in the Parallel Job Developer Guide and, should your needs not be met by that stage, ask again here in this thread. Thanks for your prompt reply ANDRW but i could not meet my requirement by pivot stage i initiated my job initially by Pivot stage,i am supp...
by sirishds
Mon Jun 21, 2010 5:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert multiple columns into rows.
Replies: 4
Views: 2659

How to convert multiple columns into rows.

Hi, Please find the requirement below For better understanding about my query i have underline the required output source Target custno custpre abc 1 2 1,2,3 1 3 2,5,6 2 5 3 6 How do i perform if using transformer. Thanks in advance Regards, Sirish.
by sirishds
Mon Jun 21, 2010 5:02 am
Forum: General
Topic: How to convert multiple coloums to rows
Replies: 2
Views: 1614

sorry i will post again my question is not clear
by sirishds
Mon Jun 21, 2010 5:01 am
Forum: General
Topic: How to convert multiple coloums to rows
Replies: 2
Views: 1614

How to convert multiple coloums to rows

Hi, I have a suitation where i need to convert rows into coloums.Please find the details below Source target Custno custPreferences 1,2,3 1 2 2,5,6 1 3 2 5 2 6 How do i perform it by transformer. Thanks in advance Sirishds
by sirishds
Wed Jun 16, 2010 5:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Alternate way without using sequencer
Replies: 5
Views: 3114

Alternate way without using sequencer

Hi,

I have a couple of jobs need to be executed sequentially but i am not supposed to use sequencer is there any alternative way to perform the control flow of jobs.

Thanks in Advance
Sirish.
by sirishds
Tue Jun 15, 2010 10:20 am
Forum: General
Topic: Transformer
Replies: 6
Views: 3213

If your input is file then use sed command in sequential file filter sed "s/[^0-9]//g" file Or If you have only alphabets then use Convert function Convert("abcd...zABC...Z","",Field) Or If you have alphabets and other characters svTmp=Convert("0123456789",&q...
by sirishds
Tue Jun 15, 2010 9:58 am
Forum: General
Topic: Transformer
Replies: 6
Views: 3213

peddidsx wrote:Is there a scenario where the letters fall in between the numbers?

No numeric followed by string.
by sirishds
Tue Jun 15, 2010 9:49 am
Forum: General
Topic: Transformer
Replies: 6
Views: 3213

Transformer

I have a situvation where i need to drop the string present in the source coloum and load only the numeric values at the target Source Target abc100 100 a1000 1000 abcd10 10 Can any one help me out what appropriate function in transformet need to be used or without using transformer can we devlop a ...