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
In Azure SQL Database, you can configure ...READ MORE
Creating tables in Azure SQL Database: In Object Explorer, ...READ MORE
I once happened to do this without ...READ MORE
There are certain ways to do this: Using SSIS ...READ MORE
Actually, there are multiple ways to do ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.