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.
--proc 1
create proc proc1
as
create table #temp (SomeDate datetime)
exec proc2
select * from #temp
go
--proc2
create proc proc2
as
--insert into temp table created in proc 1
insert #temp values (getdate())
go
--execute proc 1
exec proc1
drop proc proc1,proc2