1304/how-can-i-rename-a-sql-azure-database
Can anyone let me know if there is any way to rename/modify my SQL database name on Azure? I did try Alter database old_name {MODIFY NAME = new_name} , but it does not work :( Please let me know if this is the right approach. Thanks in advance.
ALTER DATABASE [dbname] MODIFY NAME = [newdbname]
(Make sure you include the square brackets around both database names.)
You can use the following command.
ALTER DATABASE [olddbname] MODIFY NAME = [newdbname]
This command serves the purpose
ALTER DATABASE [oldname] MODIFY NAME = [newname];
Though the approach I'm about to share ...READ MORE
From the Windows Azure Portal you can ...READ MORE
The best way to do this is ...READ MORE
Its easy now! Go to your Azure SQL ...READ MORE
I don't think its possible to find ...READ MORE
I once happened to do this without ...READ MORE
Hey @Ruby, here's how you can do it ...READ MORE
Azure tables are cheaper, simpler and scale ...READ MORE
There are certain ways to do this: Using SSIS ...READ MORE
Actually, there are multiple ways to do ...READ MORE
OR
Already have an account? Sign in.