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.
我有一个包含 1 个表和 8 个列的简单数据库。该表大约有二十行。请参阅下面的确切架构。但是,当尝试插入某些记录时,我收到以下错误:
表定义或行大小超过最大行大小 8060 字节。
为什么我会得到这个。桌子还没有那么大。你怎么看?
nvarchar 是 Unicode,内部每个字符需要 2 个字节,因此您的 nvarchar(4000) 实际上是 4000*2 字节=8000。添加其余的....