• We follow pretty much the same as Steve mentioned, only significant difference being the stored procs. For stored procs we use p_ .

    For user defined procs, we should always start (depending on convention) with anything but sp coz all system procs are sp and SQL Server it seems takes longer (prob fraction of second but yes :)) to locate our proc starting with sp. we also prefix purpose by few common operations we do ...viz populate/clean/verify/move follwed by actual purpose in short.

    Thanks