Viewing 15 posts - 1,576 through 1,590 (of 1,995 total)
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
you'll be able to see if connection pooling is taking place by looking in a profiler trace against that database for a lot of sp_resetconnection commands
September 18, 2006 at 10:02 am
are you using connection pooling ? that would most likely be the problem.
what jdbc drivers are you using ?
September 14, 2006 at 9:53 am
after you cut down the data did you update statistics ?
might be that the query optimiser isn't picking the best plan for you due to out of date stats
i'd also...
September 14, 2006 at 9:49 am
there is a dubious piece of information somewhere on microsoft's site stating that for "optimal" performance a database should have as many files as there are CPU in the machine...
September 13, 2006 at 3:53 am
Viewing 15 posts - 1,576 through 1,590 (of 1,995 total)