Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
2k views

In SQL Server 2000, is there a sysobjects query that will retrieve user views and not system views?

Assuming such a query exists, I would greatly appreciate the help. I'm trying to develop a permissions script that will grant "select" and "references" permissions on the user tables and views in a ...
3
votes
2answers
35 views

retrieving the name of a user created table type programatically

Running a select on sys.objects for a type I created: CREATE TYPE [dbo].[IntListType] AS TABLE( [ID] [int] NULL) Select * From sysObjects Where Name Like '%listtype%' I get the names back as ...
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? ...
2
votes
3answers
56 views

How can I spot in what database is a stored procedure with name 'myStoredProcedure'?

There are bunch of databases to the SQL server I am connected. How should I query the sysobjects in order to spot in what database a stored procedure with name 'myStoredProcedure' is located ? The ...
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 = ...
1
vote
1answer
124 views

Discover primary / unique keys in Sybase ASE

In Sybase ASE, I would like to discover all primary and unique keys. I want to do something similar to what is explained in this answer: Identifying Sybase tables, fields, keys, constraints But ...
1
vote
1answer
1k views

Identifying Sybase tables, fields, keys, constraints

I'm trying to set up a Sybase query that will give me the following output: Table KeyType KeyNumber Column table1 PK 1 table1_id table1 FK 2 ...
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 ...
0
votes
3answers
977 views

interrogating table lock schemes in T-SQL

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 sysobjects but nothing jumped out.