Viewing 15 posts - 4,666 through 4,680 (of 4,744 total)
er.....not sure what happened there........
Michael,
thanks for that.
DevDBAs will not need to stop/start services and local admin on the server will definitely be out.
Can you expand on the permissoins needed to...
October 3, 2007 at 8:22 am
quiesce replication, make sure all transactions have reached the subscriber, backup up subscriber and restore with move option to new file locations (and reset dbowner if necessary)
October 2, 2007 at 9:38 am
Liam,
select nt_username from master..sysprocesses
will give you their individual id even if access id granted through group. alco column ny_domain if you need that.
HTH
george
September 27, 2007 at 4:06 am
there is a cumulative hotfix 2187 after SP4, have you applied that. not sure of all the bugs it fixes but worth a check
September 21, 2007 at 4:57 am
Peter, haveyou tried the -T option to connect with your windows id, then you will not need to enter your password.
george
September 21, 2007 at 4:53 am
run the following:
/* code to determine actual SQL when DBCC INPUTBUFFER returns
code like sp_prepareexec:1
replace spid with your actual spid value
*/
DECLARE @Handle binary(20)
SELECT @Handle = sql_handle FROM master.dbo.sysprocesses
WHERE spid...
September 21, 2007 at 4:43 am
I would have thought the only need to do this if is you do not have the space on a single drive to complete the backup, or you wanted to...
September 14, 2007 at 5:53 am
Paul,
as I said, give it a try, you will see. As eriK says all the log cares about is the LSN nos are in sequence, and remember a full backup...
September 12, 2007 at 4:23 am
the maintenance plan runs a dbcc dbreindex for all user tables with the free space set to whatever you specify. If you set reporting tab to log to a file...
September 11, 2007 at 4:25 am
Kyle,
I came across this script I must have pinched off the web but have never actually used it so no guarantees!
--Use the master database
USE master
go
IF OBJECT_ID('dbo.spRoleMembers') IS NOT NULL
DROP PROCEDURE...
September 11, 2007 at 4:19 am
Hi,
I assure you you can restore tran logs 'through' a full backup without restoring the intervening full backup itself, otherwise how would log shipping work?
September 11, 2007 at 3:59 am
Kedar,
there is no sql native command to restore just one table or any other object from a SQL full backup, so what you require is not possible............unless anyone out there...
September 7, 2007 at 3:39 am
the OS is still the same so the rules for configuring memory still apply.
main difference in SQL 2005 vs sql2000 is standard edition can now take advantage of memory above...
September 7, 2007 at 3:35 am
I have done this the way noel describes and it works fine.
couple of provisos, script out replication first and stop the various cleanup jobs as well
September 6, 2007 at 5:15 am
Viewing 15 posts - 4,666 through 4,680 (of 4,744 total)