Search notes:

SQL Server - system base table: sys.syscolpars

sys.syscolpars lists column names of tables, views and table-valued functions as well as parameter names of stored procedures and functions.
sys.syscolpars is a system base table, thus it needs a dedicated administrator connection to select from it.
select
   tab.name tab_name,
   col.name col_name
from
   sys.sysschobjs tab join
   sys.syscolpars   col  on tab.id = col.id
order by
   tab.name,
   col.colid;
Github repository about-MSSQL, path: /administration/schemas/sys/objects/system-base-tables/syscolpars/select.sql

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...', 1759407207, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/SQL-Server/administration/schemas/sys/objects/system-base-tables/syscolpars(47): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78