使 varchar(500) 数据列唯一

发布于 2024-12-08 00:15:01 字数 84 浏览 4 评论 0原文

我需要使 varchar(500) 列唯一。
放置唯一约束将不起作用,因为它超出了唯一的大小限制。
那么,让专栏独一无二的最佳策略是什么?

I have a requirement to make a column of varchar(500) unique.
Putting unique constraint would not work as it crosses the size limit of unique.
Then, what would be the best strategy to make column unique?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

停滞 2024-12-15 00:15:01

使用该 varchar(500) 的 HASH 创建另一个字段,并在该哈希字段上添加 UNIQUE CONSTRAINTHASHBYTES('md5', MyLongVarcharField)

这会导致性能不佳,但如果您有一个 varchar(500) ,您需要强制唯一性,我假设性能不是您考虑的首要因素无论如何。

编辑:

澄清一下,两个字符串输出相同 128 位哈希值的几率是 340,282,366,920,938,000,000,000,000,000,000,000,000 中的 1。发生碰撞的可能性不大,但也不是绝对不可能

如果您仍然担心,可以使用 160 位的 SHASHA1 算法。

Create another field with the HASH of that varchar(500), and put a UNIQUE CONSTRAINT on the hash field: HASHBYTES('md5', MyLongVarcharField)

This will cause poor performance but if you have a varchar(500) where you need to enforce uniqueness I'm assuming performance isn't on the forefront of your considerations anyways.

EDIT:

To clarify, the chance of having two strings output the same 128 bit hash value is 1 in 340,282,366,920,938,000,000,000,000,000,000,000,000. It's unlikely but not categorically impossible that you could have a collision.

If you are still concerned you can use SHA or SHA1 algorithms which are 160 bits.

风向决定发型 2024-12-15 00:15:01

您可以在 INSERT 和 UPDATE 上使用 DML 触发器。这可以避免必须使用哈希。为简单起见,我选择了 AFTER 触发器,但这也可以使用 INSTEAD OF 触发器轻松完成。

create trigger dml_EnforceUniqueVal
on dbo.UniqueBigColumn
after insert, update
as  
    declare @CountOfRepeats int
    select @CountOfRepeats = COUNT(*)
    from UniqueBigColumn
    where somestring in
    (
        select somestring
        from inserted
    )

    if @CountOfRepeats > 1
        rollback
go

You can use a DML trigger on INSERT and UPDATE. This gets around having to use a hash. I chose an AFTER trigger for simplicity, but this can be easily done with an INSTEAD OF trigger as well.

create trigger dml_EnforceUniqueVal
on dbo.UniqueBigColumn
after insert, update
as  
    declare @CountOfRepeats int
    select @CountOfRepeats = COUNT(*)
    from UniqueBigColumn
    where somestring in
    (
        select somestring
        from inserted
    )

    if @CountOfRepeats > 1
        rollback
go
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文