Search found 49 matches

by pklcnu
Sat Feb 13, 2010 2:30 am
Forum: IBM QualityStage
Topic: Address Cleansing
Replies: 16
Views: 7658

Address Cleansing

Dear Experts I need to do address cleansing, the table is having different columns for address like HouseNumber, StreetName , Location, PostCode . The data in these columns is all mixed up, the following are some of the cases how the data is entered in the columns 1) In the HouseNumber column full a...
by pklcnu
Sat Feb 13, 2010 2:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: New Line Character
Replies: 6
Views: 1775

Convert('\n',char(10),ColumnName) Solved the issue......thanks every one
by pklcnu
Tue Feb 02, 2010 7:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: New Line Character
Replies: 6
Views: 1775

Re: New Line Character

Hi I am loosing the format when I am posting it......so the format that I sent in my earlier post is not correct........my question is how I can replace \n with new line . One of the column is having the data which conatin \n which needs to be converted in to a different line........suppose if i got...
by pklcnu
Tue Feb 02, 2010 5:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: New Line Character
Replies: 6
Views: 1775

New Line Character

Dear Experts My requirement is like this In the csv file the record is like "abc","bbc \n xyz ", "efg" "abc2","bbc2 \n xyz2 ", "efg2" Then after loading in to the table the data should look like Col1 Col2 Col3 abc bbc efg xyz abc2 bbc2 efg2...
by pklcnu
Fri Jan 15, 2010 5:47 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: How to Email the Analysis Reports in Information Analyzer
Replies: 1
Views: 1876

How to Email the Analysis Reports in Information Analyzer

Dear Experts

Is it possible to email the Analysis Reports to send through Email in the Information Analyzer ? If yes how to do it ?

Thanks alot.............
by pklcnu
Wed Jan 06, 2010 2:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading files into Siebel in xml format
Replies: 1
Views: 829

Loading files into Siebel in xml format

Dear Experts

I got a requirement where I need to load the data from oracle tables to Siebel in XML format. How to do this ?

Your input will be much appreciated..........

Many Thanks
by pklcnu
Mon Nov 30, 2009 10:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How the Entire Partioning works
Replies: 8
Views: 2132

Sreenivasulu wrote:all the 5 partitions will have same data as the original dataset

Regards
Sreeni
Yes I know that what you and Chulett said, but what is the pupose of partitioning if it is the same set after partitioning?
by pklcnu
Mon Nov 30, 2009 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How the Entire Partioning works
Replies: 8
Views: 2132

How the Entire Partioning works

Dear Experts In parallel jobs how does the Entire Partitioning property works, suppose if the data gets divided in to 5 partitions all the 5 partitions will have the same data as the original dataset . As the original single dataset is divided into 5 datasets is not a overhead itself, instead of cop...
by pklcnu
Tue Oct 20, 2009 9:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running a sequence in a given time automatically
Replies: 4
Views: 1033

chulett wrote:From Director, use the 'Add to schedule...' option. That will put it into cron and run it on whatever schedule you need. ...
Thanks very much indeed
by pklcnu
Tue Oct 20, 2009 9:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running a sequence in a given time automatically
Replies: 4
Views: 1033

Running a sequence in a given time automatically

Hi All

Is it possible to run a sequence at a given time , is it possible to set the time so that the sequence runs automatically suppose say after the midnight ? If yes how to do this ?

Many Thanks
by pklcnu
Tue Aug 04, 2009 9:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Routine to Connect the DataBase
Replies: 4
Views: 1362

Call an update script in an after job routine that only runs on job success. Thanks for the reply......my question was what lines of code that i need to include in the routine in order to connect to the Database......like DBName, UserName, Password etc.........how to write this in the routine apart...
by pklcnu
Tue Aug 04, 2009 8:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Routine to Connect the DataBase
Replies: 4
Views: 1362

Routine to Connect the DataBase

Dear Experts I need to run an update script after the job execution. I tried using Stored Procedure stage but it don't have option for SQL server. Is there any way either to call a Stored Procedure from routine or writing the script in routine and then call the Database through routine ? If so can y...
by pklcnu
Tue Jul 28, 2009 10:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Index Function
Replies: 4
Views: 5282

You can achieve it in various ways. One of them is via Matches as Craig has noted. Sample If yourField Matches "0X'ABC'0X'XYZ'0X" Then .... Else ... ... Thanks very much for your quick response.....it is solved now....i used some thing like If InputColumn matches '...ABC...XYZ...' then 1 ...
by pklcnu
Tue Jul 28, 2009 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Index Function
Replies: 4
Views: 5282

Index Function

Hi 1) select * from Employee where name like '%ABC XYZ%' 2)select * from Employee where name like '%ABC%XYZ%' In the second query there is extra % between 'ABC' and 'XYZ'. Similar scenario in DataStage i am using Index funtion for string comparion for the above case1 , i am using some thing like if ...
by pklcnu
Tue Jun 30, 2009 9:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mutiple Instance Invocation ID
Replies: 24
Views: 16886

You can pass the invocation ID only to a down stream multi-instance job/sequence from start loop activity. Not when running the Parent job itself. Are you running that sequence manually 20 times or through script or other sequence? The job runs through sequence only for 20 times for the 20 values m...