
March 3rd, 2005, 02:18 AM
|
|
Contributing User
|
|
Join Date: Feb 2005
Posts: 33
Time spent in forums: 4 h 23 m 44 sec
Reputation Power: 6
|
|
|
Strings and Numbers with SQL
Could I possibly start anymore threads about the same piece of code. Well the answer is yes.
I have the code running now and it works beautifully. It updates and inserts when it should and what not.
Now, I am trying to optimize it because I any changes I make to it will make it run significantly fast. Here is the problem:
I am running the script against the same file every time so after the first run through, the next run should not have any inserts or updates in them because they should have been taken care of the first time around. And they are. However, it is still doing updates. But what is weird is that it is updating the same value over and over. For example:
Index: 34
DRN: Change from 0 to 0
UPDATE Sheet1 SET Delivery_Route_Number= 0 WHERE Member_Number=578502689;
DRN: Currently is 0 = 0
The first DRN says what it is before the change and what I am changing it to. The second DRN says after the change and what I was changing it to. I printed these characters out in ASCII form and they are all the same. I don't understand why it is doing this. I think it might have to do with the database wanting a number field and this is a string. But it doesn't do this on other number fields. Just this one and like 2 others (1 is a date field).
So any thoughts on how to fix it?
Last edited by lokisapocalypse : March 3rd, 2005 at 02:21 AM.
Reason: Code was illegible
|