The system-tables tag has no wiki summary.
17
votes
4answers
11k views
How to check if a Constraint exists in Sql server?
I have this sql:
ALTER TABLE dbo.ChannelPlayerSkins
DROP CONSTRAINT FK_ChannelPlayerSkins_Channels
but apparently, on some other databases we use, the constraint has a different name. How do I ...
2
votes
1answer
123 views
PostgreSQL info about user defined types
Where are stored information about user-defined types? Are there some tables which contain infos about the fields of a user-defined composite type, their names, etc. ?
Regards,
Antonio
2
votes
1answer
45 views
Mapping to different linked servers per database
I have an MSSQL Server 2008 database "DBLive" that link to three different external servers [ExtServer1, ExtServer2, ExtServer3], all defined in sys.servers. There are several stored procedures that ...
2
votes
1answer
152 views
How can I rename a user-created SYSUSERS table?
Someone renamed our Users table to SYSUsers, which is a key sql table name. Is there a way to rename this table?
I've tried right-clicking the table and going to rename, and running sp_RENAME on it, ...
1
vote
2answers
49 views
What is database objects are needed for a Database Design in SQL Server 2008 R2?
I have a Visual Studio project where I have scripted out my dbo.sysdiagrams. When I deploy my project the whole database is dropped and recreated from the scripts I have. One of my post deploy ...
1
vote
2answers
278 views
MS Sql Server Object Creation / Alter Script
In Sql Server when you select to modify a SP or UDF it loads the objects alter query in a query window. Are these queries accessible in a system table so I can store the alter statements somewhere? It ...
1
vote
3answers
444 views
Oracle db view/system table to check if given part of a package is a Procedure or a Function
I am using the Oracle system tables to get some metadata about the Packages in our database.
Here is one of my queries:
select AP.PROCEDURE_NAME
from ALL_PROCEDURES ap
where ap.object_name = ...
0
votes
1answer
53 views
umbraco and custom system table
I have the following scenario:
My website db has a system table called "Companies", which includes an id field, companyName field, and companyImageUrl field.
How do I set up an umbraco document type ...
0
votes
3answers
758 views
Unable to update sys.columns - any other approach?
I just found out, that since I created my DB on a different server that had a different collation, then immigrated to a new server with new collation, now I keep on having trouble, and I decided to ...
0
votes
1answer
132 views
What privileges do you need to access sys.$ tables?
What privileges do you need to be able to query the sys.obj$, sys.col$ etc system tables directly?