Extended Properties
alex_sefrin
Posts: 17
I just installed the new version and suddenly getting lots of different objects.
New:
The second parameter doesn't have an N before the '.
When I create the script with SSMS the N is before the '.
How can I force SQLCompare to write the N?
New:
EXEC sp_addextendedproperty N'MS_Description', 'Auswertegruppennummer', 'SCHEMA', N'dbo', 'TABLE', N'Auswertegruppen', 'COLUMN', N'AWGNr'Old:
EXEC sp_addextendedproperty N'MS_Description', N'Auswertegruppennummer', 'SCHEMA', N'dbo', 'TABLE', N'Auswertegruppen', 'COLUMN', N'AWGNr'
The second parameter doesn't have an N before the '.
When I create the script with SSMS the N is before the '.
How can I force SQLCompare to write the N?
Comments
I just tried this here by creating a new database, with a single table that I could then run your example code against.
I then created a second database and ran Compare between the two, using both V8 and V10.
They both seem to keep the 'N' in front of Auswertegruppennummer:
So I'm not sure why you're seeing it behave differently. Could you let us know some more details as to the collation in use as maybe this is having an effect? Also, can you reproduce the problem by creating a simple example in the same way I did?
Redgate Software
Another problem is that in some statements the square brakets are missing now.
new
old
Re missing N:
The N isn't missing on all ext. prop. I can't find a rule when it is missing.
I will create to dbs an try to reproduce the errors.
Thanks!
Redgate Software