Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
包含 hierarchyid 列的表是否有任何限制?它是否限制任何功能,如分区等?我似乎找不到任何说有的东西,但想与一些更有经验的用户核实一下,看看我是否正在查看某些东西。
谢谢,
小号
没有内置的方法来对 hierarchyid 列值进行分区。如果您尝试执行类似下面的查询,那么您将收到错误“'hierarchyid' 类型对此操作无效”
CREATE PARTITION FUNCTION MyPartitionRange (hierarchyid) AS RANGE LEFT FOR VALUES ('/20140101/','/20150101/','/20160101/') GO