DEADLOCK

SET DEADLOCK_PRIORITY { LOW | NORMAL | @deadlock_var } @deadlock_var Is a character variable specifying the deadlock-handling method. @deadlock_var is 3 if LOW is specified, and 6 if NORMAL is…

0 Comments

Getting MCDBA Certification

I finally registered for one of required tests, named “Designing and Implementing Databases with Microsoft SQL Server 2000 Enterprise Edition “.  As it will be held this Friday night at…

0 Comments

Starting SQL Server in Single-User Mode

Under certain circumstances, you may need to start an instance of Microsoft® SQL Server™ in single-user mode using the startup option -m. For example, you may want to change server…

1 Comment

Do you want to modify master database?

Following commands allow you to modify system tables. sp_configure ‘allow updates’,1 go reconfigure with override go It is highy recommanded that you restart the MSSQL instance in a single user…

1 Comment

How To: Use SQL Profiler

I found the excessively useful document, describing how to use a SQL Profiler. This is a well-made thing. Click this. You can also download a pdf-converted file.  Download How_To__Use_SQL_Profiler.pdf

0 Comments

[Memo] sp_autostats

Displays or changes the automatic UPDATE STATISTICS setting for a specific index and statistics, or for all indexes and statistics for a given table or indexed view in the current…

0 Comments

[Memo] Computed Columns

Computed columns can only use constants, functions, and other columns in the same table. A computed column can't use a column of another table.

0 Comments