Forum Replies Created

Viewing 15 posts - 21,946 through 21,960 (of 22,189 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...

  • 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...

  • RE: The Religious Wars

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

  • 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...

  • 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...

  • 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:

  • 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...

  • 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...

  • 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...

  • RE: Problem in Numbering rows...

    I experimented and came up with this:

    USE

    tempdb;

    IF EXISTS (SELECT *...

  • 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...

  • 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...

  • 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...

  • 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.

  • 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...

  • Viewing 15 posts - 21,946 through 21,960 (of 22,189 total)