Forum Replies Created

Viewing 15 posts - 16 through 30 (of 691 total)

  • RE: Transaction Log Full

    Ask the administrator to back up the transaction log, which should free up space in the file.  Then, as Chris suggested, break up your delete into smaller batches.  However, breaking...

  • RE: mystery of deleted rows

    I'd be looking at anything and everything that has been changed in the application at the time that this started.  Its got to be something in the application doing this.  I...

  • RE: Better way to do this?

    I sometimes get fouled up on joins, and I don't have your schema to test with, but....

    UPDATE dbo.Employee

         SET CongDist = R.CongDist

    FROM dbo.Ranged R

         INNER JOIN( SELECT R2.Start,...

  • RE: Posts disappearing into the vast abyss

    As a matter of fact, I copied the post that started this thread into my clipboard before posting it!

    Steve

  • RE: Better way to do this?

    missing the "ON"
     
    UPDATE dbo.Employee

         SET CongDist = R.CongDist

    FROM dbo.Ranged R

         INNER JOIN( SELECT R2.Start, R2.Stop FROM dbo.Ranged R2 

                          WHERE dbo.Employee.hzip = R2.Zip) Range
         ON ......

    WHERE...

  • RE: simple recovery model

    Juanita,

    In my opinion, Microsoft messed up when they named it the "transaction log", because that isn't really what it is.  Its a transaction facilitator.  When you issue an update, for...

  • RE: Automatic back up

    I don't have any experience with ftp, but I would think that you would create a maintenance plan to back your database up to a local disk (which includes scheduling),...

  • RE: simple recovery model

    In Simple Recovery model, as the transactions are written to the database, they are deleted or "truncated" from the transaction log.  This is done each time a checkpoint is issued,...

  • RE: Potentially stupid question

    I read that in Books Online too.  But its not quite accurate.  In Kalen Delaney's book, Inside SQL Server 2000 (pp231-232), she states -

    "A row with variable-length columns requires...

  • RE: Overcome CDOSYS mailing limitation ?

    You could send your text as an attachment to overcome the 8000 char limitation.

    Steve

  • RE: Data warehose Recovery Model

    Just be absolutely sure that if you are not taking transaction log backups, that you change the database recovery model to Simple.  If you don't, you'll discover that your transaction...

  • RE: Data file and log file sizes

    The log will not shrink on its own with a transaction log backup.  It will truncate.  The difference is that SQL has ALLOCATED 450MB to your transaction log because at some...

  • RE: what log does what?

    If your server is going into single user every night, you should probably look at your maintenance plans.  Some maintenance actions require exclusive use of the database, and a maintenance...

  • RE: Moving Large Database

    If this is a one time shot, you should be ok just copying.  Be aware that the progress bar in Windows Explorer may go haywire, showing incredibly large positive/negative numbers. ...

Viewing 15 posts - 16 through 30 (of 691 total)