Viewing 15 posts - 31 through 45 (of 319 total)
nadersam (3/8/2010)
Yes i am doing this on production db.
i tried doing it first from mangment studio, it gave me time out so i generated sql script but...
March 8, 2010 at 3:57 am
certainly...that's y we plan our day to run maintenance activity..also a drop statement on large table with around 1000 transactions/sec is also not a good idea...
March 8, 2010 at 3:49 am
GilaMonster (3/8/2010)
You can drop an index at any time, neither the DB nor the server have to be in single user mode. If the index is...
March 8, 2010 at 3:34 am
as per me it will not cause clustered index to rebuild.
March 8, 2010 at 3:02 am
yes...if its a production server then u must wait for the maintenance window...other wise change the database to single user mode and drop the index..but before dropping the index u...
March 8, 2010 at 2:43 am
use TFS or subversion..don't use VSS....google for TFS tutorials...
March 3, 2010 at 3:16 am
plz mention sql server edition and service pack info.
March 2, 2010 at 4:52 am
post the script
March 1, 2010 at 10:27 pm
appreciate your efforts..u should better try the dos script..it is fast and simple...
February 20, 2010 at 1:09 am
google "upgrading sql 2000 to sql 2005"
February 19, 2010 at 3:17 am
am with George...
I was in a similar scenario...I found out the wait type of blocked process was cxpackets..
Use this query to filter out the blocked process and check...
February 18, 2010 at 9:47 pm
connect thru ssms or sqlcmd to run the command
February 18, 2010 at 5:32 am
try this dos command, u can have it scheduled...
FORFILES /P <filepath> /S /M *.BAK /D -1 /C "cmd /c del @file"
February 18, 2010 at 4:36 am
try this...
select srv.name,lgn.Remote_name
from sys.servers srv, sys.linked_logins lgn
where srv.server_id=lgn.server_id
and lgn.remote_name='login1'
also refer to the BOL link
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/06d53a67-7804-4f1f-8201-3e42dc48ba79.htm
January 22, 2010 at 5:16 am
Viewing 15 posts - 31 through 45 (of 319 total)