<?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; 2005 List All Tables of Database</title>
	<atom:link href="http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Thu, 09 Feb 2012 10:40:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Lakshmi</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-249408</link>
		<dc:creator><![CDATA[Lakshmi]]></dc:creator>
		<pubDate>Tue, 07 Feb 2012 07:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-249408</guid>
		<description><![CDATA[Hello EveryOne,

 I want to get the Table Values of respective Project of QC from SQL Server 2005, which Contains n number of Projects. 

Can any one tell me the query for that ??]]></description>
		<content:encoded><![CDATA[<p>Hello EveryOne,</p>
<p> I want to get the Table Values of respective Project of QC from SQL Server 2005, which Contains n number of Projects. </p>
<p>Can any one tell me the query for that ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sachin Gupta</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-248004</link>
		<dc:creator><![CDATA[Sachin Gupta]]></dc:creator>
		<pubDate>Sat, 04 Feb 2012 05:37:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-248004</guid>
		<description><![CDATA[Better still - 

select object_name from user_objects where object_type = &#039;TABLE&#039;;]]></description>
		<content:encoded><![CDATA[<p>Better still &#8211; </p>
<p>select object_name from user_objects where object_type = &#8216;TABLE&#8217;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sachin Gupta</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-248003</link>
		<dc:creator><![CDATA[Sachin Gupta]]></dc:creator>
		<pubDate>Sat, 04 Feb 2012 05:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-248003</guid>
		<description><![CDATA[select * from user_objects where object_type = &#039;TABLE&#039;;]]></description>
		<content:encoded><![CDATA[<p>select * from user_objects where object_type = &#8216;TABLE&#8217;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suhas</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-245716</link>
		<dc:creator><![CDATA[suhas]]></dc:creator>
		<pubDate>Mon, 30 Jan 2012 14:28:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-245716</guid>
		<description><![CDATA[i want all table names from the database. please let me know the syntax]]></description>
		<content:encoded><![CDATA[<p>i want all table names from the database. please let me know the syntax</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vikas kumar</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-242962</link>
		<dc:creator><![CDATA[vikas kumar]]></dc:creator>
		<pubDate>Tue, 24 Jan 2012 10:24:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-242962</guid>
		<description><![CDATA[can we see the data of offset table]]></description>
		<content:encoded><![CDATA[<p>can we see the data of offset table</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-231183</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Wed, 04 Jan 2012 11:00:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-231183</guid>
		<description><![CDATA[This is subject to sql injection and use it carefully


declare @sql varchar(1000)
set @sql=&#039;select column_name from &#039;+@dbname+&#039;.information_schema.tables where table_name=&#039;&#039;&#039;+@table_name+&#039;&#039;&#039;&#039;
exec(@sql)]]></description>
		<content:encoded><![CDATA[<p>This is subject to sql injection and use it carefully</p>
<p>declare @sql varchar(1000)<br />
set @sql=&#8217;select column_name from &#8216;+@dbname+&#8217;.information_schema.tables where table_name=&#8221;&#8217;+@table_name+&#8221;&#8221;<br />
exec(@sql)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ravichandran.K</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-227850</link>
		<dc:creator><![CDATA[Ravichandran.K]]></dc:creator>
		<pubDate>Thu, 29 Dec 2011 08:05:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-227850</guid>
		<description><![CDATA[Correct query for this syntex in 2000 sql server


select * from sysobjects where xtype=&#039;u&#039;

if u have any doubts pls contact me]]></description>
		<content:encoded><![CDATA[<p>Correct query for this syntex in 2000 sql server</p>
<p>select * from sysobjects where xtype=&#8217;u&#8217;</p>
<p>if u have any doubts pls contact me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish Jain</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-226662</link>
		<dc:creator><![CDATA[Ashish Jain]]></dc:creator>
		<pubDate>Tue, 27 Dec 2011 09:46:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-226662</guid>
		<description><![CDATA[How to Create a stored procedure which takes &#039;database name&#039; and table name as input &#039;parameters&#039; and return column name list of that table.]]></description>
		<content:encoded><![CDATA[<p>How to Create a stored procedure which takes &#8216;database name&#8217; and table name as input &#8216;parameters&#8217; and return column name list of that table.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dileep</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-212089</link>
		<dc:creator><![CDATA[dileep]]></dc:creator>
		<pubDate>Tue, 06 Dec 2011 13:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-212089</guid>
		<description><![CDATA[how can we delete total tables which are not used from start or which doesnt have data ?
in a single server]]></description>
		<content:encoded><![CDATA[<p>how can we delete total tables which are not used from start or which doesnt have data ?<br />
in a single server</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dileep</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-212088</link>
		<dc:creator><![CDATA[dileep]]></dc:creator>
		<pubDate>Tue, 06 Dec 2011 13:50:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-212088</guid>
		<description><![CDATA[how can we delete total tables which are not used from start or which doesnt have data ?]]></description>
		<content:encoded><![CDATA[<p>how can we delete total tables which are not used from start or which doesnt have data ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anuj</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-192540</link>
		<dc:creator><![CDATA[anuj]]></dc:creator>
		<pubDate>Thu, 10 Nov 2011 18:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-192540</guid>
		<description><![CDATA[Hi, Can you post the query for SQL server to get the active objects?]]></description>
		<content:encoded><![CDATA[<p>Hi, Can you post the query for SQL server to get the active objects?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-192236</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Thu, 10 Nov 2011 12:51:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-192236</guid>
		<description><![CDATA[The database seems to be a case sensitive. What is the error you got when you triede EXEC SP_MSFOREACHDB ?]]></description>
		<content:encoded><![CDATA[<p>The database seems to be a case sensitive. What is the error you got when you triede EXEC SP_MSFOREACHDB ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aashish Vaghela</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-192115</link>
		<dc:creator><![CDATA[Aashish Vaghela]]></dc:creator>
		<pubDate>Thu, 10 Nov 2011 07:10:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-192115</guid>
		<description><![CDATA[Ranjan,
Paste this entire string on GOOGLE search page.


filetype:PDF SQL Server 2008 ebook

Regards,
Aashish]]></description>
		<content:encoded><![CDATA[<p>Ranjan,<br />
Paste this entire string on GOOGLE search page.</p>
<p>filetype:PDF SQL Server 2008 ebook</p>
<p>Regards,<br />
Aashish</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aashish Vaghela</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-192110</link>
		<dc:creator><![CDATA[Aashish Vaghela]]></dc:creator>
		<pubDate>Thu, 10 Nov 2011 06:58:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-192110</guid>
		<description><![CDATA[Hello Pinal / Madhivanan,

First up, EXEC SP_MSFOREACHDB does not work on my DB runnin SQL 2k8 R2. 
Second, EXEC sp_help &#039;&#039; returns the schema &amp; metadata pertaining to one table at a time. Is there a way to put this in some kind of LOOP, or iteration &amp; execute it against all the Tables within the DB at the same time ?
Lastly, why is it so that SELECT * FROM SYS.TABLES returns an Error like Object not found, whereas, SELECT * FROM sys.tables, executes successfully ? Why is the Query parser Case-Sensitive ... ?? 
Any suggestions ?

Regards,
Aashish Vaghela.]]></description>
		<content:encoded><![CDATA[<p>Hello Pinal / Madhivanan,</p>
<p>First up, EXEC SP_MSFOREACHDB does not work on my DB runnin SQL 2k8 R2.<br />
Second, EXEC sp_help &#8221; returns the schema &amp; metadata pertaining to one table at a time. Is there a way to put this in some kind of LOOP, or iteration &amp; execute it against all the Tables within the DB at the same time ?<br />
Lastly, why is it so that SELECT * FROM SYS.TABLES returns an Error like Object not found, whereas, SELECT * FROM sys.tables, executes successfully ? Why is the Query parser Case-Sensitive &#8230; ??<br />
Any suggestions ?</p>
<p>Regards,<br />
Aashish Vaghela.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aashish Vaghela</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-192104</link>
		<dc:creator><![CDATA[Aashish Vaghela]]></dc:creator>
		<pubDate>Thu, 10 Nov 2011 06:48:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-192104</guid>
		<description><![CDATA[First try to become a M.V.P. of SQL Server 2k5 / 2k8, like Pinal Dave. CEOs will consult you anyways !]]></description>
		<content:encoded><![CDATA[<p>First try to become a M.V.P. of SQL Server 2k5 / 2k8, like Pinal Dave. CEOs will consult you anyways !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-191506</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Wed, 09 Nov 2011 10:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-191506</guid>
		<description><![CDATA[Make sure you have used the correct object owner name]]></description>
		<content:encoded><![CDATA[<p>Make sure you have used the correct object owner name</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raju</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-190606</link>
		<dc:creator><![CDATA[raju]]></dc:creator>
		<pubDate>Tue, 08 Nov 2011 05:56:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-190606</guid>
		<description><![CDATA[Hi,
 I connected sql server through sql developer, in that i am not able see some table while querying like &quot;SELECT *FROM TEST&quot; ,its giving invalid object.but if select TEST table by clicking on TEST object its showing all data and structure.Please help in this regard thanks.]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
 I connected sql server through sql developer, in that i am not able see some table while querying like &#8220;SELECT *FROM TEST&#8221; ,its giving invalid object.but if select TEST table by clicking on TEST object its showing all data and structure.Please help in this regard thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-182923</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Mon, 24 Oct 2011 14:16:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-182923</guid>
		<description><![CDATA[Alternatively, you can query information_Schema.tables view to access the user defined tables so that you dont need to query on system tables directly]]></description>
		<content:encoded><![CDATA[<p>Alternatively, you can query information_Schema.tables view to access the user defined tables so that you dont need to query on system tables directly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hichem Sharaeen</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-182384</link>
		<dc:creator><![CDATA[Hichem Sharaeen]]></dc:creator>
		<pubDate>Sun, 23 Oct 2011 15:37:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-182384</guid>
		<description><![CDATA[Hi dave,
i want to thank you very much for this useful blog. keep helping us !
between brackets : are one of my references.

I suggest if we add &quot;where is_ms_shipped = 0&quot;  will return tables that user created, because i found that only select * from sys.tables returns all tables (even tables that was created by replication or sync process etc ..) 
regards]]></description>
		<content:encoded><![CDATA[<p>Hi dave,<br />
i want to thank you very much for this useful blog. keep helping us !<br />
between brackets : are one of my references.</p>
<p>I suggest if we add &#8220;where is_ms_shipped = 0&#8243;  will return tables that user created, because i found that only select * from sys.tables returns all tables (even tables that was created by replication or sync process etc ..)<br />
regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-180085</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Tue, 18 Oct 2011 00:13:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-180085</guid>
		<description><![CDATA[Thank you so much! 

I am now following you as well!]]></description>
		<content:encoded><![CDATA[<p>Thank you so much! </p>
<p>I am now following you as well!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jen Schmidt (@DBJenSchmidt)</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-180082</link>
		<dc:creator><![CDATA[Jen Schmidt (@DBJenSchmidt)]]></dc:creator>
		<pubDate>Tue, 18 Oct 2011 00:06:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-180082</guid>
		<description><![CDATA[It was great meeting you at PASS; once again, I searched the web for a quick answer, and yours was the first that popped up.  As always, you&#039;re a wonderful resource.  

-Jennifer]]></description>
		<content:encoded><![CDATA[<p>It was great meeting you at PASS; once again, I searched the web for a quick answer, and yours was the first that popped up.  As always, you&#8217;re a wonderful resource.  </p>
<p>-Jennifer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anand</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-176173</link>
		<dc:creator><![CDATA[Anand]]></dc:creator>
		<pubDate>Fri, 07 Oct 2011 18:45:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-176173</guid>
		<description><![CDATA[Hi All,

I want know about how to db backup via command line.
or i need DB DDL query.]]></description>
		<content:encoded><![CDATA[<p>Hi All,</p>
<p>I want know about how to db backup via command line.<br />
or i need DB DDL query.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rafick</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-172838</link>
		<dc:creator><![CDATA[Rafick]]></dc:creator>
		<pubDate>Wed, 28 Sep 2011 13:22:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-172838</guid>
		<description><![CDATA[Exact select query in sql,
             select *from tab;
and 
sql server is
  select *from sys.tables]]></description>
		<content:encoded><![CDATA[<p>Exact select query in sql,<br />
             select *from tab;<br />
and<br />
sql server is<br />
  select *from sys.tables</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jayaram</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-170318</link>
		<dc:creator><![CDATA[Jayaram]]></dc:creator>
		<pubDate>Wed, 21 Sep 2011 12:43:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-170318</guid>
		<description><![CDATA[Dear All,

      I have a database with three users and I need to show only tables that related to a particular user instead of showing all tables. So how can I achieve this?

Any help must be appreciated.

Regards,
Jayaram.]]></description>
		<content:encoded><![CDATA[<p>Dear All,</p>
<p>      I have a database with three users and I need to show only tables that related to a particular user instead of showing all tables. So how can I achieve this?</p>
<p>Any help must be appreciated.</p>
<p>Regards,<br />
Jayaram.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prabhat</title>
		<link>http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-151055</link>
		<dc:creator><![CDATA[Prabhat]]></dc:creator>
		<pubDate>Wed, 27 Jul 2011 13:18:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/26/sql-server-2005-list-all-tables-of-database/#comment-151055</guid>
		<description><![CDATA[sir i want know about how to delete same name table from multiple database .]]></description>
		<content:encoded><![CDATA[<p>sir i want know about how to delete same name table from multiple database .</p>
]]></content:encoded>
	</item>
</channel>
</rss>
