确定 nvarchar 列中的 varchar 内容
我有一堆 NVARCHAR 列,我怀疑它们在 VARCHAR 列中包含完全可存储的数据。然而,我不能只是将列的类型更改为 VARCHAR 并希望得到最好的结果,我需要进行某种检查。
我想要进行转换,因为数据是静态的(将来不会改变),并且列已建立索引,并且与实际的 (nvarchar) 索引相比,将受益于较小的 (varchar) 索引。
如果我只是说
ALTER TABLE TableName ALTER COLUMN columnName VARCHAR(200)
那么我不会收到错误或警告。 Unicode 数据将被截断/丢失。
如何检查?
I have a bunch of NVARCHAR columns which I suspect contain perfectly storable data in VARCHAR columns. However I can't just go and change the columns' type into VARCHAR and hope for the best, I need to do some sort of check.
I want to do the conversion because the data is static (it won't change in the future) and the columns are indexed and would benefit from a smaller (varchar) index compared to the actual (nvarchar) index.
If I simply say
ALTER TABLE TableName ALTER COLUMN columnName VARCHAR(200)
then I won't get an error or a warning. Unicode data will be truncated/lost.
How do I check?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不来来回回看看哪些数据丢失了?
这假设列以 nvarchar(200) 开头
Why not cast there and back to see what data gets lost?
This assumes column is nvarchar(200) to start with
嗯有趣。
我不确定您是否可以在 SQL 查询本身中执行此操作。你乐意用代码来做这件事吗?如果是这样,您可以获取所有记录,然后循环遍历字符串中的所有字符并进行检查。但伙计,这是一个缓慢的方式。
Hmm interesting.
I'm not sure you can do this in a SQL query itself. Are you happy to do it in code? If so, you can get all the records, then loop over all the chars in the string and check. But man it's a slow way.