System resource exceeded

  • Thread starter bengsan via AccessMonster.com
  • Start date
B

bengsan via AccessMonster.com

Hello All
I have 2 querys and when I combine, error display "System resource exceeded"
any suggest ?

I would like to thank all of you in advance for your help.
thank you all
 
G

golfinray

You can only have 255 columns in a query. You are not exceeding that limit
are you?
 
M

Michel Walsh

You probably produce a monstrous join which would require more than 2Gig of
memory to keep intermediate result:

SELECT *
FROM query1, query2



You should add a condition between the two queries (inner or outer JOIN), or
further reduce the number of records returned by query1 or by query2.




Vanderghast, Access MVP
 
J

John W. Vinson

Hello All
I have 2 querys and when I combine, error display "System resource exceeded"
any suggest ?

Please post some more information. There is obviously something wrong with the
query you're building... but we cannot see it to tell you what.

Please post the SQL view of the two queries and describe how you are
"combining" them.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top