Forum Replies Created

Viewing 15 posts - 376 through 390 (of 519 total)

  • RE: Basic: Triggers and Timing

    Technically, an Update is defined as a delete followed by an insert. If you had a delete trigger, you would see it firing as well.

    You can verify this by creating...

  • RE: How to Diagnose and Fix Wait Locks

    I'm blown away by the responses to my article, and very much appreciate the comments posted, but does anyone know anything about the waits I didn't talk about. I would...

  • RE: SQL Server deadlock detection

    It's my opinion that both of you are correct.

    Simonsabin is correct, in that by definition, which is what he says, it is a deadlock even if both processes waited 100...

  • RE: IO performance issues

    great call, simonsabin.

    ALWAYS set based over cursor, if possible. In my opinion, the time to use a cursor is when NO other functionality will work, as SQL Server LIKES...

  • RE: DTS or BCP or ???

    LMAO....Bulk Insert IS BCP functionality internal to SQL, same format files, same processes. I couldn't swear to it but I believe Bulk Insert is a wrapper for BCP to allow...

  • RE: DTS or BCP or ???

    The format info that I use is in the conversions. I store it in a table called ADMIN_Jobs which relates to another called Admin_JobsFields. I BCP the data into a...

  • RE: Incorrect query cost percentage in exec. plan

    I use quite a lot of linked servers, and examine execution plans almost daily and all of the execution plans show higher values against linked servers than they do when...

  • RE: How does sql mail and VB work together?

    I agree strongly. XP_Sendmail is a godsend within a stored proc, but you would have to have a really good reason (business or process) to convince me to use vb...

  • RE: Table Auditing

    Sounds like you want a server side trace. You can perform the same profiling that you do with profiler. I regret I don't remember the syntax off hand, and it...

  • RE: How to Diagnose and Fix Wait Locks

    Yes, joachim.verhagen, it is cumulative. The measurement is in milliseconds. The difference between Wait time and Signal Wait time is basically the difference in waiting on something and communicating about...

  • RE: Reindexing question

    Yep.

    I figured you were fighting developers. I've seen that idea come from some before. Had to prove it to them.....

    Edited by - Scorpion_66 on 11/21/2002 4:59:01 PM

  • RE: DTS or BCP or ???

    The scripts I sent you have examples of the usage of exec but with bcp instead. And in my example, I read the file specs from a table.

    Also, if...

  • RE: Reindexing question

    no. although I can see how someone might think it would.

    They are thinking that the clustered index, being the data, would naturally have to be re-arranged because its the data....

  • RE: XML Output from DB

    I use XMLSPY. Although its not code itself, it makes generating it easy. They have a demo version. Download it and see if it doesn't make your life easier dealing...

  • RE: How To: Avoid Deadlocks

    the sql submitted by jensk2 would solve the issue, and I believe would be the best performer.

    Indexes for the appropriate columns would of course, be great, but wouldn't actually...

Viewing 15 posts - 376 through 390 (of 519 total)