Last active
November 8, 2019 22:57
-
-
Save hancheester/d7525b08b8c954946543c4f24eff5c38 to your computer and use it in GitHub Desktop.
To find all objects in SQL Server schema.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- To find all objects in SQL Server schema | |
select * from sys.objects | |
where schema_id = SCHEMA_ID('dbo'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment