I migrated a SQL Server database (source) into a SQL Server Express database (destiny). Used "generate scripts..." in SSMS.
I verified if the tables (tested with the 3 biggest tables) in the source DB had the same number of rows has the Express and all looked OK.
I executed sp_spaceused
and found that the original database size is 16MB, while the Express version is 4MB.
Does the Express DB uses less space or is this a sign that something went wrong with the migration?
Thank you