<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Guidelines and Coding Standards Complete List Download</title>
	<atom:link href="http://blog.sqlauthority.com/2008/09/25/sql-server-guidelines-and-coding-standards/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/09/25/sql-server-guidelines-and-coding-standards/</link>
	<description>Notes of a SQL Server MVP and Database Administrator</description>
	<lastBuildDate>Fri, 20 Nov 2009 20:17:18 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Tejas Shah</title>
		<link>http://blog.sqlauthority.com/2008/09/25/sql-server-guidelines-and-coding-standards/#comment-57258</link>
		<dc:creator>Tejas Shah</dc:creator>
		<pubDate>Mon, 02 Nov 2009 05:52:15 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1143#comment-57258</guid>
		<description>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</description>
		<content:encoded><![CDATA[<p>Hi Shaikh,</p>
<p>As this is table-values function, you can not call it like this way. </p>
<p>You need to access it as:</p>
<p>SELECT *<br />
FROM TableName master<br />
CROSS APPLY employees_in_project(master.code) </p>
<p>Tejas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaikh</title>
		<link>http://blog.sqlauthority.com/2008/09/25/sql-server-guidelines-and-coding-standards/#comment-57243</link>
		<dc:creator>Shaikh</dc:creator>
		<pubDate>Sun, 01 Nov 2009 10:58:05 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1143#comment-57243</guid>
		<description>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</description>
		<content:encoded><![CDATA[<p>CREATE FUNCTION employees_in_project<br />
(@pr_number varchar(20))<br />
RETURNS TABLE<br />
AS<br />
RETURN (SELECT Sum(Amount) as Amount<br />
FROM MasterDetail<br />
WHERE MasterDetail.code = @pr_number)<br />
GO</p>
<p>In Analizer</p>
<p>SELECT *, employees_in_project(master.code ) as Amount FROM Master<br />
GO</p>
<p>it not work what is error in query</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nits</title>
		<link>http://blog.sqlauthority.com/2008/09/25/sql-server-guidelines-and-coding-standards/#comment-57157</link>
		<dc:creator>Nits</dc:creator>
		<pubDate>Thu, 29 Oct 2009 20:51:33 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1143#comment-57157</guid>
		<description>Please tell me about data vault? I don&#039;t know anything about the same. where can i find out docs?</description>
		<content:encoded><![CDATA[<p>Please tell me about data vault? I don&#8217;t know anything about the same. where can i find out docs?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Padam Dhanuk</title>
		<link>http://blog.sqlauthority.com/2008/09/25/sql-server-guidelines-and-coding-standards/#comment-56852</link>
		<dc:creator>Padam Dhanuk</dc:creator>
		<pubDate>Wed, 21 Oct 2009 11:38:28 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1143#comment-56852</guid>
		<description>Hi,

Deve,

used adventureworks
select * from  sys.tables

I am using these code to retrieve all tables name.
it works but &quot;Name&quot; column field not showing full table name like &quot;person.address&quot;.
Plz help me how can i retrieve full name of table.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Deve,</p>
<p>used adventureworks<br />
select * from  sys.tables</p>
<p>I am using these code to retrieve all tables name.<br />
it works but &#8220;Name&#8221; column field not showing full table name like &#8220;person.address&#8221;.<br />
Plz help me how can i retrieve full name of table.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dhandapani</title>
		<link>http://blog.sqlauthority.com/2008/09/25/sql-server-guidelines-and-coding-standards/#comment-52010</link>
		<dc:creator>dhandapani</dc:creator>
		<pubDate>Mon, 18 May 2009 15:53:24 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1143#comment-52010</guid>
		<description>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</description>
		<content:encoded><![CDATA[<p>i want need how to change to password in sql server 2005 to run vb 6.0.</p>
<p>my project not connection to change password in sql server 2005 not run in visual basic 6.0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ashish</title>
		<link>http://blog.sqlauthority.com/2008/09/25/sql-server-guidelines-and-coding-standards/#comment-51982</link>
		<dc:creator>ashish</dc:creator>
		<pubDate>Sun, 17 May 2009 10:11:46 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1143#comment-51982</guid>
		<description>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</description>
		<content:encoded><![CDATA[<p>hi..<br />
  i want count all rows with group by and also count some specific rows with same group by statement.</p>
<p>department     total_Emp        waitng_list         Joind_Emp<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
ABCD                 50                     10                       40<br />
CDEF                  20                     10                       10</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Surendar</title>
		<link>http://blog.sqlauthority.com/2008/09/25/sql-server-guidelines-and-coding-standards/#comment-43279</link>
		<dc:creator>Surendar</dc:creator>
		<pubDate>Fri, 26 Sep 2008 09:51:44 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1143#comment-43279</guid>
		<description>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 &amp; Regards
Surendar K</description>
		<content:encoded><![CDATA[<p>Hello Dave,</p>
<p>I want distinct values of Month in Table1 to be the Column Name of Table2 as below dynamically</p>
<p>Table1:</p>
<p>ID   Date   Month            </p>
<p>1    1       Jan</p>
<p>2    14     Jan </p>
<p>3    26     Jan </p>
<p>4    14     Feb</p>
<p>5    13     Mar</p>
<p>Table2:</p>
<p>Jan   Feb   Mar   Remarks</p>
<p>Thanks &amp; Regards<br />
Surendar K</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Surendar</title>
		<link>http://blog.sqlauthority.com/2008/09/25/sql-server-guidelines-and-coding-standards/#comment-43277</link>
		<dc:creator>Surendar</dc:creator>
		<pubDate>Fri, 26 Sep 2008 09:42:55 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1143#comment-43277</guid>
		<description>Hello Dave,

I&#039;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 &amp; Regards
Surendar K</description>
		<content:encoded><![CDATA[<p>Hello Dave,</p>
<p>I&#8217;m having two tables</p>
<p>Table1:                               Table2:</p>
<p>ID   Date   Month                 Jan   Feb   Mar   Remarks</p>
<p>1    1       Jan                        xx     xx      xx     xxxxx</p>
<p>2    14     Jan                        xx     xx      xx     xxxxx</p>
<p>3    26      Jan                       xx     xx      xx     xxxxx</p>
<p>4    14      Feb                      xx     xx      xx     xxxxx</p>
<p>5    13      Mar</p>
<p>I want distinct values of Month in Table1 to be the Column Name of Table2 as above said:<br />
can you help me out</p>
<p>Thanks &amp; Regards<br />
Surendar K</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://blog.sqlauthority.com/2008/09/25/sql-server-guidelines-and-coding-standards/#comment-43237</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Thu, 25 Sep 2008 10:02:34 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1143#comment-43237</guid>
		<description>Hi, 
the direct links to part 1 &amp; 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)</description>
		<content:encoded><![CDATA[<p>Hi,<br />
the direct links to part 1 &amp; 2 above both have typos</p>
<p>SQL SERVER &#8211; Guidelines and Coding Standards Part &#8211; 1<br />
Should be <a href="http://blog.sqlauthority.com/2008/09/23/sql-server-coding-standards-guidelines-part-1/" rel="nofollow">http://blog.sqlauthority.com/2008/09/23/sql-server-coding-standards-guidelines-part-1/</a><br />
(Not 09/22)</p>
<p>SQL SERVER &#8211; Guidelines and Coding Standards Part &#8211; 2<br />
Should be <a href="http://blog.sqlauthority.com/2008/09/24/sql-server-coding-standards-guidelines-part-2/" rel="nofollow">http://blog.sqlauthority.com/2008/09/24/sql-server-coding-standards-guidelines-part-2/</a><br />
(Not 09/23)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
