我试图在MS Access中使用以下更新查询来更新表tblDM中的字段。
var response = new HttpResponseMessage(HttpStatusCode.OK);
{
response.Content = new PushStreamContent((outputStream, httpContent, transpContext)
=>
{
using (outputStream)
{
using (Stream StrContent = new MemoryStream(TestQuery))
{
StrContent.CopyTo(outputStream, totalLength);
}
}
}, "Image/png");
};
response.Content.Headers.ContentDisposition = new ContentDispositionHeaderValue("attachment")
{
FileName = "PhotoName.png"
};
response.Content.Headers.ContentType = new MediaTypeHeaderValue("Image/png");
return response;
}
在tblDM中,有10,000条记录,在tblIS中,有200,000条记录。
以上查询需要很长时间才能处理。我尝试将上述查询运行了7个多小时,但仍在处理中,因此我必须停止操作,并且正在寻找更快的选项。
谢谢。