Newbie Problem - Random Extended Properties Change
catfood49
Posts: 18
I am using Shared Database Development with Subversion
I have only just started using SQL Source Control and have come across something strange.
I have linked one of my databases to source control and am trying this over 2 PCs. Without making any changes to the database, when I click on Commit Changes, SQL Source Control returns a change to one of my views to do with Extended Properties (a change I have not made). The Changed By value is 'Unknown'.
Why would SQL Srouce Control be reporting on a change I have not made to do with Extended Properties?
Thanks.
I have only just started using SQL Source Control and have come across something strange.
I have linked one of my databases to source control and am trying this over 2 PCs. Without making any changes to the database, when I click on Commit Changes, SQL Source Control returns a change to one of my views to do with Extended Properties (a change I have not made). The Changed By value is 'Unknown'.
Why would SQL Srouce Control be reporting on a change I have not made to do with Extended Properties?
Thanks.
Comments
In the differences viewer, is there actually a difference in extended properties between what exists in the DB and what exists in SVN?
Pete
Red Gate Software Ltd
+44 (0)870 160 0037 ext. 8569
1 866 RED GATE ext. 8569
How does that sound?
Pete
Red Gate Software Ltd
+44 (0)870 160 0037 ext. 8569
1 866 RED GATE ext. 8569
really should have taken a note of the problem in detail but was in bit of a tight deadline. next time
A colleague of mine clicked on the Commit Changes button on one our of databases and was told a difference between the database and source control versions had been found. This once again related to a view that looks at a single table (that has not changed). Whilst I cannot be 1005 certain, it is highly unlikely anyone would have changed this view, esepcially as the view is little more complicated than a 'select * from '
The change between versions is below, with the change highlighted in red:
Database Version
EXEC sp_addextendedproperty N'MS_DiagramPaneCount', 1, 'SCHEMA', N'dbo', 'VIEW', N'VIEW Customers Union', NULL, NULL
GO
Source Control Version
EXEC sp_addextendedproperty N'MS_DiagramPaneCount', NULL, 'SCHEMA', N'dbo', 'VIEW', N'VIEW Customers Union', NULL, NULL
GO
Thanks!
Red Gate Software Ltd
+44 (0)870 160 0037 ext. 8569
1 866 RED GATE ext. 8569
Alan
Alan
Thanks for letting me know.