In SQL Server 2000, is there a sysobjects query that will retrieve user views and not system views? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T05:15:03Zhttp://stackoverflow.com/feeds/question/33226http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/33226/in-sql-server-2000-is-there-a-sysobjects-query-that-will-retrieve-user-views-and4In SQL Server 2000, is there a sysobjects query that will retrieve user views and not system views?Scott A. Lawrence2008-08-28T19:48:49Z2008-10-14T05:53:58Z
<p>Assuming such a query exists, I would greatly appreciate the help.</p>
<p>I'm trying to develop a permissions script that will grant "select" and "references" permissions on the user tables and views in a database. My hope is that executing the "grant" commands on each element in such a set will make it easier to keep permissions current when new tables and views are added to the database.</p>
http://stackoverflow.com/questions/33226/in-sql-server-2000-is-there-a-sysobjects-query-that-will-retrieve-user-views-and/33266#33266-1Answer by Jas for In SQL Server 2000, is there a sysobjects query that will retrieve user views and not system views?Jas2008-08-28T20:06:37Z2008-08-28T20:06:37Z<pre><code>select * from information_schema.tables
where table_type = 'view'
</code></pre>
http://stackoverflow.com/questions/33226/in-sql-server-2000-is-there-a-sysobjects-query-that-will-retrieve-user-views-and/33285#332853Answer by SQLMenace for In SQL Server 2000, is there a sysobjects query that will retrieve user views and not system views?SQLMenace2008-08-28T20:11:35Z2008-08-28T20:11:35Z<pre><code>select * from information_schema.tables
WHERE OBJECTPROPERTY(OBJECT_ID(table_name),'IsMSShipped') =0
</code></pre>
<p>Will exclude dt_properties and system tables</p>
<p>add </p>
<pre><code>where table_type = 'view'
</code></pre>
<p>if you just want the view</p>
http://stackoverflow.com/questions/33226/in-sql-server-2000-is-there-a-sysobjects-query-that-will-retrieve-user-views-and/33302#333021Answer by KG for In SQL Server 2000, is there a sysobjects query that will retrieve user views and not system views?KG2008-08-28T20:24:08Z2008-08-28T20:24:08Z<pre><code>SELECT
*
FROM
sysobjects
WHERE
xtype = 'V' AND
type = 'V' AND
category = 0
</code></pre>
<p>Here is a list of the possible values for <strong>xtype</strong>:</p>
<ul>
<li>C = CHECK constraint</li>
<li>D = Default or DEFAULT constraint</li>
<li>F = FOREIGN KEY constraint</li>
<li>L = Log</li>
<li>P = Stored procedure</li>
<li>PK = PRIMARY KEY constraint (type is K)</li>
<li>RF = Replication filter stored procedure</li>
<li>S = System table</li>
<li>TR = Trigger</li>
<li>U = User table</li>
<li>UQ = UNIQUE constraint (type is K)</li>
<li>V = View</li>
<li>X = Extended stored procedure</li>
</ul>
<p>Here are the possible values for <strong>type</strong>:</p>
<ul>
<li>C = CHECK constraint</li>
<li>D = Default or DEFAULT constraint</li>
<li>F = FOREIGN KEY constraint</li>
<li>FN = Scalar function</li>
<li>IF = Inlined table-function</li>
<li>K = PRIMARY KEY or UNIQUE constraint</li>
<li>L = Log</li>
<li>P = Stored procedure</li>
<li>R = Rule</li>
<li>RF = Replication filter stored procedure</li>
<li>S = System table</li>
<li>TF = Table function</li>
<li>TR = Trigger</li>
<li>U = User table</li>
<li>V = View</li>
<li>X = Extended stored procedure</li>
</ul>
<p>Finally, the <strong>category</strong> field looks like it groups based on different types of objects. After analyzing the return resultset, the system views look to have a <strong>category</strong> = 2, whereas all of the user views have a <strong>category</strong> = 0. Hope this helps.</p>
<p>For more information, visit http://msdn.microsoft.com/en-us/library/aa260447(SQL.80).aspx</p>