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 proc someproc
as
declare @table table (... )
insert into @table
<several million rows>
-- some calculations on @table
-- from this point @table is no more necessary
-- other pieces of sproc taking long time to finish
go