It’s clear that you can do this, you just need to edit one of the stored procedures in which there is a small error in which you would encounter an error
The column name or number of values specified does not match the definition table.
to avoid this only change TempGetAppID stored procedure
from this
INSERT [YOURDBNAME].dbo.ASPStateTempApplications
VALUES
(@appId, @appName)
TO
INSERT [YOURDBNAME].dbo.ASPStateTempApplications
(AppId,AppName)
VALUES
(@appId, @appName)
source
share