Reputation: 5299
In Visual Studio i changed a field name in data base project.
IdInInGeo -> IdInIngeo
After i do Schema compare but it's not recognized any changes in this table.
In Schema compares's Options i can't find a any settings about fields register (maybe because my english is weak).
How to make that Schema compare see fields name's changes like in my case? Any advises?
Upvotes: 3
Views: 2843
Reputation: 5240
It happened to me one time. I could fix it using the following steps:
SQL_Latin1_General_CP1_CS_AS
Doing so would most probably allow you to detect changes in schema names.
Do note that a one-character difference in the collation may lead to different results. For example, CI
means case-insensitive, whereas changing it to CS
makes it case-sensitive.
Hope this helps.
Upvotes: 3