Reputation: 485
I have a cube, which I built in my local machine. So will it work, if I export this cube by using SQL Server and import it in the another server or machine? Because I have export and import but getting error when process. thank you!
Upvotes: 0
Views: 5825
Reputation: 13315
Do you mean backup/restore when you talk of export/import? You can access a restored cube that was backed up on another computer without problems. For processing, you probably need to adapt the data source settings of the restored cube, as the way you restored it, the data source will point to where it pointed to on your local machine, and this may not be from where you want to drag the data. Also, check the security settings (account with which to connect to the relational data source).
The easiest way to change all these settings is using Management Studio on the restored cube:
How exactly you have to configure the connection parameters, and which impersonation settings do or do not work depends on your individual setup. The DBA of your relational database should be able to help you for this, as this is standard stuff for connecting to the relational database.
And of course, the change of the data source should be compatible: the tables and views referenced in the data source view should be available in the new database, and the SQL you used for named columns should be in a SQL dialect understood by the new database.
Upvotes: 1