Forum Replies Created

Viewing 15 posts - 5,311 through 5,325 (of 5,841 total)

  • RE: Troubleshooting memory consumption/server freeze in SQL 2005

    check out some of the sys.dm_exec... DMVs in BOL. also sys.dm_os_waiting_tasks to see if things are getting behind.

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

  • RE: table size and database size

    sys.indexes is NOT maintained accurately. Try running dbcc updateusage first. Also, check out the new DMVs in SQL 2005 (such as sys.dm_db_index_physical_stats) and some of the partition DMVs...

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

  • RE: SAN/CPU's SQL 2005 Enterpriseedition

    You really should hire an expert SAN-experienced DBA to guide you in setting up this new environment. I can GUARANTEE that you will not get optimal performance if you...

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

  • RE: Troubleshooting memory consumption/server freeze in SQL 2005

    DBCC MEMORYSTATUS will show you all kinds of information about internal memory useage.

    there is a nasty bug in windows for large-file copies to slower drives. Also, if your box...

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

  • RE: LINQ TO SQL

    I am hoping for massive uptake in the use of LINQ to SQL, especially without using stored procedures. A large part of my consulting business comes from performance tuning...

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

  • RE: execution plan

    Is it possible that it is running faster the second time simply because the data is now in RAM cache?

    I agree with Gila's question - how exactly are...

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

  • RE: SAN Performance Question - Utilizing LUNs

    Anytime you have more than one 'thing' requiring I/O from a set of physical drives you have the potential for I/O contention and the accompanying performance issues. Having tempdb...

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

  • RE: SAN Performance Question - Utilizing LUNs

    Any company that implements a SAN for database storage without getting a professional to help them with proper setup and allocation is pissing away a LOT of money. They...

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

  • RE: Windows Defrag SQL Server 2005 SP2

    I think Diskeeper states they can handle this situation. I still recommend that SQL Server be off during defrag operations.

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

  • RE: Fragmentation unchanged after rebuilding index

    I want to point out that I did not ask for the amount of free space on the hard disk, but rather for the free space inside the database file(s)....

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

  • RE: Fragmentation unchanged after rebuilding index

    IIRC I saw a number from Microsoft once that was not to bother with defrags on less than 1000+ page tables.

    Also, is there any free space in the database?

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

  • RE: How do I script all database objects through dynamic T-SQL?

    Check out Diff from ApexSQL.com. I believe it is command-line drivable as well.

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

  • RE: clearing tempdb from buffer cache

    My first thought was that you didn't have the hotfix for the tempdb table issue - but then noticed you are on 3215 so that is out as a suggestion....

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

  • RE: SQL 2005 Performance tuning supporting 3rd party application

    If this is your first foray into the SAN world, get ready for disappointment and frustration. Each of my last 3 primary clients jumped onto the SAN bandwagon and...

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

  • RE: Locking issues

    Deadlock troubleshooting via forums is a painful and often fruitless pursuit. Too much back-and-forth and incomplete information transferal. Have your best database resource review the 3 blog posts...

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

Viewing 15 posts - 5,311 through 5,325 (of 5,841 total)