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

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

    We ran in to a similar situation albeit in principle only. We needed a way by which documents stored to SharePoint could be accessed via a link on a web page. Since everything is project based with a unique project number the solution was to implement a common naming convention to the documents. s the web page is created server-side, the links are dynamically created. The code takes the base path to the SharePoint server and then adds the project number and specifics for the document.

    Example:

    [SharePoint Base Path][Project Numbe][Project Document Name]
    [http://mysharepoint.mycompany.com/213990/213990_PC.pdf]
    

提交回复
热议问题