SQL 6.5 to SQL 2000 performance question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Robert

    SQL 6.5 to SQL 2000 performance question

    We are running SQL Server in 6.5 compatability mode. We have some queries
    that are supported in 2000, that is the reason for the 6.5 version. What,
    if any, would be gained in performance by switching to 2000.


  • Simon Hayes

    #2
    Re: SQL 6.5 to SQL 2000 performance question


    "Robert" <stop.spam@boei ng.com> wrote in message
    news:HsDp22.3LF @news.boeing.co m...[color=blue]
    > We are running SQL Server in 6.5 compatability mode. We have some queries
    > that are supported in 2000, that is the reason for the 6.5 version. What,
    > if any, would be gained in performance by switching to 2000.
    >
    >[/color]

    As far as I'm aware, the compatibility level affects functionality, not
    performance as such, although since I haven't used it much myself, I'm not
    100% sure about that.

    In any event, MS recommends using a compatibility level only as a temporary
    step during an upgrade, and moving to 2000 level would give you extra
    functionality (eg. functions, indexed views) which isn't available in 6.5
    mode. So it would probably be a good idea to review and update your code
    anyway.

    If you're having difficulties doing that, then you can post an example of
    the problem code (including DDL and sample data, if appropriate), and the
    errors you get in 2000 mode, and someone may be able to suggest an
    alternative way to write the queries.

    Simon


    Comment

    • Gert-Jan Strik

      #3
      Re: SQL 6.5 to SQL 2000 performance question

      You would get all the gains of SQL-Server 7.0 and 2000.

      Some relevant gains of SQL-Server 7.0:
      - Use of multiple indexes per table
      - Hash and merge join strategy
      - better handling of large memory
      - better storage engine

      Some relevant gains of SQL-Server 2000:
      - Indexed views possible
      - even better storage engine

      Gert-Jan

      Robert wrote:[color=blue]
      >
      > We are running SQL Server in 6.5 compatability mode. We have some queries
      > that are supported in 2000, that is the reason for the 6.5 version. What,
      > if any, would be gained in performance by switching to 2000.[/color]

      Comment

      • Robert

        #4
        Re: SQL 6.5 to SQL 2000 performance question

        thanx


        "Gert-Jan Strik" <sorry@toomuchs pamalready.nl> wrote in message
        news:401D8380.2 55181D5@toomuch spamalready.nl. ..[color=blue]
        > You would get all the gains of SQL-Server 7.0 and 2000.
        >
        > Some relevant gains of SQL-Server 7.0:
        > - Use of multiple indexes per table
        > - Hash and merge join strategy
        > - better handling of large memory
        > - better storage engine
        >
        > Some relevant gains of SQL-Server 2000:
        > - Indexed views possible
        > - even better storage engine
        >
        > Gert-Jan
        >
        > Robert wrote:[color=green]
        > >
        > > We are running SQL Server in 6.5 compatability mode. We have some[/color][/color]
        queries[color=blue][color=green]
        > > that are supported in 2000, that is the reason for the 6.5 version.[/color][/color]
        What,[color=blue][color=green]
        > > if any, would be gained in performance by switching to 2000.[/color][/color]


        Comment

        Working...