Storing PDF files as binary objects in SQL Server, yes or no?

前端 未结 6 1209
忘掉有多难
忘掉有多难 2021-02-07 03:13

I have to find a design decision for the following task:

I have a SQL Server database and it contains a table of orders. PDF documents will be uploaded by users through

6条回答
  •  离开以前
    2021-02-07 03:54

    I am sceptical storing large blobs in SQL, assuming that sql page size is 4k (off the nut).. it has to assemble fragment of the entire file in nK blocks when serving the file back to user .. I am not sure whether this is the case or not.

提交回复
热议问题