SQL Server 2012 generate script produce different result to 2008 R2 White spaces are changed e.g. with 2008 R2
CREATE TABLE [dbo].[Table1](
[ID] [nvarchar](50) NOT NULL,
[Name] [nvarchar](50) NOT NULL,
CONSTRAINT [PK_Admin] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
e.g. with 2012, the extra spaces are eliminated
CREATE TABLE [dbo].[Table1](
[ID] [nvarchar](50) NOT NULL,
[Name] [nvarchar](50) NOT NULL,
CONSTRAINT [PK_Admin] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
also, in 2012, some create table scripts ends with
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
while the others do not have TEXTIMAGE_ON [PRIMARY], what is this?
the order of foreign key constraints is changed too.
I use SMO/SSMS to script from SQL Server 2012 and 2008 R2
These changes make "diff" 2 versions more difficult. Any methods to deal with such changes?