Related Documentation Download this Manual
PDF (US Ltr) - 41.2Mb
PDF (A4) - 41.3Mb
Man Pages (TGZ) - 262.8Kb
Man Pages (Zip) - 368.8Kb
Info (Gzip) - 4.1Mb
Info (Zip) - 4.1Mb
PDF (A4) - 41.3Mb
Man Pages (TGZ) - 262.8Kb
Man Pages (Zip) - 368.8Kb
Info (Gzip) - 4.1Mb
Info (Zip) - 4.1Mb
MySQL 9.4 Reference Manual / ... / INFORMATION_SCHEMA Tables / INFORMATION_SCHEMA General Tables / The INFORMATION_SCHEMA SCHEMATA_EXTENSIONS Table
TheSCHEMATA_EXTENSIONS table augments theSCHEMATA table with information about schema options.
TheSCHEMATA_EXTENSIONS table has these columns:
CATALOG_NAMEThe name of the catalog to which the schema belongs. This value is always
def.SCHEMA_NAMEThe name of the schema.
OPTIONSThe options for the schema. If the schema is read only, the value contains
READ ONLY=1. If the schema is not read only, noREAD ONLYoption appears.
Example
mysql> ALTER SCHEMA mydb READ ONLY = 1;mysql> SELECT * FROM INFORMATION_SCHEMA.SCHEMATA_EXTENSIONS WHERE SCHEMA_NAME = 'mydb';+--------------+-------------+-------------+| CATALOG_NAME | SCHEMA_NAME | OPTIONS |+--------------+-------------+-------------+| def | mydb | READ ONLY=1 |+--------------+-------------+-------------+mysql> ALTER SCHEMA mydb READ ONLY = 0;mysql> SELECT * FROM INFORMATION_SCHEMA.SCHEMATA_EXTENSIONS WHERE SCHEMA_NAME = 'mydb';+--------------+-------------+---------+| CATALOG_NAME | SCHEMA_NAME | OPTIONS |+--------------+-------------+---------+| def | mydb | |+--------------+-------------+---------+Notes
SCHEMATA_EXTENSIONSis a nonstandardINFORMATION_SCHEMAtable.
Related Documentation Download this Manual
PDF (US Ltr) - 41.2Mb
PDF (A4) - 41.3Mb
Man Pages (TGZ) - 262.8Kb
Man Pages (Zip) - 368.8Kb
Info (Gzip) - 4.1Mb
Info (Zip) - 4.1Mb
PDF (A4) - 41.3Mb
Man Pages (TGZ) - 262.8Kb
Man Pages (Zip) - 368.8Kb
Info (Gzip) - 4.1Mb
Info (Zip) - 4.1Mb