Search found 192 matches

by ds_is_fun
Mon Sep 24, 2007 2:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job control
Replies: 3
Views: 1718

Job control

What does Job control do?
by ds_is_fun
Mon Sep 24, 2007 12:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Balnks to Null
Replies: 1
Views: 611

Balnks to Null

How do I convert Blanks to Null? Thx
by ds_is_fun
Fri Sep 21, 2007 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KeyMgtGetNextValue & KeyMgtGetNextValueConcurrent
Replies: 9
Views: 4006

What exactly is the difference between the above two routines.
An eg would be really helpful.
thx
by ds_is_fun
Fri Sep 21, 2007 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KeyMgtGetNextValue & KeyMgtGetNextValueConcurrent
Replies: 9
Views: 4006

KeyMgtGetNextValue & KeyMgtGetNextValueConcurrent

I want to get rid of sequence, next val calling from dB.
I have just performed a test and seems like I can perform it from these Ds routines as in the subject.
What usage of these functions would help me make these work exactly like dB sequences.
Thanks
by ds_is_fun
Thu Sep 20, 2007 12:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Best architecture for 3 staging areas and 1 extraction param
Replies: 2
Views: 779

Best architecture for 3 staging areas and 1 extraction param

We have an architecture with 3 staging areas - data moves from source -> intermediate staging area -> transformed staging area -> data mart. Our extracts are based on a parameter "rundate". What is the best architecture to integrate this with DS job sequencer to automate the process, inste...
by ds_is_fun
Thu Sep 20, 2007 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML input
Replies: 1
Views: 789

XML input

Can we read xml files. I think it is xml input stage. If not is there any other way?
Thanks!
by ds_is_fun
Thu Sep 20, 2007 10:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read through views
Replies: 1
Views: 802

Read through views

Im sure you could read data off database views.
Isnt that right?
by ds_is_fun
Mon Sep 17, 2007 12:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Iconv convert non-alphanum characters to a space
Replies: 1
Views: 886

Iconv convert non-alphanum characters to a space

Iconv("John^CSmith^X1-234", "MCP") X = "John.Smith.1-234"
The above converts to a "."
How do I change it to a space?
by ds_is_fun
Sun Sep 16, 2007 9:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non-ASCII character conversion - best method
Replies: 2
Views: 898

Non-ASCII character conversion - best method

I understand that one of the way to trap and convert a non-Asii chanracted is using a convert function. This would check for identified non-Ascii characters in a list. Im not so happy with this. I wonder if there exists an ASCII function which would convert all non-ascii to a space/something. Pl. an...
by ds_is_fun
Fri Sep 14, 2007 3:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strip unwanted non-Alpha numeric characters
Replies: 2
Views: 1256

Strip unwanted non-Alpha numeric characters

I could use the Alnum function and reject unwanted characters coming in.
I want to use a dynamic function that would trim all occurrences of non-alphanum characters in a Trim function / or any.
Thanks!
by ds_is_fun
Mon Sep 10, 2007 1:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting @DATE, @TIME to timestamp for output to SQL SERVE
Replies: 7
Views: 2795

Re: Converting @DATE, @TIME to timestamp for output to SQL S

User has uploaded source data where - ColumnName-RUNTIME Input type - numeric(6,0) Example - 0 I need to load this into a target column whose type is Timestamp Length-23, Scale -3. Target dB- SqlServer format - yyyy-dd-mm hh:mi:ss Thanks! At the sametime if input column type is numeric (10) How to c...
by ds_is_fun
Mon Sep 10, 2007 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting @DATE, @TIME to timestamp for output to SQL SERVE
Replies: 7
Views: 2795

Re: Converting @DATE, @TIME to timestamp for output to SQL S

At the sametime if input column type is numeric (10)
How to convert the input to the format - YYYY-DD-MM HH:MM:SS using OConv?
Thanks!
gateleys wrote:

Code: Select all

Oconv(@DATE,"D-YMD[4,2,2]"):' ':Oconv(@TIME,"MTS")
by ds_is_fun
Mon Sep 10, 2007 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting @DATE, @TIME to timestamp for output to SQL SERVE
Replies: 7
Views: 2795

Converting @DATE, @TIME to timestamp for output to SQL SERVE

Im trying to convert @DATE::@TIME to timestamp for output to sql server. Sql Server datetime format is yyyy-mm-dd hh:mm:ss So, far I was able to convert to below Oconv(@DATE,"D YMD"):' ':Oconv(@TIME,"MTS") which outputs to - 2007 9 10 09:37:06 Whats the Oconv function to convert ...
by ds_is_fun
Fri Sep 07, 2007 12:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automizing parameters to job sequence
Replies: 3
Views: 1387

I think the best way to get a job param file running for your DS job is by using a getjobparam routine in a before job routine.

Is that the best way? Or can we point to a param file and run the job by scheduling it through director?