Forum Replies Created

Viewing 15 posts - 35,626 through 35,640 (of 49,557 total)

  • RE: UPDATE question

    Not so much MSMQ, but Service Broker sure. Question is, are you willing to put up with the massive increase in complexity and increased administrative overhead (and it is high)...

  • RE: UPDATE question

    Jeff Moden (11/26/2009)


    (sys.sysColumns I believe... not sure because this is 2k8).

    Just sys.columns

  • RE: Sleeping/Awaiting Command

    sqllearner-339367 (11/26/2009)


    select count (*) from tentable

    select * from tentable.

    Those are far from the same query and will execute very differently

  • RE: pURGING THE DATA

    Look up SET ROWCOUNT in SQL Books Online

  • RE: Need Technical Details for this TSQL

    Damien-987863 (11/26/2009)


    Because we complain about slow processing of transactions so he give that to us to run it everytime the processing of system is slow.

    That's insane. So every time things...

  • RE: Need Technical Details for this TSQL

    Never mind the bold one, the other three are an extremely bad idea. Shrinking the log just means it'll grow again, slowing things down as it does. Truncating the log...

  • RE: Sleeping/Awaiting Command

    sqllearner-339367 (11/26/2009)


    Can you give me some direction how to carry out further analysis.

    Sure, those two articles that i posted the links to are just that.

    As for the long running one,...

  • RE: DBCC DROPCLEANBUFFERS

    DropCleanBuffers drops everything from one of SQL's memory areas - the data cache. If you just run that you leave the procedure cache intact, the system caches intact, few other...

  • RE: SQL Memory Issues

    The max memory controls the buffer pool. There's always a little memory more that SQL uses - thread stacks, backup buffers, CLR, some other stuff. It's not usually big. If...

  • RE: SQL Memory Issues

    craighenderson (11/25/2009)


    My SQL Server 2005 has 38Gb allocated to it and its currently using 42Gb, problem is it never frees up any of this memory for other processes and the...

  • RE: Sleeping/Awaiting Command

    You need to investigate where the slow down is. Why are you returning thousands of rows to query analyser anyway? Who's reading those thousands of rows?

    For an intro to performance...

  • RE: How to Move tables from one FileGroup to another in SQL 2000

    npbalan (3/3/2009)


    We r using sql server 2000 .I want to move all the user table from PRIMARY fileGroup to another FileGrop.

    Why? What are you trying to achieve?

  • RE: DBCC DROPCLEANBUFFERS

    craighenderson (11/26/2009)


    This is what I was worried about, I currently have 25Gb in my buffer pool for my live DB and I was wondering if clearing this would make my...

  • RE: DBCC DROPCLEANBUFFERS

    Andrew Gothard-467944 (11/26/2009)


    What it does is clear down your procedure cache - if you run against live you're going to see your box hammered until your most commonly used queries...

Viewing 15 posts - 35,626 through 35,640 (of 49,557 total)