|
database
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Experiencing Timeout issues updating NText field in SQL ServerHas anybody experienced Timeout issues on updating NText fields in SQL Server 2005? Ive been using a procedure in an MS Access application, to read in the contents of an Ntext field used for notes into a local string variable. Then further notes are added to this and then an update statement writes it back to the NText field. Ive used an updateText procedure but this is also timing out. The field has been in use and has been updated to before. many thanks Chris Chris Asaipillai (chris.asaipil***@btinternet.com) writes:
> Has anybody experienced Timeout issues on updating NText fields in SQL If you are SQL 2005, you should consider migrating from ntext to> Server 2005? nvarchar(MAX) which fits just as much data, but works like any other varchar, and does not have all the quirks of ntext. > Ive been using a procedure in an MS Access application, to read in the The timeout is something that happens on the client side. If you just> contents of an Ntext > field used for notes into a local string variable. > > Then further notes are added to this and then an update statement writes > it back to the NText field. > > Ive used an updateText procedure but this is also timing out. have the patience, you can change the timeout on the Command object (if memory serves). If you don't have the patience, you will need to tune the procedure. Unfortunately, I cannot assist with that, since you did not include any code or table definitions. -- Erland Sommarskog, SQL Server MVP, esq***@sommarskog.se Books Online for SQL Server 2005 at http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx Books Online for SQL Server 2000 at http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx |
|||||||||||||||||||||||