myghetto
Is there no way in SQL Server Management Studio 2005 Express (SSMSE) to migrate the data only to an already provisioned database on another server
SQL Server Express
hi,
no, there' not.. SSMSE does not include DTS or SSIS features to perform ETL (extract-transform-load) tasks...
you have to "move" (copying it or backing it up and restoring it) your db to the other server, or, via Linked Server (if the 2 machines are reachable on the net) you can perform INSERT... SELECT across database and server boundaries..
regards