Forum Replies Created

Viewing 15 posts - 9,316 through 9,330 (of 9,643 total)

  • RE: Poor performance with MIN and MAX functions

    The execution plan shows the steps SQL Server takes to resolve a query and return the results. The way to "change" and execution plan is to re-write the query...

  • RE: XML Workshop XII - Parsing a delimited string

    I agree it's an interesting "concept", but in the real world; where I have to process MILLIONS of records in a routine, I don't see it working....

    jacob sebastian (12/5/2007)


    I dont...

  • RE: XML Workshop XII - Parsing a delimited string

    I thought this was a very interesting article and certainly presented a new way to handle delimited strings without looping. For new applications I would just have the application...

  • RE: DBCC CheckDb shows errors DBCC CheckTable and CheckAlloc do not

    Paul,

    Thanks for the replies. When I ran CheckDB and CheckTable there were no other processes running on the SQL server. I was working on the SQL Server because...

  • RE: A Welcome Delay

    WILLIAM MITCHELL (11/30/2007)


    I've tried Ubuntu Linux 6.06 and it's waaaay more stable than the Win 98 SE that it replaced on my old Sony laptop. It recognized all the hardware...

  • RE: A Welcome Delay

    Grant Fritchey (11/30/2007)


    Having sent a few e-bombs in my time, I try hard to look at what I've written before I hit send if emotion is an attachment. Usually, if...

  • RE: The DBA Routine

    cburleigh (11/29/2007)


    As far as #10, how do you deal with a situation where the application is a 3rd party app and you can't make performance improvements?

    SQL Server is a machine...

  • RE: Foreign keys good or bad practice?

    I'm going to simply answer the question posed in the title.

    Foreign Keys are a good practice. At the very least there is always at least 2 applications that can...

  • RE: Suspect Database

    If you don't have a valid log file you can use sp_attach_single_file_db which will create an new log file. Use BOL for syntax. I had to use this...

  • RE: The DBA Routine

    Good article and it definitely provides a way to find out if you are doing what needs to be done.

    As far as #10, how do you deal with...

  • RE: torn page error when trying to attach mdf

    Thanks for the reply Paul. I didn't think there was anything I could do to a detached database file.

    Yes I am having a problem attaching the database. I...

  • RE: Why upgrade from SQL 2000 to SQL 2005?

    With respect to the features, service broker can be extremely helpful, but only if you intend to use it. Doing SOA via SQL Server (HTTP endpoints) saves you a server...

  • RE: Left Outer Join Help

    COALESCE is a function that takes 2 to n arguments and returns the first non-null value. So in Ramesh's example the SUM(OrderLine.QtyOrdered) for any products that have no orders...

  • RE: Left Outer Join Help

    Ramesh's query should give you the result that you want.

    Brandie is correct in discussing table order. If you just change the Inner Joins to Left Outer Joins in your...

  • RE: Beginning Database Design - Spot the Flaws

    Matt Lacey (11/20/2007)

    It would be useful to know what database (version) we will be targeting. This would let us know which data types and features are available.

    He does state...

Viewing 15 posts - 9,316 through 9,330 (of 9,643 total)