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.
DECLARE @tablename varchar(255), @sSQL varchar(2000)
DECLARE c1 CURSOR READ_ONLY
FOR
select name from sys.sysobjects where xtype = 'U'
OPEN c1
FETCH NEXT FROM c1
INTO @tablename
WHILE @@FETCH_STATUS = 0
BEGIN
select @sSQL = 'SELECT * FROM ' + @tablename
exec (@sSQL)
FETCH NEXT FROM c1
INTO @tablename
END
CLOSE c1
DEALLOCATE c1