티스토리 뷰
#Part.3
SQL Server FileTable 유용한 함수들
Windows API 를 이용해서 해당 함수들을 사용할 수 있다.
SELECT FileTableRootPath('FileServers') AS FileTableRootPathLong;
GO
SELECT FileTableRootPath() as FileTableRootPath, file_stream.GetFileNamespacePath()
FROM [dbo].FileServers;
GO
SELECT GetPathLocator('\\SQL2014MIRA\MSSQLSERVER\FileTableShare\UploadFS');
GO
FileTable 사용여부 확인하기
SELECT * FROM sys.filetables;
GO
SELECT name, type, type_desc, create_date, is_filetable, durability_desc
FROM sys.tables WHERE is_filetable = 1;
GO
하위 디렉토리 생성하기
-- Crate Sub Folders
INSERT INTO dbo.FileServers(name,is_directory) values('Whitepapers',1)
INSERT INTO dbo.FileServers(name,is_directory) values('Multimedia',1)
GO
SELECT FileTableRootPath() as FileTableRootPath, file_stream.GetFileNamespacePath(), *
FROM [dbo].FileServers;
GO
'SQL FileTable' 카테고리의 다른 글
FileTable에서 NON_TRANSACTED_ACCESS 옵션은 무엇일까? (0) | 2015.11.10 |
---|---|
SQL Server FileTable 데이터베이스 이전하기 Part 4 (0) | 2015.11.05 |
SQL Server FileTable 데이터 업로드하기 Part 2 (0) | 2015.11.05 |
SQL Server FileTable 구성하기 Part 1 (0) | 2015.11.05 |
- Total
- Today
- Yesterday