active questions tagged sysobjects - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T03:52:11Z http://stackoverflow.com/feeds/tag/sysobjects http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1473315/the-select-permission-was-denied-on-the-object-sysobjects-database-mssqlsyste 3 The SELECT permission was denied on the object 'sysobjects', database 'mssqlsystemresource', schema 'sys'. Chris Holmes 2009-09-24T18:18:52Z 2009-09-25T22:14:32Z <p>SETUP: SQL Server 2005 &amp; DotNetNuke 05.01.02. </p> <p>This started with me trying to install a DNN Module that had "select * from dbo.sysobjects" in it's SQL scripts. That failed with the following error: </p> <blockquote> <p>The SELECT permission was denied on the object 'sysobjects', database 'mssqlsystemresource', schema 'sys'.</p> </blockquote> <p>I logged into the database via SQL Server Management Studio as the DNN user account, and I get the same error when I try and perform a SELECT on the sysobjects view. </p> <p>I tried to grant the DNN user account explicit SELECT permission to that view. When I check it by going to Security -> Users -> DNNUserLogin-> right-click -> Properties -> Securables and scroll down to find the sys.sysobjects view, it says this user account has explicit permissions for dbo: And the SELECT checkbox is checked. But I still cannot perform a select on the sysobjects view as that DNN user account. </p> <p>What am I doing wrong? How can I make this work?</p> http://stackoverflow.com/questions/425475/sql-server-listing-all-indexes 2 SQL Server: Listing all indexes Lisa 2009-01-08T19:11:06Z 2009-02-28T08:09:09Z <p>I'm wondering what the <em>simplest</em> way to list all indexes for all tables in a database is. Should I call sp_helpindex for each table and store the results in a temp table, or is there an easier way? Can anyone explain why constraints are stored in sysobjects but indexes are not? </p> http://stackoverflow.com/questions/33226/in-sql-server-2000-is-there-a-sysobjects-query-that-will-retrieve-user-views-and 4 In SQL Server 2000, is there a sysobjects query that will retrieve user views and not system views? Scott A. Lawrence 2008-08-28T19:48:49Z 2008-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/7933/interrogating-table-lock-schemes-in-t-sql 0 interrogating table lock schemes in T-SQL ninesided 2008-08-11T16:41:47Z 2008-10-03T04:11:18Z <p>Is there some means of querying the system tables to establish which tables are using what locking schemes? I took a look at the columns in <strong>sysobjects</strong> but nothing jumped out.</p>