I have a sample SQL Server database backup that is ~12gb. Too large for me to restore in SQL Server Express (10gb limit). I downloaded the Developer version of SQL Server (on my home PC) and was able to restore the instance there, but the machine I need to test this database on is 32-bit and I can't find a 32-bit SQL Server Developer edition.
Is there an easy way for me to reduce the database size by a couple of GB by truncating some tables I'm not using in order to get under the 10gb limit so I can restore it to a 32-bit version of SQL Server Express?
I've already cleared out the data I don't need, But when I make a full backup, it's like ~50gb! Is there a way to get a smaller backup after removing some data? what settings should I use to backup?
This data is just for testing with a Windows form app I'm creating so it's most important that I get the schema and stored procedures over anyways. I've tried to generate scripts and run them on the new SQL server instance, but there's these dependencies to some .mdf
file that I can't move that causes it to fail.
Let me know if I can provide any additional helpful information.
Any help would be appreciated - thanks!