Click here to Skip to main content
15,910,981 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I'm exporting my database to a customer which shows me the following error:

Could not load schema model from package. (Microsoft.SqlServer.Dac)

ADDITIONAL INFORMATION:

Internal Error. The internal target platform type Sql110DatabaseSchemaProvider does not support schema file version '2.5'.

I installed SQL Server 2012 on the customer's PC, the same version in which it is created.

I also installed Crystal Reports on the customer's computer.

Please help me, thanks in advance.

What I have tried:

I'm exporting my database to a customer which shows me the following error:

Could not load schema model from package. (Microsoft.SqlServer.Dac)

ADDITIONAL INFORMATION:

Internal Error. The internal target platform type Sql110DatabaseSchemaProvider does not support schema file version '2.5'.

I installed SQL Server 2012 on the customer's PC, the same version in which it is created.

I also installed Crystal Reports on the customer's computer.

Please help me, thanks in advance.
Posted
Updated 2-Oct-18 0:55am

1 solution

there are two simple options

One ( Copy Database and Attach)
1. copy Blank database files to destination (Yourdata.mdf , Yourdata_log.ldf )
2. Attach blank file using SSMS ( Management Studio)

Two ( Generate scripts )
At time of export of schema
use tasks options to generate script.
At time of generating script Click Advance button.
Check following options
1. Script for Server Version -- SQLSERVER 2012 ( whichever you want)
2. Type of Data to script -- Schema only / schema and data ( as per choice )
3. Append to file -- True
4. Script Create / Script Drop and Create ( as per choice)
and set other options as per your need.

Then generate script and use this script to create the database and Schema
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900