Viewing 15 posts - 1,711 through 1,725 (of 6,105 total)
Sergiy, it may not be that at all. If Ben's organization only has a single domain or if the users and servers are in the same domain, this would produce...
July 17, 2007 at 4:48 pm
It sounds like you've got a solution that works for you. On a side note (in case someone else comes across this thread) in a more complex situation, nslookup and...
July 17, 2007 at 4:46 pm
On SQL Server 2000, syslogins is the system table you're looking for. And you are correct, sp_grantlogin allows a Window security principal (user, group, or computer account) to connect to...
July 17, 2007 at 4:40 pm
When you toggle auditing on, the audit events get written to the Application event log for the server. It's a simple matter to use a tool like EventCombMT to...
July 17, 2007 at 4:38 pm
There is a system stored procedure for this: sp_helprotect. use it with the @username parameter. For instance, to see everything the public role can do:
EXEC sp_helprotect @username = 'public'
This will...
July 16, 2007 at 7:29 am
Yeah, it's kinda nice being referred to as the mouse that tried to take over the world. ![]()
July 12, 2007 at 2:57 pm
Yup, that's about right. Hence the reason most people recommend you get in with a not-for-profit or something of that sort during the college or job transition years in order...
July 11, 2007 at 7:36 am
If you are looking at scripting the logins, such that the SIDs are maintained in the event of a database restore, see the following KB article:
July 10, 2007 at 3:42 pm
Sometimes when a process creates a file, it chooses to break inheritance and assign different permissions than what the folder has. SQL Server 2005 does this whenever you create a...
July 10, 2007 at 10:11 am
Check the SIDs for the logins on both your dev and production systems. If they aren't the same, export the login from production and delete and create the login on...
July 10, 2007 at 10:09 am
You mean DML triggers.
DDL triggers monitor for changes to the schema and objects themselves.
As to the original question, there are two options:
July 10, 2007 at 10:02 am
The problem with an application role is that when it is set in SQL Server 2000 using sp_setapprole (SQL Server 2005 has sp_unsetapprole to revert back), you lose all identity...
July 6, 2007 at 11:41 pm
This forum thread also provides some guidance:
However, SOX compliance isn't a "cookie cutter" type of thing. So you'll probably finding yourself tweaking...
July 6, 2007 at 8:32 am
Well, a mix of both. Scheduled job polls a table. User has the ability to execute a stored procedure which makes a change in the table. Scheduled job notes the...
July 6, 2007 at 7:54 am
Viewing 15 posts - 1,711 through 1,725 (of 6,105 total)