Forum Replies Created

Viewing 15 posts - 58,096 through 58,110 (of 59,048 total)

  • RE: Transaction lvel isolation with INSERT/UPDATE

    I'd recommend that, whatever you do, you do NOT use "Set Transaction Isolation Level" in updatable views... don't know when it will happen but you will eventually run across an...

  • RE: which one is best

    I'm pretty sure that you cannot pass an array... guess that leaves a CSV parameter...

    If you don't have very many parameters in the "list", why not pass them as individual...

  • RE: Indexed View Creation Problem:

    Unless it is a homework problem, I see no practical reason to index the view... the underlying indexes of the tables will inherently be used during normal view resolution. 

  • RE: Anyone have ideas how to solve deadlock problems

    Strangely enough, you'll usually find a direct correlation between poor performance code and deadlocks and, with the exception of not allocating enough memory, hardware is not usually the problem nor...

  • RE: Importing and Exporting Data

    It's apparent, now, the interviewer was asking the interviewee to think outside the box.  The original poster didn't explain it was an interview question until after I asked "why".  For...

  • RE: Distributed App SQL Help

    I have an SQL Server based IVR at work (actually, 400 miles away from the main DB)... it uses a linked server connection with multiple pass through views as you...

  • RE: Looping?

    Got it!  Thanks for the feedback, Susan.

  • RE: Anyone have ideas how to solve deadlock problems

    You bet, Kevin.  Thank you and Niles for the feedback...

    Kevin, could you tell us the actions you took?  Bet, lot's of folks would like to hear what the lickiest guy...

  • RE: Temp Table Vs table variable

    Thanks for looking, John.  If I find anything from Microsoft, I'll be sure to post it.

  • RE: Looping?

    One other BIG thing to consider before you delete anything... do you have a permanent backup of the data you are about to delete?  One of the 10 commandments for...

  • RE: Distributed App SQL Help

    Sorry about the confusion on the owners... I'm used to folks putting everything into production as "dbo".  Yes, the views you speak of would certainly and easily solve that problem...

  • RE: Formatting

    Yep... I concur with PW... "Create or Replace" is definitely Oracle code and the string functions available are quite different in SQL Server.

    So, which do you need, Oracle Code or...

  • RE: collation settings

    Oh, yeah... almost forgot... you can get a list of available collations using the following code...

    SELECT *

    FROM ::fn_helpcollations()

  • RE: collation settings

    Yes...

    My recommendation (for U.S. installations) is to select a collation that is Dictionary Order, Case Insensitive (CI) and Accent Sensitive (AS).  This will normally be done during installtion of the server...

  • RE: SQL table - Adding secondary key question

    It's in Books Online under [Create Index] but here's a quick example for what you want to do...

    CREATE UNIQUE  NONCLUSTERED INDEX index_name

        ON tablename (columnlist)

Viewing 15 posts - 58,096 through 58,110 (of 59,048 total)