Forum Replies Created

Viewing 15 posts - 4,021 through 4,035 (of 5,841 total)

  • RE: Improving Performance of Cross-Partition Queries

    Numerous SQL Server MVPs (and lots of other users as well) have been screaming at Microsoft for years to improve partitioning. I hope improvements will be coming in later...

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

  • RE: Optimising Server-Side Paging - Part I

    Paul White NZ (5/3/2010)


    Florian Reischl (5/1/2010)


    Hey Paul

    Thanks for sharing this great article!

    Best wishes,

    Flo

    Hey Flo, thanks very much! I'm a big fan of your blog by the way.

    Can you give...

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

  • RE: How To Get Last Inserted Record Value In SQL Server

    >>A DATETIME column with DEFAULT GETDATE() will work for single-row inserts, but if multiple rows are inserted in the same statement they will all have the same value.

    Here is...

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

  • RE: Memory Justification

    Scott Coleman (4/28/2010)


    Don't confuse the virtual memory system and its paging file with the SQL buffer pages. Virtual memory pages are 4 KB pieces of the memory used by...

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

  • RE: Memory Justification

    Whisper9999 (4/27/2010)


    TheSQLGuru (4/27/2010)


    Here's more insight for you: Low PLE simply means pages of data are being removed from the buffer pool so 'fresher' pages can be put in for...

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

  • RE: Memory Justification

    Here's more insight for you: Low PLE simply means pages of data are being removed from the buffer pool so 'fresher' pages can be put in for processing. ...

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

  • RE: How To Get Last Inserted Record Value In SQL Server

    maven.avi (4/27/2010)


    As per your question, i have the written the following query.

    Hope it helps.

    Create table latest_value

    (

    [name] varchar(50)

    )

    go

    Insert into latest_value

    Select 'Avinash'

    Union All

    Select 'Suresh'

    Union All

    select 'Rahul'

    Union All

    Select 'Anil'

    Union All

    Select 'Zayed'

    Union...

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

  • RE: Optimising Server-Side Paging - Part I

    Paul White NZ (4/27/2010)


    ondrej.bouda (4/27/2010)


    Thats a good point of view: Tell to the optimizer all that you can know.

    Absolutely right!

    +2!!

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

  • RE: Which query method is best to use and when?

    Jeff, didn't they completely remove support for "SELECT 1 FROM E01 a, E01 b" in SQL 2008 or 2008R2? I thought that non-ANSI stuff was going away. In...

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

  • RE: Optimising Server-Side Paging - Part I

    Oopsie! Should have held my comments for another week or so - then it would have been considered a good segue into the next article. :hehe:

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

  • RE: Which query method is best to use and when?

    Number of rows isn't the only issue that can kill you with Table Variables. The actual VALUES can cause issue too, since you can't have statistics on TVs. ...

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

  • RE: Optimising Server-Side Paging - Part I

    I have done this type of thing for numerous clients, with stunning results as you show. Actually usually better, because they are almost always encountered in multi-table-open-ended search scenarios....

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

  • RE: Understanding and Using APPLY (Part 2)

    I too would like to see more information on exactly what is required for the optimizer to be able to translate APPLY to a JOIN so it can use something...

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

  • RE: General pointers on reading wait statistics

    1) the BEST way to learn how to interpret and make use of the wait stats is to have a professional tuner mentor you while giving your system a review...

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

  • RE: System databases on an iSCSI LUN

    MarkusB (4/22/2010)


    SQLGuru,

    thanks for your reply and I totally agree with you that a lot of SAN implementations are not very well done.

    Unfortunately I joined my current company just...

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

Viewing 15 posts - 4,021 through 4,035 (of 5,841 total)