• PHYData DBA (1/26/2015)


    Another reason why SELECT * from <any object> should never be used in application execution code.

    Nonsense. The only reason you ever need to ban SELECT * from application code is that you ban SELECT from application code in the first place. Don't let the app do anything at all but call stored procedures. That's the only way to keep deployment simple.

    Tom