Forum Replies Created

Viewing 15 posts - 21,376 through 21,390 (of 22,184 total)

  • RE: SQL IDE options

    First off, get out of the monolithic file. That's going to create headaches no matter what tool you use.

    After that, talking about this stuff is almost like talking about religion...

  • RE: Deadlock Errors

    Oh, one other option, you could look at increasing the Parallelism Threshold for the server so that it's less likely to put this query into a parallel operation. That's another...

  • RE: Dead lock issue

    What you've done with sp_getapplock is completely lock down all the resources used by all the transactions within a given connection. It's a very harsh method for eliminating deadlocks. I...

  • RE: Deadlock Errors

    Whoops. Assumptions will get you. Sorry.

    BOL = Books Online. The documentation that comes with SQL Server.

    If you can't modify the code directly, but you're getting this error, you may want...

  • RE: Automatically to generate a db objects' scripts ?

    Well, see, I'm right!

    😀

  • RE: Deadlock Errors

    It's basically telling you that the procedure had a high enough cost that it thought parallel execution would help. When executing in parallel, it caused a deadlock. First one I've...

  • RE: Dead lock issue

    SriSun (12/11/2007)


    I am sorry for giving you very little information.

    Actual process: I check for @geolevel (doesn't exist), call another procedure (proc1 which takes couple of parameters along with @geolevel) and...

  • RE: why do we need to use Locks?

    You only want to put that stuff in as a last resort, usually because of some sort of design error, bad index, or something else that you can't spend time...

  • RE: FASTFIRSTROW hint

    What Jason said.

    But remember, it's going to force the optimizer to make other choices. Every so often those other choices might work better, but then it's because the HASH join...

  • RE: openrowset with readonly

    Connect with a user that has more restricted rights to the file.

  • RE: How to get the same result in sql2005 as in sql2000 after converting

    You wanted four rows instead of three, right? Try this:

    select typeId, trypename, typeInfoDesc

    from types t left join typeinfo ti

    on t.typeId = ti.typeInfoId

    AND typeinfoId2 = @infoNr

  • RE: Automatically to generate a db objects' scripts ?

    In a case like this, use the tool above or, if you want to roll your own, SMO (SQL Management Objects) allows you generate SQL scripts by object or for...

  • RE: Creating a table in Management Studio with a different schema

    But if you're using the GUI and you still need to change the schema, display the properties page from the table creation screen. You can change the schema there. Same...

  • RE: FASTFIRSTROW hint

    It can be useful if you're returning a large amount of data and you don't want to wait for all the rows to process prior to the data returning. You...

  • RE: Dead lock issue

    If you're getting primary key violations, something else is up. You may also need to post the structure of the table you're inserting into.

    Is that the complete procedure? Is there...

Viewing 15 posts - 21,376 through 21,390 (of 22,184 total)