Physical location of FILESTREAM data

前端 未结 5 558
清酒与你
清酒与你 2021-01-06 07:47

How could I know the physical location (so I can see it in Windows Explorer) path of a FILESTREAM data that I\'ve just inserted into DB?

5条回答
  •  没有蜡笔的小新
    2021-01-06 08:34

    As Pawel has mentioned, it is not a good idea to access the FILESTREAM files using Windows Explorer. If you are still determined to go ahead and explore this, the following tip might help.

    The FILESTREAM file names are actually the log-sequence number from the database transaction log at the time the files were created. Paul Randal has explained it in this post. So One option is to find out the log sequence number and look for a file named after that in the file stream data container.

提交回复
热议问题