h1.post-title { color:orange; font-family:verdana,Arial; font-weight:bold; padding-bottom:5px; text-shadow:#64665b 0px 1px 1px; font-size:32px; } -->

Pages

SQL DB General Rules

SQL DB General Rules

  • Do not use spaces in the name of database objects.
  •  Do not use SQL keywords as the name of database objects. 
  • In cases where this is necessary, surround the object name with brackets, such as [Year]. 
  • Do not prefix stored procedures with ‘sp_’2. 
  • Prefix table names with the owner name3.