Search found 42189 matches

by chulett
Thu Feb 26, 2009 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic file write stage.
Replies: 8
Views: 2447

That's neither a short nor simple subject. Why not track down whomever wrote that one of yours and have them tutor you?
by chulett
Thu Feb 26, 2009 7:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem
Replies: 7
Views: 2006

if its doing update and insert mean it will take more time to process, Oracle bulk load doesnt support this. It does, to some extent, with a conventional (DIRECT=FALSE) load. But you're correct about the performance over the duration of the load. Any of those 'combo' Update Actions are a crutch, IM...
by chulett
Thu Feb 26, 2009 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem
Replies: 7
Views: 2006

The DRS stage set to 'Oracle' is functionally equivalent to the OCI stage, so there's no gain from switching. And it doesn't take the place of a bulk loader any more than OCI does.
by chulett
Thu Feb 26, 2009 12:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert date value into SQL Server datetime columm
Replies: 31
Views: 22296

I've used the Sybase stage (singular) and, since it requires the Sybase OC to work, I made the assumption it couldn't somehow be finageled into also working for SQL Server. Could be wrong. [shrug] I didn't pick up on your use of the plural, so didn't take any other stages into consideration and will...
by chulett
Wed Feb 25, 2009 10:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert date value into SQL Server datetime columm
Replies: 31
Views: 22296

As Ray noted, DataStage ships with a Data Direct wire driver for SQL Server which is what I used when I needed to interface with that source. Sure, that's still ODBC and you still need to do all the normal configuring like you would for any other ODBC source, but it's a 'source specific' driver and ...
by chulett
Wed Feb 25, 2009 9:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert date value into SQL Server datetime columm
Replies: 31
Views: 22296

Re: Insert date value into SQL Server datetime columm

After a bit of hacking, I've deduced that TO_DATE must be an internal DataStage function that converts the string to the proper format for the target database. TO_DATE isn't a SQL Server function, although I've used it before on Oracle projects. No, TO_DATE() is not anything internal to DataStage, ...
by chulett
Wed Feb 25, 2009 9:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert date value into SQL Server datetime columm
Replies: 31
Views: 22296

Kryt0n wrote:Could the Sybase stages be configured to access SQL Server?
No.
by chulett
Wed Feb 25, 2009 9:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert date value into SQL Server datetime columm
Replies: 31
Views: 22296

Mike wrote:Which means that even though you're using the DRS stage, you are probably still talking to SQL Server through an ODBC interface.
That depends entirely on the 'Database type' setting, it supports both ODBC and MSSQL Server. The OP hasn't specified which they are using.
by chulett
Wed Feb 25, 2009 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can identify invalid duplicates?
Replies: 10
Views: 2596

"When field1 is a duplicate the data in field2 should have the same value" - as what, the first key value found? :?

What would be your expected output for this input:

001 AAA
001 AAA
001 AAA
001 BBB
001 BBB
002 BBB
002 CCC
002 CCC
002 AAA
by chulett
Wed Feb 25, 2009 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can identify invalid duplicates?
Replies: 10
Views: 2596

:? Confusing. Do you only want the records that are not duplicated within the file?
by chulett
Wed Feb 25, 2009 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strip Chars at the end and not in middle
Replies: 9
Views: 3241

uegodawa wrote:First it will remove comma subsequently remove all alphabetic characters.
Reread the requirements - trailing alpha characters only. Apparently up to three max. As Ray noted, we really need a more complete specification.
by chulett
Wed Feb 25, 2009 2:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set Project to Compile before execute
Replies: 37
Views: 9234

No, we've been discussing the way to reset a job. However, that's what your job control should be doing before it runs the job as the job can't do it to itself. :?
by chulett
Wed Feb 25, 2009 12:54 pm
Forum: General
Topic: Is DataStage 7.5.0 Compatible with Oracle 10g release 2?
Replies: 4
Views: 1371

Yes.
by chulett
Wed Feb 25, 2009 12:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set Project to Compile before execute
Replies: 37
Views: 9234

Of course. Why would you need to reset a running job? This is something one job would do for another, not for itself. :?
by chulett
Wed Feb 25, 2009 12:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abort Sequence But Complete All Jobs First
Replies: 1
Views: 1075

Ah, yes, that post. Seems like you'll need to set some kind of indicator, something you can check on later, to see if any jobs had problems and the Sequence itself should be aborted as a result. And then check on that 'indicator' after job and if found or set, issue the abort there. Perhaps that's a...