Forum Replies Created

Viewing 15 posts - 53,836 through 53,850 (of 59,068 total)

  • RE: Dynamic Query Problem

    Yep, I understand that... I think we're both talking about the same thing... just a different way...

    I didn't say it quite right when I spoke of "accuracy" and I appologize......

  • RE: Script table into a single create statement

    EdVassie (11/29/2007)


    Both EM and QA do their scripting using calls to a SQL scripting API. My experience is this can be buggy when you try to get everything scripted...

  • RE: Documention

    Trying to figure out what you need and this seems simple to you because you know what you want... but we don't...

    You say the copy/paste into Excel is tedious... what...

  • RE: Degree

    Thanks, Murali.

  • RE: Dynamic Query Problem

    No, no... not that, Serqiy... I understand that.

    I meant this type of accuracy when I said you better know what you're doing...

    CREATE TABLE #Test(MyFloat FLOAT(53), MyDecimal DECIMAL(38,37))

    INSERT INTO...

  • RE: Very high spikes in Current disk Queue Length

    At occasional peroids we seem to suffer a very high number of SQL Deadlocks and performance issues.

    It's not the disk... it's a chunk or two of code somewhere. Heh......

  • RE: Who's responsible for the Data Model?

    I guess my thought would be - why does it have to be just ONE person's issue?

    That's the real key... it shouldn't be. You've hit the nail on...

  • RE: Help with Registered and Trademark symbols

    Heh... your welcome...

    spt_values table is the "original" Tally table... it goes from 0 to 255 in 2k and I think it goes to 1023 or 1024 in 2k5.

  • RE: Foreign keys good or bad practice?

    A wise friend of mine once said, "A single test is worth a thousand calculations and speculations". Another wise friend of mine said, "A Developer must not guess... a...

  • RE: Dynamic Query Problem

    The conversion caused the radius value to lose precision:

    Heh... who cares about the precision... using FLOAT, you've lost some accuracy. Think not? Try this...

    DECLARE @Radius FLOAT(53)

    ...

  • RE: Why is this slow?

    Perfect. Thanks for the feedback.

    Just to be sure... you know what the "Tally" table is and how to build one?

  • RE: Help with Registered and Trademark symbols

    Similar thing can be done in SQL Server...

    SELECT Number AS CharNum, CHAR(Number) AS Character

    FROM Master.dbo.spt_Values

    WHERE Type = 'P'

    AND Number <...

  • RE: Foreign keys good or bad practice?

    Interesting. Can you post the code that you used to perform your test?

    Now, you sound like me 😀 and, dang it... ya beat me to it 😛

  • RE: Script table into a single create statement

    Outstanding, Edogg! Thank you for the feedback!

  • RE: Help with Registered and Trademark symbols

    By the way... your code seems to indicate that the Grade_ID is stored as a VARCHAR. If it's trully a numeric throughout, you may want consider changing the datatype...

Viewing 15 posts - 53,836 through 53,850 (of 59,068 total)