Viewing 15 posts - 106 through 120 (of 279 total)
You didn't specify next criteria so there will be none.
October 25, 2013 at 1:26 am
Without stopping an instance eg. http://www.mssqltips.com/sqlservertip/2682/recover-access-to-a-sql-server-instance/
Or if this will not work, run an instance in single user mode, and then add a sysadmin account.
October 24, 2013 at 7:06 am
MSDN iso are pre-PIDded, you can get PID from installation media
October 17, 2013 at 11:56 am
Use the same installation media as for SQL engine, during install check just "Sql Server Data Tools"
October 16, 2013 at 1:25 pm
You could try a Process : Working Set performance counter for all process that you suspect or for all process.
October 16, 2013 at 1:19 pm
Or you can install an evaluation edition on another server, restore db, remove partitioning and...
But still better solution is to use developer license.
October 16, 2013 at 12:47 pm
Yes, all this operations are generating much IO, and should be performed during a maintenance window
October 14, 2013 at 2:58 pm
You change a MAX_QUEUE_READERS parameter to start more activation procedures.
http://technet.microsoft.com/en-us/library/ms189529.aspx
But are you sure that it will speed up and actication proc don't need a tuning?
September 5, 2013 at 1:18 pm
The name is self explanatory.
"This pane shows information about the most expensive queries that have been run on the instance over the last 30 seconds."
http://technet.microsoft.com/en-us/library/cc879320%28v=sql.105%29.aspx
September 5, 2013 at 1:12 pm
Use xp_delete_file eg:
http://www.patrickkeisler.com/2012/11/how-to-use-xpdeletefile-to-purge-old.html
but maybe better will be using a very good script which create and delete old backups http://ola.hallengren.com/sql-server-backup.html
September 3, 2013 at 12:49 pm
RTaylor2208 (9/3/2013)
September 3, 2013 at 7:04 am
Use DBCC SHRINKFILE http://technet.microsoft.com/en-us/library/ms189493.aspx or in SMSS choose to shrink a file not a DB.
September 3, 2013 at 1:28 am
Use a sp_WhoIsActive with the @delta_interval option:
and you can also save the results in a table, but the @delta_interval option should be enough for you:
August 28, 2013 at 4:32 am
And what was when you executed:
ALTER DATABASE TestDB SET ENCRYPTION ON;
Because I can simulate this when during executing set encryption on the DB is in single_user. Then even after...
August 27, 2013 at 3:41 pm
Viewing 15 posts - 106 through 120 (of 279 total)