Search found 6797 matches

by DSguru2B
Mon Nov 27, 2006 8:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing SQL tabla from a seq file
Replies: 5
Views: 1170

It will take time but wont crawl. Load only the columns you need into the hashed file.
OR
get a temp table created in the same schema, and pass a join sql to get the values. That will be much faster.
by DSguru2B
Mon Nov 27, 2006 8:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execution of routine not happening
Replies: 7
Views: 1774

It will Craig. Just tested it out. After stage routine will fire regardless of the row count.
by DSguru2B
Mon Nov 27, 2006 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing SQL tabla from a seq file
Replies: 5
Views: 1170

Load the sql table into a hashed file and perform a lookup based on those two keys. This way for each key present in the sequential file, you will get its corresponding record in the sql table.
by DSguru2B
Mon Nov 27, 2006 8:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execution of routine not happening
Replies: 7
Views: 1774

You can run an after-stage subroutine in which you can check the rowcount or number of rows present in the sequential file and then pass the return value. Makes sense ???
by DSguru2B
Wed Nov 22, 2006 2:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: convertion from string to decimal
Replies: 1
Views: 701

What exactly do you mean. Give us examples.
Depends upon the precision. Divide by 100 for precision of 2, or 1000 for precision of 3 and so on.
Also specify the length and precision in the output sql type.
Regards,
by DSguru2B
Wed Nov 22, 2006 12:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserted value too large for column, row rejected.
Replies: 8
Views: 2846

chulett wrote:Right, it's not about the metadata but the actual contents of the field.


O boy. Good luck on that then.
I, once had that problem. But I could tell by looking at the source and target length. But then again, I guess, I was just lucky.
by DSguru2B
Wed Nov 22, 2006 12:57 pm
Forum: Site/Forum
Topic: Happy Thanksgiving.
Replies: 7
Views: 3599

O yea. Not true outside US. But for all our fellow US dsxians, once again, happy thanksgiving. And for our folks outside, bake a turkey anyways :wink:
by DSguru2B
Wed Nov 22, 2006 12:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird Character When copying file...
Replies: 17
Views: 4665

Ray,
when i copy pasted the box in a unix file, it showed up as ^Z in the vi editor before saving. Once saved, it disappeared showing a blank line, and hence my conclusion that it was control Z even at the unix level.
by DSguru2B
Wed Nov 22, 2006 12:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Record count in Transformer
Replies: 4
Views: 1740

Read in the help for DSGetLinkInfo().
by DSguru2B
Wed Nov 22, 2006 10:47 am
Forum: Site/Forum
Topic: Happy Thanksgiving.
Replies: 7
Views: 3599

Happy Thanksgiving.

Happy thanksgiving to all fellow dsxians. Go, enjoy, relax and have some turkey :P
Once again, this site rules, dsxians rule, and wanted to convey my regards to all.
by DSguru2B
Wed Nov 22, 2006 10:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database log
Replies: 5
Views: 1683

I guess, commit at regular intervals.
Truncate the table instead of delete.
If your data size is large, request your dba to increase the size. Thats not your fault, its just the data at your hand. Sorry to say but sometimes dba's can be a pain.
by DSguru2B
Wed Nov 22, 2006 10:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.SEQOpen Unable to create file B_C.txt
Replies: 14
Views: 5744

But, was there a link collector present in version 4 :roll: ?
by DSguru2B
Wed Nov 22, 2006 10:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird Character When copying file...
Replies: 17
Views: 4665

specify the constraint

Code: Select all

inlink.FIRST_COLUMN <> ""
by DSguru2B
Wed Nov 22, 2006 10:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database log
Replies: 5
Views: 1683

Are you referring to the transaction log?
You cannot turn that on/off from an ETL tool. That setting is at the database. Any logged acitivity you do (INSERT, UPDATE, DELETE etc), it will be logged in the transaction log.
Why does that conern you anyways?
by DSguru2B
Wed Nov 22, 2006 10:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird Character When copying file...
Replies: 17
Views: 4665

You have to specify that at the last column. I just tested it. The job runs fine.