Error loading files from temporary folder - see below |
StartJob |
Starting Installation |
Info |
Starting Installation - UserComments |
Info |
Starting Installation - Script |
Info |
Begin Sql execution |
Info |
Creating backup of previous version - 05.02.05.SqlDataProvider |
Info |
Created - 05.02.05.SqlDataProvider |
Info |
Executing 05.02.05.SqlDataProvider |
Info |
Start Sql execution: 05.02.05.SqlDataProvider file |
Failure |
SQL Execution resulted in following Exceptions: System.Data.SqlClient.SqlException (0x80131904): The specified schema name "dbo." either does not exist or you do not have permission to use it. at System.Data.SqlClient.SqlConnection. (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 TABLE [dbo.].[dnn_usercomments]( [moduleid] [int] null, [comment] [text] NULL, [date] [datetime] NULL ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] System.Data.SqlClient.SqlException (0x80131904): The specified schema name "dbo." either does not exist or you do not have permission to use it. at System.Data.SqlClient.SqlConnection. (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.].[sp_viewcomments] @moduleid int AS BEGIN SET NOCOUNT ON SELECT moduleid, comment, date from [dnn_usercomments] where moduleid=@moduleid end System.Data.SqlClient.SqlException (0x80131904): The specified schema name "dbo." either does not exist or you do not have permission to use it. at System.Data.SqlClient.SqlConnection. (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.].[sp_usercommentsinsert] @moduleid int, @comment text, @commentdate datetime AS BEGIN SET NOCOUNT ON; insert into [dbo.].[dnn_usercomments] (moduleid, comment, date) values (@moduleid, @comment, @commentdate) END System.Data.SqlClient.SqlException (0x80131904): The specified schema name "dbo." either does not exist or you do not have permission to use it. at System.Data.SqlClient.SqlConnection. (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.].[sp_countcomments] @moduleid int As begin SELECT count(*) from [dbo.].[dnn_usercomments] where moduleid=@moduleid end |
Info |
End Sql execution: 05.02.05.SqlDataProvider file |
Info |
Finished Sql execution |
Failure |
Installation Failed - Script |
Info |
Installation Failed - UserComments |
Info |
Deleted temporary install folder |
EndJob |
Installation Failed |
|
dataproviders:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [{databaseOwner}].[{objectQualifier}usercomments](
[moduleid] [int] null,
[comment] [text] NULL,
[date] [datetime] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
---------------------------------
create procedure [{databaseOwner}].[sp_viewcomments]
@moduleid int
AS
BEGIN
SET NOCOUNT ON
SELECT moduleid, comment, date from [{objectQualifier}usercomments] where moduleid=@moduleid
end
go
------------------------------
create PROCEDURE [{databaseOwner}].[sp_usercommentsinsert]
@moduleid int,
@comment text,
@commentdate datetime
AS
BEGIN
SET NOCOUNT ON;
insert into [{databaseOwner}].[{objectQualifier}usercomments] (moduleid, comment, date) values (@moduleid, @comment, @commentdate)
END
go
-- =============================================
create PROCEDURE [{databaseOwner}].[sp_countcomments]
@moduleid int
As
begin
SELECT count(*) from [{databaseOwner}].[{objectQualifier}usercomments] where moduleid=@moduleid
end
go
DROP TABLE
[{databaseOwner}].[{objectQualifier}usercomments]
GO
drop procedure [{databaseOwner}].[sp_usercommentsinsert]
go
GO
drop procedure [{databaseOwner}].[sp_viewcomments]
go
GO
drop procedure [{databaseOwner}].[sp_countcomments]
go
|