When scripting a DB using SQL Server Management Studio (SSMS) it generates line like:
/****** Object: ForeignKey [FK_NoteLinkAssociation_Link] Script Date: 04/24/2009 10:04:46 ******/
Is there a way to stop it from generating that line or the date part of that line?
Reason: The DB is being scripted and stored in source control and when you do a diff on it versus the previous there are hundreds of lines with the data being different which doesn't help finding the real differences so any solution that addresses this problem would also be acceptable.
(SSMS2008 is being used against a 2005 DB.)