Search found 4992 matches

by kcbland
Wed Oct 26, 2005 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do I configure for multiple network interfaces on SMP?
Replies: 27
Views: 9063

I don't think Ray quite understood your original issue. I believe you've answered your own question anyway and just needed some confirmation. I believe you are correct, there is no configuration ability within the config file. I believe PX is network ignorant.
by kcbland
Wed Oct 26, 2005 8:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project Variable
Replies: 7
Views: 2026

Environment variables have to be setup in the job as job parameters. As for getting any variable into a subroutine (I assume you mean before/after transformer/job subroutine call) you have to pass it as the argument. Your subroutine needs to get it from the argument. Otherwise, you will need to do a...
by kcbland
Wed Oct 26, 2005 7:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File update
Replies: 5
Views: 1487

Just choose disable read caching on the reference and don't select write caching to the hash file. Now every row is immediately written and available to read. Don't mess with the locking, you can get yourself into trouble if you are not totally understanding how hash files and locking work. There's ...
by kcbland
Wed Oct 26, 2005 7:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: difference
Replies: 4
Views: 927

Basic difference: TX is a different product specific to realtime processing, purchased by Ascential from Mercator and incorporated into the tool set. Server is the original batch ETL tool developed by VMark/Ardent, and PX is the high-volume batch ETL tool acquired from Torrent.
by kcbland
Wed Oct 26, 2005 7:12 am
Forum: Site/Forum
Topic: Write a Book!
Replies: 40
Views: 20404

You can take the bitmaps in your client directory and modify them to taste. That gives the appearance on the outside of a different product, but when you drill in to every stage it gets tedious. Making your own graphics is great, but it looks really lame and is a lot of work. It's just a pathetic is...
by kcbland
Wed Oct 26, 2005 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid date value in Teradata
Replies: 9
Views: 10131

No, I said "add", so your WHERE clause would be:

Code: Select all

where (t1.dt_id >= '2004-07-31' and t1.dt_id <= '2005-07-31') 
and t1.dt_id > 1721424
by kcbland
Tue Oct 25, 2005 7:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maintaining a oracle session across different OCI stage/Job
Replies: 3
Views: 996

You can't span transactions across separate OCI stages, much less OCI stages across jobs in one single commit. The best method left to you is to load work tables and then use an SP call to merge the data and commit.
by kcbland
Tue Oct 25, 2005 7:25 pm
Forum: Site/Forum
Topic: Write a Book!
Replies: 40
Views: 20404

I'm sure IBM wouldn't mind, but you're still dealing with Ascential. Just to get approval, how much editorial/final say rights will you have to sign away?
by kcbland
Tue Oct 25, 2005 7:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid date value in Teradata
Replies: 9
Views: 10131

Disclaimer: I know nothing of Teradata SQL

I'd guess the t1.dt_id casts from a julian date to a char for this comparison

Code: Select all

where 
(t1.dt_id >= '2004-07-31' and t1.dt_id <= '2005-07-31')


Does this query work if you add

Code: Select all

and t1.dt_id > 1721424
by kcbland
Tue Oct 25, 2005 6:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid date value in Teradata
Replies: 9
Views: 10131

What does the date matter? Isn't the point that the date is unusable because it's so old? Use an integer comparison to validate that the date is reasonable, I'm sure you can pick an arbitrary point in time, say 1500-01-01 and go forward from there. Just reverse that to the integer julian value and i...
by kcbland
Tue Oct 25, 2005 3:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Truncating last char in insert to varchar field in MS SQL
Replies: 12
Views: 3351

Cold!!! The storm blew south of Tampa, sucking cold weather our way. It topped out at 70F today. I can't wait for it to get back to 85F. 8)
by kcbland
Tue Oct 25, 2005 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file parsing.
Replies: 5
Views: 1004

Just a few stage variables and a couple of constraints in the transformer will do the trick. Once your condition is met, the stage variable should update to reflect that the condition is met. Use that stage variable as a constraint on the other output links.
by kcbland
Tue Oct 25, 2005 3:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Truncating last char in insert to varchar field in MS SQL
Replies: 12
Views: 3351

I mistyped, I meant the transformer. I went back and fixed it, but you must have read it too quick. Give it a shot and see if that fixes the problem. Datatype discrepancies between databases have to be adjusted, I suspect that not at VARCHARs are created equal.
by kcbland
Tue Oct 25, 2005 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Truncating last char in insert to varchar field in MS SQL
Replies: 12
Views: 3351

Have you tried spooling to a sequential file as well to see if the results are the same? I suspect that the straight link between stages is introducing some issue with the metadata compatibilities. You see, if you import the metadata for the source and target separately, you're only allowed one set ...