我最近解决了我的VB6应用程序在使用ADO 2.8和Recordset.Field的AppendChunck方法将大型二进制对象保存到sql server时遇到的问题。如果数据太大,我会在for循环中获得“无效句柄”或“没有足够的系统存储来执行此操作”。我通过将块发送到存储过程并使用'updatetext'来解决问题。但是,这样做我现在只能发送8k个字符,因为8k限制。有人知道一个好的解决方法吗?下面是我的sproc。
@chunck binary(8000),
@result_id int
as
declare @pointer binary(16),
@imagelength int,
@datalength int
--get the pointer and length to the image column
select @pointer = textptr(result_image),
@imagelength = datalength(result_image)
from dbo.dash_result
where result_id = @result_id
if @pointer is null
update dbo.dash_result
set result_image = @chunck
where result_id = @result_id
else
begin
--append the chunck of data to the end
set @datalength = datalength(@chunck)
updatetext dbo.dash_result.result_image @pointer @imagelength 0 @chunck
end
答案 0 :(得分:2)
如果您使用的是SQL Server 2005,则可以使用varbinary(MAX)数据类型或varchar(MAX)数据类型,具体取决于您要存储的数据类型。我相信这些可以容纳2千兆的数据。
答案 1 :(得分:0)
对于sql server 2000,将参数声明为文本。请注意,它必须是参数而不是局部变量,只有参数可以是文本,而不是本地。