Forum Replies Created

Viewing 15 posts - 48,466 through 48,480 (of 49,571 total)

  • RE: Ordering of forums?

    The major groups are fine. The forums within them seem to be changing order every time I visit.

  • RE: Points or Posts

    In the forums, posts only. Generally, but not always, high post count shows someone who spends time answering questions, hence contributing to the site.

    It's not difficult to get the QotD...

  • RE: What is a Case Study??

    Questions are still multiple choice, but they're based off a business case given, usually a couple pages worth. As a very rough, very simplified example. (the question may not have...

  • RE: Selecting distinct records

    What do you want the result to look like?

  • RE: DEAD LOCK

    Rather than use nolock, move any select statements that you can out of the transaction completely. This will shorten the duration of the transaction, as well as reducing locking.

  • RE: Couple minor bugs

    Thanks. None of them are serious, though the doubling lines has the possibility of getting very amusing very quickly. :hehe:

  • RE: Stored procedure slower then query

    Try also leaving the parameters and marking the proc for recompile every time it runs. (CREATE PROCEDURE ... WITH RECOMPILE)

    Using variables, the optimiser can not make any conclusions about the...

  • RE: Confusion on average wait time counter

    There are 1000 milliseconds in a second, but even with that, it looks odd. How many CPUs do you have?

    Are these lock waits? What's the full object and counter...

  • RE: Question about triggers and cascading.

    Mal Content (9/26/2007)


    That's odd. Everything I have read says it's better not to have compound indexes because the optimizer can deal with separate indexes more efficiently. Do you have...

  • RE: Really interesting issue!

    Thought so. I have a similar issue that appears from time to time.

    What happens is that the stats for a date-time column get out of date and the optimiser...

  • RE: DEAD LOCK

    You could try breaking the proc up into smaller procs. Check when transactions start and end and reduce them to the smallest necessary size.

    Run profiler with the deadlock chain event...

  • RE: how do you secure SQL against everyone?

    Jeff Moden (23/09/2007)


    Yeah... just not for access to the Production box 😉

    Personally, I don't have a problem with some developers having very limited access to the production dbs. Key phrase...

  • RE: I have MDF files but no LDF files, please help to recreate DBs

    Look in books online for sp_attach_single_file_db. That should do the trick.

  • RE: how do you secure SQL against everyone?

    If you're using windows authentication, then have the domain admins create a windows group for the developers and grant that access to SQL.

    If you're using sql authentication, you'll have...

  • RE: Deleted all logins but SA

    Did you remove builtin admins as well? If not, windows authentication will get you in. I presume you don't know the sa password.

    I've never tested this, but from what I've...

Viewing 15 posts - 48,466 through 48,480 (of 49,571 total)