Activity overview
Latest activity by Andy_PS
Unfortunatly we use extended properties to provide meta data to the DAL.
I'll try the 2 pass approach, since it'll only be done during an update the extended time needed shouldn't be too much of a concern [image] / comments
Unfortunatly we use extended properties to provide meta data to the DAL.
I'll try the 2 pass approach, since it'll only be done during an update the extended time needed shouldn't be too much of a ...
Yep its trying to alter the extended properties. Altering extended properties
Msg 15217, Level 16, State 2, Procedure sp_updateextendedproperty, Line 36
Property cannot be updated or deleted. Property 'SqlAssemblyFileLine' does not exist for 'dbo.up_CLR_RotaAppointmentTransfer'.
(1 row(s) affected)
Creating extended properties
Msg 15233, Level 16, State 1, Procedure sp_addextendedproperty, Line 37
Property cannot be added. Property 'AutoDeployed' already exists for 'PremierSoftware.SqlServer.BusinessData'.
(1 row(s) affected)
Msg 15233, Level 16, State 1, Procedure sp_addextendedproperty, Line 37
Property cannot be added. Property 'SqlAssemblyProjectRoot' already exists for 'PremierSoftware.SqlServer.BusinessData'.
(1 row(s) affected)
The database update failed
Is there any current work arounds? / comments
Yep its trying to alter the extended properties.Altering extended properties
Msg 15217, Level 16, State 2, Procedure sp_updateextendedproperty, Line 36
Property cannot be updated or deleted. Proper...
We're using it to make any needed schema changes when we update.
It seems like a good way of updating any version to any version.
We take a snapshot of the latest database schema and then run the compare against that and the live database. It saves having to script all the changes by hand. / comments
We're using it to make any needed schema changes when we update.
It seems like a good way of updating any version to any version.
We take a snapshot of the latest database schema and then run the c...
Property cannot be updated or deleted
Property cannot be updated or deleted. Property 'SqlAssemblyFileLine' does not exist for 'dbo.up_CLR_RotaAppointmentTransfer'.
Had a search on the forums and the web in general and I can't see w...
Yup that sorted that one [image]
For the record would you prefer me to keep it as 1 problem per thread? or post any other problems i come up against on this thread? / comments
Yup that sorted that one
For the record would you prefer me to keep it as 1 problem per thread? or post any other problems i come up against on this thread?
Yes I am (using the same code).
Yes I do (though in this case it was the correct assumption [image] )
And that sounds spot on ... I shall swap Options.None to Options.Default and give it a blast! / comments
Yes I am (using the same code).
Yes I do (though in this case it was the correct assumption )
And that sounds spot on ... I shall swap Options.None to Options.Default and give it a blast!
DROP ASSEMBLY failed
Ok got another one. Hopefully its as painfully obvious as my last question.DROP ASSEMBLY failed because 'PremierSoftware.SqlServer.BusinessData' is referenced by object 'up_CLR_StockHeaderSearch'.
...
Yep your right!
Not sure how that slipped in X(
Well spotted and many thanks [image] / comments
Yep your right!
Not sure how that slipped in X(
Well spotted and many thanks
"Object reference not set to an instance of an object."
Heres my code: Database liveDatabase = new Database();
liveDatabase.RegisterForDataCompare(liveConnectionProperties);
Database snapshotDatabase =...