SMS SQL to view the Database Schema

Microsoft doesn't support direct access to the SMS Database, however from time to time you may need to query the db directly from SQL. To view the schema, the following SQL comes in handy.

---- Begin SQL----

--This query will show all the views in the SMS db
SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.VIEWS
WHERE TABLE_SCHEMA = 'dbo'

----End SQL----

Comments

Popular posts from this blog

SMS "Program failed (run time exceeded)" 10070

SMS "Waiting for User Condition" 10036

SMS "Waiting for content" 10035