The fastest way to transfer data is to bcp out and then bulk insert in.
Before bulk insert, you must create the destination table.
To BCP you can use the -N parameter to especify WIDENATIVE character. It will create
a bigger file, but SQL can process it faster.
Then to import, use BULK INSERT with the DATAFILETYPE = 'WIDENATIVE' option.