Viewing 15 posts - 361 through 375 (of 6,105 total)
Are you executing the query from the server itself? In other words, are you remoted in/logged in at the console of the server where SQL Server is installed and running...
April 29, 2010 at 6:53 am
Microsoft's recommendation in Books Online is that SQL Server Agent not be a member of the local Administrators group. However, it must be a member of the sysadmin fixed server...
April 29, 2010 at 6:51 am
That is correct. And if it's on a domain (which is a better security option than, in most cases), there are additional attack vectors. Here's a short write-up on them:
April 28, 2010 at 7:41 am
Yes, but you will have to encrypt based on each column. Also, you won't want every column encrypted, for this will kill any performance because you will be indexing on...
April 27, 2010 at 10:16 pm
Replace the portions of your code with the applicable portions of the code I posted and it will work. I tested before posting.
April 27, 2010 at 2:46 pm
The key is to secure the server. If someone gains administrative control over the server, they have control of your SQL Server. You can't stop them. So I think you're...
April 27, 2010 at 2:40 pm
What error are you getting? If it's the password complexity error, try a password of something like 4SQLAuthority! instead. If it's the string or binary data would be truncated, make...
April 27, 2010 at 7:44 am
Safer is to grant CONTROL SERVER. Here's why. CONTROL SERVER means an explicit DENY will be honored. CONTROL SERVER also means that any operation is undertaken with the identity of...
April 26, 2010 at 8:47 pm
Bhuvnesh (4/25/2010)
Some...
April 26, 2010 at 7:34 am
Right, I commented on that thread. If you follow it through to the end, you'll see that SQL Server doesn't store this information. You have to audit it using other...
April 23, 2010 at 12:45 pm
There isn't a query to show when any account was last used, even a SQL Server-based one. Can you post that? As far as when a Windows account last logged...
April 23, 2010 at 11:57 am
webrunner (4/23/2010)
K. Brian Kelley (4/22/2010)
If I have admin rights on a server, I have debugging rights. If I have debugging rights, I can see the...
April 23, 2010 at 9:43 am
Can you filter your network connections? In other words, are the computers that SHOULD be connecting to SQL Server coming from known IP addresses? If so, an IPSEC policy (OS...
April 23, 2010 at 6:21 am
It can't be done. Here's why...
If I have admin rights on a server, I have debugging rights. If I have debugging rights, I can see the memory and I can...
April 22, 2010 at 2:44 pm
Is the account you're using to connect from Delphi the same account you're using when you run the stored procedure directly?
April 22, 2010 at 1:29 pm
Viewing 15 posts - 361 through 375 (of 6,105 total)