Forum Replies Created

Viewing 15 posts - 1,576 through 1,590 (of 1,995 total)

  • RE: INSERT - issue

    alter database x set restricted_user

    should stop anyone who isn't dbo dbcreator or sysadmin getting in the database

  • RE: delete old backup files

    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...

  • RE: Mirroring - Manual failover from Mirror

    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...

  • RE: Replication / Mirroring Topology

    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...

  • RE: Replication / Mirroring Topology

    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...

  • RE: varchar length

    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!!!!

  • RE: Replication / Mirroring Topology

    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...

  • RE: varchar length

    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...

  • RE: Replication / Mirroring Topology

    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...

  • RE: varchar length

    how are you attempting to change it ? using enterprise manager or are you scripting the change?

  • RE: Can''''t change the query into Stored Procedure

    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...

  • RE: Poor Web App Performance?

    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

  • RE: Poor Web App Performance?

    are you using connection pooling ? that would most likely be the problem.

    what jdbc drivers are you using ?

  • RE: Performance issue with SQL Server 2000

    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...

  • RE: Splitting 1 Big Data File

    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...

Viewing 15 posts - 1,576 through 1,590 (of 1,995 total)