Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT o.[type] AS ObjType, o.name AS ObjName, sm.definition
FROM sys.sql_modules sm
INNER JOIN sys.objects o ON sm.object_id = o.object_id
WHERE O.name NOT LIKE 'FN_%'
AND O.name NOT LIKE 'SP_%'
AND O.name NOT LIKE 'DT_%'
AND sm.definition NOT LIKE '%#%'