Viewing 15 posts - 316 through 330 (of 4,745 total)
if you set up a delay then the log will not restore until that delay time has passed
February 6, 2014 at 7:47 am
you have 788 MBytes available for processes to use, this is the figure you should be concerned with, rather than free memory.
see http://brandonlive.com/2010/02/21/measuring-memory-usage-in-windows-7/
for one description of what these numbers mean.
February 5, 2014 at 3:43 pm
please don't go back and amend posts, you have made it look like I have refused to help you for no reason
February 5, 2014 at 3:49 am
edited to avoid misrepresentation
February 4, 2014 at 12:26 pm
this gets server role permissions
set quoted_identifier off
set nocount on
select 'exec sp_addsrvrolemember ' +"'" +loginname +"',"
+"'sysadmin'"
from syslogins where sysadmin = 1
union all
select 'exec sp_addsrvrolemember ' +"'" +loginname +"',"
+"'securityadmin'"...
February 4, 2014 at 11:24 am
sanku.raghuram (2/4/2014)
I can get the destination server to recovery mode.
Can I directly apply the transaction log back up
or Do I need to need get...
February 4, 2014 at 11:21 am
sanku.raghuram (2/4/2014)
Its 38GB and its production environment and norecovery I did not understand you mean with standby rite.
do the initial full restore with norecovery, first log restore will put it...
February 4, 2014 at 11:15 am
if you mean database permissions they go across with the database, or did you mean server level permissions?
sp_help_revlogin list out logins, their sids, passwords and default databases.
February 4, 2014 at 10:51 am
any messages about missing lsns from 'select log_time_utc,message from msdb.dbo.log_shipping_monitor_error_detail' ?
run the last query in previous post and make sure you have all the log backups on your secondary since...
February 4, 2014 at 10:47 am
check the growth factor on the file. maybe a small amount of extra data led to a huge growth.
the standard reports in ssms (disk usage) will show when the growth(s)...
February 4, 2014 at 10:13 am
probably missing a log backup so nothing for log shipping to apply as far as it is concerned.
run these queries for info
-- error details
select * from msdb.dbo.log_shipping_monitor_error_detail
select log_time_utc,message from...
February 4, 2014 at 10:06 am
We have native backup compression now, so why not native backup encryption (no, I don't mean TDE). Are redgate paying microsoft not to do this? 🙂
Why can't SSIS and SSRS...
February 1, 2014 at 2:46 pm
database permissions are held within the database, so when you copy a database across its permissions come across with it, so there are no server level configurations that can be...
January 28, 2014 at 7:36 am
script up the database copy\restore and include the permission change in the script.
January 28, 2014 at 7:13 am
ok, now I am wondering why I posted mu upgrade from SQL2000 to 2008 script, must have had a rush of blood to the head!
it is still relevant up to...
January 28, 2014 at 3:50 am
Viewing 15 posts - 316 through 330 (of 4,745 total)