Forum Replies Created

Viewing 15 posts - 166 through 180 (of 726 total)

  • RE: bad execution plan ???

    100,000 rows is tiny, and if the desired indexes are indeed all there, it's going to be hard to guess at the problem without more detail. Initially, the query itself...

  • RE: Raffle Winners and a Thank You

    Ninja's, I actually read the article and yet still missed that. Thanks!

  • RE: Raffle Winners and a Thank You

    How did we do?

  • RE: size

    I'm aware of that, and that's the wrong method to use, as I demonstrated above with an example.

  • RE: size

    Because of the way you're calculating. The distribution of row lengths in various tables, as well as the distribution of row counts among the same tables renders your calculation useless....

  • RE: Stored procedure running slowly

    I'm pretty sure you're running into the standard "parameter sniffing" problem. It's also the first thing I always look for when I hear "My stored proc is slow, but running it...

  • RE: Pagination with multiple order by statement problem

    While you might have more luck in the 2005 forum, I'm confused about a small section of code above:

    , ROW_NUMBER() (...

  • RE: convert

    Take the row size for each table, as demonstrated in the other thread you opened on this subject, and multiply by the number of rows for that table. Sum up...

  • RE: convert

    Insert the values into a table, and sum them up then, or modify a copy of that stored proc to roll them into a variable, create your own cursor to...

  • RE: convert

    Either write a cursor to loop through each of your tables, or see if sp_msforeachtable will work in your situation.

  • RE: Ad Hoc Distributed Query with a Text File

    Does OPENROWSET( BULK....) in combination with a FORMATFILE not work for you, or was that not an option in 2000 (it's been a while)?

  • RE: Easiest way to convert an integer into a hexadecimal presentation

    Now that I look at it closer, I'm pretty sure you're right. He is wanting to completely reverse the binary digits and then process it, not do the Big Endian as...

  • RE: Easiest way to convert an integer into a hexadecimal presentation

    It appears as if you are trying to do some odd form of Big Endian storage, but either I'm confused about that, or your example is wrong. If you're taking...

  • RE: Update anamoly due to trigger?

    While that will work, it's typically preferred to use BEGIN/END to define the statement block. That way, if you decide to add additional code, it won't break again. Straight from...

  • RE: CREATE DATABASE

    If memory serves, probably an hour or two.

    As an aside, is there a reason you are creating the db in advance before doing the restore?

Viewing 15 posts - 166 through 180 (of 726 total)