I have an SQL script that is extremely large (about 700 megabytes). I am wondering if there is a good way to reduce the size of the script?
I know there are code minimizers for JavaScript, and I'm looking for one for use with SQL scripts.
I do not want to get performance on SQL script. I am trying to make the file size smaller. Removing extra spaces. Keeping the naming down so that the sizes of the script files can be smaller.
If I try to upload a file in SQL Server Management Studio, I get this error.
Not enough storage space, run this command. (Exception from HRESULT: 0x80070008) (mscorlib)
source
share