Viewing 15 posts - 1 through 15 (of 38 total)
Hi Adi.
Thanks for the reply.
In my database, I have a user account (winfas) aliased to dbo. When I run sp_helpuser in that database, I get two result sets. ...
December 22, 2009 at 9:49 am
I'd like to see this kind of article geared towards DBA's rather than developers. The Backups one would be a definite for both though.
June 22, 2009 at 8:46 am
I've found one privilege so far:
in master, EXECUTE on sp_fulltext_getdata granted to the MSFTEUser group.
May 22, 2009 at 2:54 pm
I have an unmodified AdventureWorks database. 1 and 2 work fine. 3 and 4 fail.
3 gives:
Msg 207, Level 16, State 1, Line 2
Invalid column name 'EmployeeId'.
4 gives:
Msg 8127,...
May 21, 2009 at 9:09 am
kozloski (5/20/2009)
May 20, 2009 at 10:52 am
MarkusB (5/19/2009)
This setting is in the registry. You can use the undocumented procedure xp_instance_regread to check the values.
DECLARE @auditlevel int
EXEC master.sys.xp_instance_regread N'HKEY_LOCAL_MACHINE',N'Software\Microsoft\MSSQLServer\MSSQLServer',N'AuditLevel', @AuditLevel output
SELECT@auditlevel
See also here: http://www.sqlservercentral.com/articles/Security/sqlserverauditingpart1/1451/
That's just what I...
May 19, 2009 at 2:21 pm
bob.willsie (5/13/2009)
May 13, 2009 at 7:18 am
Interesting approach. This gives me something to work with. Thanks for the script George. I appreciate it.
May 5, 2009 at 3:51 pm
Oooh... dynamic sql. And it is fine with the multiple lines being crammed together. I just added the "insert into #mytemptable" at the beginning and it does...
April 22, 2009 at 3:54 pm
Jeffrey: your help has been great. Thank you.
Everyone/Anyone: I'm still working on this problem. Currently I'm trying to do something like:
select name, (exec master..xp_logininfo @acctname = name,@option...
April 22, 2009 at 2:42 pm
Yes, please keep it simple. I'm an Oracle DBA who now has to also run MSSQL databases. I don't know VB, .Net, C#. I'm learning some TSQL...
April 22, 2009 at 8:51 am
Viewing 15 posts - 1 through 15 (of 38 total)