Moving a project between database servers (such as database servers running on different computers) requires several steps: detaching the project from the old server, moving it, creating a preferences file for it, and attaching it to the new server.
If you have not changed the default database administrator account information, complete the Administrator option with "sa" and leave the Password option blank
Detach the project from the server using a command
like the following:
EXEC sp_detach_db @dbname = "MyProject"GO
One way to do this is to use the Windows Explorer Copy
command to select all of the files in the \archibus\projects\myproject\data
folder,
find the new project folder, and then use the Paste command to paste the
files into the new project folder, \archibus\projects\newproject\data
.
If you have the database files on a database server computer and the project files on a separate file server computer, you will need to move the files in two steps:
afm-projects.xml
) entry. Use the same parameters
as when using the command to create a new project, but be sure to turn
off the Create Database option, as the database already exists.You can also refer to the "Attaching a Single File Database" in the SQL Server Books Online manual.