<?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/"
	xmlns:georss="http://www.georss.org/georss">

<channel>
	<title>www.netsi.dk &#187; SQL</title>
	<atom:link href="http://www.netsi.dk/wordpress/index.php" rel="self" type="application/rss+xml" />
	<link>http://www.netsi.dk/wordpress</link>
	<description>&#34;The internet is just a layer on the real world&#34; (don&#039;t forget that!)</description>
	<lastBuildDate>Fri, 27 Jan 2012 15:57:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<atom:link rel="next" href="http://www.netsi.dk/wordpress/index.php?page=2" />

		<item>
		<title>SQL: Get a list of all tables in a database</title>
		<link>http://www.netsi.dk/wordpress/index.php/2011/02/24/sql-get-a-list-of-all-tables-in-a-database/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2011/02/24/sql-get-a-list-of-all-tables-in-a-database/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 21:50:54 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[dynamicweb]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[cms]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/index.php/2011/02/24/sql-get-a-list-of-all-tables-in-a-database/</guid>
		<description><![CDATA[Sometimes if you use a system where you do not have a SQL Manager at hand, perhaps only a web based query window you may find it hard to keep track of all defined tables in the system. I for one cannot remember all the tables used in for instance Dynamicweb CMS. Please note that [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes if you use a system where you do not have a <a href="http://www.netsi.dk/wordpress/index.php/tag/sql/" class="st_tag internal_tag" rel="tag" title="Posts tagged with SQL">SQL</a> Manager at hand, perhaps only a web based query window you may find it hard to keep track of all defined tables in the system. I for one cannot remember all the tables used in for instance <a title="Bes&oslash;g Dynamicwebs hjemmeside" href="http://www.dynamicweb.dk" target="_blank">Dynamicweb CMS</a>. Please note that the example query below is for Microsoft SQL server, I am not sure if it works in other SQL server environments.</p>
<p>Being logged in to the system as administrator you can get a SQL Query textarea like this one below. You can then enter:</p>
<pre class="brush: sql; ruler: true;">SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE'
order by TABLE_NAME
</pre>
<p>&nbsp;</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="The Query Editor of Dynamicweb CMS - very handy" border="0" alt="The Query Editor of Dynamicweb CMS - very handy" src="http://www.netsi.dk/wordpress/wp-content/uploads/2011/02/image5.png" width="703" height="354"/></p>
<h5>Links</h5>
<ul>
<li><a title="A question related to this post is answered at this forum" href="http://forums.whirlpool.net.au/archive/523219">sql list all tables</a> at whirlpool</li>
</ul>
<pre></pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2011%2F02%2F24%2Fsql-get-a-list-of-all-tables-in-a-database%2F&amp;title=SQL%3A%20Get%20a%20list%20of%20all%20tables%20in%20a%20database" id="wpa2a_2"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2011/02/24/sql-get-a-list-of-all-tables-in-a-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL: Find the defined tables in a database</title>
		<link>http://www.netsi.dk/wordpress/index.php/2009/10/15/sql-find-the-defined-tables-in-a-database/</link>
		<comments>http://www.netsi.dk/wordpress/index.php/2009/10/15/sql-find-the-defined-tables-in-a-database/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 09:19:02 +0000</pubDate>
		<dc:creator>netsi</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.netsi.dk/wordpress/?p=120</guid>
		<description><![CDATA[Here is a query which will show you the defined tables in a database: SELECT name FROM SysObjects where xtype = 'U' order by name]]></description>
			<content:encoded><![CDATA[<p>Here is a query which will show you the defined tables in a database:</p>
<p> <code>SELECT name FROM SysObjects    <br />where xtype = 'U'     <br />order by name </code></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.netsi.dk%2Fwordpress%2Findex.php%2F2009%2F10%2F15%2Fsql-find-the-defined-tables-in-a-database%2F&amp;title=SQL%3A%20Find%20the%20defined%20tables%20in%20a%20database" id="wpa2a_4"><img src="http://www.netsi.dk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.netsi.dk/wordpress/index.php/2009/10/15/sql-find-the-defined-tables-in-a-database/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

