Viewing 15 posts - 1 through 15 (of 25 total)
There are 2 problems here, excluding the why:
What existing indexes do you have on the table?
The system will take time to update the table and update the index's if...
August 31, 2006 at 2:14 am
When you restore you have to make sure the paths to where the database files need to go are correct. The database presumes that you would like to restore over...
August 30, 2006 at 8:37 am
If you have a look at how the calculation works, all averages being equal, then it is left open to interpretation.
Personally you cannot determine if you have a problem...
August 30, 2006 at 8:24 am
Hi, just to give some explanation as to why the restore takes a long time.
When a backup is restored it creates the "devices" for the database, If you have a...
February 21, 2006 at 7:52 am
If you are concerned about possible corruption you can always run DBCC CHECKDB to verify your concerns.
What you can also check is DBCC SHOWCONTIG, this should give you a good...
April 8, 2005 at 12:35 am
Run sp_spaceused against your database and your restored database.
Sample output:
database_name database_size unallocated space
----------------------- ------------------ ------------------
master 86.56 MB 23.77 MB
reserved data index_size unused
--------------- -------------- ---------------- ------------------
16680...
April 6, 2005 at 7:53 am
In short .. no
What happens is:
The database files are stored on the external disk, if the server fails over, The S1 access the that drive is terminated, the heartbeat or...
February 1, 2005 at 6:57 am
you actually have 5 server... S1 , S1S(Standby on S2) , S2 ,S2S (Standby on S1) AND S3
As fas as i'm aware the standby server(S1S) will start all the databases of the...
February 1, 2005 at 6:21 am
Let me see if I understand.
You would like to install a SQL cluster that has the same data active(delayed by logshipping) on a cluster.
In other words a Active/Passive and Passive/Active...
February 1, 2005 at 5:03 am
The rebuild registy from the install CD does work, remember to reapply any patches that you used, I would recommend this as a precaution.
I'ts always good to hear of another SQL...
January 25, 2005 at 11:22 pm
There is the quick and dirty way or the propper way!
Option1:
The propper way is to rebuild from your backups, this will allow recovery of all your databases in a orderd...
January 25, 2005 at 3:05 am
That is what I call the BLACK ART of Information Technology, 110 ways to solve a problem, but only one seen as the 'correct' way.
I guess its all related...
October 15, 2004 at 1:02 am
Sorry Steve I had a hard day yesterday, You must be one of the lucky ones.
More than once I have had problems with databases that are in full recovery that the log...
October 14, 2004 at 3:26 am
For jerryol:
From BOL under ALTER DATABASE
ALTER DATABASE database
{ ADD FILE < filespec > [ ,...n ] [ TO FILEGROUP filegroup_name ]
| ADD LOG FILE < filespec > [...
October 14, 2004 at 3:11 am
Viewing 15 posts - 1 through 15 (of 25 total)