【转】SqlServer Text类型字段超过8000字处理

转:https://www.cnblogs.com/birdshover/archive/2006/06/16/427303.html

SqlServer的T-Sql
如下:

表结构:
字段名         id      title      content
类型            int      char(200)   text
Insert Into News (title,content) Values (@title,@content)

实际上这样插入是不能超过8000字节的(content字段)。SqlServer在这方面做了限制。

可以这样插入

【转】SqlServer Text类型字段超过8000字处理CREATE PROCEDURE NewsInsert   @title char(200),@content text   AS
【转】SqlServer Text类型字段超过8000字处理
【转】SqlServer Text类型字段超过8000字处理Insert Into News (title,content) Values (@title,‘‘)
【转】SqlServer Text类型字段超过8000字处理
【转】SqlServer Text类型字段超过8000字处理DECLARE @ptrval binary(16)
【转】SqlServer Text类型字段超过8000字处理SELECT @ptrval = TEXTPTR(content) 
【转】SqlServer Text类型字段超过8000字处理FROM News 
【转】SqlServer Text类型字段超过8000字处理WHERE id = @@identity
【转】SqlServer Text类型字段超过8000字处理writeTEXT News .content @ptrval  @content
【转】SqlServer Text类型字段超过8000字处理
【转】SqlServer Text类型字段超过8000字处理GO



用到了writeTEXT函数。
注意:插入的时候Insert Into News (title,content) Values (@title,‘‘)一定要有content值对应空不能让content是null状态.否则下面的无法找到地址。


更新的时候:

【转】SqlServer Text类型字段超过8000字处理CREATE PROCEDURE NewsInsert   @title char(200),@content text,@id int   AS
【转】SqlServer Text类型字段超过8000字处理
【转】SqlServer Text类型字段超过8000字处理Update News Set title = @title,content=‘‘ Where id = @id --注意content=‘‘虽然不起作用,但是最好写上,避免content有null的情况
【转】SqlServer Text类型字段超过8000字处理
【转】SqlServer Text类型字段超过8000字处理DECLARE @ptrval binary(16)
【转】SqlServer Text类型字段超过8000字处理SELECT @ptrval = TEXTPTR(content) 
【转】SqlServer Text类型字段超过8000字处理FROM News 
【转】SqlServer Text类型字段超过8000字处理WHERE id = @id
【转】SqlServer Text类型字段超过8000字处理writeTEXT News .content @ptrval  @content
【转】SqlServer Text类型字段超过8000字处理
【转】SqlServer Text类型字段超过8000字处理GO


读取和删除的时候一切正常,就不多叙述了。
以上用法可以插入数据库类型Text对应的理论实际长度以内。

【转】SqlServer Text类型字段超过8000字处理

上一篇:Oracle-数据库实例的受限模式


下一篇:构建基于CentOS 7.6 的PostgreSQL 11.6 镜像