SSIS:DT_NUMERIC 是带有“单独符号”的无符号整数。到底是签了还是没签呢?
这里有两个与 msdn 略有不同的 DT_NUMERIC 定义
具有固定精度和小数位数的精确数值。此数据类型是一个带有单独符号的 16 字节无符号整数,小数位数为 0 - 38,最大精度为 38。
具有固定精度和小数位数的精确数值。该数据类型是一个带有单独符号的 16 字节值,范围为 0 到 38,最大精度为 38。
单独符号是什么意思?
是否已签名?
如果没有签名,如何用这个“单独的符号”表明它是?
Here are two slightly different definitions of DT_NUMERIC from msdn
An exact numeric value with a fixed precision and scale. This data type is a 16-byte unsigned integer with a separate sign, a scale of 0 - 38, and a maximum precision of 38.
An exact numeric value with a fixed precision and scale. This data type is a 16-byte value with a separate sign, a scale of 0 to 38, and a maximum precision of 38.
What does separate sign mean?
Is it signed or not?
If it is not signed, how to indicate it is with this 'separate sign'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DT_NUMERIC 已签名。你说得对,“单独标志”的定义不是很清楚!但是你可以在这样的字段中放入一个有符号整数,它就会起作用。
DT_NUMERIC is SIGNED. You're right, the definition of "separate sign" is not very clear! But you can put a signed integer in such a field and it will work.