Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Upgrading DNN P...Upgrading DNN P...Upgraded 4.9.5 to 5.5.0 with one error - fix failsUpgraded 4.9.5 to 5.5.0 with one error - fix fails
Previous
 
Next
New Post
9/29/2010 4:00 PM
 
OK, I figured my problem out.  If you have a DNN360 Menu product like Navigations Suite or TransMenu there is a set of triggers that get placed on the Tabs Table.  This is what's balking.

Before you upgrade you have to run the following query

DISABLE
TRIGGER DNN360Menu_Update on Tabs;
DISABLE
TRIGGER DNN360Menu_delete on Tabs;
DISABLE
TRIGGER DNN360Menu_Insert on Tabs;


After the upgrade;

ENABLE
TRIGGER DNN360Menu_Update on Tabs;
ENABLE
TRIGGER DNN360Menu_delete on Tabs;
ENABLE
TRIGGER DNN360Menu_Insert on Tabs;

 
New Post
9/30/2010 5:35 AM
 
glad you figured it out, for modules, it is suggested not to rely on core database objects and place dependencies.

Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
11/10/2010 9:42 PM
 
Hello guys, This is Dao from DNN360.net This bug is fixed with CISS.SideMenu version 1.4.14+, now it is 1.4.19. I just tested again upgrade process from 4.8.0 to 5.5.1 fine with SideMenu 1.4.19. Sorry for this matter and keeping me informed.
 
New Post
12/1/2010 1:49 AM
 
While upgrading from 05.04.00 to 05.05.00 (using the upgrade code), I received the error:

Executing Script: 05.05.00.SqlDataProvider Error! (see 05.05.00.log.resources for more information)

Reading the log at

/Providers/DataProviders/SqlDataProvider

The log said

System.Data.SqlClient.SqlException (0x80131904): Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression.
The statement has been terminated.
   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()
   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)



/* Fix incorrect culture codes assigned pre-5.5 */
/************************************************/

UPDATE dbo.Tabs
 SET CultureCode = NULL



You cannot fix the problem with this code:

UPDATE dbo.Tabs

SET CultureCode = NULL

WHERE CultureCode Is Not Null;



The reason is that the WHERE clause (as in my case) selected more than one row from the source table (see the first line of the log error).

Instead, run this code (assuming there are less than 110 rows in the dbo.Tabs table):

declare @counter int

set @counter = 0

while @counter < 110

begin

    set @counter = @counter + 1

    UPDATE dbo.Tabs

    SET CultureCode = NULL

    where TabID=@counter

end


This code supports my data mining portal implementation at http://www.marktab.net
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Upgrading DNN P...Upgrading DNN P...Upgraded 4.9.5 to 5.5.0 with one error - fix failsUpgraded 4.9.5 to 5.5.0 with one error - fix fails


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out