Viewing 15 posts - 331 through 345 (of 373 total)
Thanks Gail Shaw for clarification, its clear my doubts.
September 30, 2010 at 11:54 pm
GilaMonster (9/30/2010)
DBCC TRACEON(3604)
DBCC DBINFO
DBCC TRACEOFF(3604)
The field of interest is dbi_version. Run that against master on a 2008 instance and the...
September 30, 2010 at 1:31 pm
I also tried the same but facing same type of issue. One of my machine has Win XP with SQL 2008 R2 - DTS designer is working fine in that...
September 30, 2010 at 1:15 pm
Though I am right, I lose point 🙁
September 30, 2010 at 1:23 am
Nice article and good examples. Thanks
September 27, 2010 at 10:37 pm
Whenever server face Memory crunch or performance issue then profiler skips some events because they require more resources to trace the event. If you want to capture all the events,...
September 27, 2010 at 9:52 pm
Thanks for nice article.
But, BOL is also using "sp_detach_db" command to describe attach database command as below:
USE master;
GO
sp_detach_db Archive;
GO
CREATE DATABASE Archive
ON (FILENAME = 'D:\SalesData\archdat1.mdf')...
September 27, 2010 at 5:38 am
Good series of questions Nakul. Thanks
September 26, 2010 at 11:39 pm
SQL Server provides lots of tools to administer the database.
SQL Server also provides facility to take backup with "Compress" option. So backup size is small.
You can take backup in compress...
September 19, 2010 at 10:07 pm
I would also like to thanks SSC.
I have learned lots of new things from the articles, posts as well as forums posted on the sites.
September 19, 2010 at 9:52 pm
Nice question and good explanation from Hugo. Thanks 🙂
September 16, 2010 at 5:12 am
If any service is connecting to your database on timely manner than stop that service. Because your database is currently in Single user mode, if that service is connecting the...
September 14, 2010 at 10:30 pm
martin.edward (9/14/2010)
Thanks, but what does the part :- 'for insert not for replication mean'. On which table is the trigger on ?
Trigger is for Insert operation. This trigger is not...
September 14, 2010 at 1:57 am
You have attached SQLPlan as per your old query. Use qualify names in the query and check performance & generate the execution plan.
September 14, 2010 at 1:48 am
Viewing 15 posts - 331 through 345 (of 373 total)