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

前端 未结 6 1207
忘掉有多难
忘掉有多难 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:44

    I would also create a separate table for the documents, that way the search data/key fields for document retrieval will be more cache'able. The only time your database will need to touch the document table is during an insert or download.

提交回复
热议问题