Viewing 15 posts - 1 through 15 (of 75 total)
I already have that. The requirement is to use the Windows Security event log.
October 31, 2013 at 5:35 am
I found the issue using the checkDB function with data purity which is what caused me to post. What I could not do was identify the rows themselves...
December 20, 2012 at 8:13 pm
What did you remove form MSDB and/or master? I am having the same issue as you.
November 8, 2011 at 9:38 am
Do you have a good way to detect any of these orphans? I am also having the same issue and cannot resolve it.
October 7, 2011 at 11:23 am
I have used many types of analogies. A phone book wasnt one of them. I am not looking to re-hash what I have done. I am looking...
October 5, 2011 at 6:22 am
You need to add the alias identifier at the end. The select statement makes table 'x'.
SELECT
'REVOKE ' + convert(varchar(50),x.[Action])
+ ' on ' ...
October 4, 2011 at 11:12 am
Good Stuff. I will find those articles! I wasnt drinking at the time. LOL
September 2, 2011 at 9:27 am
you and me both. I comment the hell out of my stuff. I dont think the couple lines here and there are an issue. I think it...
September 2, 2011 at 9:10 am
As I remember the article, that is the root of the problem. Due to the large block, the compiler/execution plan cant do it's thing properly. so pretty much...
September 2, 2011 at 9:05 am
Parameter sniffing is a separate issue that I had them deal with. As for the coment block, there is somthing regarding the amount of lines and size of the...
September 2, 2011 at 8:56 am
DUH! Why is it the simple answers go right past us. You are absolutely correct and it works like a champ. Thank you for the smack in...
August 1, 2011 at 9:45 am
I am sticking the code being used now here:
CREATE PROCEDURE [dbo].[sp_send_cdosysmail]
@From varchar(100) ,
@To varchar(100) ,
@Subject varchar(100)=" ",
@Body varchar(4000) =" ",
@attachment nvarchar(100)= " ",
@bodytype varchar(10)=" "
/*********************************************************************
This stored procedure takes the parameters...
August 1, 2011 at 8:38 am
CREATE PROCEDURE [dbo].[sp_send_cdosysmail]
@From varchar(100) ,
@To varchar(100) ,
@Subject varchar(100)=" ",
@Body varchar(4000) =" ",
@attachment nvarchar(100)= " ",
@bodytype varchar(10)=" "
/*********************************************************************
This stored procedure takes the parameters and sends an e-mail.
All the mail configurations are...
July 1, 2011 at 1:50 pm
Did anyone ever come across this error? I am now having this issue with no good results on a resolution. It has happened twice.
June 6, 2011 at 7:28 am
Viewing 15 posts - 1 through 15 (of 75 total)