Search found 29 matches

by sultan@cts
Mon May 06, 2013 5:12 am
Forum: General
Topic: parameter set clarification
Replies: 4
Views: 2275

you can pass the different value as parameter. if you are triggering the sequencer from unix script.
by sultan@cts
Thu Dec 16, 2010 3:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dealing with Japanese characters
Replies: 8
Views: 6301

Re: Dealing with Japanese characters

Is UTF 8 characte set is enabled at job level?
Try to remove the ustring (entended property of meta data).
by sultan@cts
Wed Dec 15, 2010 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null handling in fixed width file with
Replies: 4
Views: 3467

Null handling in fixed width file with

Date format not matching when null is coming in date fied for the fixed width file, which is reading entire string as single fiels. sample warning: tfpDateProcess,0: Data string ' ' does not match format '%yyyy%mm%dd': an integer was expected to match tag %yyyy. tfpDateProcess,0: Conversion error ca...
by sultan@cts
Mon Nov 15, 2010 5:28 am
Forum: General
Topic: How to unlock a job
Replies: 6
Views: 6972

If you have the access . follow the below steps from unix. Step1:log to ds engine /opt/Ascential/DataStage/DSEngine Step2: Type the following three commands one after the other $DSHOME . ./dsenv bin/dssh step3:ogto ur project Step4: In the command prompt, type the following command LOGTO UV Step5: T...
by sultan@cts
Mon Nov 15, 2010 3:50 am
Forum: General
Topic: How to unlock a job
Replies: 6
Views: 6972

In version 8.x through webconsole,we can unlock the job.
by sultan@cts
Thu Aug 26, 2010 12:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Truncating Decimal.
Replies: 13
Views: 5409

Re: Truncating Decimal.

If inlnk.inputfield < 0 Then '-':right(Field(inlnk.inputfield ,'.',1,1),8) Else right(Field(inlnk.inputfield ,'.',1,1),8) [/quote] My target column is varchar. Do i have to do decimal to string conversion or is not needed?[/quote] Before using the inlnk.inputfield in derivation convert it to decima...
by sultan@cts
Wed Aug 25, 2010 2:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading from excel
Replies: 5
Views: 3385

Re: Reading from excel

leonardo2 wrote:Can anybody tell me how to read a excel file from datastage
Conver the Excel sheet to .csv file and use sequential file stage to read the same.
by sultan@cts
Wed Aug 25, 2010 1:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Truncating Decimal.
Replies: 13
Views: 5409

Re: Truncating Decimal.

I am using the following: if col<0 then "-":right(abs(col),7) else right(abs(col),7) please suggest me the correct way to do this.[/quote] you can try this code: If inlnk.inputfield < 0 Then '-':right(Field(inlnk.inputfield ,'.',1,1),8) Else right(Field(inlnk.inputfield ,'.',1,1),8)
by sultan@cts
Mon Aug 16, 2010 11:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to convert nullable to not null values
Replies: 5
Views: 3492

Re: how to convert nullable to not null values

Hi, Iam having trouble converting the null values to not null. Can you please guide how to convert the nullable values to not null using the transformer stage or any db2 query ( i used nvl and coalescequery it is not working ) Iam getting the values from the database which are having null values an...
by sultan@cts
Mon Aug 16, 2010 4:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to delete data using datastage job?
Replies: 5
Views: 4190

kris007 wrote:Have you tried User defined SQL?
As kris007 suggested user defined delete statement will work in ODBC stage to delete records.
by sultan@cts
Fri Aug 13, 2010 5:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dssearch command not recognizing category name having space
Replies: 6
Views: 4639

Please help me, to get the jobs list from subcategory through command line.
Suppose if we have jobs-->DE ACCT-->Subcategory.Now we need the list of jobs from Subcategory folder.
by sultan@cts
Wed Aug 11, 2010 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting less spaces in viewing the data from seqfile
Replies: 13
Views: 5219

In your case, please put an output stage after your source stage that just writes this one column into a flat file, then use "od -x" to see if the spaces are actually present or if there is now a tab in the string. If the spaces remain then you have discovered a problem in "view data...
by sultan@cts
Wed Aug 11, 2010 6:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dssearch command not recognizing category name having space
Replies: 6
Views: 4639

I didn't even know that categories can be created with embedded spaces. When you execute the command with quotes, what is the dssearch output? Thanks ArndW for the reply. we can create the categories with spaces in between . We tested with giving quotes its working fine now.previously we ran in dif...