I have the following situation: I have a Sharepoint application where the data and app are in two separated servers. I create the backup of the site using:
stsadm -o backup -url http://sgd -filename sgd.bak
In that step I'm not sure if the command automatically access the DB server and create in one file unit (sgd.bak) everything (web configurations and db data). If the previous statement is true, then how can in another pair of servers (app and db) restore it? I try with this
stsadm -o restore -url http://othersgd -filename sgd.bak -overwrite
The "othersgd" was created using the same principles, the app is in one server and the db is in another server. Is this command capable to restore the db where corresponds?
Any help will be greatly appreciated.