Viewing 15 posts - 91 through 105 (of 6,105 total)
Create DTS packages is in the msdb database. You didn't indicate what database you're trying to give permissions.
If I remember right for SQL Server 2000, even if you're a DB_Owner...
December 13, 2012 at 12:32 pm
Also, I would add that it's relately simple to audit for Windows group changes. This is even easier in 2008 AD and above with event forwarding. An organization is hopefully...
October 3, 2012 at 2:17 pm
For the most part. The only exception I've suggested is with respect to user accounts that function as a "service account." However, I've run into cases recently where it would...
October 3, 2012 at 2:16 pm
opc.three (10/3/2012)
October 3, 2012 at 1:27 pm
opc.three (10/3/2012)
K. Brian Kelley (10/3/2012)
opc.three (9/28/2012)
October 3, 2012 at 9:07 am
Is it just your system? Can others log on to the server just fine?
The reason I ask is that's a Microsoft.NET Framework error that's being thrown. There looks to be...
October 3, 2012 at 6:37 am
opc.three (9/28/2012)
Jane...
October 3, 2012 at 6:33 am
Can you give an example of code not looking genuine? SELECT queries and execution of stored procedures would be hard to manipulate in this way as they don't fire DML...
October 3, 2012 at 6:27 am
Login triggers only fire when the developer first logs in. Therefore, if the developer is logging in and staying connected, this doesn't work for what you're trying to do.
Database-level DML...
October 3, 2012 at 6:24 am
Another option is if you have a backup of the database from before the change, you can restore that backup on a test server and examine what the permissions were.
September 4, 2012 at 8:44 am
While the best practice says that you should, realistically, there's not much to be gained. After all, the SQL Server Agent service has sysadmin rights into SQL Server. Since you...
August 31, 2012 at 5:39 am
First, let's accept the undeniable truth: you cannot prevent someone with sysadmin role membership from looking at the data.
Once you accept that, here's how to go about doing what...
August 23, 2012 at 9:32 am
If you can connect to ABC, when you execute
SELECT @@SERVERNAME;
what do you get? Do you get ABC or do you get ABC\SQLEXPRESS? If you get ABC, that's a different...
August 22, 2012 at 9:08 am
I would use BUILTIN\Users. NT Authority\Authenticated Users could include accounts local to the server that aren't in Users.
Best would be *Domain*\Domain Users if you're a single domain. This would ensure...
August 14, 2012 at 6:42 pm
That reminds me, as a security person I hate the db_datareader and db_datawriter roles. They provide implicit permissions to tables and views. That means that I not only have to...
August 1, 2012 at 6:44 pm
Viewing 15 posts - 91 through 105 (of 6,105 total)