When using vsdbcmd to deploy my database:

vsdbcmd.exe /a:Deploy /manifest:MyDatabase.deploymanifest

I Get:

SQL01268 .Net SqlClient Data Provider: Msg 50000, Level 16, State 127, Line 6 Rows were detected. The schema update is terminating because data loss might occur. SQL01268 An error occurred while the batch was being executed.

Which is fine, but it doesn't tell me where the dataloss will happen. In order to find out I have to use <DeployToScript>True</DeployToScript>, then load the script up to see:

IF EXISTS (select top 1 1 from [dbo].[MyTable]) RAISERROR ('Rows were detected. The schema update is terminating because data loss might occur.', 16, 127) WITH NOWAIT

Is there a way to get vsdbcmd to display this info when deploying direct to the DB without having to generate the sql first?

Thanks

link|improve this question

75% accept rate
1  
I've raised a Connect feedback entry related to this: connect.microsoft.com/VisualStudio/feedback/details/678292/… – Tom Hunter Jul 4 '11 at 15:34
Thanks Tom, I've just logged in and up-voted it on the connect website. – Matt Jul 11 '11 at 11:54
feedback

2 Answers

For me I was needed to empty my DB before deploying SQL

link|improve this answer
feedback
up vote 0 down vote accepted

There is no way to do this, it's a bug (or missing feature). See Tom's comment to my question.

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.