Forum Replies Created

Viewing 15 posts - 17,416 through 17,430 (of 22,214 total)

  • RE: Are the posted questions getting worse?

    ANNOUNCEMENT: Pay attention everyone. We've just been informed that there is a problem with the brown SQL statements. So we need you to stay away from the brown SQL statements....

  • RE: Are the posted questions getting worse?

    Alvin Ramard (5/20/2009)


    Lynn Pettis (5/20/2009)


    You know, there are a few people who just need to walk away from the computer and get a job flipping burgers or something.

    You remind me...

  • RE: Different size backups?

    You can look at the script being used by SSMS, just click on the script icon. That should allow you to figure out what it's doing differently than you.

  • RE: Different size backups?

    How big are your databases? You might check the scheduler on the job, it could be running this query lots of times.

    One question about the code:

    TO DISK = N'C:\Base backup'...

  • RE: Long execution times when including simple SQL functions into a join

    You can quantify the differences. Get the execution plans first. That will show you where the changes are occurring between the execution without the function and the one with it....

  • RE: How to create Database on SQL server 20005 using automated scripts

    You can run the script from anywhere that you have a utility that can connect to the database and run the script. Nothing that comes with a Window Server install...

  • RE: Team Foundation Server

    We hit something similar and it was a security issue. The service is running, but the error says it isn't, well, that's because the security context wouldn't allow it to...

  • RE: Random long execution

    The changes to the query could come from several sources, but I'll just address two. If you were changing the parameters, you may have hit upon a set of parameters...

  • RE: Should one follow directives from above

    I'd say yes, you should follow directives from on high as long as those directives are given with the full understanding of the implications. It doesn't sound like this is...

  • RE: Backup best practices help required

    I don't want to get into the USB discussion, but I'd recommend having a single backup process for the server. It should backup the databases seperately, yes, but you should...

  • RE: Why is SQL requiring an index hint?

    I agree with Lowell. From the description, the index is woefully inadequate for the data and the optimizer assumes a scan will work better. But there must be more to...

  • RE: data compression

    Florian Reischl (5/18/2009)


    SQL Server 2008 Enterprise...

    Yep, I stand clarified. Compression is available only on Developer & Enterprise versions.

  • RE: How to improve the performance of a table

    I'm in agreement with Gail on this, why are you returning millions of rows?

    If you really want to understand why the query is running slowly, you need to examine the...

  • RE: data compression

    There is no mechanism within SQL Server 2005 to compress data. You can get third party tools to compress the backups (Red Gate, Ultrabac, Quest Litespeed), but only SQL Server...

  • RE: data compression

    I don't know of, nor have I heard of any mechanisms for data compression prior to SQL Server 2008. You can get third party software that will compress backups for...

Viewing 15 posts - 17,416 through 17,430 (of 22,214 total)