Forum Replies Created

Viewing 15 posts - 76 through 90 (of 153 total)

  • RE: Joining a Domain

    No problems. SQLServer will not even notice.

  • RE: Various blocks

    "awaiting command" means the process is waiting for the application.

    Either the application is busy doing some large calculation or it is waiting for user input during a transaction. I...

  • RE: Backup Retention Strategies

    We keep the log backups for two days. Nobody will ask for a point in time backup for yesterday, but I like to have an alternative if the...

  • RE: Sql Server2000 Service Packs

    dekesc,

    8.00.760 is service pack 2.

    It seems you also have a MSDE server on your PC, and you upgraded that and not your developer edition.

    You must still install the Sql2ksp3.exe service...

  • RE: Sql Server2000 Service Packs

    Right.

    To check you can try the statement <code>select @@version</code> in query analyzer.

    It should give version 8.00.818

    The properties of the server in enterprise manager also give the SP number.

  • RE: URGENT Manual statistics creation vs Autocreating

    Always run update statistics automatically, with auto update or a maintenance plan for the reason Frank gave. It will update all created statistics. I prefer the maintenance plan as...

  • RE: Sql Server2000 Service Packs

    You where right in asking again.

    Could you install Sql2kdesksp3.exe? The name does not cover the usage. It is not the service pack for sqlserver on a desktop, it is...

  • RE: SQL SP3 and MDAC

    Yes, unless you alread have 2.8

  • RE: Migrate from 6.5 to 2000

    As far as I know there are the following issues:

    Some system tables are gone or changed. If you application does not access them directly you will have no problem.

    There...

  • RE: Sql Server2000 Service Packs

    Data components is the normal service pack, Sql2ksp3.exe that you already installed.

    Analysis Services is a special component of SQLServer, that you could have installed while installing SQLServer. If you...

  • RE: Memory Counters

    I also thought the two should be about equal, but if you get "not enough memory to execute query", you clearly have not enough memory. Have you looked at...

  • RE: Long Wait times

    You can see where a process is waiting for in the columns lastwaittype and waitresource from master..sysprocesses.

    If it is waiting for a lock you can get more info from master..syslockinfo

    I...

  • RE: Transaction Log writes...

    quote:


    This prevents a single point of failure on the transaction logs because it is written to two log files on different drive...

  • RE: "Ghost Cleanup"? Configuration?

    quote:


    Why is the Microsoft SQL Server development team not responding? Where are you, guys? Other SQL Server product...

  • RE: Use "stopat"

    No.

    Diffential backups are data backups. It is the whole file or nothing.

    stopat only works with log backups

Viewing 15 posts - 76 through 90 (of 153 total)