Thank you for your assistance. It's certainly given me some food for
"Ryan" <pdtbn1094@excite.com> wrote in message
news:SsQsc.9372$y04.3382@fe1.columbus.rr.com...
> Steve -
>
> >I know when data is stored in a database in text
> > or ntext it's stored in a file off the database, is this the same for
> > declared parameters?
>
> Text, ntext and image values are stored on the Text/Image pages separately
> from the other data, stored on the Data pages.
> SQL Server 2000 now supports a "text in row" table option that specifies
> that small text, ntext, and image values be placed in the Data pages with
> other data values in the same data row instead of Text/Image pages. This
> increases the speed of read and write operations and reduces the amount of
> space used to store small text, ntext, and image data values.
> You can set a text in row table option with sp_tableoption stored
procedure
> > If I was to change the variable from varchar 8000 to text would this
make
> a
> > difference in call time?
>
> MSDN on "text in row" and performance -
>
>
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_sp_ta-tz_1cfi.asp
>
> Text performance tips for SQL Server 2000 -
>
>
http://www.sql-server-performance.com/database_design.asp >
http://www.eggheadcafe.com/PrintSearchContent.asp?LINKID=309 >
> Hope this helps answer some of your questions.
>
> --
> Regards,
>
> Ryan
> "Anubis" <anubis@bluestreem.com.au> wrote in message
> news:%23xtuhUhQEHA.396@TK2MSFTNGP12.phx.gbl...
> > Hi All,
> >
> >
> > Just a quick one which I have not been able to find a straight answer
for
> > yet...
> >
> > When programming a stored proc, you can declare a list of parameters in
> the
> > top. Currently I am using varchar 8000 to collect a long string of
> > information which is then broken into an array from entered information
on
> > the web page which calls the process. However as you can imagine, this
> > limits my input capabilities.
> >
> > If I was to change the variable from varchar 8000 to text would this
make
> a
> > difference in call time? I know when data is stored in a database in
text
> > or ntext it's stored in a file off the database, is this the same for
> > declared parameters?
> >
> > Are there any 'down sides' to using text instead of varchar 8000 for
this
> > type of application?
> >
> > Any help would be appreciated!
> >
> > - Steve
> >
> >
> >
> >
>
>