﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Administering / SQL Server 2005  / Select / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Wed, 19 Jun 2013 08:40:39 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Select</title><link>http://www.sqlservercentral.com/Forums/Topic695477-146-1.aspx</link><description>You could also use[code]sp_tables '%yourcriteria%'[/code]</description><pubDate>Wed, 15 Apr 2009 06:11:32 GMT</pubDate><dc:creator>WILLIAM MITCHELL</dc:creator></item><item><title>RE: Select</title><link>http://www.sqlservercentral.com/Forums/Topic695477-146-1.aspx</link><description>thnx for enlightening me. m still a novice...</description><pubDate>Mon, 13 Apr 2009 22:51:26 GMT</pubDate><dc:creator>Husain_Kachwala</dc:creator></item><item><title>RE: Select</title><link>http://www.sqlservercentral.com/Forums/Topic695477-146-1.aspx</link><description>[quote][b]ALZDBA (4/13/2009)[/b][hr][b]INFORMATION_SCHEMA views also work with pre sql2005 versions.[/b]To only select actual tables you need to add the where clause[code]Where TABLE_TYPE = 'BASE TABLE'[/code][/quote]thx. i didn't mean to imply that it wouldn't.</description><pubDate>Mon, 13 Apr 2009 13:31:16 GMT</pubDate><dc:creator>hammerheaded</dc:creator></item><item><title>RE: Select</title><link>http://www.sqlservercentral.com/Forums/Topic695477-146-1.aspx</link><description>[b]INFORMATION_SCHEMA views also work with pre sql2005 versions.[/b]To only select actual tables you need to add the where clause[code]Where TABLE_TYPE = 'BASE TABLE'[/code]</description><pubDate>Mon, 13 Apr 2009 13:28:48 GMT</pubDate><dc:creator>ALZDBA</dc:creator></item><item><title>RE: Select</title><link>http://www.sqlservercentral.com/Forums/Topic695477-146-1.aspx</link><description>if you're stuck in a pre 2005 world you would do:select * from sysobjects where type ='u'and name like '%your_table_name%' </description><pubDate>Mon, 13 Apr 2009 12:19:43 GMT</pubDate><dc:creator>hammerheaded</dc:creator></item><item><title>RE: Select</title><link>http://www.sqlservercentral.com/Forums/Topic695477-146-1.aspx</link><description>You can also try the following:use database_nameselect * from sys.tables where type ='u'and name like '%criteria%'</description><pubDate>Mon, 13 Apr 2009 06:03:42 GMT</pubDate><dc:creator>Husain_Kachwala</dc:creator></item><item><title>RE: Select</title><link>http://www.sqlservercentral.com/Forums/Topic695477-146-1.aspx</link><description>start with:[code]Select ...from information_schema.tableswhere table_name like '%yourcryteria%'order by table_name[/code]</description><pubDate>Sun, 12 Apr 2009 11:07:51 GMT</pubDate><dc:creator>ALZDBA</dc:creator></item><item><title>Select</title><link>http://www.sqlservercentral.com/Forums/Topic695477-146-1.aspx</link><description>Hi,Can any body let me know the query to select all the tables in the database with a particular word  on it.Thanks,Soofy</description><pubDate>Sun, 12 Apr 2009 10:17:00 GMT</pubDate><dc:creator>soofy21</dc:creator></item></channel></rss>