> Does anyone here follow the following naming convention > in SQL Server? > > Tables: tbl_tablename > Views: vw_viewname > Stored Procedures: sp_procedurename
I'd recommend against using the "sp_" prefix for stored procedure names, as that prefix is used by system stored procedures, and I think that SQL Server looks for procedures with that prefix in the master database before looking in the specific database that you're using. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ______________________________________________________________________ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

