Viewing 15 posts - 856 through 870 (of 1,033 total)
Running them all on 1433 is fine.
The reason it doesn't default to that is that when you install the instances on a cluster they're named instances and by default named...
June 8, 2009 at 1:09 pm
john.moreno (6/8/2009)
Tao Klerks (6/8/2009)
john.arnott (6/8/2009)
Hmm... could this be why so many people post to the thread without (apparently) reading anything that has gone before? Could/should the site implement a "negative...
June 8, 2009 at 12:43 pm
Try this on.
While BOL says that it's +2 to store it, but that refers to in memory storage as well.
try this on.
declare @char char(1)
declare @varchar varchar(1)
declare @nchar nchar(1)
June 5, 2009 at 12:21 pm
Josh Turner (6/5/2009)
June 5, 2009 at 9:10 am
FreeHansje (6/4/2009)
I have to get involved into SQL2K5 Failover Clustering. I've read-up on the subject and miss some specific info on how things actually work. I don't need an installation...
June 5, 2009 at 7:56 am
I love varchar/nvarchar, but for a 1 character field of undertermined character set the only possible answers should be either char(1) or nchar(1). Varchar has no place in a...
June 5, 2009 at 7:47 am
This is an old one... but...
I've got a single maintenance plan setup on each of my servers.
Each plan has several Sub-plans and each sub-plan does one task, each with their...
May 19, 2009 at 8:42 am
george sibbald (5/5/2009)
I would feed the results of dbcc sqlperf(logspace) into...
May 5, 2009 at 11:39 am
Is there a way to setup a general alert when any database on the system reaches a certain log % full?
I'd love to do this... but I've got 2000 databases...
May 5, 2009 at 10:01 am
That helps a ton...
That coalesce function... what doesn't it do? 🙂
although I wound up with this... which seems to run faster.
CREATE TABLE #process_dbs(
dbname sysname,
alreadyprocessed int)
sp_msforeachdb 'USE [?];declare @reccnt int;select...
April 7, 2009 at 9:29 am
Nevermind... this was answered by those who do things better than I 🙂
April 3, 2009 at 3:16 pm
Viewing 15 posts - 856 through 870 (of 1,033 total)