Search This Blog

Tuesday, June 5, 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:

Post a Comment