Search found 21 matches

by lclapp
Fri Jun 16, 2006 1:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: including reason of rejection of row in reject file
Replies: 8
Views: 2900

My assumption is that you are writing to a RDMS. If so then the reject reasons are available for each record if you utilize the reject link. You can get the DBMSCODE, LASTERR,REJECTEDCODE and SQL State.
by lclapp
Wed Apr 12, 2006 9:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC32 Does have limitations (severe in my opinion)
Replies: 26
Views: 16845

Thanks for all the suggestions...none of them worked. We finally wrote and active X plug in using the MD5 algorithm which resulting in no more duplicates. It was reasonably fast and after our initial load the deltas were very small. Again the 'official' word from DS support is that CRC32 will produc...
by lclapp
Fri Mar 03, 2006 4:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC32 Does have limitations (severe in my opinion)
Replies: 26
Views: 16845

We may want to break this into another thread because the I have been burned when not using column seperators. Padding is something I have never been forced to do...but there is always something new. Yes, I am still in Las Vegas...if I don't get this fixed I may not be here for much longer. Flying h...
by lclapp
Fri Mar 03, 2006 1:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC32 Does have limitations (severe in my opinion)
Replies: 26
Views: 16845

If you don't put a some qualifier then you run the risk of getting the same CRC32 results(!!???) for different rows...ie 123 in col1 and 4 in col2 (123,4) should be different than 12 in col1 and 34 in col2 (12,34).
by lclapp
Fri Mar 03, 2006 12:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC32 Does have limitations (severe in my opinion)
Replies: 26
Views: 16845

1,2005-08-19 13:17:10.883,18527139,CDS_REDEMPTION,1179677,+,1
1,2005-08-29 10:48:50.470,18776558,CDS_PLAYER,144612819,+,1

Both results in CRC value of 160456061

So the '|' is not the problem.

leslie( BTY just for those who don't know I am MWM better looking than Dennis or Mr. Ray or Mr. Duke.....)
by lclapp
Fri Mar 03, 2006 12:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC32 Does have limitations (severe in my opinion)
Replies: 26
Views: 16845

I have a 6 million row input which results in over 2000 CRC32 duplicates. What you will find interesting is that if you start removing data from my supplied examples you will finally get unique answers...more is not better. CRC32 has been around forever. I find it hard to believe that the DS communi...
by lclapp
Thu Mar 02, 2006 5:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC32 Does have limitations (severe in my opinion)
Replies: 26
Views: 16845

CRC32 Does have limitations (severe in my opinion)

Per DataStage customer support:javascript: "The CRC32 function in DataStage does support character strings above 32 bits. There is a limitation on checksums to determine duplicate strings and it can return duplicate values." I have several tables which do not have any keys assigned. I buil...
by lclapp
Wed Feb 15, 2006 12:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Track ups and downs of DataStage Services
Replies: 4
Views: 1858

DS Services log file.

I am not positive that we had any jobs running last night. I will check the projects as suggested. I am suprised that the log, if there is one, would be in a specific project. What if you have jobs running from several projects. leslie
by lclapp
Wed Feb 15, 2006 11:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Track ups and downs of DataStage Services
Replies: 4
Views: 1858

Track ups and downs of DataStage Services

So you come in this morning and the DataStage Services are stopped...All you can find is the 'Not ME' ghost present. Is there any log kept showing when the DS Services are started and stopped?
by lclapp
Tue Oct 11, 2005 9:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check for open file before processing.
Replies: 3
Views: 2033

File open testing using Folder stage

I will take a look at fuser. Doing more testing with the Folder stage I found that if a file in the folder is open with an editor package, in this case UltraEdit; running the job will result in the filename being passed to the transformer. Since my files are quite large, 25+ meg or greater, I found ...
by lclapp
Mon Oct 10, 2005 6:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check for open file before processing.
Replies: 3
Views: 2033

Check for open file before processing.

The folder stage gives me the filenames of the MSSQL log files. But I need some way to determine if a file is still be dumped to by the MSSQL logger. Does anyone have any suggestions for checking to see if a DOS file is open before beginning to read from it. I have tested with the Folder stage and I...
by lclapp
Mon Oct 10, 2005 6:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem With Comma Separated File
Replies: 10
Views: 3511

If the comma is always in the same field the then Ereplace function would be one way to make the comma a space. Also I try to never utilize a comma as the separator unless I have no choice. Using a | (pipe) and no "'s seems to keep DS Server happy.
by lclapp
Tue Jul 26, 2005 9:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Flat File as intermediate vs Hash Table; which may be faster
Replies: 8
Views: 4049

Flat File in between is better...???

I am running a test as I type....The current 'best' appears to be to drop a FF between the read from DB2 and write to DB2. If I have say 5 million rows to process it will be faster to drop to a ff before beginning the load to DB2. I can't use the bulk loader because the DB2 is on the mainframe. At f...
by lclapp
Mon Jul 25, 2005 9:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Flat File as intermediate vs Hash Table; which may be faster
Replies: 8
Views: 4049

I agree with your reponse. I just walked into this account today and was told that was the reason for landing the data in the job. I will post some more information once I dig a bit deeper.

leslie
by lclapp
Mon Jul 25, 2005 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Flat File as intermediate vs Hash Table; which may be faster
Replies: 8
Views: 4049

Flat File as intermediate vs Hash Table; which may be faster

I am reading and writing to the same mainframe/DB2 table using the DSDB2 stage. The only way I have been successful is by utilizing an intermediate file. I wondered if any users have tried using a hash table instead of a Flat file as in intermediate file. Is there any performance improvements using ...