Creating Sub Directory via SQL INSERT using FileTable
问题 Previously, I requested how to create a directory within a FileTable without using File I/O APIs. I now want to create a subdirectory to the parent directory I just created. How do assign my parent during insert? It appears that parent_path_locator is a computed column. This creates my parent... INSERT INTO FileTable0 (name,is_directory,is_archive) VALUES ('Directory', 1, 0); How do I create a child directory to this parent in my FileTable? 回答1: This is what I ended up using to create a