Importing large files via phpMyAdmin can be slow and problematic.
Using mysql command line gets the job done quickly:
c:\xampp\mysql\bin\mysql -u dbusername -p dbname < dbimport.sql
assuming your XAMPP is installed in C:\XAMPP
The database dbname must already exist, but it should be empty.