Forum Replies Created

Viewing 15 posts - 226 through 240 (of 315 total)

  • RE: Disk Defrag

    george sibbald (10/4/2010)


    no links but we run diskkeeper with SQL up and running, no problems.

    Thats how I ran it at one of my previous places... The invisible tasking from the...

  • RE: Performance monitoring strategies?

    Can you please elaborate as to why Profiler is not appropriate?

  • RE: Performance monitoring strategies?

    Which version and edition of SQL? 2005 (since its in the 2005 section)? 🙂

  • RE: SQL Help

    Try this:

    DECLARE @sql VARCHAR(MAX)

    SELECT

    @sql = CASE

    WHEN x = 1 THEN 'update...'

    WHEN x = 2 THEN 'update...'

    END

    FROM myTable

    EXEC (@SQL)

  • RE: Women and Men - Same or Different?

    interesting article...

    And in true SSC fashion the answer is:

    "it depends"

    😛

  • RE: SQL Server in virtual environment

    Personally, I have yet to see SQL Server work properly in a virtual environment. It starts off well, but always ends up with too many shared resources and "SQL Server...

  • RE: Index Question

    then the response is the same as that thread... no need for a second thread

  • RE: Partitioning in SQL Server 2008

    szmulder (9/30/2010)


    Only enterprise version support this function, too expensive!

    I think most company only buy standard version that's why most people never have chance to use it.

    I think you'd be...

  • RE: Index Question

    whats the percentage of records returned by both selects (without the top) with regards to the total number of records in the table?

  • RE: Audits

    Good question, and I eagerly await the answer... got asked the same thing yesterday.

  • RE: Where are you?

    GilaMonster (1/12/2010)


    Johannesburg, South Africa. For anyone who's geography a little weak, that's at the southern end of the African continent.

    Yes, we have electricity and internet (most of the time), we...

  • RE: weird behavior in SSMS - backslash (\) displays as (#) in query editor

    I used to get this on my CITRIX client all the time... restart fixed, other than that try pressing the CTRL, ALT and windows shortcut key a couple of times...

  • RE: Login failed for user 'NT Authority\Anonymous logon'

    The error sounds like a Kerbeos authentication issue, with regards to delegation and the setting up of correct SPNs.

    Can you change the linked server to make the connection as...

  • RE: What does table type of 'TT' in sys.objects mean ??

    you may need to tone the caffeine intake, who knows what else you will find :hehe:

  • RE: Automating .sql Scripts

    ok, 2 options:

    run profiler to capture everything thats happening as well as errors

    or

    specify an output file on SQLCMD using the -o flag Oh and the file location for the output...

Viewing 15 posts - 226 through 240 (of 315 total)