Search notes:

SQL Server - system base table: sys.syspalnames (?)

sys.syspalnames seems(!) to be a system base table. I am not entierly sure, though, because I cannot find the name in sys.sysobjects (with or without xtype = 'S').

class = OBTY

Select records with class = 'OBTY' return the object types and descriptions (as found, for example, in the columns type_desc and type in sys.all_objects).
select 
   name,
   value
from
   sys.syspalnames where class = 'OBTY'
order by
   name;

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