converting lowercase to uppercase

  • AmolNaik (6/30/2009)


    Best is to leave the formatting and case conversions at the front end application, should try not to use SQL Server for formatting and case conversion tasks which are easily handled at the application side.

    Rememer RDBMS are designed for data storage and data retrieval as quick as possible.

    Thanks,

    Amol

    Let's add a couple of caveats to that, eh? IF you have an application, then I absolutely agree that's where formatting should be done. But, a database is NOT just a place to store and retrieve data. There are a large number of processes that the GUI could do that should be done in the database, instead. Aggregations and summarizations are a good example of that. Data checking and validation is another example. Even some business rules are more easily and effectively managed by the database and not the application code.

    --Jeff Moden


    RBAR is pronounced "ree-bar" and is a "Modenism" for Row-By-Agonizing-Row.
    First step towards the paradigm shift of writing Set Based code:
    ________Stop thinking about what you want to do to a ROW... think, instead, of what you want to do to a COLUMN.

    Change is inevitable... Change for the better is not.


    Helpful Links:
    How to post code problems
    How to Post Performance Problems
    Create a Tally Function (fnTally)

Viewing post 16 (of 15 total)

You must be logged in to reply to this topic. Login to reply