Search found 22 matches

by bhanuvlakshmi
Wed Jul 03, 2013 4:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while running SP in 8.5 version
Replies: 4
Views: 8011

When i tried in parallel job i used Transform type.

When tried in server job i used T/F stage as input and ODBC stage as output stage and there i choose the option stored procedure and gave the exec command in the Enter SQL tab.
by bhanuvlakshmi
Wed Jul 03, 2013 1:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while running SP in 8.5 version
Replies: 4
Views: 8011

Error while running SP in 8.5 version

HI I have one migration project from 8.1 version to 8.5 Version. In that project one to the job is used to trigger Sp from SQL Server 2005. It was woring fine in the 8.1 version and DB as well. The purpose of the SP is to populate the staging area data to target tables. The target tables are having ...
by bhanuvlakshmi
Tue Aug 30, 2011 11:42 pm
Forum: General
Topic: Executing the VB script from Datastage
Replies: 3
Views: 3672

IN windows in saved the file with .vbs extension and ran the file from comand prompt. i..e, just gave the file name. It ran fine and got the output. If i did the same thing in datastage it is going into the continuous running mode and if i give the command as cscript "Path of the file to be exe...
by bhanuvlakshmi
Tue Aug 30, 2011 10:57 pm
Forum: General
Topic: Executing the VB script from Datastage
Replies: 3
Views: 3672

Executing the VB script from Datastage

Hi All,

I have one VB Script to be executed.Could any body please suggest me how to execute it from datastage.I heard that it is possible to run from execute command activity.If so Please let me know the syntax how to call the script.

Thanks & Regards.
Bhanu.
by bhanuvlakshmi
Tue May 31, 2011 5:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Count of number of records per link
Replies: 1
Views: 2160

Count of number of records per link

Hi All, My requirement is to insert the data in to the table at the same time i have to pass the total number of records processed through the link as a paramater to a stored procedure. for That i had seqfle-->T/F-->ODBC Agian from the same T/F i took an aggregator stage and stored procedure stage. ...
by bhanuvlakshmi
Sat May 28, 2011 1:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: checking alphabets in the transformer stage
Replies: 3
Views: 3237

My job is like sequential file -->sort-->filter--> T/F-->-->sort--> sequential file. I am getting the problem i the T/F stage.The column1 is comming form the i/p sequential file in which the column has nullable NO as while creating the i/p file itself NULL values has handled. still i am getting the ...
by bhanuvlakshmi
Fri May 27, 2011 11:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: checking alphabets in the transformer stage
Replies: 3
Views: 3237

checking alphabets in the transformer stage

Hi My Requirement is to remove the special characters and check if any alphabets are there and any numbers are there in a column. i have used the following logic If Alpha(Convert("~!@#$%^&*()_-+=|\}]{['':;?/>.<,`", "", Column1)) Or Num(Convert("~!@#$%^&*()_-+=|\}]{['...
by bhanuvlakshmi
Wed May 25, 2011 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null values are dropped in the tranformer stage
Replies: 2
Views: 2270

Null values are dropped in the tranformer stage

Hi all, My Job is having ODBC stage --> and T/F stage--> sequential stage. I have to handle the null values if it comes from database to either empty or to a value. I handled them using IsNull(i/pcolumn) in T/F stage. but in output those values are not reflecting and are dropped with a warning messa...
by bhanuvlakshmi
Mon May 23, 2011 10:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: partial output from sequential file
Replies: 11
Views: 5587

Re: partial output from sequential file

Instead of using StageVar : Index(Word1,'-',1) can you try with this
StageVar : Index(to_processing.pri_emp_add1,'-',1)

using the above one solved my issue.

Thank you for your help PAUL:)
by bhanuvlakshmi
Mon May 23, 2011 10:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: partial output from sequential file
Replies: 11
Views: 5587

Thank You so much Vinoth.

Its working fine now. :)
by bhanuvlakshmi
Mon May 23, 2011 9:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: partial output from sequential file
Replies: 11
Views: 5587

Re: partial output from sequential file

Hi IF the input column contains two words i have to take first word in to one variable and second in to another and again in the first word i have to check for the hyphen(-) and if it is there i have to take the part before the (-) in one variable and part after the (-) in another variable. thats wh...
by bhanuvlakshmi
Mon May 23, 2011 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: partial output from sequential file
Replies: 11
Views: 5587

Re: partial output from sequential file

Thank you Paul for correcting my logic but still i am facing the same problem my first record is giving as

SAME-AS
and remaining all are giving as this

SAME
SAME
SAME
SAME

Please note : (execution mode is sequential in T/F stage)
by bhanuvlakshmi
Mon May 23, 2011 7:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: partial output from sequential file
Replies: 11
Views: 5587

Re: partial output from sequential file

Now when changed the execution mode to sequential in transformer i am getting the o/p for all records except for the first record, still a blank space iam getting for that

Could any body please help me in solving this......

Thanks in advance for your help.
by bhanuvlakshmi
Mon May 23, 2011 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: partial output from sequential file
Replies: 11
Views: 5587

Re: partial output from sequential file

My requirement is to seperate the word in to 2 parts if it contains '-' based on this first part should contain the part before '-' and second should contain after the '-'. for that i used the following in t/f stage I have taken the stage variables: StageVar : Index(Word1,'-',1) StageVar1 : Index(to...
by bhanuvlakshmi
Mon May 23, 2011 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: partial output from sequential file
Replies: 11
Views: 5587

partial output from sequential file

Hi, My job is having ODBC stage--->t/f-->sequential file stage. I am not able to get properdata to the output. I have used stage variables in the transformer and built logic according to the requirements.I am getting the proper output but for half of the rows only remaining half are blank. I was get...