how to move .mpr file to SQLServer database

7
We have a existing project (.mpr file). We want to move this file to SQLServer database, So multiple user can access same project simultaneously. Is it possible?
asked
2 answers
6

Yes you can. In the Mendix Business Server, select File > Export Project To and select "SQL Server 2005 database" there. After that you can select which SQL server to use and what the database name should be.

You have to create the database first, the modeler won't do this.

answered
7

As Bas states, this is indeed possible using the "Export Project To" option of the File menu. When using this option, you should have an empty database ready on the SQL Server. The Modeler will not create the database itself, and it will not overwrite an already existing project database.

Note that the SQL server user account that you specify should have write permissions on both the schema and the data, as the Modeler itself creates all tables that are needed to store the project in the SQL server database.

answered