|
Posted by Mike Epprecht \(SQL MVP\) on 12/17/05 09:34
Hi
Shoot yourself.
SQL Server 7.0, 2000 and 2005 limits are as follows:
Tables per SELECT statement: 256
So, not only will your queries perform badly, but you walk into a 256 table
limit. No matter if you have views etc, but 256 base tables is all you get.
With correct design, you could have all the data in one table and access the
data through views to enforce security.
Regards
--------------------------------
Mike Epprecht, Microsoft SQL Server MVP
Zurich, Switzerland
IM: mike@epprecht.net
MVP Program: http://www.microsoft.com/mvp
Blog: http://www.msmvps.com/epprecht/
"laurenq uantrell" <laurenquantrell@hotmail.com> wrote in message
news:1134803057.417044.220780@g44g2000cwa.googlegroups.com...
> Wondering if there is a physical or realistic limitation to the number
> of UNION statements I can create in a query? I have a client with
> approx 250 tables - the data needs to be kept in seperate tables, but I
> need to be filtering them to create single results sets. Each table
> holds between 35,000 - 150,000 rows. Should I shoot myself now?
>
> lq
>
Navigation:
[Reply to this message]
|