Search notes:

SQL Server: INFORMATION_SCHEMA

INFORMATION_SCHEMA is the ANSI way do query meta data about objects in SQL databases. SQL server implements them as views that (usually?) access tables in the sys schema.
INFORMATION_SCHEMA is one of the four predefined schemas that cannot be deleted.

Select all views in INFORMATION_SCHEMA

The following query allows to find all views in the INFORMATION_SCHEMA schema:
select
  v.name
from
  sys.schemas     s join
  sys.all_views   v on s.schema_id = v.schema_id
where
  s.name = 'INFORMATION_SCHEMA'
order by
  v.name;
Github repository about-MSSQL, path: /administration/schemas/INFORMATION_SCHEMA/select-views.sql
It returns:

See also

schemas
Oracle: INFORMATION_SCHEMA

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758199464, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/SQL-Server/administration/schemas/INFORMATION_SCHEMA/index(80): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78