Viewing 15 posts - 211 through 225 (of 271 total)
Oops Struts is definetly getting to me.
You'll need to just do a full restore from scratch. restart only works with tapes.
Dave
May 24, 2005 at 8:02 am
I might be wrong but I believe your only option is to finsh the restore you started.
I don't know if you can do this in EM but in query analyser...
May 24, 2005 at 7:29 am
It writes to each of the files in a round robin fashion so that data is evenly distributed accross each.
From Books Online:
As data is written to the filegroup, Microsoft® SQL...
May 20, 2005 at 12:05 pm
I should also have noted that if you use multiple files do not rely on auto grow to grow your databases as it will only increase the size of...
May 19, 2005 at 1:29 pm
As previously stated having a numerous files on a single Raid 5 array will likely make little difference to your performance but there is a more important consideration, in my...
May 19, 2005 at 1:04 pm
Juanita
Thought this might be useful as well it lists the sizes of all the databses and the free space left in each
DECLARE @database sysname
DECLARE databases CURSOR FOR
SELECT CATALOG_NAME
FROM master.INFORMATION_SCHEMA.SCHEMATA
open databases
FETCH...
May 16, 2005 at 5:23 pm
I would point you to this article
http://www.sqlservercentral.com/columnists/dpeterson/allabouttransactionspart2.asp
hth
Dave
May 2, 2005 at 1:18 pm
It is possible to write some scripts to compare two databases in a relatively short period of time using the information_schema views and the system tables where necessary.
There are some...
May 2, 2005 at 12:07 pm
There's loads of way to move databases between servers. I personally always use attach and detach where possible but the two links should provide some more info for you.
http://support.microsoft.com/default.aspx?scid=kb;EN-US;314546
http://support.microsoft.com/default.aspx?scid=kb;EN-US;240867
May 2, 2005 at 11:30 am
Personally I would go down the c# route if you are going to keep using sql server especially with the clr and custom assemblies stuff coming into sql server 2005....
April 28, 2005 at 5:27 pm
I had this problem once before and fixed it by restarting the rpc service on the machine.
It was fine after that.
Dave
April 28, 2005 at 2:07 pm
I'm lazy so i've just copied from BOL but you want to do the following basically specify your restore operation with restart.
C. Restore a database using RESTART syntax
This example uses...
October 28, 2004 at 1:20 pm
If the number of users exceeds the number of worker threads then sql server will start to pool the threads this can lead to contention among user processes requiring access...
October 28, 2004 at 1:06 pm
You can using server network utility to hide a sql server on the network. click on tcp/ip then properties. I believe this could be why you are not seeing the...
October 26, 2004 at 2:56 pm
I've had probelms with dates because visual studio seems on my computer at least to set the language of all report elements to US english so if you are not...
October 22, 2004 at 2:29 pm
Viewing 15 posts - 211 through 225 (of 271 total)