• sp_describe_parameter_encryption


    sp_describe_parameter_encryption

    Analyzes the specified Transact-SQL statement and its parameters, to determine which parameters correspond to database columns that are protected by using the Always Encrypted feature. Returns encryption metadata for the parameters that correspond to encrypted columns.

    sp_describe_parameter_encryption   
        [ @tsql = ] N'Transact-SQL_batch' ,   
        [ @params = ] N'parameters'   
    [ ;]  

    [ @tsql = ] 'Transact-SQL_batch'
    One or more Transact-SQL statements. Transact-SQL_batch may be nvarchar(n) or nvarchar(max).

    [ @params = ] N'parameters'
    @params provides a declaration string for parameters for the Transact-SQL batch, which is similar to sp_executesql. Parameters may be nvarchar(n) or nvarchar(max).

    Is one string that contains the definitions of all parameters that have been embedded in the Transact-SQL_batch. The string must be either a Unicode constant or a Unicode variable. Each parameter definition consists of a parameter name and a data type. n is a placeholder that indicates additional parameter definitions. Every parameter specified in the statement must be defined in @params. If the Transact-SQL statement or batch in the statement does not contain parameters, @params is not required. NULL is the default value for this parameter.

  • 相关阅读:
    Jmeter压力测试-结果分析(三十)
    C#正则密码验证
    Docker
    c# framework 缓存依赖
    NETMQ订阅,超时断线重连
    RabbitMQ发布/订阅模式
    RAS非对称加密解密,公钥私钥
    .NETCore批量插入数据BulkLoader
    .NETcore使用CSRedisCore操作Redis
    Rabbitmq简单队列
  • 原文地址:https://www.cnblogs.com/chucklu/p/16524466.html
Copyright © 2020-2023  润新知