I am getting the following error
Cannot execute as the database principal because the principal \"dbo\" does not exist, this type of principal cannot be imp
As the message said, you should set permission as owner to your user. So you can use following:
ALTER AUTHORIZATION ON DATABASE::[YourDBName] TO [UserLogin];
Hope helpful! Leave comment if it's ok for you.