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.
我需要为我的 ssis 脚本在数据库中创建的每个表创建一个哈希 MD5。可能吗?如果可以,任何人都可以分享一些代码,我已经搜索和搜索,但没有得到任何地方
我不知道你为每个表创建哈希是什么意思。如果你的意思是你需要为表名创建哈希,你可以在你的 SQL Server 数据库中使用下面的查询:
SELECT name, HASHBYTES('MD5', name) FROM sys.tables