When trying to deploy a VS2010 database project using the VSDBCMD tool, I get the following error:

SQL01268 .Net SqlClient Data Provider: Msg 5133, Level 16, State 1, Line 1 Directory lookup for the file "D:\MSSQL10_50\MSSQL10_50.MSSQLSERVER\MSSQL\Data\Data.mdf" failed with the operating system error 21(failed to retrieve text for this error. Reason: 1815).
SQL01268 .Net SqlClient Data Provider: Msg 1802, Level 16, State 1, Line 1 CREATE DATABASE failed. Some file names listed could not be created. Check related errors.

However, if I take the SQL script generated by VSDBCMD and run it in SQL Management Studio, it works fine. Similarly, I can create the DB manually in Mgt Studio.

'Operating system error 21' is apparently Device Not Ready, but this looks spurious to me... The folder paths are all correct, and unlocking the security on the folders doesn't fix the issue (e.g. 'everyone' > full control). Also, there are no errors in the SQL log or event viewer on the server.

What is different between running VSDBCMD on the command line, and running the same SQL script through Management Studio??

Any ideas very welcome!

Chris

link|improve this question
A bit of Process Monitor solved this in the end... Alarm bells rang when I couldn't see any filesystem activity on the target machine. Turns out this error is thrown when the drive to which the files are being created doesn't actually exist... I was using the wrong server name in the connection string! – Chris Brook Sep 5 '11 at 15:49
Answer your own question, Chris! It's allowed. – Josh Gallagher Nov 3 '11 at 18:16
feedback

1 Answer

up vote 0 down vote accepted

As per my own comments, this error was because the drive didn't actually exist.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.