Search:
|
Browse by category:
|
How to deploy Microsoft SQL Server on Bloombase StoreSafe Samba/CIFS secure encryption storage? |
||||
Microsoft SQL Server does not support creating database files on network drives by default and may produce the following error 5110 "File \\<storesafe hostname>\<virtual storage>\<db>.mdf is on a network device To solve this, turn on trace flag 1807 to bypass network drive checking DBCC TRACEON(1807) create database <db> OR if you want to attach an existing database file :
DBCC TRACEON(1807) create database <db> |