SQL SERVER – Guidelines and Coding Standards complete List Download
Coding standards and guidelines are very important for any developer on the path of successful career. A coding standard is a set of guidelines, rules and regulations on how to write code. Coding standards should be flexible enough or should take care of the situation where they should not prevent best practices for coding. They are basically the guidelines that one should follow for better understanding.
The concept behind implementing coding standards and guidelines, is that the consistency and uniformity in programming so that if multiple people are working on the same code, it becomes easier to communicate, share with or understand each other’s work.
With the goal of promoting good coding standards and guidelines I have created document which can guide developers.
SQL SERVER – Guidelines and Coding Standards Part – 1
SQL SERVER – Guidelines and Coding Standards Part – 2
SQL SERVER – Guidelines and Coding Standards complete List Download
Reference : Pinal Dave (http://blog.SQLAuthority.com)




Hi,
the direct links to part 1 & 2 above both have typos
SQL SERVER – Guidelines and Coding Standards Part – 1
Should be http://blog.sqlauthority.com/2008/09/23/sql-server-coding-standards-guidelines-part-1/
(Not 09/22)
SQL SERVER – Guidelines and Coding Standards Part – 2
Should be http://blog.sqlauthority.com/2008/09/24/sql-server-coding-standards-guidelines-part-2/
(Not 09/23)
Hello Dave,
I’m having two tables
Table1: Table2:
ID Date Month Jan Feb Mar Remarks
1 1 Jan xx xx xx xxxxx
2 14 Jan xx xx xx xxxxx
3 26 Jan xx xx xx xxxxx
4 14 Feb xx xx xx xxxxx
5 13 Mar
I want distinct values of Month in Table1 to be the Column Name of Table2 as above said:
can you help me out
Thanks & Regards
Surendar K
Hello Dave,
I want distinct values of Month in Table1 to be the Column Name of Table2 as below dynamically
Table1:
ID Date Month
1 1 Jan
2 14 Jan
3 26 Jan
4 14 Feb
5 13 Mar
Table2:
Jan Feb Mar Remarks
Thanks & Regards
Surendar K
hi..
i want count all rows with group by and also count some specific rows with same group by statement.
department total_Emp waitng_list Joind_Emp
—————————————————————————
ABCD 50 10 40
CDEF 20 10 10
i want need how to change to password in sql server 2005 to run vb 6.0.
my project not connection to change password in sql server 2005 not run in visual basic 6.0
Hi,
Deve,
used adventureworks
select * from sys.tables
I am using these code to retrieve all tables name.
it works but “Name” column field not showing full table name like “person.address”.
Plz help me how can i retrieve full name of table.
Thanks
Please tell me about data vault? I don’t know anything about the same. where can i find out docs?
CREATE FUNCTION employees_in_project
(@pr_number varchar(20))
RETURNS TABLE
AS
RETURN (SELECT Sum(Amount) as Amount
FROM MasterDetail
WHERE MasterDetail.code = @pr_number)
GO
In Analizer
SELECT *, employees_in_project(master.code ) as Amount FROM Master
GO
it not work what is error in query
Hi Shaikh,
As this is table-values function, you can not call it like this way.
You need to access it as:
SELECT *
FROM TableName master
CROSS APPLY employees_in_project(master.code)
Tejas