Search found 42189 matches

by chulett
Wed Dec 21, 2011 8:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector or Enterprise stage
Replies: 2
Views: 2725

The Connectors are what you should be using. All of the other stages have been 'deprecated' and for all we know IBM will drop support for them in a future release.
by chulett
Wed Dec 21, 2011 8:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQ Client Setup
Replies: 2
Views: 1701

Have you read the docs on the MQ Connector stage? I would imagine it replaces the pieces you think are missing.
by chulett
Wed Dec 21, 2011 7:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding week and Month from Number
Replies: 15
Views: 5463

If there is a consistent number of days they consider to be a 'month' then a mod() is a simple solution. The example is a little... odd... to me as the first 31 days are considered a month, then 28 then 29 and then who knows. :?
by chulett
Wed Dec 21, 2011 7:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Clear a big table then insert rows
Replies: 15
Views: 5067

Just Ray. :wink:

I've seen how the documentation calls it Job Sequence or Sequencer Job interchangeably so it doesn't really bother me as long as you include 'job' in there... there is a Sequence stage after all.
by chulett
Wed Dec 21, 2011 7:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding week and Month from Number
Replies: 15
Views: 5463

Sure seems like a Mod() might come in handy here...
by chulett
Wed Dec 21, 2011 7:37 am
Forum: General
Topic: Add two add two variables in loop
Replies: 8
Views: 2468

It's helpful to present multiple options especially when the requirement is not clearly defined. I don't know what to make of the suggestion of using a loop. I actually find it annoying. Seriously. :wink: Usually the answers are all over the place and the vast majority are irrelevant. I prefer to g...
by chulett
Tue Dec 20, 2011 8:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ignoring message with bad cookie. Has anybody seen this?
Replies: 19
Views: 10814

You might want to throw in a "grep -v grep" for good measure. :wink:
by chulett
Tue Dec 20, 2011 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executing SQL Server Stored procedure inside ODBC stage
Replies: 13
Views: 5411

It may not natively support them, but any stage should be able to execute one in its OPEN/CLOSE or Before/After SQL areas.
by chulett
Tue Dec 20, 2011 3:13 pm
Forum: General
Topic: Understanding the expression USING _spVV0 (DATE)LOCKING TABL
Replies: 1
Views: 799

That's not a DataStage question, can you take it to your Teradata DBA?
by chulett
Tue Dec 20, 2011 8:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NullToValue
Replies: 5
Views: 1846

Read Eric's post.
by chulett
Tue Dec 20, 2011 8:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading SAS dataset(sas7bdat format)using SAS Parallel DS
Replies: 6
Views: 3205

There are not a lot of SAS related postings here, especially lately. You may need to hit up your official support provider for this.
by chulett
Tue Dec 20, 2011 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NullToValue
Replies: 5
Views: 1846

An empty string "" is not the same as null. Sounds like you need to explicitly check for that.
by chulett
Tue Dec 20, 2011 8:15 am
Forum: General
Topic: Unix command for clearing datastage job logs.
Replies: 5
Views: 4923

Or that. :wink:
by chulett
Tue Dec 20, 2011 7:46 am
Forum: General
Topic: Unix command for clearing datastage job logs.
Replies: 5
Views: 4923

You are missing the job number from the clear command. Each job has a unique number assigned to it that all of the internal structures are tagged with: CLEAR.FILE RT_LOG1234 You can get the number by querying DS_JOBS: SELECT JOBNO FROM DS_JOBS WHERE NAME = 'YourJobName'; I'm not aware of any command...
by chulett
Mon Dec 19, 2011 10:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CLOB dbms_lob.substr ORA-01461
Replies: 12
Views: 7254

No... setting it bigger just means DataStage will allow it to 'overflow' and get rejected by Oracle if anything turns out to not fit. And the limit is in bytes, not characters.