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.
create procedure usp_Something as
...
declare @CMD varchar(1000)
set @CMD = 'isql -S ' + @@SERVERNAME + ' -U {username} -P {password} -Q "usp_Somethingelse"
exec xp_CMDShell @CMD
...