How can we help you today? How can we help you today?
Evan Moss
Hello, After doing a bit more research and testing, it actually appears the only way to do this is to add each node individually. Sorry about the inconvenience. Thanks, Evan / comments
Hello, After doing a bit more research and testing, it actually appears the only way to do this is to add each node individually. Sorry about the inconvenience. Thanks, Evan
0 votes
Hello, Thanks for your post. I just tried reproducing your behavior and wasn't able to. I created two databases, a and b, and ran these scripts on them: CREATE TABLE [dbo].[table 1] (Column1 INT, Column2 INT, Column3 INT, Column4 INT) GO EXEC sp_addextendedproperty N'MS_Description', N'Description 1', 'SCHEMA', N'dbo', 'TABLE', N'Table 1', 'COLUMN', N'Column1' GO EXEC sp_addextendedproperty N'MS_Description', N'Description 2', 'SCHEMA', N'dbo', 'TABLE', N'Table 1', 'COLUMN', N'Column2' GO EXEC sp_addextendedproperty N'MS_Description', N'Description 3', 'SCHEMA', N'dbo', 'TABLE', N'Table 1', 'COLUMN', N'Column3' GO EXEC sp_addextendedproperty N'MS_Description', N'Description 4', 'SCHEMA', N'dbo', 'TABLE', N'Table 1', 'COLUMN', N'Column4' GO CREATE TABLE [dbo].[table 1] (Column1 INT, Column2 INT, Column3 INT, Column4 INT) GO EXEC sp_addextendedproperty N'MS_Description', N'Description 1', 'SCHEMA', N'dbo', 'TABLE', N'Table 1', 'COLUMN', N'Column1' GO EXEC sp_addextendedproperty N'MS_Description', N'Description 4', 'SCHEMA', N'dbo', 'TABLE', N'Table 1', 'COLUMN', N'Column4' GO EXEC sp_addextendedproperty N'MS_Description', N'Description 2', 'SCHEMA', N'dbo', 'TABLE', N'Table 1', 'COLUMN', N'Column2' GO EXEC sp_addextendedproperty N'MS_Description', N'Description 3', 'SCHEMA', N'dbo', 'TABLE', N'Table 1', 'COLUMN', N'Column3' GO Then I compared them in SQL Compare 10.7 and they did not show up as differences. Is there anything else you're doing that could explain different behavior? Are you using the default comparison options? Thanks, Evan / comments
Hello, Thanks for your post. I just tried reproducing your behavior and wasn't able to. I created two databases, a and b, and ran these scripts on them:CREATE TABLE [dbo].[table 1] ...
0 votes