Search found 4992 matches
- 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
- 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...
- 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 ...
- Wed Oct 26, 2005 7:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: difference
- Replies: 4
- Views: 927
- 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...
- 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 - 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
- Tue Oct 25, 2005 7:25 pm
- Forum: Site/Forum
- Topic: Write a Book!
- Replies: 40
- Views: 20404
- Tue Oct 25, 2005 7:18 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
- 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
Does this query work if you add
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- 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...
- 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
- Tue Oct 25, 2005 3:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequential file parsing.
- Replies: 5
- Views: 1004
- 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
- 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 ...