vote up 1 vote down star

The FILESTREAM feature of SQL Server 2008, allows storage of and efficient access to BLOB data using a combination of SQL Server 2008 and the NTFS file system.

When insert a row on a table which contains varbinary column with filestream attribute, the file (data) is stored directly on the file system and assigned the new name (e.g. 00000016-00000079-0006).

Is any API of TSQL can check that which file on the file system is associated with the particular row?

flag
I don't think I understand the question - the file name is that 00000016-00000079-0006 that you found. Just do a select * from your filestream-enabled table, and you'll get the file name for each row, right? What are you trying to do? – Brent Ozar Dec 1 '08 at 13:16

1 Answer

vote up 2 vote down

The file name is that 00000016-00000079-0006 that you found - look for it in the directory where you configured the FileStream storage. Just do a select * from your filestream-enabled table, and you'll get the file name for each row.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.