I imported data from foxpro 2.5 .dbf file into SQL Server 200 table. Foxpro data file size was 75 MB, the new SQL database file size was 80 MB. The structure of the SQL Server table is:
Columns: 118
Rows: 105967
I droped many columns in SQL table as they were useless to me and new structure of SQL Server table become
Columns: 16
Rows: 105967 (same as above)
I then use a simple ASP page to READ the data from SQL Server table. When I looked back on the files size on disk it becomes:
Data File Size: 229 MB
Log File Siz: 109 MB
I am surprised how data file size is increased whereas I have added no data to the table rather droped so many columns. Any idea about it. Can I reduce the size of the SQL Server database? as I have to upload it on web server and the file size is very strange to me. Please help.
Edited by PrivateEye - 16 July 2006 at 4:13pm