Anonymous Asked in Cars &Transportation · 2 weeks ago

How do I find schema in SQL?

Contents
Retrieve all schema and their owners in a database SELECT s. name AS schema_name, s. schema_id, u. name AS schema_owner. FROM sys. schemas s. INNER JOIN sys. sysusers u ON u. uid = s. principal_id. ORDER BY s. name;


Related Questions

Relevance
Write us your question, the answer will be received in 24 hours