vote up 3 vote down star

Have you ever seen any of there error messages?

-- SQL Server 2000

Could not allocate ancillary table for view or function resolution. The maximum number of tables in a query (256) was exceeded.

-- SQL Server 2005

Too many table names in the query. The maximum allowable is 256.

If yes, what have you done?

Given up? Convinced the customer to simplify their demands? Denormalized the database?

flag

15 Answers

vote up 3 vote down check

For SQL Server 2005, I'd recommend using table variables and partially building the data as you go.

To do this, create a table variable that represents your final result set you want to send to the user.

Then find your primary table (say the orders table in your example above) and pull that data, plus a bit of supplementary data that is only say one join away (customer name, product name). You can do a SELECT INTO to put this straight into your table variable.

From there, iterate through the table and for each row, do a bunch of small SELECT queries that retrieves all the supplemental data you need for your result set. Insert these into each column as you go.

Once complete, you can then do a simple SELECT * from your table variable and return this result set to the user.

I don't have any hard numbers for this, but there have been three distinct instances that I have worked on to date where doing these smaller queries has actually worked faster than doing one massive select query with a bunch of joins.

link|flag
vote up 1 vote down

This would happen all the time when writing Reporting Services Reports for Dynamics CRM installations running on SQL Server 2000. CRM has a nicely normalised data schema which results in a lot of joins. There's actually a hotfix around that will up the limit from 256 to a whopping 260: http://support.microsoft.com/kb/818406 (we always thought this a great joke on the part of the SQL Server team).

The solution, as Dillie-O aludes to, is to identify appropriate "sub-joins" (preferably ones that are used multiple times) and factor them out into temp-table variables that you then use in your main joins. It's a major PIA and often kills performance. I'm sorry for you.

@Kevin, love that tee -- says it all :-).

link|flag
vote up 0 vote down

I marked Dillie-O's answer as an accepted answer since it is close to my current solution, but I am still interested in everyone's experiences with extremely large SELECT statements.

link|flag
vote up 0 vote down

@(everyone wanting me to post the query):

  1. I'm not sure if I can paste 70 kilobytes of code in the answer editing window.
  2. Even if I can this this won't help since this 70 kilobytes of code will reference 20 or 30 views that I would also have to post since otherwise the code will be meaningless.

I don't want to sound like I am boasting here but the problem is not in the queries. The queries are optimal (or at least almost optimal). I have spent countless hours optimizing them, looking for every single column and every single table that can be removed. Imagine a report that has 200 or 300 columns that has to be filled with a single SELECT statement (because that's how it was designed a few years ago when it was still a small report).

link|flag
vote up 0 vote down

@Rob Burke: A single table is enough to run into this kind of problem - try something like this:

SELECT *
FROM dbo.FOOBAR F001
CROSS JOIN dbo.FOOBAR F002
CROSS JOIN dbo.FOOBAR F003
...
CROSS JOIN dbo.FOOBAR F300

You also asked about software that's used to manage all of this. I am not sure what you mean. Are you asking about the way these SELECT statements are written? If yes, the answer is - Query Analyzer + Visual Source Safe.

link|flag
vote up 0 vote down

alt text

link|flag
vote up 0 vote down

I agree with modesty, posting the query [sanitized] could help in us suggesting improvements to your specific case rather than a general" fix the DB".

link|flag
vote up 0 vote down

Post the query :D

Also I feel like one of the possible problems could be having a ton (read 200+) of name/value tables which could condensed into a single lookup table.

link|flag
vote up 1 vote down

@chopeen You could change the way you're calculating these statistics, and instead keep a separate table of all per-product stats.. when an order is placed, loop through the products and update the appropriate records in the stats table. This would shift a lot of the calculation load to the checkout page rather than running everything in one huge query when running a report. Of course there are some stats that aren't going to work as well this way, e.g. tracking customers' next purchases after purchasing a particular product.

link|flag
vote up 0 vote down

@chopeen: Man, I work for a large videogames retailer's European headquarters in Dublin. We have hundreds of thousands of SKUs and I don't think we even have 256 tables in our database! Well, we do... but we sure as hell could never need to reference them all at once. What software is used to manage all of this?

link|flag
vote up 0 vote down

@modesty:

No iterator of any kind. Just a single SELECT statement.

@Stu:

SQL Server 2000 SP4 and SQL Server 2005 SP2.

@ZombieSheep:

Imagine a customer who wants to see a list (in a grid) of items in their stores along with really a lot of related pieces of information (e.g. about first order of every item, about last order, about first delivery, about last delivery, about customers who buy it, about costs of delivery, ...). Believe me, it is possible, I've seen it. And I have had to cope with it. :)

Yes, the impact on performance can be severe in such situations.

link|flag
vote up 0 vote down

Could you possibly create some views?

link|flag
Views won't help. Tables used in views count towards the limit, too. – chopeen Dec 9 at 23:05
vote up 0 vote down

I'd like to see that query, but I imagine it's some problem with some sort of iterator, and while I can't think of any situations where its possible, I bet it's from a bad while/case/cursor or a ton of poorly implemented views.

link|flag
vote up 0 vote down

Are you using SQL Server 2000 SP3?

link|flag
vote up 1 vote down

I have never come across this kind of situation, and to be honest the idea of referencing > 256 tables in a query fils me with a mortal dread.

Your first question should probably by "Why so many?", closely followed by "what bits of information do I NOT need?" I'd be worried that the amount of data being returned from such a query would begin to impact performance of the application quite severely, too.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.