Tagged Questions
3
votes
3answers
5k views
The SELECT permission was denied on the object 'sysobjects', database 'mssqlsystemresource', schema 'sys'
SETUP: SQL Server 2005 & DotNetNuke 05.01.02.
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 ...
3
votes
4answers
5k views
SQL Server: Listing all indexes
I'm wondering what the simplest 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?
...
1
vote
1answer
33 views
Getting Table Information
I am trying to get the table information give a table name so I wrote a query like this:
SELECT so.name, sc.name, st.name, sc.length, CASE WHEN sc.status = 0x80 THEN 'Y' ELSE 'N' END AS IsIdent, ...
1
vote
2answers
42 views
Getting column names from a table
I am trying to get column names for a Given table. So I wrote a query like this:
SELECT sc.Name
FROM Asdim.dbo.sysobjects so
INNER JOIN Asdim.dbo.syscolumns sc ON so.id = ...
0
votes
4answers
156 views
How do I map the id in sys.extended_properties to an object name
When we codegen our CRUD stored procs, we add an extended property that indicates the table they are based on. I want to be able to interrogate sys.extended_properties to get a list of procs that ...