Search found 5168 matches

by kumar_s
Thu Feb 22, 2007 4:37 pm
Forum: Site/Forum
Topic: DSGuru2B in 4000 post!!!
Replies: 6
Views: 3278

DSGuru2B in 4000 post!!!

The last update for 3K post is on Jan 25th, and now on 4K.
Great job!!!!
Way to go...
by kumar_s
Thu Feb 22, 2007 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to eliminate the thicked pipeline |
Replies: 30
Views: 6625

ray.wurlod wrote::!: Briak Kernighan is the "k" in "awk" - Aho, Weinberg and Kernighan.

Interesting :!:
by kumar_s
Thu Feb 22, 2007 4:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to view data on PX on windows 2000 professional
Replies: 8
Views: 2249

No, you cannot do many things. Compilation is a function done by the compiler which resides in the Server. You can just install client in your PC. If you are looking for some stages, you can install it from your client CD. First of all, the stages to communicate, it should have a server in unix. Say...
by kumar_s
Thu Feb 22, 2007 3:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to view data on PX on windows 2000 professional
Replies: 8
Views: 2249

7.5x2 is the only Windows supported in Datastage as of now.
by kumar_s
Thu Feb 22, 2007 3:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validation of a time column
Replies: 12
Views: 2034

Would you mind marking the topic as resolved.
by kumar_s
Thu Feb 22, 2007 2:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not Able to view the Oracle Table Data
Replies: 3
Views: 1535

The schema name that you have specified in the designer is not available in tnsnames.ora. If you are passing it as any parameter, check it by hardcoding it.
by kumar_s
Thu Feb 22, 2007 1:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database stage
Replies: 3
Views: 728

No, not available in Database stages.
by kumar_s
Thu Feb 22, 2007 1:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help in Row Generator
Replies: 12
Views: 2456

Peek is to check if the output from row gen is as expected.
by kumar_s
Thu Feb 22, 2007 1:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help in Row Generator
Replies: 12
Views: 2456

Or
Peek
^
|
row gen---copy--xml input--dataset?
by kumar_s
Thu Feb 22, 2007 1:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validation of a time column
Replies: 12
Views: 2034

I tested with the same input "00:/9:10", it gave me the output as 1. Pls do change and Hr >=00 rather than and Hr >=01 (typo).
by kumar_s
Thu Feb 22, 2007 1:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help in Row Generator
Replies: 12
Views: 2456

Use Peek stage next to Row generator to check the values that been output. But the way, Folder stage is not analogous to Row Generator in PX? :roll:
by kumar_s
Thu Feb 22, 2007 1:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Weird problem with Sequential File Stage
Replies: 26
Views: 5780

Under the General Tab, you might use Filter command to this, are you using /dev/null in "File Name" option?
by kumar_s
Thu Feb 22, 2007 1:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database stage
Replies: 3
Views: 728

You can use different stages in same job, but not different metedata in same Stage at runtime. Datastage is Metadata driven, hence, you need to specify the metadata will before the job is complied. There are few option like schema file and RCP, where you can have flexibility to change the Metadata.
by kumar_s
Thu Feb 22, 2007 1:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date calculation
Replies: 2
Views: 740

There is, but you should have done a search before that. Last date of the previous month - DateFromDaysSince(-1, StringToDate(RUN_DT, "%yyyy%mm") : "%yyyy-%mm-%dd") And First day of the previous month - StringToDate('01':MonthFromDate(RUN_DT,"yyyy%mm%...
by kumar_s
Thu Feb 22, 2007 12:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validation of a time column
Replies: 12
Views: 2034

Instead of >- use >=. Hr <24 and Hr >=01 and Mn<60 and Mn >=0 and Sc <60 and Sc >=0 Yes, Iconv is actually converting the given input values into valid time. The input 25:60:60 is getting converted into 02:01:00. The hour greater that 24 is added to next day and minute to next hour. MTS can be use f...