Viewing 15 posts - 1 through 15 (of 21 total)
you can obtain this information simply by querying the sys.dm_os_process_memory DMV. The physical_memory_in_use column indicates total memory usage
March 4, 2012 at 11:01 pm
Read this articles.
Sql Server profiler:
http://www.codeproject.com/Articles/21371/SQL-Server-Profiler-Step-by-Step
Using perfmon:
http://www.brentozar.com/archive/2006/12/dba-101-using-perfmon-for-sql-performance-tuning/
March 4, 2012 at 10:39 pm
Below error message itself tells that what correction needs to be done.
Cannot insert an explicit value into a timestamp column. Use INSERT with a column list to exclude the timestamp...
March 4, 2012 at 10:05 pm
March 4, 2012 at 9:57 pm
You can not truncate the table if any column is referred by any other table like primary and foreign key relation.
you have to first delete the data from foreign key...
March 4, 2012 at 9:29 pm
Vahid.Ch (3/3/2012)
following query select all of files in "..\Microsoft SQL Server\MSSQL10_50.SPR2\MSSQL\DATA\.." path.
SELECT name, physical_name AS current_file_location
FROM sys.master_files
but how can...
March 3, 2012 at 11:16 pm
You can increase the timeout value by below command.
ALTER DATABASE XXXXX SET PARTNER TIMEOUT 30
March 3, 2012 at 12:31 pm
The default mirroring time out value is 10 seconds. You need to increase this number if you have more and more database transactions.
March 3, 2012 at 12:13 pm
Please post the execution plan to analyze the query.
March 3, 2012 at 11:13 am
March 3, 2012 at 11:06 am
replication and cdc are totally different.Replication is used to populate the data from one database to other the database. But in CDC it captures both old and new data...
March 3, 2012 at 2:07 am
THis blog may help to understand the deadlock graph.
March 2, 2012 at 8:14 am
Viewing 15 posts - 1 through 15 (of 21 total)