Viewing 8 posts - 1 through 8 (of 8 total)
There is an urgent message in the bathroom at Redgate…
process #2 is being blocked by a lack of fiber.
April 16, 2019 at 12:06 pm
Hey GilaMonster - thanks so much for that article link. It's exactly what I was looking for 🙂
- Z
July 6, 2011 at 3:11 pm
Thanks for the feedback. I'm of the same mind. Smaller single purpose procs are much easier to maintain and re-use.
July 5, 2011 at 7:39 am
I know this topic is stale, but as long as your nText field is not too large, you can cast it as nvarchar and then use replace().
example
update testTable
set testNtext...
June 5, 2007 at 10:51 am
This is extra useful since SET ROWCOUNT affecting updates is going away in the next release of SQL. http://msdn2.microsoft.com/en-us/library/ms188774.aspx
May 21, 2007 at 7:41 am
First off, cool article
I'm also using SQL 2000, so instead of using sys.views I use:
IF object_id('Digits') is not null drop view Digits
Here is...
June 23, 2006 at 7:57 am
I inherited a datawarehouse which used two generic tables:
CREATE TABLE [typeGrp] (
[typeGrpId] [int] IDENTITY (1, 1) NOT NULL ,
[typeGrpDesc] [varchar] (40) NOT NULL ,
PRIMARY KEY CLUSTERED ([typeGrpId]),
UNIQUE...
September 27, 2005 at 7:59 am
Viewing 8 posts - 1 through 8 (of 8 total)