English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Dear All,

I'm getting the above error when i execute the select query from the table which contains more than 80 thousand records.

Can anyone pour few ideas over it.

2006-10-30 18:18:06 · 3 answers · asked by Kicha 1 in Computers & Internet Programming & Design

3 answers

for sql u can only do insert for at most 500 records at a time. spilt the records? but that is tedious.
what database are u using?
for Mysql, insert using data the mysql import statement.
for db2: use the command console to insert the datas

2006-10-30 18:37:31 · answer #1 · answered by fang 4 · 0 0

This usually means you are trying to run a complex query with a row width that the optimizer can't handle (typically due ot use of wide CHAR or VARCHAR columns). In SQL Server 7.0 and up, you can solve this issue by adding OPTION ROBUST PLAN to your query

look this site : http://tutorials.aspfaq.com/8000xxxxx-errors/why-do-i-get-80040e14-errors.html

2006-10-31 04:21:54 · answer #2 · answered by Manzana verde 5 · 0 0

Check out the link below and look at the section on adding the ROBUST PLAN hint.

2006-10-31 03:18:13 · answer #3 · answered by Gizmo L 4 · 0 0

fedest.com, questions and answers