Thursday, February 16, 2012

Invalid object name = 'tempdb.dbo.ASPStateTempApplications'.

Execute the below script to solve the error : Invalid object name = 'tempdb.dbo.ASPStateTempApplications'.


USE [ASPState]
GO

DECLARE @return_value int

EXEC @return_value = [dbo].[CreateTempTables]

SELECT 'Return Value' = @return_value

GO                               

No comments: