Skip to content

Commit 8ac23cb

Browse files
authored
Merge pull request #6763 from way0utwest/patch-35
Call out data type for values
2 parents 5f4122d + c93848d commit 8ac23cb

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+
Because 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)