Forum Replies Created

Viewing 15 posts - 1,876 through 1,890 (of 2,436 total)

  • RE: Phantom Index from ShowContig?

    could you post your query and results ? Also, add the following just above your query:

     

    select db_name()

    go

     

  • RE: ALTER TABLE - ADD column

    Here's a start:

     

    BOL - Index Tab - Estimating table size and allocating pages

     

    Some of the actual page structure stuff I have to dig for. If I remember it was in...

  • RE: ALTER TABLE - ADD column

    Where the column is in the table creation DDL are located visually really does not matter. The columns for the actual row itself are stored in the following (very over-simplified format):

    • page...
  • RE: help needed for parsing the error log file

    I manage 22+ servers ... I scan the errorlogs every 30 minutes for activity and email it to myself. I've found it useful to 'filter out' certain things like:

        '%Database...

  • RE: HELP! SOX OUT OF CONTROL!@!

    SET WAY_BACK_MACHINE ON

     

    Time for ISO-9000, ISO-9001 audits.

     

    SET WAY_BACK_MACHINE OFF

  • RE: sysxlogins help

    The command is actually:

        sp_configure 'allow updates',1 --> allow catalog updates

        sp_configure 'allow updates',0 --> dis-allow catalog updates

     

    There is also another 'nasty' side affect of this ... any stored procedure...

  • RE: Problem with attaching database

    Just a silly question ... are you now going to start practicing the 'religious rites' of 'backup' ?

  • RE: 5000 posts....new contest

    has anyone noticed the 'dip' in the world SQL Server knowledge base (since this thread started) ...

  • RE: Creating a connection string

    Glad to be able to help. Have a great day !

  • RE: Creating a connection string

    Here's a handy reference: http://www.connectionstrings.com

  • RE: reclaiming LOG space

    DBCC SHRINKFILE can be executed even while a database is in 'full recovery' mode. The command will only 'shrink' the inactive portion of the log file. However it might not...

  • RE: BCP and encrypted password

    Just a quick thought on 'encryption' ... there are lot's of 'freebies' on the web for 'decryption' and a few 'pay for' packages as well. In SQL 2000 encryption is...

  • RE: Cannot backup named instance

    What account(s) are running the SQL Server Service and the SQL Agent Service ? Are they LocalSystem ? Local COMputer accounts ? Domain User Accounts ?

     

    Where is you backup target ?...

  • RE: Remote Intanet SQL DOS Batch Backup?

    I think a quick read of a section of BOL (Books Online) may be in order here.

        Contents tab

        Administering SQL Server

        Backing Up and Restoring Databases

  • RE: security question - what role is appropriate for my boss?

    If your site uses SMS then almost everything you need is present 'out of the box' from a windows perspective on both the client and server side if the admins...

Viewing 15 posts - 1,876 through 1,890 (of 2,436 total)