Forum Replies Created

Viewing 15 posts - 21,976 through 21,990 (of 22,219 total)

  • RE: Who Trains You?

    Regarding books, if you're interested in a little work to get the book for free, the book review SIG over at SQL PASS will have a host of new books...

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: Test data generation tool?

    I've been pretty disatisfied with all the Quest products that we have licensed with two exceptions. Quest Data Factory and Quest Benchmark Factory are darned good products. I'm using the...

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: The Religious Wars

    Steve, you are absolutely wrong on this one... depending.

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: Putting Unit Tests to Work

    I was just going to look this up and I saw your response. Thanks for the assist.

    I'll look into updating the article, but if I can't, at least your comments...

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: Calculating sizes(disk usage) on different levels

    No, unfortunately, you're probably after the right stuff hitting the system tables. There just isn't as much information available in 2000 as is presented in 2005. You should post in...

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: Calculating sizes(disk usage) on different levels

    Since you're working in 2005, there are reports and dynamic management views for getting this information. For example, the report Disk Usage by Table returned this data from AdventureWorks:

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: SET ANSI_PADDING in stored procedure and Internal Query Processor Error

    I guess I'm confused by the problem. When I ran the test as presented I got the error you described, but I got the same error even when I commented...

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: Putting Unit Tests to Work

    I think you're correct on my errors in the article. Thanks for the input. I'm not sure if Steve will let me do an update, but I'll check.

    I suspect it's...

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: Performance gap between two seemingly identical databases

    What about scans & I/O? Are they on identical servers? What about weirder stuff like tempdb usage or log backups or other processes causing locks, etc.

    Still, the difference between...

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: Problem in Numbering rows...

    I experimented and came up with this:

    USE

    tempdb;

    IF EXISTS (SELECT *...

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: Lookup Table Madness

    The only answer I have for you is the one that I'm dealing with at this company. They want the "code" tables to be the same across all applications and...

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: Lookup Table Madness

    Allow me to say right up front, I don't like this standard. I inherited it. I fought against it. I lost.

    We name our simple lookup tables 'C_WhatEver' and the complicated...

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: The SQL Server 2005 XML Temptress

    By and large I've stayed away from XML in the database for all the reasons that most people here can list. I have found that XML can play a part...

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: Formatting string function

    Two single quotes inside of single quotes. So if it's part of a string, it looks like this:

    'There''s a single quote'

    If you were just inserting a quote:

    ''''

    Because:

    ''

    Is an empty string.

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • RE: Can I use a local variable in a View with OpenQuery

     You're going to have to do a lot more work in order to convert from that form of string.

    One problem that I...

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • Viewing 15 posts - 21,976 through 21,990 (of 22,219 total)