I have to import data from a paradox database into a newly created WPF / SQL-Server application. I have sucessfully imported the necessary paradox-data into Access and now are writing a utility that converts the the data and imports it into SQL Server.

Now I have the problem that the paradox primary-keys seem to be case sensitive. This leads to the proplem that I have records with a Primary Key "Au" and other recors with the primary Key "AU" and they are not the same.

Now I search for a possibility to write Update scripts in Access so that I can write

UPDATE [TABLE_NAME] SET [PKFIELD]="Au1" WHERE [PKFIELD]='Au'

that only affects the rows with [PKFIELD]='Au' and not the rows with [PKFIELD]='AU'

Is there a function I can use for this or how can I achieve this.

link|improve this question

1  
Why the downvote? The question is definitively about programming. Please make a comment if you downvote, so that the post owner knows what he has done false. If it is the fact that I have found the answer myself, would you recommend that I delete the question? I think for another person searching for the same thing, this post would be helpfull, that's why I posted the solution and did not delete the post. However I don't know if this is a no go on SO. Please inform me about that. – HCL Jan 20 '11 at 11:01
3  
I don't see a justification for the downvote. It sure would be nice if downvoters explained their reasoning. Just speculating ... maybe it was because you supplied your answer so soon after asking the question. You could avoid that by waiting longer to post an answer to your own question. – HansUp Jan 20 '11 at 16:26
1  
It is a useful question as far as I can see, and SO is a wiki, not a question and answer forum, so there is no reason why you should not ask a question even if you already know the answer. – Remou Jan 20 '11 at 16:33
feedback

1 Answer

up vote 2 down vote accepted

Ok, I was a little bit fast in asking SO. I have found the answer myself:

UPDATE [TABLE_NAME] SET [PKFIELD]="Au1" WHERE StrComp([PKFIELD],'Au', 0) = 0
link|improve this answer
1  
Your WHERE clause would be more efficient if it were: WHERE PKFIELD Like 'Au*' AND StrComp([PKFIELD],'Au', 0) = 0. The reason is because the first condition will use the index to reduce the number of records being compared with StrComp(). Without it, it will have to run StrComp() on every row. – David-W-Fenton Jan 20 '11 at 23:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.