Viewing 15 posts - 1,321 through 1,335 (of 4,745 total)
cfradenburg (12/3/2011)
george sibbald (12/3/2011)
December 3, 2011 at 5:07 pm
Unbelievable. How can you exempt support staff such as DBAs and network staff when a lot of their work by its nature has to be done outside of normal working...
December 3, 2011 at 12:14 pm
same syntax. Partitioned tables are still held within the same database. You may want to look at filegroup backups if the databse is very large, but it all comes under...
December 2, 2011 at 3:45 pm
does it? Unless you live in the back of beyond should be able to drive 300 miles in 5 to 6 hours 🙂
December 2, 2011 at 3:39 pm
sorry, that was a section of a larger script, add
declare @as_ObjectName sysname
set @as_ObjectName = NULL
December 2, 2011 at 3:34 pm
Elliot, sp_help_revlogin maintains sids and passwords
December 2, 2011 at 2:48 pm
is this what you want?
SELECT replace(state_desc,'_with_grant_option','') + ' '+ permission_name + ' ON ['
+ OBJECT_SCHEMA_NAME(major_id) + '].[' + OBJECT_NAME(major_id) + ']'+
case minor_id
when 0 then ' '
else
' (['+col_name(sys.database_permissions.major_Id,...
December 2, 2011 at 1:53 pm
If you are restoring a database the users wil be restored with the database
I would use sp_help_revlogin to create the SQL to create the logins on the new server, this...
December 2, 2011 at 1:46 pm
Copy over your full backup and LATEST differential ONLY. After that you only need to be sure you have all the log backups after the differential available.
so you can then...
December 2, 2011 at 1:09 pm
well I upgraded my browser to IE9 and the only thing it seems to have broken is the spellchecker in SSC! It puts the amended work back inside the incorrectly...
December 2, 2011 at 12:35 pm
MyDoggieJessie (12/2/2011)
If I restore the full backup, then apply the last differentials to the secondary server AND a new full backup occurs on the...
December 2, 2011 at 12:27 pm
don't blow the logshipping away and start again. Remove all the log backups on the secondary server. On the primary move them to another directory, i.e you just need to...
December 2, 2011 at 12:22 pm
...took for granted the differential restore would be with norecovery and you haven't previously bought the database online (used with recovery anywhere)
December 2, 2011 at 10:30 am
yes you could, but check out log_reuse_wait_desc column in sys.databases first as you have log full errors.
December 2, 2011 at 10:10 am
is there the space on the secondary log file drive for the log to increase to the size you increased it to on the primary?
If you do recover the secondary...
December 2, 2011 at 9:59 am
Viewing 15 posts - 1,321 through 1,335 (of 4,745 total)