Great Ideas. Always Flowing.

We are not happy until you are happy. Client satisfaction guaranteed. Whatever your needs and requirements, we have the skills and resources for the job!

Quick login...


Or... now make it easy with Facebook Integration
Connect via Facebook



Top Sellers

Frustrated over the lack of customization for your user's registration fields? Dynamically setup your DNN Portal with custom registration fields, layout, questions, and other core integration options......

Ultra Video Gallery is a brother product of Ultra Media Gallery, UVG allows you to upload videos in various format and automatically encode them to flv or H264 format, you also can add videos from internet or record live videos from your webcam.

Build high performance, completely customizable data-entry forms and views driven by your DNN and external databases. New built-in tools make it a snap to quickly create data entry forms, data views, and even database tables. Plus, add your own HTML, CSS, Javascript, SQL commands, stored procedures,

The most advanced DotNetNuke shopping cart on the planet. Easy to use e-Commerce, Secure Shopping Cart Software and SEO friendly. B2C / B2B Ecommerce Sites.

One stop solution for events calendar and events registration! FREE DOWNLOAD is available now!

SQL 2000 Support
Last Post 03-22-2010 08:26 PM by David To. 9 Replies.
AddThis - Bookmarking and Sharing Button Printer Friendly
  •  
  •  
  •  
  •  
  •  
Sort:
PrevPrev NextNext
You are not authorized to post a reply.
Author Messages
waynephUser is Offline
wading in the water
wading in the water
Posts:18
Avatar

