Search found 5168 matches

by kumar_s
Thu Feb 22, 2007 12:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Weird problem with Sequential File Stage
Replies: 26
Views: 5780

What is the value that you have given in "Filename" option?
The given option works. If I dont pass any value to parameter it gives out
"DSD.SEQOpen GCI $DS.SEQOPEN error 11.|" from datastage.
by kumar_s
Thu Feb 22, 2007 12:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validation of a time column
Replies: 12
Views: 2034

Ray, I suggested Iconv(Input,"MT") as per your IsValid function.
by kumar_s
Thu Feb 22, 2007 12:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: After-job subroutine does not work
Replies: 19
Views: 3586

What is the job logs shows? Are you calling the script with fully quallified path, I guess you are focusing in adding the path to the Filename that you are tying to move.
by kumar_s
Thu Feb 22, 2007 12:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validation of a time column
Replies: 12
Views: 2034

Can you post the code, what you use to check?
by kumar_s
Thu Feb 22, 2007 12:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to eliminate the thicked pipeline |
Replies: 30
Views: 6625

DSguru2B, atleast for this sake you can display you name DSguru2B .
Yes... DSguru2B?
No... DSguru2B ?
:wink:
by kumar_s
Wed Feb 21, 2007 11:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validation of a time column
Replies: 12
Views: 2034

Try with Iconv(Input,"MT") followed by Status().
by kumar_s
Wed Feb 21, 2007 11:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Change Capture Stage
Replies: 9
Views: 2215

Hi Poorna,
What is the data in After DataSet? Is it the updated output or copy of merged output from funnel?
Do you have any date field from table getting generated at runtime during load or something??So that every time you get updated time, and the data found to be changed?
by kumar_s
Wed Feb 21, 2007 11:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to eliminate the thicked pipeline |
Replies: 30
Views: 6625

:lol: :lol: :lol: :lol:
venkycool ,
DSguru2B has quoted a famous quote from Brian Wilson Kernighan, who is a computer scientist who worked at Bell Labs.
Many new people around here thanking Brian instead of DSguru2B.
I was just kidding DSguru2B, that he is adding credit to Brian Wilson Kernighan by this.
by kumar_s
Wed Feb 21, 2007 11:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to eliminate the thicked pipeline |
Replies: 30
Views: 6625

You want add credit to Brian Kernighan, don't you?
by kumar_s
Wed Feb 21, 2007 11:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Output datasets via a command line
Replies: 10
Views: 3402

orchadmin utility with -dump option can be used to convert the dataset into sequential file.
by kumar_s
Wed Feb 21, 2007 11:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to eliminate the thicked pipeline |
Replies: 30
Views: 6625

That happens, if the ASCII file of DOS mode transfered in Binary mode to unix. Hence the /r will be displayed as ^M in Unix view. You can find the actual character using od -bc {filename}. The last character will be displayed in Hex as well as Ascii mode.
by kumar_s
Wed Feb 21, 2007 11:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to eliminate the thicked pipeline |
Replies: 30
Views: 6625

Do you think you can mark the topic as resolved.
by kumar_s
Wed Feb 21, 2007 10:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to eliminate the thicked pipeline |
Replies: 30
Views: 6625

Its because due the persence of ^M as Narashima noted. May be due wrong format in FTPing the file.
by kumar_s
Wed Feb 21, 2007 5:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datamodel
Replies: 2
Views: 1021

Starflake Schema - Combination of Star and Snowflake.
by kumar_s
Wed Feb 21, 2007 5:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Weird problem with Sequential File Stage
Replies: 26
Views: 5780

/ at the path isn't necessarily giving a problem.
Since a backslash is present in File path, it need to be quoted.
awk -F"," '{if( FILENAME != /dir1/dir/) ..... giving out the error that you have reported, where as awk -F"," '{if( FILENAME != "/dir1/dir") ..... is not.