• sorte.orm (11/5/2009)


    Exactly why is "select * " not a good idea?

    'SELECT *' pretty much guarantees that SQL Server won't be able to take advantage of a potential covering index (one that includes all fields in the SELECT), resulting in higher-overhead access to the base table

    Brian Kukowski