Tagged Questions

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