I am new to SQL server filetable, so I'm trying to get a grasp on how the table permissions affect the file share. What I am looking to do is to allow users to read and create/add files to the file share, but not allow them to update or delete files that already exist.
From what I have read, I should be able to just grant SELECT and INSERT permissions to the users to get this functionality, but that doesn't appear to be the case.
The only way I can get users to be able to create/add files to the file share is if I grant UPDATE permissions, which also gives them the ability to update existing files.
Is this consistent with what other people have experienced? Is it possible to get the functionality that I am looking for?
Thanks.