Link to home
Start Free TrialLog in
Avatar of amerscorpio
amerscorpio

asked on

robust plan hint?

Good day!...

i am doing a search engine and this is the error..What's the meaning of this?


Error Type:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC SQL Server Driver][SQL Server]Cannot create a worktable row larger than allowable maximum. Resubmit your query with the ROBUST PLAN hint.


thanks in advance..
Avatar of amerscorpio
amerscorpio

ASKER

this is my script:

set rs = server.createobject("ADODB.Recordset")
if choose = "exact" then
sql="Select * from OMS_Search where keyword like '%"& search1 &"%' order by OMS_No asc"
elseif choose = "all" then
sql="Select * from OMS_Search where keyword like '%"& search1 &"%' order by OMS_No asc"
elseif choose = "any" then
sql="Select * from OMS_Search where keyword like '%"& search1 &"%' order by OMS_No asc"
end if
rs.Open sql, conn,3,3
ASKER CERTIFIED SOLUTION
Avatar of kiddanger
kiddanger
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial