log4net,处理Windows Azure SQL数据库连接字符串

时间:2018-02-05 22:27:44

标签: logging azure-sql-database log4net

  Having a web.config connection for log4net and works fine ( without tcp/ port etc ) 
  Now Using connection details from Windows Azure SQL Database (formerly SQL Azure) Connection String

的web.config       例如:Data Source = tcp:AXXXXXX03,1433; Initial Catalog = CXXUserDB; User ID = CXXUserID; Password = CXXUserPassword; Persist Security Info = False;

  When I running the application  getting the below error ( captured  using Diagnostics property ) 
  ERROR [AdoNetAppender] ErrorCode: GenericFailure. Exception while writing to database
  System.Data.SqlClient.SqlException (0x80131904): The INSERT permission was denied on the object 'MyTable'
  MyTable having identity and index also defined 

 Question , What are the changes we have to do when we use Azure Connection String instead of our old connection in web.config. ?

2 个答案:

答案 0 :(得分:1)

请向数据库用户提供对该数据库的INSERT的权限。使用SQL Server Management Studio在用户数据库上运行以下语句。

-- Run this on the user database not on master database 
EXEC sp_addrolemember 'db_datawriter',  'CXXUserID'

您也可以为数据库分配读取权限。

EXEC sp_addrolemember 'db_datareader',  'CXXUserID'

答案 1 :(得分:1)

Created a table with clustered index and given permission 

EXEC sp_addrolemember 'db_datawriter',  'CXXUserID'
EXEC sp_addrolemember 'db_datareader',  'CXXUserID'



CREATE TABLE [dbo].[Log4Net] 
(
[Id] [int] IDENTITY (1, 1) NOT NULL,
[Date] [datetime] NOT NULL,
[Thread] [varchar] (255) NOT NULL,
[Level] [varchar] (50) NOT NULL,
[Logger] [varchar] (255) NOT NULL,
[Message] [varchar] (4000) NOT NULL,
[Exception] [varchar] (2000) NULL,
CONSTRAINT [PK_MyLog] PRIMARY KEY CLUSTERED ([Id] ASC)
)
 few more information available : https://blog.tallan.com/2017/07/18/log-management-with-log4net-and-microsoft-azure/
相关问题