I have deploy my code in visual studio .NET 2010 in order to select images and save them into a SQL server (remote) 2008 express
When i deploy my tables as: [dbo].[tablename] then at the last command of my code which is:
sqlFile = New SqlFileStream(filePathName, fileToken, FileAccess.Write)
I receive the error of 'Access denied'
When i deploy my tables as : [UserSchema].[tablename] then i receive the error of:
'The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you'
I have made all the changes that i know around of SQL Server but nothing.
Please noticed that i can write data in all the privious tables without any problem, My issue starts only when i'm trying to pass the image into the shell of the table
Is there anyone which have faced this problem before?