Forum Replies Created

Viewing 15 posts - 196 through 210 (of 519 total)

  • RE: SQL Server Datafiles

    My standard course of action is to back the databases up, and restore with the move option to the new location. This gives me an opportunity to test the backup/restore...

  • RE: Dynamic query

    Here is an example from one of my procs, where I grab results from a dynamic query:

    set @sql = N'SELECT @val = ImportText FROM ' + @DestTableName2 + ' Where...

  • RE: Generate Next Key from Stored Procedure

    It was actually pretty common back in the early eighties.......but I haven't seen it myself in many many years....

  • RE: Generate Next Key from Stored Procedure

    That's the way I deal with it, Antares. I have another set of statements which re-uses deleted keys as well, by selecting the first out of sequence number (left outer...

  • RE: major headaches with SP3 MSM files

    Service Pack 3 addresses a huge amount of security considerations, and changes the architecture of internal securities in several cases. I would suggest you look into the securities related changes...

  • RE: Generate Next Key from Stored Procedure

    I do not believe the HOLDLOCK is useful in this case. What usually happens is that developers use the HOLDLOCK command, thinking that they can temporarily prevent other users from...

  • RE: SQL Server Architecture

    I agree with Brian, Inside SQL Server is invaluable......

  • RE: Slow Queries

    If your happy, then good enough. I have yet to find the query optimizer perform as adequately as I do myself, though. Try not to place too much faith in...

  • RE: Slow Queries

    LMAO.....That is quite interesting.

    I didn't have the time this last weekend to persue this as I had hoped. I apologize. I VERY much believe that you should re-work those views,...

  • RE: Slow Queries

    Don't apologize. I was laughing about the fact that we seem to see these about the same times, and you type quicker than me or something. Besides that, your suggestions...

  • RE: Slow Queries

    Christ, what a mother of a query. I am sure that a LOT can be done with it, and I'll look over it in detail this...

  • RE: Slow Queries

    It IS a view based on other views. Could we get the view definitions for the ones referenced in this one?

    Also, what fields are you actually using from this one?

    ...

  • RE: Speed: Insert select stmnt vs Inserting via cursor

    LMAO....gotta love it.....

    Based on what I've seen in the forums, you do WAY better than most, in my opinion, and I simply couldn't picture you having any problems anyway.

    Had to...

  • RE: Speed: Insert select stmnt vs Inserting via cursor

    Under normal circumstances, a set based statement (such as the method two) will perform better than a cursor. I believe that the answers provided by all the above give the...

Viewing 15 posts - 196 through 210 (of 519 total)