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

HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...upgrade from 4.4.1 to 4.5.1 00:00:05.186 -   Executing Script: 04.05.01.SqlDataProvider Failureupgrade from 4.4.1 to 4.5.1 00:00:05.186 - Executing Script: 04.05.01.SqlDataProvider Failure
Previous
 
Next
New Post
4/21/2007 11:11 PM
 

When running the upgrade from 4.4.1 to 4.5.1, I get the three steps only;

Executing Script: 04.05.00.SqlDataProvider Success

Executing Script: 04.05.01.SqlDataProvider Failure (Check log)

Performing General upgrades

Wondering if I got upgraded OK?

Does anyone Know?

 

Regards

 

 
New Post
4/21/2007 11:31 PM
 

due to this specific script, you do not need to worry.generally post the log file for assessing the severeness.


Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
4/22/2007 1:01 AM
 

Thanks!

Where do i find the log file?

Regards

 
New Post
4/22/2007 1:35 AM
 

 

OK I found the 04.05.01.log and this was the only line in it?

Error: Access to the path 'd:\hosting\member\alifnoon\site1_4.5.1\RSS.aspx.vb' is denied.

Is it important enough to fix. Is there a way to run the script again?

Regards,

 

 
New Post
4/22/2007 3:32 AM
 

Hello,
I have this error (in 04.05.01.log) upgrading from dnn 440 to 451 :

 System.Data.SqlClient.SqlException: CREATE UNIQUE INDEX terminated because a duplicate key was found for index ID 8. Most significant primary key is '<NULL>'.
Could not create constraint. See previous errors.
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(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)

/************************************************************/
/*****              SqlDataProvider                     *****/
/*****                                                  *****/
/*****                                                  *****/
/***** Note: To manually execute this script you must   *****/
/*****       perform a search and replace operation     *****/
/*****       for dbo. and   *****/
/*****                                                  *****/
/************************************************************/


/* add unique constraint to Folders table */
IF NOT EXISTS (select * from dbo.sysobjects where id = object_id(N'dbo.[IX_FolderPath]') and OBJECTPROPERTY(id, N'IsConstraint') = 1)
BEGIN
  declare @PortalID int
  declare @FolderPath varchar(300)
  declare @FolderID int
  declare @MinFolderID int

  select @PortalID = min(PortalID)
  from Portals
  while @PortalID is not null
  begin 
    /* check for duplicate FolderPaths */
    select @FolderPath = null
    select @FolderPath = FolderPath
    from Folders
    where PortalID = @PortalID
    group by FolderPath
    having COUNT(*) > 1
 
    /* if duplicates exist */
    if @FolderPath is not null
    begin
      /* iterate through the duplicates */
      select @FolderID = min(FolderID)
      from Folders
      where PortalID = @PortalID
      and FolderPath = @FolderPath

      /* save min FolderID */
      select @MinFolderID = @FolderID

      while @FolderID is not null
      begin
        if @FolderID <> @MinFolderID
        begin
          /* reassign FolderId to min FolderID for duplicate folders */
          update Files
          set FolderID = @MinFolderID
          where FolderID = @FolderID

          /* remove duplicate folder */
          delete
          from Folders
          where FolderID = @FolderID
        end

        select @FolderID = min(FolderID)
        from Folders
        where PortalID = @PortalID
        and FolderPath = @FolderPath
        and FolderID > @FolderID
      end
    end
 
    select @PortalID = min(PortalID)
    from Portals
    where PortalID > @PortalID
  end

  /* add unique constraint */
  ALTER TABLE dbo.Folders ADD CONSTRAINT
    IX_FolderPath UNIQUE NONCLUSTERED
    (
      PortalID,
      FolderPath
    ) ON [PRIMARY]
END

In Files table I have a lot of duplicated file-folders like these:

FolderID Folder FileName
0 310 Immagini_GuidaArtmedia/ Artmedia_screen.jpg
0 156 Immagini_GuidaArtmedia/ Artmedia_screen.jpg
0 310 Immagini_GuidaArtmedia/ Azienda XP_screen.jpg
0 156 Immagini_GuidaArtmedia/ Azienda XP_screen.jpg

I think the error is in the sql script when it try to  /*reassign FolderId to min FolderID for duplicate folders*/
          update Files
          set FolderID = @MinFolderID
          where FolderID = @FolderID
because in Files table there is a "unique" property for FolderID-FileName fields

What should I do now?

Thanks

Luca


siti internet in provincia di cuneo torino savona asti
Siti e applicazioni Web
 
Previous
 
Next
HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...upgrade from 4.4.1 to 4.5.1 00:00:05.186 -   Executing Script: 04.05.01.SqlDataProvider Failureupgrade from 4.4.1 to 4.5.1 00:00:05.186 - Executing Script: 04.05.01.SqlDataProvider Failure


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