How can i rename the database in sql Azure?
I have tried Alter database old_name {MODIFY NAME = new_name} but not worked.
Alter database old_name {MODIFY NAME = new_name}
Is this feature avail
Connect with SQL Server Management Studio to your Azure database server, right-click on the master database and select 'New Query'. In the New Query window that will open type ALTER DATABASE [dbname] MODIFY NAME = [newdbname].
ALTER DATABASE [dbname] MODIFY NAME = [newdbname]