MySQL Forums
Forum List  »  Microsoft SQL Server

Re: MSSQL2008 -> MySQL via migration wizard - space in database name
Posted by: Dmitry Tolpeko
Date: March 28, 2013 01:41PM

Not sure if a workaround exists in the workbench, but you can rename the SQL Server database using ALTER DATABASE statement:

 ALTER DATABASE db_old MODIFY NAME = db_new;

If there other users/apps accessing the database, you can also create a copy.

Dmitry


--
http://www.sqlines.com - Database Migration Tools and Services for MySQL

Options: ReplyQuote




Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.