Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Applies to:
Azure SQL Database
Azure Synapse Analytics
Removes server-level firewall settings from your SQL Database server. This stored procedure is only available in the master
database to the server-level principal login.
sp_delete_firewall_rule [ @name = ] N'name'
[ ; ]
The name of the server-level firewall setting that will be removed. @name is nvarchar(128) with no default.
In SQL Database, the credential data required to authenticate a connection and server-level firewall rules are temporarily cached in each database. This cache is periodically refreshed. To force a refresh of the authentication cache and make sure that a database has the latest version of the logins table, execute DBCC FLUSHAUTHCACHE.
Because sp_delete_firewall_rule
is an extended stored procedure, the data type of the value passed in for the parameter much match exactly. Implicit conversions from other types don't take place.
Only the server-level principal login created by the provisioning process can delete server level firewall rules. The user must be connected to the master
database to execute sp_delete_firewall_rule
.
The following example removes the server-level firewall setting named Example setting 1
. Execute the statement in the virtual master
database.
EXEC sp_delete_firewall_rule N'Example setting 1';
Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register today