--
03-20-2010 04:50 PM

    I received a big error while installing this module during the SQL portion.  (I  have it copied off if needed.)

    It looks like there was a problem creating tables at the beginning and then cascaded from there since none of the underlying objects got created.

    I'm currently still on SQL 2000, the host is in the process of going to at least 2005 if not 2008, but don't know exactly when that will be.  Is this something that I'll be able to use ahead of that?

    Dan StaufferUser is Offline
    going with the flow
    going with the flow
    Posts:68
    Avatar

    --
    03-21-2010 12:41 PM
    DNN 4.9 - I get this when I try to generate column names. I did not get errors when installed

    A critical error has occurred.
    The stored procedure 'dbo.DataSprings_DynamicViews_AddDynamicViewColumn' doesn't exist.
    David ToUser is Offline
    river guide
    river guide
    Posts:2719
    Avatar

    --
    03-21-2010 06:18 PM
    Hi, I don't believe Dynamic Views supports SQL 2000.

    As for Dan getting that error, are you installing the trial or release version? It doesn't seem that the module installed successfully since it seems to be missing some SQL stored procedure. -- David
    waynephUser is Offline
    wading in the water
    wading in the water
    Posts:18
    Avatar

    --
    03-21-2010 08:33 PM
    Thanks for the info David. I may take a look at the SQL and see how much is really SQL 2005 specific, but then again, I don't want to make any changes so that you guys can't help me if I run into any issues.
    Scott AusbandUser is Offline
    skipping stones
    skipping stones
    Posts:6
    Avatar

    --
    03-22-2010 08:06 AM
    I just posted a fix on another topic that may solve your issue was well. It sounds convienently familiar to the problem that you are having. Take a look at this link below for details. I hope it works for you as well.

    http://www.datasprings.com/Products...fault.aspx
    Dan StaufferUser is Offline
    going with the flow
    going with the flow
    Posts:68
    Avatar

    --
    03-22-2010 12:38 PM

    I uninstalled and then reinstalled - error reported.

    I am using the install provide to me at snowcovered: 15668_10351_DataSprings_DynamicViews_10_DNN45PLUS_Enterprise

    Any suggestions?

    StartJob Starting Installation
    StartJob Reading files
    Info Loading GroupRadioButton.dll
    Info File GroupRadioButton.dll read successfully
    Info Loading ManageSearch.ascx
    Info File ManageSearch.ascx read successfully
    Info Loading Settings.ascx
    Info File Settings.ascx read successfully
    Info Loading FilterRow.ascx
    Info File FilterRow.ascx read successfully
    Info Loading Uninstall.SqlDataProvider
    Info File Uninstall.SqlDataProvider read successfully
    Info Loading _ControlPanel.ascx
    Info File _ControlPanel.ascx read successfully
    Info Loading DynamicViews.ascx
    Info File DynamicViews.ascx read successfully
    Info Loading DynamicViews.dnn
    Info File DynamicViews.dnn read successfully
    Info Loading DynamicViewsEdit.ascx
    Info File DynamicViewsEdit.ascx read successfully
    Info Loading DynamicViews_Resources.zip
    Info File DynamicViews_Resources.zip read successfully
    Info Loading 01.00.00.SqlDataProvider
    Info File 01.00.00.SqlDataProvider read successfully
    Info Loading DataSprings.DNN.Modules.DynamicViews.dll
    Info File DataSprings.DNN.Modules.DynamicViews.dll read successfully
    Info Loading DataSprings.DNN.Modules.DynamicViews.SqlDataProvider.dll
    Info File DataSprings.DNN.Modules.DynamicViews.SqlDataProvider.dll read successfully
    Info Loading DynamicForms_SQLIntegration.txt
    Info File DynamicForms_SQLIntegration.txt read successfully
    EndJob Reading files done.

    StartJob Reading Installation Manifest file
    Info DNN file is in valid 3.0 format.
    Info xml loaded.
    Info Loading files info
    Info Loading Modules info
    Info Loading Control info for 'Dynamic Views' module
    EndJob Manifest file finished successfully


    StartJob Begin Sql execution
    Info Executing 01.00.00.SqlDataProvider
    StartJob Start Sql execution: 01.00.00.SqlDataProvider file
    Failure SQL Execution resulted in following Exceptions: System.Data.SqlClient.SqlException: There is already an object named 'DataSprings_DynamicViews_AddDynamicViewColumn' in the database. 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 DataSprings_DynamicViews_AddDynamicViewColumn @ModuleID int, @ColumnName nvarchar(500) AS Declare @MyCount int Set @MyCount = (Select Count(*) from dbo.[DataSprings_DynamicViews_Columns] WHERE ModuleID = @ModuleID AND ColumnName = @ColumnName) If @MyCount =0 BEGIN Insert Into dbo.[DataSprings_DynamicViews_Columns] (ModuleID, ColumnName) Values (@ModuleID, @ColumnName) END System.Data.SqlClient.SqlException: There is already an object named 'DataSprings_DynamicViews_DeleteDynamicViewColumn' in the database. 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 DataSprings_DynamicViews_DeleteDynamicViewColumn @ModuleID int, @ColumnName nvarchar(500) AS DELETE FROM dbo.[DataSprings_DynamicViews_Columns] WHERE ModuleID = @ModuleID AND ColumnName = @ColumnName
    EndJob End Sql execution: 01.00.00.SqlDataProvider file

    EndJob Finished Sql execution


    StartJob Creating files
    StartJob Expanding Resource file
    EndJob Resource Files created

    StartJob Expanding Resource file
    EndJob Resource Files created

    Info Created E:\inetpub\vhosts\twinsburg.com\httpdocs\DesktopModules\Dynamic Views\DynamicViews.ascx
    Info Created E:\inetpub\vhosts\twinsburg.com\httpdocs\DesktopModules\Dynamic Views\DynamicForms_SQLIntegration.txt
    Info Created E:\inetpub\vhosts\twinsburg.com\httpdocs\DesktopModules\Dynamic Views\DynamicViewsEdit.ascx
    Info Created E:\inetpub\vhosts\twinsburg.com\httpdocs\DesktopModules\Dynamic Views\Settings.ascx
    Info Created E:\inetpub\vhosts\twinsburg.com\httpdocs\DesktopModules\Dynamic Views\_ControlPanel.ascx
    Info Created E:\inetpub\vhosts\twinsburg.com\httpdocs\DesktopModules\Dynamic Views\FilterRow.ascx
    Info Created E:\inetpub\vhosts\twinsburg.com\httpdocs\DesktopModules\Dynamic Views\ManageSearch.ascx
    Info Created E:\inetpub\vhosts\twinsburg.com\httpdocs\bin\DataSprings.DNN.Modules.DynamicViews.dll
    Info Created E:\inetpub\vhosts\twinsburg.com\httpdocs\bin\DataSprings.DNN.Modules.DynamicViews.SqlDataProvider.dll
    Info Created E:\inetpub\vhosts\twinsburg.com\httpdocs\bin\GroupRadioButton.dll
    Info Created E:\inetpub\vhosts\twinsburg.com\httpdocs\DesktopModules\Dynamic Views\Providers\DataProviders\SqlDataProvider\01.00.00.SqlDataProvider
    Info Created E:\inetpub\vhosts\twinsburg.com\httpdocs\DesktopModules\Dynamic Views\Uninstall.SqlDataProvider
    Info Created E:\inetpub\vhosts\twinsburg.com\httpdocs\DesktopModules\Dynamic Views\DynamicViews.dnn.config
    EndJob Files created

    StartJob Registering DesktopModule
    Info Registering Definitions
    Info Registering Controls
    EndJob Registering finished

    EndJob Installation successful.

    Scott AusbandUser is Offline
    skipping stones
    skipping stones
    Posts:6
    Avatar

    --
    03-22-2010 07:07 PM
    Dan,
    Run these two commands against your database and I think you'll be okay even with those errors on the install.

    EXEC sp_changeobjectowner 'DataSprings_DynamicViews_AddDynamicViewColumn', 'dbo';
    EXEC sp_changeobjectowner 'DataSprings_DynamicViews_DeleteDynamicViewColumn', 'dbo';

    For some reason, those two stored procedures are installed with your userid as the owner, but should have 'dbo' as the owner. When you uninstalled, it couldn't find them and never deleted it. Now on the reinstall, you are getting a conflict even though everything else installed fine. Change the owner and you should be fine.

    Dan StaufferUser is Offline
    going with the flow
    going with the flow
    Posts:68
    Avatar

    --
    03-22-2010 07:17 PM
    That did the trick. I ran both and DV seems to be working fine. Thanks a bunch.

    I read your other post and I saw that you had a solution that seemed to apply but I wanted to post the problem here.

    Thanks again, Dan
    Scott AusbandUser is Offline
    skipping stones
    skipping stones
    Posts:6
    Avatar

    --
    03-22-2010 07:23 PM
    Glad to hear that helped!
    David ToUser is Offline
    river guide
    river guide
    Posts:2719
    Avatar

    --
    03-22-2010 08:26 PM
    HI Scott, thanks for figuring this out. -- David
    You are not authorized to post a reply.


     
     

    Join our mailing list...

    Get current news and events the easy way
    Subscribe Me

    Recent Blogs...

     
    Copyright 2005 - 2011 by Data Springs, Inc.
     
  • film izle
  • 720 izle
  • film
  • sinema izle
  • film makinesi
  • T�rk�e dublaj film
  • film izle
  • film izle
  • baglan film izle
  • sinema izle
  • 1080 film izle
  • film mercegi