I get the below error running a CREATE DATABASE script...
CREATE FILE encountered operating system error 5(failed to retrieve text for this error. Reason: 15105) while attempting to open or create the physical file 'H:\TestDatabase.mdf'
I am logged in as 'sa', which is a sysadmin.
What am I missing?
CREATE DATABASE TestDatabase ON PRIMARY
(
NAME = N'TestDatabase',
FILENAME = N'H:\TestDatabase.mdf' ,
SIZE = 51200000KB ,
FILEGROWTH = 1024KB
)