Viewing 15 posts - 46 through 60 (of 178 total)
I removed a post relating to the Coalesce. Figured out I was being a dummy about it. Apologies.
Toni
November 12, 2008 at 8:08 am
Hi. Nice article. I enjoy a challenge to remove RBAR. Since I went ahead and made it, I'll add mine to the non-cursor alternatives with no...
November 12, 2008 at 7:34 am
Ooops... should have corrected the query for proper order of processing in the Where clause..
SELECT so.name as TableName,
case when si.indid=255 then 'Image_Text Info' when...
September 4, 2008 at 10:18 am
Here's another way to skin the cat which includes usage for Text/Image data
-- if you want to get the statistics updated, uncomment the next 2 Lines
--DBCC UPDATEUSAGE...
September 4, 2008 at 10:08 am
Matt, thank you very much for the explanation.
Toni
August 15, 2008 at 11:02 am
(** adding: in response to Charles **)
Hmmm.... I (re)read the article Jeff pointed to as the follow-up
Heh... it's been out for quite some time...
http://www.sqlservercentral.com/articles/Advanced+Querying/61716/
--Jeff Moden
and frankly...
August 15, 2008 at 9:06 am
I am not sure if this was covered somewhere in the numerous prior pages of discussion as I had a hard time going through all of them (pardon me if...
August 15, 2008 at 8:19 am
Since I went ahead and made the query which actually does provide the table and associated rowsize without cursors thought I would post it. (though I...
August 10, 2008 at 11:43 am
Thanks Jeff.
I was just looking through the code for the sp_MSforeach procedures (generated a Create for sp_MSforeachtable, sp_MSforeachworker and the sp_ MSforeach_worker) to see why the table one couldn't...
August 10, 2008 at 10:18 am
An alternative without cursor is:
Toni
August 10, 2008 at 8:37 am
You might want to determine if there might be any reason (legal requirements or self-preservation) to keep an archive of the deleted records in a separate database. This would...
June 26, 2008 at 6:10 am
If that is your Identity column, you would have to turn that off before making a change?
Toni
May 28, 2008 at 1:55 pm
I think this will do what you are after and will handle multiple updates.
Toni
--===== If the test table already exists, drop it
IF OBJECT_ID('mytable','U') IS NOT...
May 28, 2008 at 8:12 am
I would avoid using Checksum or binary or otherwise for uniqueness. It is not guaranteed to be unique as shown by this example I took from somewhere out on...
May 27, 2008 at 10:50 am
Viewing 15 posts - 46 through 60 (of 178 total)