I made a change to a database table (SQL Server), switching a nullable field to non-nullable, and then refreshed my LLBLGen Pro project's catalog. The refresh produced this error:
RefreshCatalog::Stored procedure 'UserDocumentCategoryCount_get' caused an SqlServer error 0. This stored procedure is no longer reported as having a resultset.
RefreshCatalog::Index #0
Message: Invalid object name '#FredsData'.
Number: 208
Native Error Code: 0
Source: .Net SqlClient Data Provider
FredsData is a temporary table, defined as follows:
CREATE TABLE #FredsData (
LastName varchar(30)
, FirstName varchar(30)
, MiddleName varchar(30)
, PatientID int
, VisitID int
, RoomID int
, Bed char(5)
, Rad int
, Lab int
, Trans int
, Path int
)
It is filled with an insert from select statement. Rad, Lab, Trans and Path are count aggregates; the others are standard fields. The table's contents are selected to be returned as the resultset.
Can you tell me from this what might be the problem?