I found Naming Guidelines from MSDN, but is it any guideline for MSSQL database from Microsoft?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The naming conventions used in SQL Server’s AdventureWorks database demonstrate many best practices in terms of style.
To summarize:
(“User” table not “Users”)
(i.e. Qty, Amt, etc.)
exception of certain column names
(i.e. rowguid)
Name)
“usp”
You can find more details here:
AdventureWorks
One caveat: database naming conventions can be very controversial and most database developers I’ve met have a personal stake in their style. I’ve heard heated arguments over whether a table should be named “OrderHeader” or “OrderHeaders.”