Viewing 15 posts - 691 through 705 (of 6,105 total)
Have you created the Server Audit HIPPA_Audit? Also, are you testing against either SQL Server 2008 Enterprise Edition or Developer Edition? If not, the Audit object is only for EE...
February 2, 2009 at 9:30 am
This is the application event log, but the error given is for invalid credentials. Do you see an error in the Security event log? If so, what does it say?
February 2, 2009 at 6:59 am
If SQL Server 2005 is installed on a Windows Server 2003/2008 system, it will, by default, use the account password settings of the domain (or the local computer, if not...
February 2, 2009 at 6:55 am
You're correct, the Audit object doesn't collect the hostname. The hostname, as it comes into SQL Server, can be forged. This is another case where like MySQL, I wish SQL...
January 31, 2009 at 3:09 pm
I didn't see the forum, but if you're using SQL Server 2000 (not 2005 or 2008), then encryption HAS to occur at the web server level unless you use a...
January 30, 2009 at 4:53 pm
When he attempts to login from the workstation where his account is failing, do you see a failed login attempt on the SQL Server corresponding to the attempt? If so,...
January 30, 2009 at 4:48 pm
The SSL certificate allows you to have an encrypted connection for your web site. It doesn't encrypt the data to the back-end. So it doesn't enter into your decision.
The question...
January 30, 2009 at 4:47 pm
All right, let's break this down to the basics...
EXECUTE rights against a stored procedure allows you to execute the stored procedure.
SELECT, INSERT, UPDATE, and DELETE rights allow you to...
January 30, 2009 at 4:39 pm
Is there anything in the event logs for either set of servers when you've got it scheduled for 5 minutes or more? Specifically in the system event log about network...
January 29, 2009 at 10:27 am
Is the Windows firewall on from the other machine when he logs on?
January 29, 2009 at 10:25 am
The EXECUTE AS is part of the stored procedure definition itself. If you look at the Books Online write-up for CREATE PROCEDURE, you'll see in the syntax specification and in...
January 28, 2009 at 8:35 pm
Check to make sure the user is not a member of the db_datareader or db_datawriter roles. Those give implicit permissions and so you don't see it unless you check the...
January 28, 2009 at 8:27 pm
I'm blind. You've got a syntax error in your insert statement. You've got the cast and convert and decrypt by key where you're supposed to be declaring the columns to...
January 28, 2009 at 1:26 am
You said the public role has permissions, right? Every database user is a member of the public role. There are no exceptions. Therefore, if the public role has permissions, every...
January 27, 2009 at 4:13 pm
Viewing 15 posts - 691 through 705 (of 6,105 total)