Viewing 15 posts - 1,156 through 1,170 (of 1,473 total)
If anyone does do any testing of these methods, please post the results to this thread. I'm curious as to the outcome of this. Otherwise, I'll try...
November 6, 2008 at 8:18 am
I'm referring to basic data cleansing. For example
The first query will show you that Michael Jordan has a name Mismatch with Mike Jordan based on DOB and Zip Code....
November 6, 2008 at 8:02 am
Do you not have any unique identification field for the patients? Usually in cases such as these, you would have a unique identifier such as PatientID, or PatientNumber that...
November 6, 2008 at 6:01 am
If you're asking how to ensure that updates coming from different sources go through one at a time, you can use transactions. That said, I don't believe you need...
November 6, 2008 at 5:49 am
In case anyone else is wondering after reading this (I was and decided to look it up rather than ask), here's how triggers that perform inserts affect these:
From BOL:
SCOPE_IDENTITY and...
November 5, 2008 at 7:10 pm
Yeah, I was 90% sure it wasn't before, and now I'm almost positive it's not. It made no sense that it would be, I just couldn't understand how the...
November 5, 2008 at 1:37 pm
Lack of Quotes.
select * from universal where name = 'drill size ''9X10'''
November 5, 2008 at 12:37 pm
I'm fairly sure you can't do what you're trying to do because executing your dynamic sql will open a new connection under which the virtual inserted/deleted tables do not exist....
November 5, 2008 at 10:01 am
I want to update a record, if the record count of another table equal to 1. How can i achieve this.
...
November 5, 2008 at 5:51 am
Getting back to this, the problem is now resolved. I'm still not sure what the issue was precisely, but today, to fix some other issues I was having, I...
November 4, 2008 at 3:46 pm
ramadesai108,
How many rows in your final result set? 45 minutes seems like an awfully long time. Also, what is that case calculation supposed to show? ...
November 4, 2008 at 2:15 pm
Cursory attempt to stop the thread from falling into the gutter = failure. 😉
November 4, 2008 at 1:36 pm
This is integer arithmetic. ItmRecvdYR1 - ItmRecvdYR2 is less than ItmRecvdYR1, ie (10 - 5) / 5 = 0.
By multiplying one of the values in this part of...
November 4, 2008 at 1:34 pm
Viewing 15 posts - 1,156 through 1,170 (of 1,473 total)