Forum Replies Created

Viewing 15 posts - 45,376 through 45,390 (of 49,571 total)

  • RE: isolation level

    Downside is that snapshot isolation puts extra load on your TempDB

  • RE: how long do you keep your log backups?

    I generally prefer to keep two fulll backups (weekly), the diffs made against them (daily) and and of the log backups going back to the first of the fulls. That...

  • RE: SQL SERVER MEMORY CONSUMPTION PROBLEM

    What do you mean by 'memory consumption issues'?

  • RE: Controlling log file growth without limiting size

    Since everyone's beaten me to the 'don't shrink', I'll just touch on other areas

    You said the DBs are in full recovery. Do you have log backups running and, if so,...

  • RE: Super-long-running query?

    Where was the table you were saving to?

  • RE: Super-long-running query?

    webrunner (7/29/2008)


    I happened to be running a T-SQL Duration profile trace yesterday. Could this be the performance info on that trace?

    Depends. Were you running it to file or to table....

  • RE: Trigger on select

    Rename the table and see who complains? 😀

    Seriously, there's no easy way. You'll have to trace the server for a while (a day, a week, a month) until you're happy...

  • RE: SQL Server choosing which index to use

    Not exactly.

    SQL will use the index that is most optimal for the particular query. If none of the NC indexes are useful, it will use the cluster. That's probably not...

  • RE: Blockings

    Don't worry about self-blocking. It's usually short lived and just means that pieces of the query are waiting internally for other pieces.

  • RE: Different performance on Test and production

    Less activity on the test server. Is your query having to wait for locks? Wait for IO? Wait for time on the CPU? All are possible and more likely on...

  • RE: Checkpoints and writes that takes minutes

    Do you have anything else running on this server? Any antivirus or other IO filter drivers? The sec/write is way too high, but the writes/sec aren't. Doesn't make sense.

    Could you...

  • RE: Indexing on Foreign Keys is advisable or not?

    SQLServerLifer (7/29/2008)


    GilaMonster (7/29/2008)


    Haven't we all. 😉 It's a good place to start, nothing more.


    That's why I prefaced mine with the ever popular disclaimer "It depends" 🙂

    Last time I gave...

  • RE: Disabling SQL Management Studio

    Windows authentication is best. It's more secure than SQL authent. That said, their windows accounts only need access to SQL, not to the server itself. They don't need any rights...

  • RE: Indexing on Foreign Keys is advisable or not?

    To extend your example, if there's a frequent query for all people living in a certain city, then I would probably want an index on the Address table on City...

  • RE: Super-long-running query?

    It's not really possible to say where that comes from. It doesn't look like a system query, but that doesn't mean it isn't.

    I would suggest you set up a server-side...

Viewing 15 posts - 45,376 through 45,390 (of 49,571 total)