Search notes:

SQL Server: sys.sql_expression_dependencies

sql_expression_dependencies shows dependencies between database objects (such as tables, views, stored procedures, etc.)
select
   object_schema_name(dep.referencing_id) sch_referencing,
   object_name       (dep.referencing_id) obj_referencing,
   ------------------------------------------------------
   dep.referenced_schema_name             sch_referenced ,
-- object_name(dep.referenced_id )        obj_referenced1,
   dep.referenced_entity_name             obj_referenced ,
   ------------------------------------------------------
   dep.referencing_class_desc             cls_referencing,
   dep.referenced_class_desc              cls_referenced
from
   sys.sql_expression_dependencies dep;
Github repository about-MSSQL, path: /administration/schemas/sys/objects/views/sql_expression_dependencies/select.sql

See also

sys
sys.sql_expression_dependencies seems to be the SQL Server equivalent for Oracle's all_dependencies.

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