<?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>Interview Tips &#187; sysobjects</title>
	<atom:link href="http://tipsinterview.com/tag/sysobjects/feed/" rel="self" type="application/rss+xml" />
	<link>http://tipsinterview.com</link>
	<description>Interview Tips, Interview Questions and Answers</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:45:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Data Dictionary Queries for SQL Server</title>
		<link>http://tipsinterview.com/2010/03/23/data-dictionary-queries-for-sql-server/</link>
		<comments>http://tipsinterview.com/2010/03/23/data-dictionary-queries-for-sql-server/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 08:40:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[column names]]></category>
		<category><![CDATA[constraint]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[syscolumns]]></category>
		<category><![CDATA[sysobjects]]></category>
		<category><![CDATA[sysobjectswhere]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[user names]]></category>
		<category><![CDATA[xtype]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/03/23/data-dictionary-queries-for-sql-server/</guid>
		<description><![CDATA[--Finding all details of Primary Key constraint select * from sysobjectswhere xtype='PK' --Finding all details of Foreign Key constraint select * from sysobjectswhere xtype='F' --Finding all User-Defined objects (tables, etc) select * from sysobjectswhere xtype='U' --Finding all System objects select * from sysobjectswhere xtype='S' --Finding all user names select * from sysusers --Finding Column Names [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/03/23/data-dictionary-queries-for-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

