<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Elven Soft Blog &#187; SQL Server</title>
	<atom:link href="http://blog.elvensoft.ro/category/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.elvensoft.ro</link>
	<description>Microsoft.net, marketing, software and internet solutions</description>
	<lastBuildDate>Thu, 19 Aug 2010 07:03:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The server principal is not able to access the database under the current security context</title>
		<link>http://blog.elvensoft.ro/2010/07/the-server-principal-is-not-able-to-access-the-database-under-the-current-security-context/</link>
		<comments>http://blog.elvensoft.ro/2010/07/the-server-principal-is-not-able-to-access-the-database-under-the-current-security-context/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 13:24:21 +0000</pubDate>
		<dc:creator>Puiu</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[sql server 2008]]></category>
		<category><![CDATA[x64]]></category>

		<guid isPermaLink="false">http://blog.elvensoft.ro/?p=93</guid>
		<description><![CDATA[If this error message appears when trying to expand the databases node in SQL Server Management Studio and the x64 version of SQL Server 2008 is installed, follow the steps below:
1) Bring Object Explorer Details window by selecting View &#8211;&#62; Object Explorer Details in menu (or hitting F7)
2) In Object Explorer window click at Databases [...]]]></description>
			<content:encoded><![CDATA[<p>If this error message appears when trying to expand the databases node in SQL Server Management Studio and the x64 version of SQL Server 2008 is installed, follow the steps below:</p>
<p>1) Bring Object Explorer Details window by selecting View &#8211;&gt; Object Explorer Details in menu (or hitting F7)<br />
2) In Object Explorer window click at Databases folder<br />
3) In Object Explorer Details window right-click at the column header and deselect Collation<br />
4) Refresh Databases folder.</p>
<p>For more details click <a href="https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=354291&amp;wa=wsignin1.0" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.elvensoft.ro/2010/07/the-server-principal-is-not-able-to-access-the-database-under-the-current-security-context/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dependencies on a table column &#8211; SQL Server</title>
		<link>http://blog.elvensoft.ro/2009/10/dependencies-table-column-sql-server/</link>
		<comments>http://blog.elvensoft.ro/2009/10/dependencies-table-column-sql-server/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 10:54:07 +0000</pubDate>
		<dc:creator>Catalin Radoi</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://blog.elvensoft.ro/?p=54</guid>
		<description><![CDATA[Find all views, stored procedures etc that use a table column

SELECT OBJECT_NAME(sd.id) Dependent_Object,
(SELECT xtype FROM sysobjects so WHERE so.id = sd.id) Object_Type
FROM sysobjects so
INNER JOIN syscolumns sc ON so.id = sc.id
INNER JOIN sysdepends sd  ON so.id = sd.depid AND sc.colid = sd.depnumber
WHERE so.id = OBJECT_ID('TABLE_NAME')
AND sc.name = 'TABLE_COLUMN'

]]></description>
			<content:encoded><![CDATA[<p>Find all views, stored procedures etc that use a table column</p>
<p><code><br />
SELECT OBJECT_NAME(sd.id) Dependent_Object,<br />
(SELECT xtype FROM sysobjects so WHERE so.id = sd.id) Object_Type<br />
FROM sysobjects so<br />
INNER JOIN syscolumns sc ON so.id = sc.id<br />
INNER JOIN sysdepends sd  ON so.id = sd.depid AND sc.colid = sd.depnumber<br />
WHERE so.id = OBJECT_ID('<span style="color: #ff0000;">TABLE_NAME</span>')<br />
AND sc.name = '<span style="color: #ff0000;">TABLE_COLUMN</span>'<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.elvensoft.ro/2009/10/dependencies-table-column-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
