views:

28

answers:

3

Hi,

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  A: 

Is this what you're looking for? Information Schema Views Click on the various links to see the column details for each view. For example: Information_Schema.Tables

Joe Stefanelli
A: 

Try a google search for "information_schema" and then click a few links...

md5sum
+2  A: 

There's various version of the SQL standards. They are not freely available though. Wikipedia links to the relevant ISO/IEC pages, e.g. here http://en.wikipedia.org/wiki/SQL:2006 and http://en.wikipedia.org/wiki/SQL:1999

Here's a copy of the older SQL-92: http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt

For user documentation, you're probably better off looking in the relevant documentaion for your database, such as the information schema docs for PostgreSQL or SQL Server

nos