sys.partition_parameters (Transact-SQL)
每个分区函数的参数在表中对应一行。
列名 |
数据类型 |
说明 |
---|---|---|
function_id |
int |
此参数所属分区函数的 ID。 |
parameter_id |
int |
参数的 ID。在分区函数中是唯一的,从 1 开始。 |
system_type_id |
tinyint |
参数的系统类型的 ID。对应于 sys.types 目录视图中的 system_type_id 列。 |
max_length |
smallint |
参数的最大长度(字节)。 |
precision |
tinyint |
如果参数是基于数值的,则表示参数的精度;否则为 0。 |
scale |
tinyint |
如果参数是基于数值的,则表示参数的小数位数;否则为 0。 |
collation_name |
sysname |
如果参数基于字符,则为参数的排序规则名称;否则为 NULL。 |
user_type_id |
int |
类型的 ID。在该数据库中是唯一的。对于系统数据类型,user_type_id = system_type_id。 |