As i fail to install 4.3.3RC using the default setting, I have try again using SQL2000 syntax with SQL 2005Express.
The following error is reported during installation: The stored procedure 'dbo.GetTabByName' doesn't exist.
ThenI try to check the error log in \Providers\DataProviders\SqlDataProvider, it was found that many error is logged in DotNetNuke.Schema.log, there are some error of Invalid Column detected. Most of them are caused by invalid case (e.g., UserID vs UserId, FileID vs FileId, ....).
May I know if there has any fix on the Schema or did I miss any step on it?
Example: (The table column should be UserID, but it is UserId in the script)
System.Data.SqlClient.SqlException: Invalid column name 'UserId'.
Invalid column name 'RoleId'.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async)
at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at DotNetNuke.Data.SqlDataProvider.ExecuteADOScript(String SQL)
at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions)
create procedure dbo.DeleteUserRole
@UserId int,
@RoleId int
as
delete
from UserRoles
where UserId = @UserId
and RoleId = @RoleId
......................