Viewing 15 posts - 1,771 through 1,785 (of 3,011 total)
Something like this is likely to work
use master
kill 75 -- the connection to the database in single user mode
use [MyDatabase]
alter database [MyDatabase] set multi_user with rollback immediate
If that doesn't work,...
June 23, 2009 at 10:23 pm
Page Life Expectancy is fairly low at 270 seconds, so you might consider adding more memory to reduce the IO. For example, up it to 64 GB.
The Average Page...
June 23, 2009 at 3:45 pm
jeffrey yao (6/22/2009)
I think "no primary keys, no constraints of any kind, no indexes, all columns were nullable, and dates were stored in varchar(8) instead of datetime." really has little...
June 22, 2009 at 1:57 pm
steveb (6/22/2009)
Jeff Moden (6/22/2009)
jeffrey yao (6/20/2009)
Michael Valentine Jones (6/18/2009)
Matt Miller (6/18/2009)
..."What is normalization and why is it important?"...
Just say that “normalization” is theoretical nonsense that so-called gurus like Date and...
June 22, 2009 at 8:38 am
You need to investigate the queue length in more detail on a disk by disk basis. Are the the long queues for reads or writes? Are the long...
June 19, 2009 at 9:02 pm
Matt Miller (6/18/2009)
..."What is normalization and why is it important?"...
Just say that “normalization” is theoretical nonsense that so-called gurus like Date and Celko throw around to try to impress people,...
June 18, 2009 at 3:52 pm
I attended a public speaking class where the first thing they did was give us five minutes to prepare to give a five minute talk on “How great you are...
June 18, 2009 at 9:12 am
We do mainly web based applications, and assign a different Windows account for each web site. The users authenticate to the web site, and the web site account connects...
June 16, 2009 at 9:52 pm
You should check the growth size setting on your log file to make sure it is not set to a very large value or percent. If it is, set...
June 4, 2009 at 7:43 am
Jack Corbett (6/2/2009)
DECLARE @table TABLE (date DATETIME)
INSERT INTO @table (
date
)
SELECT
'20090112'
UNION ALL...
June 2, 2009 at 9:23 pm
select
Hours = datepart(hh,TimeEnd-TimeStart),
Minutes = datepart(mi,TimeEnd-TimeStart),
Seconds =...
May 29, 2009 at 12:54 pm
Will Summers (5/28/2009)
May 28, 2009 at 4:13 pm
I always add an index on a foreign key column. If you don't have an index on the foreign key, any join with the selection criteria on the parent...
May 27, 2009 at 8:31 am
See the responses posted to this same question on SQLTeam:
May 26, 2009 at 4:55 pm
If your problem is getting backups to fit on DVDs, you can backup to multiple backup files. SQL Server will split the data across multiple backup files that will...
May 26, 2009 at 3:02 pm
Viewing 15 posts - 1,771 through 1,785 (of 3,011 total)