missing tempdb.dbo.ASPStateTempApplications table [ 1242 views ]
Goal: to solve the missing tempdb.dbo.ASPStateTempApplications table problem
Just recreate this temp object with the following code snippet:
USE [ASPState] GO DECLARE @return_value int EXEC @return_value = [dbo].[CreateTempTables] SELECT 'Return Value' = @return_value GO