Viewing 15 posts - 1 through 15 (of 88 total)
No, you can't rename the named instance.
BOL:
They can be used only to rename the part of the instance name that corresponds to the computer name. For example, you...
January 31, 2012 at 9:19 pm
Here is good article on this.
http://www.sqlservercentral.com/scripts/Lock+and+Connection+Management/30059/
January 31, 2012 at 9:09 pm
You can use below query to find out the current blocking transactions.
Select * from sys.sysprocesses where blocked<>0
If you are using Sql server 2005 or higher version then you can...
January 31, 2012 at 8:52 pm
All your questions are covered in below link.
http://www.mssqltips.com/sql-server-tip-category/39/fragmentation-and-index-maintenance/
January 31, 2012 at 8:34 pm
spid 318 is blocked by spid 611
Check this article
January 24, 2012 at 6:33 am
Here is a nice article on this.
http://www.sqlskills.com/BLOGS/KIMBERLY/post/Transaction-Log-VLFs-too-many-or-too-few.aspx
January 24, 2012 at 6:06 am
January 24, 2012 at 5:11 am
January 23, 2012 at 4:01 am
Sql server 2008 R2 express edition thhe database size limitation has been increased to 10GB
January 23, 2012 at 3:14 am
It seems a nw issue , please check below links for more details.
January 22, 2012 at 6:44 pm
analyze which Transact-SQL statements are the top consumers of tempdb
SELECT t1.session_id, t1.request_id, t1.task_alloc,
t1.task_dealloc, t2.sql_handle, t2.statement_start_offset,
t2.statement_end_offset, t2.plan_handle
FROM (Select session_id, request_id,
SUM(internal_objects_alloc_page_count) AS task_alloc,
...
January 22, 2012 at 11:10 am
Viewing 15 posts - 1 through 15 (of 88 total)