Forum Replies Created

Viewing 15 posts - 16,276 through 16,290 (of 22,211 total)

  • RE: Creating Backup Job in SQL Server 2005 across network

    Just so you know, this can frequently result in slower backups that cause some visible load on the server. I prefer to backup locally and then move the file across...

  • RE: backup job failing - 3 db's

    There must be an error message reported in the maintenance job or in the logs. Find that error. If it doesn't tell you exactly what the problem is, post it...

  • RE: What table design is better ?

    Funny, I'm going to come down just the opposite and say that I like option B for the same reasons that Jeff likes option A. I don't like having to...

  • RE: Are the posted questions getting worse?

    No accountants here either... Nurses, Receptionists, Sales people... those I've seen try to be DBA's. Nurses weren't so bad, neither were the receptionists... keep the sales people away from the...

  • RE: Slow execution of query when using datetime variables

    It sounds like a classic case of parameter sniffing. Try updating your statistics. If that doesn't resolve the issue, you may need to use an OPTIMIZE FOR hint on the...

  • RE: Relying on tuning advisor for indexing

    And I've seen the opposite. Until a recent bug fix, it was missing indexes that were blatant and obvious that resulted in major performance improvements. There's an MS Connect issue...

  • RE: @@INDENTITY; SCOPE_IDENTITY() or OUTPUT INSERTED.[column]

    I like the OUTPUT mechanism for batch inserts, but if you're doing single row inserts, you should be fine with SCOPE_IDENTITY() in almost all cases. If you read through the...

  • RE: SP1 Installation Failure

    Thanks. We'll try that too.

    For some reason when we turned implicit transactions off, we were able to get the install to run. I'm still trying to find out why one...

  • RE: SQL script: to all script writers out there

    Layne-812700 (10/19/2009)


    Grant Fritchey (10/16/2009)


    Layne-812700 (10/15/2009)


    whatever size or type of data I use, they present the same result. You might disagree, but the first one is only a shortcut in my...

  • RE: Great DBA’s in History

    maperkins (10/19/2009)


    Good DBAs in History: How about George Washington Carver.

    Thousands of experiments, many resulting in useful ( or delicious) products. He even made a diamond out of...

  • RE: Are the posted questions getting worse?

    GilaMonster (10/16/2009)


    Bob Hovious 24601 (10/16/2009)


    Black Ice

    Shadowrun?

    Fallen Angels

  • RE: SQL Server Profiler

    If it's making calls to the database you should be to see them. If you're not seeing them, there must be something wrong with your trace configuration, server settings, filters......

  • RE: Query Performance Issue

    Slick84 (10/16/2009)


    Slick84 (10/15/2009)


    Weitzera,

    Thanks for the input. You definately are making sense and yes the requirement you described is how I want it. I'm basically inserting records from tblRegularItems into tblProductSizeWidthColor...

  • RE: SQL Server consuming 5GB of memory

    SQL Server will manage it's own memory, so from the OS all you'll see is that SQL Server is using X, in this case 5gb. You can limit the amount...

  • RE: change query

    First, I'd strongly suggest switching to ANSI 92 syntax

    SELECT...

    FROM a

    JOIN B

    ON a.id = b.id

    Second, you don't have any kind of filtering, so the query is going scan all the...

Viewing 15 posts - 16,276 through 16,290 (of 22,211 total)