Ciao a tutti.
Sto lavorando con un DB che si appoggia su SQL Server 8.0
Sto cercando di creare una vista ed ho il seguente errore:
Too many table names in the query. The maximum allowed is 256
Potete spiegarmi come risolvere???
In pratica la mia vista é una cosa del tipo:
create view nameView as
Select A0.id_instance, A0.name, A1.name......., A4.name
from
(select i.id, ia.value as name
from tabelle
where condizione) A0,
(select i.id, ia.value as name
from tabelle
where condizione) A1,
..................................................
..................................................
..................................................
(select i.id, ia.value as name
from tabelle
where condizione) A44
Where A0.id = A1.id
..............................................
and A0.id = A44.id
and A1.id = A44.id
ecc...ecc,....
Nel from ho circa 44 sottoquery....Qual'é il problema????
Non so se devo postare tutta la query...In caso fatemi sapere
Ciao e grazie