I have a SQL Server 2000 database with 7 tables. I want to copy the table data from this database to another database running on a SQL Server 2008 instance.
The tables will be exactly the same, I just need to copy the data from one to another.
Edit:
I get the following errors when trying to import from SQL Server 2008, I even check the box drop destination tables.:
Validating (Error)
Messages
Error 0xc0202049: Data Flow Task 1: Failure inserting into the read-only column “AllowedHtmlSystemID”.
(SQL Server Import and Export Wizard)Error 0xc0202045: Data Flow Task 1: Column metadata validation failed.
(SQL Server Import and Export Wizard)Error 0xc004706b: Data Flow Task 1: “component “Destination 1 – DnnBBAllowedHtml” (79)” failed validation and returned validation
status “VS_ISBROKEN”.
(SQL Server Import and Export Wizard)Error 0xc004700c: Data Flow Task 1: One or more component failed validation.
(SQL Server Import and Export Wizard)Error 0xc0024107: Data Flow Task 1: There were errors during task validation.
(SQL Server Import and Export Wizard)
EDIT:

It looks like you are trying to insert data into an identity column. If you need the orginal identity values, first make sure they are not currently being used, then in the wizard, click the Edit Mapping button and check the Enable Identity Insert box. If you want to generate new ids, then in the destination in the mapping section, change the value to “ignore” for the identity field.