Click here to Skip to main content
Licence CPOL
First Posted 21 Sep 2006
Views 56,330
Downloads 1,065
Bookmarked 34 times

T-SQL Coding Standard

By | 1 Oct 2008 | Article
T-SQL Coding Standard - for programming the Microsoft SQL Server 2005 (DRAFT)
 
Part of The SQL Zone sponsored by
See Also

Introduction

I am currently working on a T-SQL coding standard to formalize our work. Having been inspired by the IDesign C# Coding Standard, I made this T-SQL Coding Standard Document. Maybe this will have some value for the community. It is work in progress and I intend to update it as my experience with its implementation continues.

Unfortunately, I wrote the document in Word using loads of formatting and CodeProject's editor cannot display the document directly. Instead, I leave the document here in a zip for download.

When the document has matured some more, I will reformat it in HTML and modify this article.

Casper Leon Nielsen - 21. Sep 2006. (modified 1st October 2008)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Casper Leon Nielsen

Architect
HelloGroup
Denmark Denmark

Member

Casper Leon Nielsen is a MCP/MCAD and is currently employed by HelloGroup a/s - a technical savy (yes that whats they are calling it these days) company.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralNice Pinmemberramakrishnankt20:22 22 Nov '11  
QuestionAny Update? Pinmemberjhigaki6:06 9 Jul '08  
AnswerRe: Any Update? PinmemberCasper Leon Nielsen23:21 30 Sep '08  
GeneralTable Naming - Statement Formatting PinmemberAhmed_Barakat6:16 31 Jan '08  
GeneralRe: Table Naming - Statement Formatting PinmemberCasper Leon Nielsen23:19 30 Sep '08  
QuestionNOLOCK? PinmemberRhodesie6:33 28 Sep '06  
AnswerRe: NOLOCK? PinmemberCasper Leon Nielsen23:12 28 Sep '06  
GeneralRe: NOLOCK? PinmemberCasper Leon Nielsen0:29 29 Sep '06  
GeneralRe: NOLOCK? PinmemberRhodesie22:59 1 Oct '06  
Answerderived tables PinmemberCasper Leon Nielsen23:15 28 Sep '06  
GeneralDiscussion on joelonsoftware PinmemberCasper Leon Nielsen10:50 24 Sep '06  
Generalprefixing stored procedures with sp_ is bad practice PinmemberKinStephen13:13 21 Sep '06  
AnswerAnd the standard says you shouldnt PinmemberCasper Leon Nielsen20:53 21 Sep '06  
GeneralRe: And the standard says you shouldnt PinmemberKinStephen7:21 22 Sep '06  
AnswerConclusion [modified] PinmemberCasper Leon Nielsen8:33 22 Sep '06  
GeneralRe: Conclusion PinmemberKinStephen11:28 22 Sep '06  
GeneralWhy not... PinmemberColin Angus Mackay3:41 21 Sep '06  
AnswerRe: Why not... PinmemberCasper Leon Nielsen3:57 21 Sep '06  
GeneralAvoid using the blob type - NOT Pinmember__alias3:24 21 Sep '06  
QuestionRe: Avoid using the blob type - NOT PinmemberCasper Leon Nielsen3:34 21 Sep '06  
AnswerRe: Avoid using the blob type - NOT Pinmember__alias10:14 21 Sep '06  
GeneralRe: Avoid using the blob type - NOT PinmemberCasper Leon Nielsen23:53 21 Sep '06  
Well there are pros and cons to both strategies. It is correct that using the database as a filestore can solve some issues and have some tantalising aspects:
Uniform access: Access to files can be encapsulated in the same type of datalayer components as the rest of the application.
Backup: Files will be backed up with the rest of the datastore.
 
But unfortunately it also tends to clog the visibility alot:
Users cannot interact with files through their normal tools, but have to extract them from the database to view and manipulate them.
Most components expects files to be excatly that: files in a directory structure and cannot interact directly with files in a datastore. This creates the need to unpack the files to a cache before using them.
 
So you are partly right: If you are the architect of a massive product, such as the before mentioned Sharepoint and MS CMS, you are well of trading visibility for structure. If however you are designing are solution on a smaller scale the tradeof is not as good.
 
To state however that "The notion of non using of blobs in db is outdated" is as valid as stating that "Designing an application using a multitiered approach is outdated, as Microsoft have now introduced DataAdapters that exist in the presentation layer" Laugh | :laugh: ...
 
I think I will rewrite the standard to simply state the tradeoffs instead of warning against the usage of blobs as file-storage.
 
Regards,
Casper

GeneralRe: Avoid using the blob type - NOT PinmemberCasper Leon Nielsen0:38 22 Sep '06  
GeneralRe: Avoid using the blob type - NOT Pinmember__alias2:28 22 Sep '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120529.1 | Last Updated 1 Oct 2008
Article Copyright 2006 by Casper Leon Nielsen
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid