Viewing 15 posts - 32,311 through 32,325 (of 39,818 total)
That does sound long. I think SQL_ORACLE is right. I'd expect a 200GB file to be restored in 3-6 hours tops. If you have spread out the disk I/O, data,...
April 12, 2007 at 8:34 am
Stop using sa
No other way. Use a limited user, even a standard one, that has rights, like db_owner to particular databases.
April 12, 2007 at 7:41 am
Right click the database in Enterprise Manager, select Backup Database. pick a location and file name.
You can also setup a maintenance plan, select all "system dbs" and configure the backup...
April 12, 2007 at 7:40 am
This (http://www.sqlservercentral.com/columnists/rpearl/abitabout64bit.asp) seems to indicate you still need PAE and AWE. The data cache gets all your RAM, but the buffers for structures and objects are limited to 4GB.
Not a...
April 12, 2007 at 7:39 am
Scott and Cliff have really answered well, so listen to them and thanks for the great answers.
The only other hting I'll add is that the query optimizer works better with...
April 12, 2007 at 7:35 am
What is "Reseter Database" and I'm not sure what the list of server roles has to do with you attaching a database. If you are connecting as a sysadmin or...
April 12, 2007 at 7:32 am
The log stores all your transactions, which could be more than the data size, depending on how things are loaded.
If this was a one time, or rare thing, you can...
April 12, 2007 at 7:31 am
USE is a statement. I suspect that your BOL is out of date. There have been 2 or 3 updates to BOL since the release. CONNECT is a permission required...
April 12, 2007 at 7:28 am
Thanks for the complements! We try and please let us know when we stray off the path.
Steve
April 12, 2007 at 7:21 am
Congrats Sarah and good luck in the new position!
April 12, 2007 at 7:18 am
I'd do Profiler and Permon (System Monitor) to cover the time frame to start.
April 11, 2007 at 12:21 pm
You can get Enterprise Manager from the SQL Server 2000 CD. Install the client tools. There's a 2nd disk in there that contains the Personal Edition, which you get iwth...
April 11, 2007 at 11:45 am
How are you loading the data? Typically I'd insert a row on the start and populate the name, "n", date, 0, getdate(), null.
Then after completion, update the row (based on...
April 11, 2007 at 11:28 am
Hope it helps. Remember to that unless you track it regularly, like every day, you won't know when it changed.
April 10, 2007 at 2:34 pm
It's not a problem, but it is a sign of poor coding. Somewhere there is a commit statement, which ends a transaction, without there being a BEGIN TRANSACTION statement. It...
April 10, 2007 at 2:33 pm
Viewing 15 posts - 32,311 through 32,325 (of 39,818 total)