I have sometimes found the need on data corruption cases to compare the number of objects exported to the destination database with the source database to find out which objects got exported and which didn’t. You would need to run this script against the source and destination database and compare the output.
One of the drawbacks of the “Generate Scripts” option in SQL Server Management Studio is that SSMS scripts out the Primary Key constraints along with the CREATE TABLE script. So, if the table is already created, the primary key will not be created if you use the script that was generated by the SSMS Generate Scripts Wizard.
Script
select CASE xtype WHEN 'C' THEN 'CHECK constraint' WHEN 'D' THEN 'Default or DEFAULT constraint ' WHEN 'F' THEN 'FOREIGN KEY constraint ' WHEN 'L' THEN 'Log ' WHEN 'FN' THEN 'Scalar function ' WHEN 'IF' THEN 'In-lined table-function ' WHEN 'P' THEN 'Stored procedure ' WHEN 'PK' THEN 'PRIMARY KEY constraint (type is K) ' WHEN 'RF' THEN 'Replication filter stored procedure' WHEN 'S' THEN 'System table ' WHEN 'TF' THEN 'Table function ' WHEN 'TR' THEN 'Trigger ' WHEN 'U' THEN 'User table ' WHEN 'UQ' THEN 'UNIQUE constraint (type is K) ' WHEN 'V' THEN 'View ' WHEN 'X' THEN 'Extended stored procedure' ELSE 'UNKNOWN' END, count(*) as counts from sys.sysobjects group by CASE xtype WHEN 'C' THEN 'CHECK constraint' WHEN 'D' THEN 'Default or DEFAULT constraint ' WHEN 'F' THEN 'FOREIGN KEY constraint ' WHEN 'L' THEN 'Log ' WHEN 'FN' THEN 'Scalar function ' WHEN 'IF' THEN 'In-lined table-function ' WHEN 'P' THEN 'Stored procedure ' WHEN 'PK' THEN 'PRIMARY KEY constraint (type is K) ' WHEN 'RF' THEN 'Replication filter stored procedure' WHEN 'S' THEN 'System table ' WHEN 'TF' THEN 'Table function ' WHEN 'TR' THEN 'Trigger ' WHEN 'U' THEN 'User table ' WHEN 'UQ' THEN 'UNIQUE constraint (type is K) ' WHEN 'V' THEN 'View ' WHEN 'X' THEN 'Extended stored procedure' ELSE 'UNKNOWN' END