Forum Replies Created

Viewing 15 posts - 346 through 360 (of 683 total)

  • RE: Data type conversions

    Nice work Tim.

     

    Ryan Randall

    Solutions are easy. Understanding the problem, now, that's the hard part.

  • RE: CHECK_SUM returns same value for diff. inputs

    The only guarantee you have with these functions is that BINARY_CHECKSUM will always return the same value for 2 identical values, and CHECKSUM will always return the same value for...

    Ryan Randall

    Solutions are easy. Understanding the problem, now, that's the hard part.

  • RE: SQL PROBLEM

    Mirza - This looks like a dynamic pivot table requirement to me. The links and the code below should get you going in the right direction...

    Ryan Randall

    Solutions are easy. Understanding the problem, now, that's the hard part.

  • RE: Data type conversions

    > and oddly enough are classified numeric

    This issue looks like it was a consequence of the 'dodgy' isnumeric function. This article provides an 'isReallyNumeric' function, which can sometimes come in...

    Ryan Randall

    Solutions are easy. Understanding the problem, now, that's the hard part.

  • RE: sequencing a column with group by

    Here's a 'not recommended' way:

    --data

    create table #tableA (a int, b VARCHAR(3), c VARCHAR(4))

    insert #tableA

    select 1, 1, 1 union all

    select 1, 1, 1 union all

    select 1, 1,...

    Ryan Randall

    Solutions are easy. Understanding the problem, now, that's the hard part.

  • Viewing 15 posts - 346 through 360 (of 683 total)