Tagged Questions

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 ...
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
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 ...