<?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>SQL Relation &#8211; Sibeesh Passion</title>
	<atom:link href="https://mail.sibeeshpassion.com/tag/sql-relation/feed/" rel="self" type="application/rss+xml" />
	<link>https://mail.sibeeshpassion.com</link>
	<description>My passion towards life</description>
	<lastBuildDate>Sun, 31 May 2015 14:32:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>/wp-content/uploads/2017/04/Sibeesh_Passion_Logo_Small.png</url>
	<title>SQL Relation &#8211; Sibeesh Passion</title>
	<link>https://mail.sibeeshpassion.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Find the Relationship Difference Between Two DB</title>
		<link>https://mail.sibeeshpassion.com/find-the-relationship-difference-between-two-db/</link>
					<comments>https://mail.sibeeshpassion.com/find-the-relationship-difference-between-two-db/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Sun, 31 May 2015 14:32:35 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Relation]]></category>
		<guid isPermaLink="false">https://sibeeshpassion.com/?p=3741</guid>

					<description><![CDATA[Find the relationship difference between two DB. [sql] SELECT f.name AS ForeignKey FROM sys.foreign_keys AS f where f.name not in (SELECT f.name AS ForeignKey FROM inova.sys.foreign_keys AS f)order by f.name asc [/sql]]]></description>
										<content:encoded><![CDATA[<p>Find the relationship difference between two DB.<br />
[sql]<br />
SELECT f.name AS ForeignKey<br />
FROM sys.foreign_keys AS f where f.name not in<br />
(SELECT f.name AS ForeignKey<br />
FROM inova.sys.foreign_keys AS f)order by f.name asc<br />
[/sql]</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mail.sibeeshpassion.com/find-the-relationship-difference-between-two-db/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Find Relationships Between Tables in SQL Server 2008</title>
		<link>https://mail.sibeeshpassion.com/find-relationships-between-tables-in-sql-server-2008/</link>
					<comments>https://mail.sibeeshpassion.com/find-relationships-between-tables-in-sql-server-2008/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Sun, 31 May 2015 14:30:18 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Relation]]></category>
		<guid isPermaLink="false">https://sibeeshpassion.com/?p=3711</guid>

					<description><![CDATA[find the relationships between tables in SQL Server 2008 [sql] SELECT f.name AS ForeignKey, SCHEMA_NAME(f.SCHEMA_ID) SchemaName, OBJECT_NAME(f.parent_object_id) AS TableName, COL_NAME(fc.parent_object_id,fc.parent_column_id) AS ColumnName, SCHEMA_NAME(o.SCHEMA_ID) ReferenceSchemaName, OBJECT_NAME (f.referenced_object_id) AS ReferenceTableName, COL_NAME(fc.referenced_object_id,fc.referenced_column_id) AS ReferenceColumnName FROM sys.foreign_keys AS f INNER JOIN sys.foreign_key_columns AS fc ON f.OBJECT_ID = fc.constraint_object_id INNER JOIN sys.objects AS o ON o.OBJECT_ID = fc.referenced_object_id [/sql]]]></description>
										<content:encoded><![CDATA[<p>find the relationships between tables in SQL Server 2008<br />
[sql]<br />
SELECT f.name AS ForeignKey,<br />
   SCHEMA_NAME(f.SCHEMA_ID) SchemaName,<br />
   OBJECT_NAME(f.parent_object_id) AS TableName,<br />
   COL_NAME(fc.parent_object_id,fc.parent_column_id) AS ColumnName,<br />
   SCHEMA_NAME(o.SCHEMA_ID) ReferenceSchemaName,<br />
   OBJECT_NAME (f.referenced_object_id) AS ReferenceTableName,<br />
   COL_NAME(fc.referenced_object_id,fc.referenced_column_id) AS ReferenceColumnName<br />
FROM sys.foreign_keys AS f<br />
INNER JOIN sys.foreign_key_columns AS fc ON f.OBJECT_ID = fc.constraint_object_id<br />
INNER JOIN sys.objects AS o ON o.OBJECT_ID = fc.referenced_object_id<br />
[/sql]</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mail.sibeeshpassion.com/find-relationships-between-tables-in-sql-server-2008/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
