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

HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsLinksLinkslink Install failed on Azure hosted site.link Install failed on Azure hosted site.
Previous
 
Next
New Post
6/24/2012 12:37 PM
 

Yesterday I installed a site on microsoft Azure using the Dotnetnuke Accelerator 6.2.

the database is on Sql Azure. I think the problem is  Sql Azure may not have the same commands as Sql Server.

When installing links 6.2.1 I get  the following

StartJob Starting Installation
Info Starting Installation - DNN_Links
Info Starting Installation - Cleanup
Info Processing Cleanup File - 6.0.0
Info Completed Processing of Cleanup File - 6.0.0
Info Component installed successfully - Cleanup
Info Starting Installation - Script
Info Begin Sql execution
Info Folder Created - X:\DotNetNuke\DesktopModules\Links\Providers\DataProviders\SqlDataProvider
Info Created - Providers\DataProviders\SqlDataProvider\03.01.00.SqlDataProvider
Info Executing 03.01.00.SqlDataProvider
Info Start Sql execution: 03.01.00.SqlDataProvider file
Failure SQL Execution resulted in following Exceptions: System.Data.SqlClient.SqlException (0x80131904): 'NOT FOR REPLICATION' is not supported in this version of SQL Server. at System.Data.SqlClient.SqlConnection. (SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection. (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)/************************************************************//***** SqlDataProvider *****//***** *****//***** *****//***** Note: To manually execute this script you must *****//***** perform a search and replace operation *****//***** for dbo. and *****//***** *****//************************************************************//** Create Links Table **/IF NOT EXISTS (SELECT * FROM dbo.sysobjects WHERE id = object_id(N'dbo.[Links]') AND OBJECTPROPERTY(id, N'IsTable') = 1) BEGIN CREATE TABLE dbo.[Links] ( [ItemID] [int] NOT NULL IDENTITY(0, 1), [ModuleID] [int] NOT NULL, [CreatedByUser] [nvarchar] (100) NULL, [CreatedDate] [datetime] NULL, [Title] [nvarchar] (100) NULL, [Url] [nvarchar] (250) NULL, [ViewOrder] [int] NULL, [Description] [nvarchar] (2000) NULL ) ALTER TABLE dbo.[Links] ADD PRIMARY KEY NONCLUSTERED ([ItemID]) CREATE NONCLUSTERED INDEX [IX_Links] ON dbo.[Links] ([ModuleID]) ALTER TABLE dbo.[Links] WITH NOCHECK ADD FOREIGN KEY ([ModuleID]) REFERENCES dbo.[Modules] ([ModuleID]) ON DELETE CASCADE NOT FOR REPLICATION ENDSystem.Data.SqlClient.SqlException (0x80131904): Deprecated feature 'String literals as column aliases' is not supported in this version of SQL Server. at System.Data.SqlClient.SqlConnection. (SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection. (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)CREATE PROCEDURE dbo.GetLink@ItemId int,@ModuleId intASSELECT L.ItemId, L.ModuleId, L.Title, 'URL' = CASE WHEN F.FileName IS NULL THEN L.URL ELSE F.Folder + F.FileName END, L.ViewOrder, L.Description, 'CreatedByUser' = U.FirstName + ' ' + U.LastName, L.CreatedDate, UT.TrackClicks, UT.NewWindowFROM dbo.Links L LEFT OUTER JOIN dbo.Users U ON L.CreatedByUser = U.UserId LEFT OUTER JOIN dbo.UrlTracking UT ON L.URL = UT.Url AND L.ModuleId = UT.ModuleID LEFT OUTER JOIN dbo.Files F ON L.URL = 'fileid=' + CONVERT(varchar,F.FileID)WHERE L.ItemId = @ItemId AND L.ModuleId = @ModuleIdSystem.Data.SqlClient.SqlException (0x80131904): Deprecated feature 'String literals as column aliases' is not supported in this version of SQL Server. at System.Data.SqlClient.SqlConnection. (SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection. (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)CREATE PROCEDURE dbo.GetLinks @ModuleId intASSELECT L.ItemId, L.ModuleId, L.CreatedByUser, L.CreatedDate, L.Title, 'URL' = CASE WHEN F.FileName IS NULL THEN L.URL ELSE F.Folder + F.FileName end, L.ViewOrder, L.Description, UT.TrackClicks, UT.NewWindowFROM dbo.Links L LEFT OUTER JOIN dbo.UrlTracking UT ON L.URL = UT.Url AND UT.ModuleId = @ModuleID LEFT OUTER JOIN dbo.Files F ON L.URL = 'fileid=' + CONVERT(VARCHAR,F.FileID)WHERE L.ModuleId = @ModuleIdORDER BY L.ViewOrder, L.Title
Info End Sql execution: 03.01.00.SqlDataProvider file
Info Finished Sql execution
Failure Installation Failed - Script
Info Rolling back component install - Cleanup
Info Component rolled back successfully - Cleanup
Info Installation Failed - DNN_Links
Info Deleted temporary install folder
EndJob Installation Failed
 

 

 
New Post
6/26/2012 3:33 AM
 
please log the issue into the tracker at at dnnlinks.codeplex.com

Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
6/26/2012 12:42 PM
 
Thank you for your responce. I opened the issue tracker on this.
 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsLinksLinkslink Install failed on Azure hosted site.link Install failed on Azure hosted site.


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