Viewing 15 posts - 1 through 15 (of 21 total)
GilaMonster (12/8/2008)
herbiechin (12/8/2008)
December 8, 2008 at 4:23 am
Hi Perry,
As I said in my last post, I have run a DBCC CHECKDB on the entire database (just in case). It came back clean.
December 8, 2008 at 4:12 am
In more or less the same situation, I am trying to restore a backup of a database that was taken in SQL Server 2000 (Instance) onto SQL Server 2005. It...
December 8, 2008 at 3:30 am
Leo (10/16/2008)
According from 'dbcc checkdb (dbname) with no_infomsgs.' , you said run
that command before backup run. But my questions is, what do we do if I already setup a...
November 28, 2008 at 8:06 am
I agree with James - in fact will go beyond, I always make it a habit of naming the default constraints as this will help me a great deal in tracking them down...
July 12, 2007 at 2:33 am
Currently YES - same server but this can be moved to another server.
How could this change the situation? I thought keeping them on the same server will minimise network bottleneck...
November 12, 2004 at 2:59 am
Greg is correct - I would disable any constraints and triggers on the destination db before moving the all data/objects/SPs/views. Below is a starting point where you will need to...
November 2, 2004 at 3:28 am
SQL Server automatically rebuilds existing nonclustered indexes when any of the following occurs:
-An existing clustered index is dropped using the DROP INDEX statement.
-A clustered index is created.
-The...
November 2, 2004 at 2:39 am
HI,
I totally agree with Antares and Coach James - it is the programmers department to sort this out. I have a very similar situation with Sybase EAServer application where connections...
June 7, 2004 at 3:13 am
Hi,
I have recently installed Microsoft Backoffice 4.5 for some other reasons and believe to have come across one of the bundled "tool" in a form of an Excel spreadsheet which...
May 7, 2004 at 2:31 am
Hi,
This is an abstract from the BOL:
Recommendations for Good DBCC Performance
1. Run CHECKDB when the system usage is low.
2. Be sure that you are not performing other disk I/O...
May 6, 2004 at 3:16 am
Hi Gary,
Try the following:
--change the SA Password in the MSDE version 8.00.382
EXEC sp_password 'OldPass', 'NewPass', 'sa'
Good luck
Herb
May 6, 2004 at 3:05 am
If it was a user-db, I would normally use the following syntax running from QA. This does not require the db to be offline which is a plus.
--Replace the folder...
April 30, 2004 at 2:33 am
Hi Flavio,
Just in case you forget, please please check that there are no stored proc referencing this column before making the changes. If there is, you have to take this...
April 30, 2004 at 2:22 am
OK AngelaBut,
I totally agree on what you all are saying.
What if the table holds very few records despite the many columns? Should performance still become an issue?
Will appreciate any of...
April 28, 2004 at 10:10 am
Viewing 15 posts - 1 through 15 (of 21 total)