Viewing 15 posts - 2,476 through 2,490 (of 4,745 total)
You really need to check with the SAN vendor whether they guarantee consistency for databases.
But in any case I would stop the application and then SQL services cleanly, especially...
---------------------------------------------------------------------
June 29, 2010 at 2:58 pm
duplicate post, answers to:
http://www.sqlservercentral.com/Forums/Topic945011-61-1.aspx
---------------------------------------------------------------------
June 29, 2010 at 2:54 pm
If you are connected to the database restore jobs will fail as they require exclusive access, so make sure you are not connected to the database when the restore jobs...
---------------------------------------------------------------------
June 29, 2010 at 2:51 pm
balasach82 (6/29/2010)
Present size of DB is around 940MB and the max limit is set to 1000MB(i.e. restricted growth to 1000MB). So what would happen on reaching the...
---------------------------------------------------------------------
June 29, 2010 at 8:21 am
select db_name(database_id),name,size,max_Size from sys.master_files
size and max_size are in 8K pages.
max_size = -1 means unlimited
---------------------------------------------------------------------
June 29, 2010 at 6:47 am
Greg_ (6/28/2010)
george sibbald (6/28/2010)
---------------------------------------------------------------------
June 29, 2010 at 3:42 am
Correct, with this setup for SQL to use memory above 4Gb you need to enable AWE. Also allocate the 'lock pages in memory' right to the SQL service account.
Its not...
---------------------------------------------------------------------
June 28, 2010 at 5:10 pm
There are plenty of backup compression tools out there you could use, they are quite cheap. hopefully you would just have to license the source server and restore only license...
---------------------------------------------------------------------
June 28, 2010 at 4:03 pm
if you are logshipping from SQL 2000 to SQL2008 and you want the SQL2008 database available you won't be able to do it.
If you use the with standby option to...
---------------------------------------------------------------------
June 28, 2010 at 3:43 pm
In SQL2000 always change the accounts SQL services run under via properties ---> security in enterprise manager
---------------------------------------------------------------------
June 25, 2010 at 2:31 pm
Has maxsize been set for tempdb?
---------------------------------------------------------------------
June 25, 2010 at 2:29 pm
Hello? Can anyone hear me out there?
Run a backup LOG, not a full backup.
---------------------------------------------------------------------
June 25, 2010 at 2:29 am
I did not mean backup log with truncate_only, just a normal backup log dbname to disk = ' wherever'
you cannot put a mirrored database into any recovery mode than full.
to...
---------------------------------------------------------------------
June 24, 2010 at 2:26 pm
backup the log to clear space within the log (i.e. truncate it). You can then shrink the log if you really need to, but only to the size required to...
---------------------------------------------------------------------
June 24, 2010 at 11:00 am
refer to
http://www.sqlservercentral.com/Forums/Topic942386-391-1.aspx
---------------------------------------------------------------------
June 24, 2010 at 7:02 am
Viewing 15 posts - 2,476 through 2,490 (of 4,745 total)