Tagged Questions
Information_schema is about sql meta data queries
46
votes
4answers
29k views
How to find all the tables in MySQL with specific column names in them?
I have 2-3 different column names that I want to look up in the entire DB and list out all tables which have those columns. Any easy script?
16
votes
4answers
10k 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 ...
14
votes
8answers
11k views
How do I find a default constraint using INFORMATION_SCHEMA?
I'm trying to test if a given default constraint exists. I don't want to use the sysbojects table, but the more standard INFORMATION_SCHEMA.
I've used this to check for tables and primary key ...
10
votes
4answers
9k views
What is the best way to check whether a trigger exists in SQL Server?
I'm looking for the most portable method to check for existance of a trigger in MS SQL Server. It needs to work on at least SQL Server 2000, 2005 and preferably 2008.
The information does not appear ...
5
votes
2answers
785 views
Table design for user's information aswell as login credentials?
Initially I would like to ask you to forget about hashing passwords or w/e related to passwords, this question is not related to securing passwords, etc and I do know/understand how this should be ...
4
votes
3answers
442 views
SQLite Schema Information Metadata
I need to get column names and their tables in a SQLite database. What I need is a resultset with 2 columns: table_name | column_name.
In MySQL, I'm able to get this information with a SQL query on ...
4
votes
4answers
728 views
MySQL query to show difference between development and production schema
I would like to have a query using the schema database in MySQL
that shows the difference between the columns, triggers and stored procedures between two database schema's: production and ...
3
votes
1answer
120 views
unreliable information_schema schema information on SQL Server?
The SQL Server documentation here says that the table_schema field of information_schema.tables is "unreliable" and that the correct way to get the schema of an object is to query sys.objects.
Can ...
3
votes
1answer
59 views
Searching the existance of one column or another gives me an error
IF EXISTS( SELECT * FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'SiteInformation'
AND COLUMN_NAME = 'Number_Injectors')
BEGIN
SELECT [Number_Injectors] as ...
3
votes
1answer
227 views
postgresql: how list indexed columns?
There is a lot of information, that can be retrieved from information_schema and pg_catalog in postgresql. I would like to retrieve information about columns indexed by a certain index, similar to ...
3
votes
2answers
2k views
SQL Server: Howto get foreign key reference from information_schema?
In SQL Server, how can I get the referenced table + column name from a foreign key?
Note: Not the table/column where the key is in, but the key it refers to.
Example:
When the key [FA_MDT_ID] in ...
3
votes
3answers
87 views
Since information_schema is a standard, where can i find the documentation of it?
Many databases has a information_schema database, since it is a standard. I want to know where can i find the documentation of it. Such as meaning of columns etc.
Thanks.
3
votes
1answer
379 views
Where are NUMERIC precision and scale for a field found in the pg_catalog tables?
In PostgreSQL, column data for the structure of a table is stored in pg_attribute, with a few fields in pg_class, and a couple in pg_attrdef .
But I do not see the precision or scale for a NUMERIC ...
3
votes
2answers
4k views
List all tables in postgresql information_schema
What is the best way to list all of the tables within PostgreSQL's information_schema?
To clarify: I am working with an empty DB (I have not added any of my own tables), but I want to see every ...
3
votes
3answers
3k views
MSSQL: How do you script Stored Procedure creation with code?
I am trying to query for a list of stored procedure definitions using information_schema.routines that exist in one database but not in another.
SELECT
t1.Routine_Definition
FROM
...
2
votes
2answers
153 views
How do I easily find IDENTITY columns in danger of overflowing?
My database is getting old, and one of my biggest INT IDENTITY columns has a value around 1.3 billion. This will overflow around 2.1 billion. I plan on increasing it's size, but I don't want to do it ...
2
votes
1answer
52 views
finding foreign keys in ms sql server with information_schema
I'm trying to find all the tables that have foreign keys pointing to a particular table. So I wrote this:
select t1.TABLE_NAME as pointsfrom, t2.TABLE_NAME as pointsto
from ...
2
votes
1answer
80 views
Why does this query deadlock?
I have an application that reads the structure of an existing PostgreSQL 9.1 database, compares it against a "should be" state and updates the database accordingly. That works fine, most of the time. ...
2
votes
1answer
111 views
Poor performance of INFORMATION_SCHEMA.key_column_usage in MySQL
I'm running version 5.5.11 of MySQL and the performance when querying the INFORMATION_SCHEMA.key_column_usage table is really bad.
I have a simple select request:
SELECT REFERENCED_TABLE_NAME
...
2
votes
2answers
388 views
MySQL disable all triggers
For test correctness of query I need disable all triggers in db.
I see that in information_schema exists table TRIGGERS.
Is possible temporarily disable all triggers using this table?
E.g. like:
...
2
votes
1answer
182 views
Show only user created tables in MySQL?
Is there a SQL command by which I can display only the tables created by users and excluding those present by default in the MySQL database?
2
votes
1answer
253 views
SQL - INFORMATION_SCHEMA for All Databases On Server
INFORMATION_SCHEMA.TABLES or INFORMATION_SCHEMA.COLUMNS work for only specified databases.
Is it possible to query table metadata for ALL databases on server by using INFORMATION_SCHEMA?
2
votes
1answer
172 views
SQL Information Schema - reading COMPOSITE foreign keys
I'm working on a generic application that uses a set of pre-selected database tables (and it's relationships) to generate a user interface for managing data in those tables. Basicaly, I'm just looking ...
2
votes
1answer
316 views
information_schema tables and update_time behaviour
I'd like to have some explanation about information_schema and its behaviours.
Let's say I want to know when a myisam table has been modified.
I write this query
select update_time from ...
2
votes
1answer
668 views
What does the information_schema database represent?
I have one database in mysql.
But when i log into phpMyAdmin , it shows another database called information_schema.
Is that database always present with one database?
I mean to say is there a copy ...
2
votes
1answer
70 views
Incorrect value for UNIQUE_CONSTRAINT_NAME in REFERENTIAL_CONSTRAINTS
I am listing all FK constraints for a given table using INFORMATION_SCHEMA set of views with the following query:
SELECT X.UNIQUE_CONSTRAINT_NAME,
"C".*, "X".*
FROM ...
2
votes
4answers
457 views
Removing All Primary Keys
This is going to sound like a crazy request. The databases that I report from do not have any foreign keys, and every single primary key is an identity_column. This makes using tools such as TOAD ...
2
votes
2answers
807 views
SQL Server: How to tell if a database is a system database?
I know that so far (until MSSQL 2005 at least), system databases are master, model, msdb and tempdb.
Thing is, as far as I can tell, this is not guaranteed to be preserved in the future. And neither ...
1
vote
1answer
473 views
How do I get dependent tables from sql server information schema (meta data)?
I need to know which columns in which tables are primary key as well as a foreign key, so that I know which tables are dependent (associative/many to many relation) tables. I started with a query like ...
1
vote
3answers
282 views
SQL Server INFORMATION_SCHEMA contents
In most RDBMS, the meta-model is "self contained", which means that I can find out the model of the meta-model by browsing the meta-model itself. This doesn't seem to be the case with SQL Server. What ...
1
vote
2answers
245 views
MySQL: information_schema.columns bugs?
Why information_schema.columns always duplicates the result? For instance,
SELECT column_name
FROM information_schema.columns
WHERE table_name = 'root_blocks'
I will get this,
column_name
...
1
vote
3answers
212 views
Select tables that do not contain a certain column in MySQL
I am trying to select all tables that do not have column named 'unique'. I can select all tables that have it using:
SELECT DISTINCT TABLE_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME = ...
1
vote
1answer
394 views
INFORMATION_SCHEMA doesn't exists error while creating EntityManager (JPA + SPRING + H2)
I have a problem with JPA (OpenJPA) + Spring (Web Flow using Spring Web MVC) + H2 database engine. I've got simple RegisterDAO for my simple web application. I am using dependency injection to inject ...
1
vote
1answer
314 views
How can I set all columns' default value equal to null in PostgreSQL
I would like to set the default value for every column in a number of tables equal to Null. I can view the default constraint under information_schema.columns.column_default. When I try to run
...
1
vote
3answers
270 views
How to query the schema details of a table in Postgres?
I need to know column type in PostgreSQL (i.e. varchar(20)). I know that I could probably find this using \d something, but I need it to be done with a select query. Is this possible in PostgreSQL?
1
vote
2answers
910 views
SQL Server 2008 grant permission to information_schema.columns
I have a series of stored procedures that select data from a db. I have a role (cctc_reader) that has execute permissions granted on the procedures. One of the procedure calls another stored procedure ...
1
vote
3answers
120 views
SQL Server: Can you help me with this query?
I want to run a diagnostic report on our SQL Server 2008 database server.
I am looping through all of the databases, and then for each database, I want to look at each table. But, when I go to look ...
1
vote
3answers
178 views
Query to return internal details about stored function in SQL Server database
I have been given access to a SQL Server database that is currently used by 3rd party app. As such, I don't have any documentation on how that application stores the data or how it retrieves it.
I ...
1
vote
1answer
228 views
Which grants are required to see privileges for *other* users in information_schema.schema_privileges?
For a specific database in a MySQL Server 5.5 I would like to view all grants given to any user. To do this I have been reading from the information_schema.schema_privileges table using a select ...
1
vote
1answer
241 views
Cannot find table details in mysql information_schema
I am working on an assignment where I am supposed to find all of the tables in information_schema of a "blank" database. I can do this in either MySQL or PostgreSQL. I chose MySQL. So, I have ...
1
vote
1answer
585 views
List all tables containing a given column name
How do a I list all tables containing a given column name? I'm using Mysql version
4.1.13-nt-log. I know versions less than 5 dont have an information_scheme DB.
0
votes
2answers
21 views
Reverse filter for SQL show query. "Show Fields from xtable where Field = xFieldnameA = a AND Field = xFieldnameB
This concerns sql show queries. The following query below works the issue is it seems I must tell mysql which field names I don't want rather than those I do (which is preferred).
e.g. (working)
...
0
votes
2answers
27 views
How to get the last created table name from database using php
I want to get the last created table name from a MySQL database using PHP.
I also used a query, but I cant to get any value. This is the query:
"select table_name from information_schema.tables ...
0
votes
0answers
14 views
Information schema taken from local server instead from client's server
In my site i want to list the tables in the database i imported.This is my php code:
$status=1;
$newsql = "select table_name from information_schema.tables where table_schema = '$dbname' order by ...
0
votes
3answers
44 views
Updating empty string to NULL for entire database
I'm performing some database clean up and have noticed that there are a lot of columns that have both empty strings and NULL values in various columns.
Is it possible to write an SQL statement to ...
0
votes
0answers
76 views
Is there a SQL information_schema XSD definition?
In SQL:2008, and also previous standards, the INFORMATION_SCHEMA is described as the standard meta-schema. In principle, meta-data could be unloaded into XML for further processing and ...
0
votes
0answers
32 views
Reference to INFORMATION_SCHEMA.COLUMNS row
Is it possible? Looks like no unique id there. In fact i want to log changes made to my db, and dont wanna to store tbl_name and fld_name files in log table, i think it would be better to store there ...
0
votes
1answer
125 views
MySQL: INSERT INTO table SHOW CREATE VIEW
I need to write the column 'Create View' of SHOW CREATE VIEW in to a temporary table.
Note that i cannot use the INFORMATION_SCHEMA because the create view statement there is a little bit different ...
0
votes
1answer
51 views
Determine InnoDB FK Constraints without information_schema
I'm writing some code to inspect a MySQL database structure, and need information about Foreign Key constraints (on InnoDB tables).
There are two ways I know of to do this:
Parse the results of ...
0
votes
2answers
100 views
Information schema and Primary Keys
How do I just print out a 'primary key' for the column with the primary key?
I get 'primary key' for all the columns if the table has a primary key, instead of the one column with the primary key ...