Search notes:

SQL Server: sys.syscolumns

select
   sch.name             sch_name,
   obj.name             obj_name,
   obj.type_desc,
   col.name             col_name,
   typ.name
from
   sys.schemas      sch                                           join
   sys.all_objects  obj on sch.schema_id      = obj.schema_id     join
   sys.syscolumns   col on obj.object_id      = col.id            join
   sys.types        typ on col.xtype          = typ.user_type_id
where
   col.name like '%sid'
order by
   sch.name,
   obj.name

See also

sys.columns
An alternative way to query the column names of a table is to use the stored procedure sp_columns.

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