我一直在尝试使用SQL SERVER 2008 Filestream和Impersonation技术将文件上传到数据库,以便将文件保存在文件系统中,但我一直收到Access Denied错误;即使我已将模拟用户的权限设置为Filestream文件夹(C:\ SQLFILESTREAM \ Dev_DB)。当我调试代码时,我发现服务器返回一个unc路径(\ Server_Name \ MSSQLSERVER \ v1 \ Dev_LMDB \ dbo \ FileData \ File_Data \ 13C39AB1-8B91-4F5A-81A1-940B58504C17),这是无法通过Windows资源管理器访问的。 我的Web应用程序托管在本地机器上(Windows 7)。 SQL Server位于远程服务器(Windows Server 2008 R2)上。 Sql身份验证用于调用存储过程。
以下是我用于执行上述操作的代码。
SqlCommand sqlCmd = new SqlCommand("AddFile");
sqlCmd.CommandType = CommandType.StoredProcedure;
sqlCmd.Parameters.Add("@File_Name", SqlDbType.VarChar, 512).Value = filename;
sqlCmd.Parameters.Add("@File_Type", SqlDbType.VarChar, 5).Value = Path.GetExtension(filename);
sqlCmd.Parameters.Add("@Username", SqlDbType.VarChar, 20).Value = username;
sqlCmd.Parameters.Add("@Output_File_Path", SqlDbType.VarChar, -1).Direction = ParameterDirection.Output;
DAManager PDAM = new DAManager(DAManager.getConnectionString());
using (SqlConnection connection = (SqlConnection)PDAM.CreateConnection())
{
connection.Open();
SqlTransaction transaction = connection.BeginTransaction();
WindowsImpersonationContext wImpersonationCtx;
NetworkSecurity ns = null;
try
{
PDAM.ExecuteNonQuery(sqlCmd, transaction);
string filepath = sqlCmd.Parameters["@Output_File_Path"].Value.ToString();
sqlCmd = new SqlCommand("SELECT GET_FILESTREAM_TRANSACTION_CONTEXT()");
sqlCmd.CommandType = CommandType.Text;
byte[] Context = (byte[])PDAM.ExecuteScalar(sqlCmd, transaction);
byte[] buffer = new byte[4096];
int bytedRead;
ns = new NetworkSecurity();
wImpersonationCtx = ns.ImpersonateUser(IMP_Domain, IMP_Username, IMP_Password, LogonType.LOGON32_LOGON_INTERACTIVE, LogonProvider.LOGON32_PROVIDER_DEFAULT);
SqlFileStream sfs = new SqlFileStream(filepath, Context, System.IO.FileAccess.Write);
while ((bytedRead = inFS.Read(buffer, 0, buffer.Length)) != 0)
{
sfs.Write(buffer, 0, bytedRead);
}
sfs.Close();
transaction.Commit();
}
catch (Exception ex)
{
transaction.Rollback();
}
finally
{
sqlCmd.Dispose();
connection.Close();
connection.Dispose();
ns.undoImpersonation();
wImpersonationCtx = null;
ns = null;
}
}
有人可以帮我解决这个问题。 Reference
Exception:
Type : System.ComponentModel.Win32Exception, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Message : Access is denied Source : System.Data Help link :
NativeErrorCode : 5
ErrorCode : -2147467259
Data : System.Collections.ListDictionaryInternal
TargetSite : Void OpenSqlFileStream(System.String, Byte[], System.IO.FileAccess, System.IO.FileOptions, Int64)
Stack Trace : at System.Data.SqlTypes.SqlFileStream.OpenSqlFileStream(String path, Byte[] transactionContext, FileAccess access, FileOptions options, Int64 allocationSize)
at System.Data.SqlTypes.SqlFileStream..ctor(String path, Byte[] transactionContext, FileAccess access, FileOptions options, Int64 allocationSize)
at System.Data.SqlTypes.SqlFileStream..ctor(String path, Byte[] transactionContext, FileAccess access)
由于
答案 0 :(得分:2)
访问Filestream数据时不支持Sql身份验证
答案 1 :(得分:0)
尝试使用LOGON32_LOGON_NETWORK而不是LOGON32_LOGON_INTERACTIVE。很多年前我在使用API调用UNC模拟时遇到了这个错误,所以它可能仍然存在。
答案 2 :(得分:0)
我遇到了同样的问题。解决方案是检查SQL Server配置管理器的“FileStream”选项卡上的所有复选框。
以下是MSDN上的说明: http://msdn.microsoft.com/en-us/library/cc645923(v=sql.100).aspx
注意事项7和8:
- 如果要从Windows读取和写入FILESTREAM数据,请单击“启用FILESTREAM”以进行文件I / O流访问。输入名称 Windows共享名称框中的Windows共享。
- 如果远程客户端必须访问存储在此共享上的FILESTREAM数据,请选择“允许远程客户端具有流式访问权限” FILESTREAM数据。
醇>
我们有远程客户端访问文件流,因此我们需要启用所有复选框,最初我们只检查了前三个,这导致了错误。