Is this the error I would get if I uploaded the stored procedures separately:
2013-08-27 20:46:27,483 ERROR 87.114.237.57 - en-GB - /Setup/Default.aspx - mojoPortal.Data.DBPortal - dbPortal.RunScript failed System.Data.SqlClient.SqlException (0x80131904): Invalid object name 'dbo.mp_HtmlContent_Insert'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async, Int32 timeout) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at mojoPortal.Data.SqlHelper.ExecuteNonQuery(SqlTransaction transaction, CommandType commandType, String commandText, Int32 commandTimeout, SqlParameter[] commandParameters) at mojoPortal.Data.DBPortal.DatabaseHelperRunScript(String script, String overrideConnectionInfo) ClientConnectionId:636e886a-166b-46b8-a7f8-1f594e900694 2013-08-27 20:46:27,483 INFO 87.114.237.57 - en-GB - /Setup/Default.aspx - mojoPortal.Data.DBPortal - last script statement was ALTER PROCEDURE [dbo].[mp_HtmlContent_Insert] /* Author: Joe Audette Created: 2004-12-23 Last Modified: 2013-04-18 */ @ItemGuid uniqueidentifier, @ModuleGuid uniqueidentifier, @ModuleID int, @Title nvarchar(255), @Excerpt nvarchar(max), @Body nvarchar(max), @MoreLink nvarchar(255), @SortOrder int, @BeginDate datetime, @EndDate datetime, @CreatedDate datetime, @UserID int, @UserGuid uniqueidentifier, @ExcludeFromRecentContent bit AS INSERT INTO [dbo].[mp_HtmlContent] ( ItemGuid, ModuleGuid, [ModuleID], [Title], [Excerpt], [Body], [MoreLink], [SortOrder], [BeginDate], [EndDate], [CreatedDate], [UserID], [UserGuid], LastModUserGuid, LastModUtc, ExcludeFromRecentContent ) VALUES ( @ItemGuid, @ModuleGuid, @ModuleID, @Title, @Excerpt, @Body, @MoreLink, @SortOrder, @BeginDate, @EndDate, @CreatedDate, @UserID, @UserGuid, @UserGuid, @CreatedDate, @ExcludeFromRecentContent ) SELECT @@IDENTITY
nised.
The procedure dbo.mp_HtmlContentInsert is in the database, but does not appear to be recognised.
By the way, I can access the database locally via the SQL Server Management Studio, but cannot access the local backup.
Regards