SQLEXPRESS Server 2014 yet another FILESTREAM bug? -


when try go along tutorial of using this:

        exec sp_configure filestream_access_level, 2         reconfigure         go          create database archive          on         primary(name = arch1,                 filename = 'c:\data\archdat1.mdf'),         filegroup filestreamgroup1 contains filestream(name = arch3,         filename = 'c:\data\filestream1')         log on(name = archlog1,         filename = 'c:\data\archlog1.ldf')         go 

i following error in events:

operating system error 0xc01c000f(failed retrieve text error. reason: 317) occurred while creating or opening file 'c:\data\filestream1'.

well, tried find solution , found quite lot of them:

  • try change service account log on as username
  • try change service account local system
  • try adding in world c:\data folder access rights

so far no success, , looks me regression microsoft. doing wrong?

all filestream features enabled in sql configuration manager. windows 10 sql 2014 express


Comments

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -