I have imported my sql server 2005 database into a VS2010 database project. One of my stored procedures contains a statement similar to
INSERT INTO #myTemp...
and Visual Studio gives me a warning such as
SQL04151: Procedure: [dbo].[mySproc] has an unresolved reference to object [#myTemp].
Is there a way of resolving this reference? I'd like to clear as many of the project warnings as possible.