The error you are getting is because you are trying to import the data into a table that has an identity. The import process is bringing the data from the old system with the identity value - and you cannot import that columns value unless you tell SQL Server to allow inserting the identity columns value.
Your best option is to backup the existing database and restore it to the new server. This avoids any issues with importing data since all the data already exists in the backup file.