I'm trying to move a database from a remote server at a web hosting company (meaning I have no control of the server) to my new own server running SQL Server Express 2012
. To do this, I am using SQL Server
Import/Export Wizard
. However, the identity columns om my source database isn't set as identity columns on the destination database. I have tried to enable the Enable identity insert
tick in the wizard, but the columns are still not created as identity columns in the destination.
How should I do this to get the same database with the same schema on my destination server?
The source database server is SQL Server 2008
.