I use the Database Publishing Wizard in Visual Studio to create a script of a test database (schema and data): The wizard creates a file that I store in my source control system. When I make a few changes to the database I want to publish again in order to save the changes in the source control system.
The problem for me is that the wizard creates a line like the following for every object:
/****** Object: Schema [dbo] Script Date: 06/18/2010 15:47:19 ******/
Since these lines contain a date I have thousands of lines that are changed even if just added one record to the database and thus comparing to the previous version is virtually impossible.
Anyone know how to suppress these lines?