Viewing 15 posts - 1 through 15 (of 36 total)
This is good stuff, thanks for posting it Kim. It always amazes me how many SQL Servers are not monitored for even simple things even though it is extremely simple...
July 24, 2013 at 2:27 pm
Here is a blog posting on encryption from SS2005 which still applies and is (in my opinion) a great walk-through on certificate based encryption (passphrase encryption is pretty straight-forward and...
August 24, 2010 at 8:42 am
The error is indicating it is using Named Pipes so be sure that protocol is enabled in Configuration Manager. You also mention connecting via Management Studio, but if you are...
August 24, 2010 at 8:29 am
Hey Mark,
If you created the user via SSMS then this probably isn't the issue, however still something to check. Since login failures are logged by default, are you seeing the...
March 17, 2010 at 10:40 am
One thing to make sure of is that the database principal has explicit Connect granted to it at the database level. It depends on how the principal was added to...
March 17, 2010 at 9:34 am
Is the user name going to be determined by the database name or is there anything else that is preventing you from simply creating the user in model so that...
February 11, 2010 at 5:22 am
There is a Run As setting for the job step, but that would just muddy the authentication waters here. I would recommend creating a Windows account for the SQL Server...
February 8, 2010 at 10:38 am
If you are using Execute As and are accessing resources outside of the current database (all mail items in this case) you will need to set the trustworthy setting for...
February 8, 2010 at 10:22 am
Cool, at least it is logging the issue. I would guess that the job step/ proxy is not configured correctly so the job step is defaulting to the security under...
February 8, 2010 at 10:19 am
To get some more detail, you can query msdb.dbo.sysmail_mailitems to see what the result was and to get the send_request_user to see what authentication is being used when called, etc.
February 8, 2010 at 9:27 am
I don't beleive that there is any easy way to speed up the creation although if you have a different IO path that you can use, that would help. Also,...
February 8, 2010 at 9:12 am
If this is an email being sent as part of the alert, you should make sure that the Mail session information is configured correctly by going into the properties of...
February 8, 2010 at 8:54 am
For reading the error log you can use the following:
Exec master.dbo.xp_readerrorlog 1, 1, 'search string1', 'search string2'
The first parameter (as I am sure you know) is the log number, the...
February 3, 2010 at 8:24 am
Cool, glad you got it working.
February 2, 2010 at 3:34 pm
The folder might be shared, but you need to put the path to the shared folder in the form of \\<ServerName>\<Sharename> in the path for the snapshot directory.
February 2, 2010 at 2:28 pm
Viewing 15 posts - 1 through 15 (of 36 total)