Viewing 15 posts - 1,111 through 1,125 (of 6,105 total)
John Dennis (6/2/2008)
June 2, 2008 at 2:46 pm
If you're dealing with SQL Server 2005, then yes.
SELECT * FROM sys.endpoints
After that, you can view the various endpoint views. See the Books Online topic Endpoints Catalog views for the...
June 2, 2008 at 2:28 pm
toparsi (6/2/2008)
June 2, 2008 at 2:11 pm
You can run
EXEC sp_helprotect @username = 'sysadmin';
It won't pick up SQL Server 2005 securables (server, schema), but it will pick up denies against explicit tables, etc.
June 2, 2008 at 2:09 pm
Yes just add the System account back. It minimizes the number of accounts with access, especially with sysadmin access.
June 2, 2008 at 12:58 pm
Jorge Novo (6/2/2008)
1. A sql trace or profiler can be use to track what is...
June 2, 2008 at 12:56 pm
Add NT Authority\SYSTEM and grant it the appropriate rights. You probably have netbackup or the like running its agent service as the local system account. That is preferable to re-adding...
June 2, 2008 at 12:52 pm
Anirban Paul (6/2/2008)
Job specialization is required to increase your salary but utility guys are more popular in companies......:)
Actually, I've seen promotions and salary increases because I am a "utility" guy...
June 2, 2008 at 12:40 pm
Members of the sysadmin fixed server role should be bypassing security checks, but check to see if there has been any denies leveled against the sysadmin fixed server role.
June 2, 2008 at 12:37 pm
Altiris and System Center can certainly output the OS information and possibly the server-level SQL Server information, but neither are cheap and require a license per server in addition to...
June 2, 2008 at 12:34 pm
Steve's advice tells you how to determine who is a member of a particular role. If you have servers connecting in directly, you'll see their logins in Domain\ComputerName$. If you...
June 2, 2008 at 12:32 pm
Without having a DDL trigger in place or having an active server trace going at the time, you probably won't be able to determine exactly when and by whom. The...
June 2, 2008 at 12:29 pm
Take a look at the following blog post:
Disaster Recovery: What to do when the SA account password is lost in SQL Server 2005
Because you're dealing with a cluster, getting SQL...
June 2, 2008 at 12:18 pm
I don't disagree that typically a user wouldn't resort to this, however, if you want something iron clad, this isn't the way to go. For instance, it would likely not...
June 2, 2008 at 12:11 pm
Well, let me ask what may be a dumb question... Are you sure the child tables can't be combined in some way? Maybe even with the parent table? It sounds...
May 31, 2008 at 10:29 pm
Viewing 15 posts - 1,111 through 1,125 (of 6,105 total)