Viewing 15 posts - 286 through 300 (of 387 total)
I have a test server with both on, the 2005 sql server is the default instance and the 2000 sql server is a named instance. I am assuming that the...
November 29, 2005 at 7:51 pm
Karl,
Thats why i mentioned smtp mail, I run the checks from a non production server and use this sp to send the mails. Either soulution, the heartbeat check or a...
November 29, 2005 at 8:25 am
didn't twig the 3rd party purge batched, unfortunatley without a test bed its pretty difficult to estimate the time difference.
November 28, 2005 at 11:53 am
Really dificult to estimate without a test base, what is certain is that with no users connected the only locks created will be from the delete statement.
Could you not...
November 28, 2005 at 11:44 am
Might it be easier to insert the records not to be deleted into a copy table (could use nolock if no one is updating table) with same structure and when the...
November 28, 2005 at 11:21 am
If select @@servername returns the wrong servername then issue:
EXEC sp_dropserver 'WrongServerName'
EXEC sp_addserver 'CorrectServerName', 'local'
You may also need to change the originating server in sysjobs otherwise the sql agent will think...
November 28, 2005 at 11:17 am
You can use the extended sp master.dbo.xp_servicecontrol
create table #SQLServiceStatus
(status nchar(30))
insert into #SQLServiceStatus
EXEC master.dbo.xp_servicecontrol 'QueryState', 'SQLServerAgent'
--for 'SQLServerAgent'
insert into #SQLServiceStatus
EXEC master.dbo.xp_servicecontrol 'QueryState', 'MSSQLServer'
--for 'MSSQLServer'
It returns 'running' if running, you can use...
November 27, 2005 at 6:01 pm
Bit of a drag looking through the log, you could run the blocker utility provided by http://support.microsoft.com/default.aspx?scid=kb;en-us;271509
and then run SQL Sherlock to analyse the results
http://www.sqlteam.com/item.asp?ItemID=21737
This won't help you...
November 17, 2005 at 3:52 pm
if it is only commas that is in the field cound you not use replace and join on the values without the commas?
November 16, 2005 at 3:28 pm
Why not use SMTP mail via: http://www.sqldev.net/xp/xpsmtp.htm
You can build the filename using a the filename+getdate()
November 10, 2005 at 1:14 pm
if its been encrypted by sql servers nativeley then you can use the tool listed on this site to decrypt it:
http://www.derkeiler.com/Mailing-Lists/Securiteam/2001-12/0101.html
November 10, 2005 at 12:41 pm
Martin,
Cheers, I had a quick look and this looks good. Thanks
November 9, 2005 at 8:48 am
If you are returning the results of the xp_cmdshell to a table on a machine outside the dmz, then it would be the MDTC that will be blocked.
November 2, 2005 at 3:27 pm
Viewing 15 posts - 286 through 300 (of 387 total)