Forum Replies Created

Viewing 15 posts - 58,831 through 58,845 (of 59,039 total)

  • RE: Inserting into table with one column 1,2,3,4...

    > If you are using this for a one time query, you really will want to do it that way

    ... unless the return is very large in which case you'll...

  • RE: Question About Date Data

    There is if you update other fields along with the "cased" field.  Nulls will be put in the "cased" field.

  • RE: Coding Standards - Part 1

    Just to dispell some of the drum beating on this thread, I've asked 22 different SQL programmers and DBAs in some pretty large companies, some of which were related to...

  • RE: Calculating Work Days

    First, Adam, thanks for the great link.  I took a look at ALL of the scripts including the additional reference to the auxiliary number table and I definitely see your...

  • RE: Can You Compute?

    Very nice.  The graphics you took the time to do the "Alice's Restaurant" thing to really make this a very clear article on what Rollups and Cubes actually do.  The...

  • RE: Calculating Work Days

    Again, lot's of good posts.  Shie, Robert L, Noeld, and Adam have all pointed out that the use of a "Calendar Table" or "Holiday Table" to hold non-workdays (I'm assuming...

  • RE: Calculating Work Days

    Bert,

    Thanks for the great compliment!  As my follow-up note (long posting above) suggests, you can easily add a reference to a simplified holiday table to the function.

    Frank,

    Thanks for the tip. ...

  • RE: convert varchar to int

    As Farrell suggested, you don't need to do the rounding thing because INT will do the rounding for you.

    Either of these will work...

    SELECT CONVERT(INT,CONVERT(MONEY,'27.49'))
    SELECT CAST(CAST('26.50' AS MONEY) AS INT)

    Obviously, you...

  • RE: Calculating Work Days

    Great responses, all, folks.   Thank you very much for taking the time to make them. 

     

    Hmmmm… perhaps the title of the article should have been “Calculating ‘Week’...

  • RE: ORDER BY varchar data type

    mkeast,

    We've all done that before.  Thanks for the come back.

  • RE: ORDER BY varchar data type

    Sorry mkeast,

    Didn't work the way you expected... here's the output.

    col       

    ----------

    1

    2

    3

    10

    11

    2A

    2B

    3A

    3B

    3C

    I think the original poster wants...

    col       

    ----------

    1

    2

    2A

    2B

    3

    3A

    3B

    3C

    10

    11

  • RE: How to enforce a one-row table

    Great idea but I think they really want a custom error message and a check constraint won't do it.  Ran into the same problem with permissions... no custom error message.

    Switching...

  • RE: How to enforce a one-row table

    Like I said, I agree especially in light of that fact that many companies just don't have a documentation system in place.  Documentation always seems to take it in the...

  • RE: How to enforce a one-row table

    I'd think that the "permission denied" message would drive the point home to a developer but, I agree, it might save a couple of trouble calls to the DBA's.

  • RE: Decorum in the Forums

    I kind of like Andy's idea... all of the ideas are great ones but it's not really broken.  Maybe leave it like it is?

Viewing 15 posts - 58,831 through 58,845 (of 59,039 total)