Viewing 15 posts - 2,641 through 2,655 (of 6,397 total)
Thats the way the GUI works and would be a change to the GUI which would be evaluated if you raised it as a Connect issue, but the likely hood...
January 30, 2013 at 6:17 am
What do you need help with? It is not very clear.
1st one, your connected to the default instance using a trusted connection
2nd one, your giving the wrong password for...
January 30, 2013 at 5:53 am
Its the way that the create script works, so your asking to change the behavour of SQL, so that would need to be raised as a connect issue and they...
January 30, 2013 at 5:49 am
andrew gothard (1/30/2013)
DECLARE @DBName NVARCHAR(200);
SET @DBName = '<Enter your db name here>';
DECLARE @spid INT;
DECLARE IHateCursors CURSOR FOR
SELECT
spid
FROM
master.dbo.sysprocesses
WHERE...
January 30, 2013 at 5:45 am
Did you investigate what the SPIDs where doing which blocked you?
Did you try setting the DB into single_user mode?
January 30, 2013 at 5:17 am
If recovery dont matter then set recovery to simple and leave it in simple.
Once in simple issue a checkpoint in the DB, then shrink the file.
Taking offline detach attach can...
January 30, 2013 at 2:46 am
Probably will depend on your requirements, so I would speak to Dundas directly.
January 30, 2013 at 2:44 am
Take a look at the SQLAgentOperator, SQLAgentUser, SQLAgentReader roles in MSDB
January 30, 2013 at 2:36 am
No, Solarwinds at the time I was evaluating monitoring software wasn't robust or mature enough to monitor SQL.
While it now does Application monitoring where it can connect to an ODBC...
January 30, 2013 at 2:34 am
IIRC you can run 25 instances on 1 node, so that would be active / passive, if it is licensed accordingly
If you want to run 1 instance on Node1 and...
January 30, 2013 at 2:30 am
Poor Performing SQL Part 1 - http://www.simple-talk.com/sql/performance/finding-the-causes-of-poor-performance-in-sql-server,-part-1/
Poor Performing SQL Part 2 - http://www.simple-talk.com/sql/performance/finding-the-causes-of-poor-performance-in-sql-server,-part-2/
Also take a look at the Accidental DBA guide on the high CPU chapter (Link in my signature...
January 30, 2013 at 2:27 am
CREATE TRIGGER ... ON ...
AFTER INSERT
AS
EXEC MSDB.dbo.sp_send_dbmail ...., ...., ...., ....
Lookup database mail, configure it, and then put the right parameters into the sp_send_dbmail call that you need.
January 30, 2013 at 2:23 am
You could look at initialization from backup, instead of from snapshot.
http://msdn.microsoft.com/en-us/library/ms147834%28v=sql.100%29.aspx
January 30, 2013 at 2:04 am
Because you can specify permissions at the database level on things which are outside of role based permissions
Say I have a role and assign it the ability to execute 99...
January 29, 2013 at 7:50 am
If an account has SysAdmin fixed server role, they are God and can do what ever they want to do, where ever they want to do it and you cant...
January 29, 2013 at 7:34 am
Viewing 15 posts - 2,641 through 2,655 (of 6,397 total)