Skip to content

Commit 5ad0535

Browse files
authored
Call out data type for values
data type of value must match
1 parent f3f691a commit 5ad0535

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

docs/relational-databases/system-stored-procedures/sp-delete-firewall-rule-azure-sql-database.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,12 @@ sp_delete_firewall_rule [@name =] 'name'
3838
The argument of the stored procedure is:
3939

4040
[@name =] '*name*'
41-
The name of the server-level firewall setting that will be removed. *name* is **nvarchar (128)** with no default.
41+
The name of the server-level firewall setting that will be removed. *name* is **nvarchar (128)** with no default. The datatype of the value passed in must be nvarchar.
4242

4343
## Remarks
4444
In [!INCLUDE[ssSDS](../../includes/sssds-md.md)], login 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 (Transact-SQL)](../../t-sql/database-console-commands/dbcc-flushauthcache-transact-sql.md).
45+
46+
Since this is an extended stored procedure, the data type of the value passed in for the parameter much match exactly. Implicit conversions from other types will not take place.
4547

4648
## Permissions
4749
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.

0 commit comments

Comments
 (0)