Viewing 15 posts - 1,576 through 1,590 (of 1,999 total)
you're looking for an rss feed such as the one provided at
September 29, 2006 at 8:07 am
dump transaction has been deprecated in 2005 use backup log (apparently backup log with truncate_only has also been deprecated)-
but if the primary in the mirror has not synchronised with...
September 29, 2006 at 4:28 am
then new primary or the old primary ?
September 29, 2006 at 4:02 am
when you say - can't dump the log - why not ?
September 29, 2006 at 3:54 am
alter database x set restricted_user
should stop anyone who isn't dbo dbcreator or sysadmin getting in the database
September 28, 2006 at 9:22 am
in sql2005 you have to add a job to the maintenance plan for "delete maintenance plan files" - this can be performed before or after the backup itself (i recommend...
September 28, 2006 at 7:45 am
thats the problem in not using a witness.
Force service (with possible data loss) on the mirror server.
Forcing service is possible only if the principal server is down, the session is...
September 28, 2006 at 7:41 am
no - nothing for mirroring that i know of - but doubletake might have some compression.... not sure as have never used it - it's a file level sync tool...
September 27, 2006 at 9:25 am
ok - look at some other software then to help you.
try
imceda(now quest i think) litespeed to compress your t-log backups in log shipping
or maybe doubletake
maybe these will cope...
September 27, 2006 at 9:18 am
glad to be of service - done it myself before and couldn't figure out why users with usernames longer than 25 chars were failing to run certain procs!!!!
September 27, 2006 at 9:14 am
same problems with log shipping as with mirroring - they're effectively the same, so your re-index will do the same thing to your wan.
again - if you mirror over the...
September 27, 2006 at 8:31 am
do you have a trigger that writes the contents of this field to another location???
or perhaps a cascading update from a foreign key - they might be trying to write...
September 27, 2006 at 8:16 am
just remember that if you mirror you primary to your off site server then on any failure of yor primary then the off site will pick up the load rather...
September 27, 2006 at 7:52 am
how are you attempting to change it ? using enterprise manager or are you scripting the change?
September 27, 2006 at 7:42 am
create procedure myproc
as
SELECT DISTINCT O.ODID,R.RCID,R.RQTY,R.RDATE,NetQty FROM RECEIVE R ,ORDER12 O WHERE O.PARTID = (SELECT PARTID FROM PART WHERE [DESC]= '+y+') AND O.ODID = R.ODID AND R.NetQty >0
GO
(i'm...
September 27, 2006 at 7:38 am
Viewing 15 posts - 1,576 through 1,590 (of 1,999 total)