Viewing 15 posts - 4,231 through 4,245 (of 7,168 total)
You would need to make sure logon_trigger_login can SELECT from the table:
USE GK50LIVE;
GO
CREATE USER [logon_trigger_login] FROM LOGIN [logon_trigger_login] WITH DEFAULT_SCHEMA = [dbo];
GO
GRANT SELECT ON dbo.LimitedLogins TO logon_trigger_login;
GO
Then you could modify...
May 1, 2012 at 12:19 pm
Are you sure you were encountering deadlocks? and not just significant blocking?
Deleting large swaths of job history can wreak havoc on your server if you have a lot of jobs...
May 1, 2012 at 12:06 pm
A Trace (accessible via Profiler or server-side trace) can be thought of as a logging mechanism for SQL Server. Using SQL Trace
Since you're on SQL Server 2008 you could also...
May 1, 2012 at 11:45 am
In an adjacency list a child typically has one parent. I think in the OPs model a child can have multiple parents, in which case the permutations when traversing the...
May 1, 2012 at 11:38 am
You're welcome! Thanks for posting back, confirming that it worked!
May 1, 2012 at 11:30 am
32-bit or 64-bit?
How does selecting data from an Excel Workbook fit into your overall process, i.e. what are you trying to accomplish?
May 1, 2012 at 11:08 am
Microsoft® SQL Server® 2008 R2 Best Practices Analyzer is a good place to start.
Monitoring Best Practices by Using Policy-Based Management has a bunch of useful checks as well. PBM is...
May 1, 2012 at 10:00 am
SQL Kiwi (5/1/2012)
May 1, 2012 at 8:36 am
Dev (5/1/2012)
May 1, 2012 at 8:19 am
pamozer (4/30/2012)
April 30, 2012 at 10:36 pm
April 30, 2012 at 10:27 pm
You could keep a list of logins hardcoded in the trigger as the example shows, or as I said you would need to keep them in a separate table. Having...
April 30, 2012 at 9:24 pm
capn.hector is correct too (we were typing at the same time so didn't see his post)...I do not expect issue with an in-place upgrade, but a fresh slate is always...
April 30, 2012 at 8:43 pm
Sapen (4/30/2012)
April 30, 2012 at 8:41 pm
NaCl (4/30/2012)
•Have distinct owners for databases; not all databases should be owned by sa
i understand the advantage of ownership by an account that...
April 30, 2012 at 3:24 pm
Viewing 15 posts - 4,231 through 4,245 (of 7,168 total)