sql server - create a file system group pointing at a SAN -


i working creating filetable in sql server 2012. want store files on san (storage area network). have mapped drive on sql server.

to use filetable, need set file system group. using following script failing correct:

alter database [mydatabase] add file  (     name = filestreamfile,     filename= '\\123.456.789.001\myfolder',     maxsize = unlimited     ) filegroup myfilestreamgroup end 

the entry have filename seems fail. how can set filestreamgroup point @ san , in turn use create file table it?

as have found, can't put filestream files onto remote drive using unc path. best bet create lun on san , connect via iscsi, way drive appear local sql server still physically located on san.

you want have chat storage admin doing really.


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -