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 Eg: 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. ?