Forum Replies Created

Viewing 15 posts - 5,506 through 5,520 (of 5,841 total)

  • RE: SQL 2005 x64 bit memory high usage

    Max Mem setting varies depending on numberous factors including all stuff running on the server, server RAM, network needs, etc. It should also be altered by watching pages/sec setting...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: SQL 2005 x64 bit memory high usage

    It is true that Lock Pages in Memory only works for Enterprise Edition of SQL Server. However, you should be aware that not allowing memory to be trimmed can...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Performance Monitoring

    This actually makes sense if you think about it. Accessing hard drives for data (physical I/O) is SIX orders of magnitude slower than that same data flying through the...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Table Locks in Cursors

    I second Jeff - rewrite the code to not use a cursor at all. Failing this, wouldn't a FAST_FORWARD cursor be best with NOLOCKs in the SELECT?

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: SQL 2005 Memory Problem

    Is this an HP box? They have a very nasty bug in their iLO driver that causes RAM flushing too, just like the large file copy bug.

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: SQL Server 2005 Memory Configuration

    In Enterprise Edition only Lock Pages in Memory can keep the OS from flushing SQL Server data pages out of RAM. This can be a good thing, obviously, since...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: SQL Server 2005 Memory Configuration

    Turn what on Steven?

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: TSQL Lab I - Playing around with ROW_NUMBER

    Nice article! One minor point is that I believe it is technically more correct in this case to use UNION ALL instead of UNION since there are no distinct...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Sample every nth record

    I took it that if there was an identity column and the Nth record was absent then that Nth record shouldn't be returned. 😛

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Reverse Engineering Entity Relationship Diagrams for SS2005

    Visio is definitely better than the diagramming tool that comes with SSMS. You can also get a VERY nice modeller from Embarcadero called ERStudio for a really good price...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Sample every nth record

    If you have an identity column then % operator should be the quickest mechanism to get every N records back.

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: SQL 2005 64-bit on Windows 2003 R2 Standard 64-bit and AWE/Lock Pages in Memory

    I think it is better said that if you don't set the maximum memory you WILL have problems. For an 8GB server with nothing else running on it but...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Database Server Selection

    One thought: if the various raid partitions don't have many ACTIVE spindles you could have more files/file groups that would be optimal. Sounds like you have a pleathora...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Query Performance SQL Server 2000 vs SQL Server 2005

    1) different hardware?

    2) different memory allocation, server settings?

    3) fragmented indexes/data/os files?

    4) out of date statistics?

    5) bad query plan from parameter sniffing?

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: SQL Server 2005 Memory Configuration

    1) with 20GB RAM, do not use /3GB, just /PAE and enable AWE. Also consider upgrading to 64 bit sql server.

    2) Colin, can't sql 2005 std use more than...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

Viewing 15 posts - 5,506 through 5,520 (of 5,841 total)