Search notes:

SQL Server: sys.sysmessages

Count of records

sys.sysmessages contains 11514 error messages that are translated into 22 languages. Thus, it contains 253308 records in total.
select
   count(distinct error    )  cnt_error                                          , --  11514
   count(distinct msglangid)  cnt_lang                                           , --     22
   count(distinct error    ) * count(distinct msglangid) cnt_error_times_cnt_lang, -- 253308
   count(*                 )  cnt_total                                            -- 253308
from
   dbo.sysmessages;
Github repository about-MSSQL, path: /administration/schemas/sys/objects/views/sysmessages/count.sql

See also

The sys schema.
error handling

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...', 1740441734, '18.225.255.200', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/SQL-Server/administration/schemas/sys/objects/views/sysmessages/index(53): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78