Viewing 15 posts - 1 through 15 (of 21 total)
SELECT *
FROM Temp_BigTable
WHERE SSN + PKT + FICE_NBR
NOT IN (
SELECT SSN + PKT + FICE_NBR
FROM shi.raw33
)
December 11, 2013 at 6:58 am
The SSN is stored as a MD5 hashed value.
The combination of SSN, PKT and FICE_NBR in table A does not have a match on the combination of SSN, PKT and...
December 11, 2013 at 6:50 am
I forgot to mention that I need to exclude duplicate rows from the result set.
Thanks.
December 9, 2013 at 1:14 pm
Thank you all for your replies. I have implemented this and it is working great!
May 17, 2013 at 7:04 am
Thanks. I am all set.
January 3, 2013 at 2:01 pm
Forgive my ignorance, as this is something new for me.
I performed a backup of a database consisting of a single mdf and ldf (the backup file has a .bak extension).
I...
October 11, 2012 at 7:42 am
I am the only user that does inserts / updates/ deletes to the table.
All of the other users can only do SELECTs against the table....so this means that I can...
June 15, 2012 at 1:46 pm
So if I am the owner of the table, can I drop it even if users are trying to query against it?
If I can't drop it in this case, how...
June 15, 2012 at 1:29 pm
Lynn's code worked! Thanks Lynn. Consider this topic closed.
May 23, 2012 at 2:10 pm
Thank you all for your posts. I believe that I have all of the information that I need to proceed. You may consider this topic closed.
February 27, 2012 at 7:08 am
No. Now that I understand this I don't care how the data is stored.
Again, thank you all for your responses. You may consider this closed.
February 21, 2012 at 8:49 am
Thank you for your responses. Your help is greatly appreciated.
February 21, 2012 at 8:40 am
There actually is a clustered index on the TIME_STAMP column, and as you saw in the insert statement in my post I am using an ORDER_BY. So what you...
February 21, 2012 at 8:26 am
Viewing 15 posts - 1 through 15 (of 21 total)