Hello everyone,
On suggestion of using store procedures as they are because they are not language specific, when I try to create the stored procedures then it generates error like
"Invalid Object name [dbo].aspnet_AnyDataInTables"
and the stored procedure looks like
Code:
ALTER PROCEDURE [dbo].aspnet_AnyDataInTables
@TablesToCheck int
AS
BEGIN
-- Check Membership table if (@TablesToCheck & 1) is set
IF ((@TablesToCheck & 1)
Procedure continues.............
it seems to come out from sql server object
aspnet_AnyDataInTables
as there is no such table in database. Please tell me how to fix problem.
Also How to create view states........?
Thank you.