tags:

views:

295

answers:

4

Are any SQL Server Database standards & best Practices documentation that I can use as reference for naming conventions, security, using schemas, etc?

+1  A: 

Hi gugulethun

There's a few short words on it here http://www.interaktonline.com/Support/Articles/Details/Design+Your+Database-Best+Practices+in+Database+Design.html?id_art=24&id_asc=220

That site and the next in the article seems pretty ok.

The real napster
A: 

Hi, Maybe you can look on this website http://www.sqlskills.com and find something interesting. Or try this one http://www.sqlservercentral.com

A: 

I'm new to my current company and have moved up in the chain from previous jobs. It was my responsibility to draw up some Coding Standards and best practices for our Software Development and there were bunches of documents out there for C# for me to start with. To my surprise however there wasn't nearly as much for SQL Server. I think that is because it isn't nearly as clear cut when it comes to databases. It is a much more subjective area and very much depends on your design and what you need to do.

Here are a couple of links I came across:

Jumping off point: http://blogs.techrepublic.com.com/datacenter/?p=436

Best Practices Analyzer: http://esersahin.wordpress.com/2009/01/18/best-practices-design-and-development-guidelines-for-microsoft-sql-server/

I would also pay a visit to the Patterns and Practices site: http://msdn.microsoft.com/en-us/practices/default.aspx

And look st some of the specific things you are doing to get a feel for what they recommend on the database side.

John
+1  A: 

A few links of interest:

boflynn