Viewing 15 posts - 3,556 through 3,570 (of 7,496 total)
abhishek.c1984 (7/22/2009)
So before going ahead, i need to close the active connections and then proceed further.......So, in such cases is it possible to make forced backup and...
July 22, 2009 at 6:59 am
with Sp_lock it will provide you the spid that has the lock.
To get to see the last statement that spid is executing,
select est.text
FROM sys.dm_exec_sessions ES
left join sys.dm_exec_requests ER
on...
July 22, 2009 at 5:52 am
Which driver are you using ?
Are you (or the driver by default) using implicit transactions ?
A backup/restore operation cannot be incapsulated with a transaction.
If a restore fails, the db...
July 22, 2009 at 5:28 am
be sure to implement FK-indexes for the columns KeyWorkerId and CoWorkerId.
July 22, 2009 at 3:45 am
maybe you can even skip the isAgency column.
...AgencyName,
IsAgency ...
Implement a constraint to check on the combination coworkerid and agencyname
if coworkerid not is null, agencyname must be null
and the other way...
July 22, 2009 at 3:16 am
Things like dbmirroring, dbMail, or Service broker may cause msdb to grow.
e.g.
SELECT @@servername as Q_001_MSDB, COUNT(*) as nRows from msdb.sys.transmission_queue ;
July 22, 2009 at 2:06 am
I have only done some tests with DBmirroring.
I don't have actual experience with many mirrored databases of the same insatnce.
I just wanted to let you know MS customer advisory team...
July 19, 2009 at 11:20 am
I was just checking my mail and had a couple of minutes spare for SSC :hehe:.
Most of the times mail and SSC come together.
Have a nice (remaining)weekend.
July 19, 2009 at 11:13 am
Indeed, but the uncleanly "detached" files will only be a part of the problems.
Everything performed a instance level , logins, jobs, end points, instance level triggers, ... will have to...
July 19, 2009 at 11:10 am
You need to check on the rename server procedure !
SQLServer knows its own name, so you need to remove the old and add the new one.
http://msdn.microsoft.com/en-us/library/ms143799.aspx
stand alone instance
sp_dropserver
GO
sp_addserver ,...
July 19, 2009 at 10:07 am
Which one did you pick ?
- the ddl trigger ?
- least privileged ?
- both ?
July 18, 2009 at 8:54 am
16% free. but it represents 16GB.
How big is your biggest table (ix included if they reside in that datafile) ?
Why ? if you rebuild that table, you may need...
July 17, 2009 at 2:03 pm
Please post in the correct forum !
Search SSC for mirroring and it will come op with the script you need !
IMO best is to use SQLServer events for this !
e.g.
http://msdn.microsoft.com/en-us/library/ms191502%28SQL.90%29.aspx
...
July 17, 2009 at 10:46 am
PaulB (7/16/2009)
Juan Pablo (7/16/2009)
Try to put the sa account like owner of the job 🙂:blink: why would you nuke them when an infantry brigade would suffice?
hmm ... so the windows...
July 17, 2009 at 10:43 am
Cathy DePaolo (7/17/2009)
ALZDBA (7/17/2009)
It is indeed something you need to know about when trying to handle the files.BOL has good info at http://msdn.microsoft.com/en-us/library/ms178037%28SQL.90%29.aspx
ALZDBA, I paid more attention to the virtual...
July 17, 2009 at 6:57 am
Viewing 15 posts - 3,556 through 3,570 (of 7,496 total)