sql server - Does ADODB.Stream have a maximum file size it can handle? -



sql server - Does ADODB.Stream have a maximum file size it can handle? -

i'm using microsoft sql server 2005, , exporting image info types files (from sharepoint database), using script not dissimilar 1 found here

it works well, reason fails on files more ~45mb:

msg 0, level 11, state 0, line 0 severe error occurred on current command. results, if any, should discarded.

msg 0, level 20, state 0, line 0 severe error occurred on current command. results, if any, should discarded.

so, i've had add together argument where datalength(content)/1024 <= 45000 runs through files can without failing.

does know if adodb.stream has maximum file size can handle?

i'm not much sharepoint's nor sql server processes , stuff, however, looking regarding classic asps (that's how reached question). in case seems response.binarywrite method has 20mb limitation , had send stream in several smaller parts.

maybe there's same thing here. check post , it's answers, think may have clues you're looking.

good luck!

sql-server

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -