Viewing 9 posts - 1 through 9 (of 9 total)
Now, after trolling through some system tables, I come to find out that this was a snapshot backup. We do not do snapshots. How could this have just...
November 7, 2008 at 2:51 pm
Also, in case it matters for the solution, the replication components were not even installed for this instance. I do see replication system stored procs in master though. ...
August 15, 2008 at 9:44 am
I usethe following to KILL all connections to a given DB. Might be overkill for what you need.
CREATE PROC dbo.smKillUsersInDB
@DBName VARCHAR(20)
AS
SET NOCOUNT ON
DECLARE
@ID INT
,@MSG VARCHAR(10)
WHILE 1 =...
August 14, 2008 at 3:05 pm
Understood about it being a VIEW. I am just impressed with the efficiency. Seems to return data for all indexes much quicker than a DBCC SHOWCONTIG.
August 14, 2008 at 11:39 am
Well the standard answer to that question is, "it depends". This is a very broad question. At a minimum, you need to run a combination of sp_who2 and...
August 14, 2008 at 10:33 am
If it opens sometimes and not others than I would guess that the second part of the error "timeout elapsed" is the more relevant piece. Are you having performance...
August 14, 2008 at 10:16 am
Sorry for asking the obvious, but do you have enough permissions?
August 14, 2008 at 9:41 am
Well if the database is already created you can shrink it either through SSMS or TSQL. If you want all future databases to be created at a certain size,...
August 14, 2008 at 8:55 am
Understood, but talk about trying to reinvent the wheel!
Any administration of the DB must be done by a means other than normal SQL Server processes, which likely means...
August 13, 2008 at 10:05 am
Viewing 9 posts - 1 through 9 (of 9 total)