Viewing 15 posts - 1,636 through 1,650 (of 6,105 total)
October 5, 2007 at 8:23 am
On those rows where the nt_username and loginame are both populated, are they the same?
October 5, 2007 at 6:34 am
C2 auditing is a comprehensive server-side trace. It's going to record all activity. Meaning if someone execute a command to change the owner of an object, execute sp_addrolemember, etc., you're...
October 5, 2007 at 6:32 am
Check the application event log on the server. There is probably an error event indicating why the reporting services web application wasn't available.
October 5, 2007 at 6:30 am
Yes, DDL triggers are the way to go here. Make sure you understand XQuery to understand the output.
*shameless self promotion alert*
I recently contributed on a SQL Server 2005 security book...
October 5, 2007 at 6:27 am
Database users are stored within the database itself. So when you move the database, you'll have the user. To transfer logins in SQL Server 2005, see the following KB article:
October 5, 2007 at 6:23 am
Mayank Khatri (10/4/2007)
October 4, 2007 at 2:55 pm
If the SQL Server connection string says to use Windows authentication (Integrated Authentication), but the workstations aren't in a trusted domain and there is a guest login enabled on your...
October 4, 2007 at 2:38 pm
Sorry, "modifying role" isn't clear. An event fires for ALTER ROLE. However, using sp_addrolemember to add a user account to a role may not fire an event.
October 4, 2007 at 2:25 pm
I'm not sure an event fires for modifying role. So you may not be able to do so. Are they granting other users the ability to do more than SELECT?...
October 4, 2007 at 2:24 pm
How is the connection to SQL Server defined? Is it defined via an ODBC data source? Is it a connection string hardcoded in the application or via the registry? If...
October 4, 2007 at 2:14 pm
You can install the SQL Server client tools (from the SQL Server CD), but anything capable of making an ODBC or OLEDB connection (including Microsoft Access) will do. How do...
October 4, 2007 at 2:08 pm
You'll want to set up server side tracing. You can script an appropriate trace using Profiler and then apply it to the server. You'll have to review these traces in...
October 4, 2007 at 2:05 pm
SQL Server Configuration Manager
Protocols for
Named Pipes should show as Enabled/Disabled
October 4, 2007 at 1:59 pm
Then those two are using SQL Server logins to connect. The others must be using Windows logins. If there is an ODBC connection, you may check its configuration.
October 4, 2007 at 8:53 am
Viewing 15 posts - 1,636 through 1,650 (of 6,105 total)