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.
use master
go
sp_helptext 'master.Information_Schema.Routines'
USE <data base>
Select * from sysobjects
Where xtype = 'FN'
Select so.[name], sc.text
From sysobjects so
Inner Join syscomments sc ON so.[id] = sc.[id]
Where so.xtype = 'FN'