Forum Replies Created

Viewing 15 posts - 56,596 through 56,610 (of 59,072 total)

  • RE: How to fix a non-indexed huge table?

    Heh... "Worked up" isn't the point... the real fact is, it shouldn't have happened that way and they shouldn't be in the position where they have to shrink it... of...

  • RE: How to fix a non-indexed huge table?

    quote

    Yes like bnordberg said this is from a system generated log file.

    Then, the bottom line is, you probably...

  • RE: varbinary(float) to int

    High praise coming from the likes of you, Peter!  Thank you and I know which "Script Library" you're talking about... I'll throw it in in the next day or two. ...

  • RE: varbinary(float) to int

    Thanks for the great feedback, David,

    Couldn't believe the pickle someone put you into... had to do something to get you out of that mess

  • RE: granting create proc / func to create dbo objects

    You'll need to grant DDL Admin role privs those users.

  • RE: varbinary(float) to int

    Heh... of course if a "lossy" number was stored to begin with, the function will return that same "lossy" number which is what the requirement was... its a FLOAT, not...

  • RE: varbinary(float) to int

    ...And, now that we've done all of that... I'll bet the damned thing will import using BCP with one of the "native" datatype identifiers... I'll have to try that out...

  • RE: varbinary(float) to int

    All right... here ya go... as I always say (in a "Yogi" Berra fashion), "Once ya figure it out, it's easy"

    I haven't tried...

  • RE: varbinary(float) to int

    'Zactly where I'm headed...

  • RE: varbinary(float) to int

    Oh, hell yes!  Got the spreadsheet doing it right... trying to convert it to an SQL function...

  • RE: varbinary(float) to int

    It does use an 11 bit mantisa... got the .15626 example and the even numbers through 10 (thinking thats a hint!) to work...  THIS is a bugger!  It would be...

  • RE: varbinary(float) to int

    Well, for sure, SQL Server isn't following the IEEE-754 standard.  If you visit the link David pointed out (nice link, by the way... setup a spreadsheet to do all that),...

  • RE: "IsNumeric" test in an expression?

    Actually, there is an ISNUMERIC function (I think... there was one in 2k... did they get rid of it?)

    And, actually, you would never want to use it as an ISALLDIGITS...

  • RE: union sum

    Hey, have a Happy Easter.  Hope you and yours are doing fine!

  • RE: Performance Problem when using partitioned view against actual table

    Here's the test code I used John... both tables have a composite clustered index on SomeID and SomeNumber...

     

    CREATE VIEW vBIGTEST AS

    SELECT *

      FROM BigTest

    UNION ALL

    SELECT *

      FROM BigTest2

     

    PRINT REPLICATE('-',78)

    SELECT...

Viewing 15 posts - 56,596 through 56,610 (of 59,072 total)