Search found 13 matches

by Jaleel
Wed Feb 07, 2007 2:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call a SQL Server stored procedure in ds
Replies: 4
Views: 2050

How to call a SQL Server stored procedure in ds

Could anyone please suggest how to call a SQL Server stored procedure which has no inputs and outputs?
by Jaleel
Thu Dec 21, 2006 9:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Why i'm getting this warning DataStage Job 1430 Phantom 7408
Replies: 4
Views: 2255

Are there any surrounding warning messages. Run the job again for maybe 2 records and see if any more messages are there. Also try resetting the job, this brings some more info to the log file at time ... No other messages or warnings related to this are coming in the log even after i do reset. The...
by Jaleel
Thu Dec 21, 2006 3:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Why i'm getting this warning DataStage Job 1430 Phantom 7408
Replies: 4
Views: 2255

Why i'm getting this warning DataStage Job 1430 Phantom 7408

Hi, Can anyone clarify why i'm getting this warning - "DataStage Job 1430 Phantom 7408". When i open this warning i'm seeing some thing like this.... DataStage Job 1430 Phantom 7408 Warning: [DataDirect][ODBC SQL Server Driver][SQL Server] Warning: [DataDirect][ODBC SQL Server Driver][SQL ...
by Jaleel
Wed Sep 20, 2006 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unix command Help please..
Replies: 8
Views: 4179

This command worked for me but it is returning only one row in the output. Can u please tell me how to get all the rows in the input file to output file with changes? Now i'm using this command awk '{ gsub("<MYTAG>*.*</MYTAG>","<MYTAG></MYTAG>"); print $0}' filename1 > filename2 ...
by Jaleel
Mon Sep 18, 2006 11:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unix command Help please..
Replies: 8
Views: 4179

Thanx. Sorry it didn't worked for me. My data is like this exactly <tag1>abcd</tag1><tag2>def</tag2><MYTAG>Hai</MYTAG><tag4>jhg</tag4> <tag1>abcd</tag1><tag2>def</tag2><MYTAG>Hello</MYTAG><tag4>jhg</tag4> In this data we should remove Hai and Hello. Thanks in advance,
by Jaleel
Mon Sep 18, 2006 10:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unix command Help please..
Replies: 8
Views: 4179

Unix command Help please..

Can any one help me out with an unix command which removes data between two tags...

<a>Hai</a>
<a>Hello</a>

I want Hai and Hello to be removed from this data. So the outpu should be

<a></a>
<a></a>

Thanks in advance,
by Jaleel
Mon Sep 18, 2006 10:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unix command Help please..
Replies: 8
Views: 4179

Unix command Help please..

Can any one help me out with an unix command which removes data between two tags...

<a>Hai</a>
<a>Hello</a>

I want Hai and Hello to be removed from this data. So the outpu should be

<a></a>
<a></a>

Thanks in advance,
by Jaleel
Mon Sep 04, 2006 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can we do Performance tuning?
Replies: 4
Views: 3873

How can we do Performance tuning?

Hi, I have a requirement in which there are about 4000 records in one file and 5212 records in another file. And i'm using merge stage to merge these two files on one id. But it is taking more time to load infact the datastage is strucking in the middle without giving even one error or warning. I wo...
by Jaleel
Fri Sep 01, 2006 6:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing into a unix file from datastage
Replies: 11
Views: 10587

ray.wurlod wrote:I'd be inclined to create a routine to be invoked from a Routine activity in which the list of addresses is read and composed into the Addressee field in the DSSendMail() function call. ...
How to read files from a Job Routine?
by Jaleel
Thu Aug 24, 2006 11:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with CSV data.
Replies: 11
Views: 8033

OK, I was afraid of that. In this case DS (both server and PX) have no way of knowing where to split the columns. The file is not machine-readable (unless you can guarantee that the string of `","` does not show up in the text and all columns are double-quote delimited. Have your program ...
by Jaleel
Thu Aug 24, 2006 10:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with CSV data.
Replies: 11
Views: 8033

In my case I just used a sequential file stage to read the file (DS Server interprets the ",," nullable input correctly) and then outputted a fixed width sequential that PX Server then reads. With an appropriate null pad character and fixed lengths the PX read is very easy to do. I'm not ...
by Jaleel
Thu Aug 24, 2006 10:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with CSV data.
Replies: 11
Views: 8033

thumsup9 wrote:What did you mention in you Quote Character under Format Tab in sequential file.
I have checked with " and 000 both. But it didn't worked. Could you help me with any other solution!
by Jaleel
Thu Aug 24, 2006 9:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with CSV data.
Replies: 11
Views: 8033

problem with CSV data.

Hi, We are getting data in CSV files. These CSV files has "," as field delimiter and Quotes for the data as usual. But the data itself is coming with commas and quotes in between. And we should not change the csv files. But we should import the data successfully. So anyone can please help ...