Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Join problem

Status
Not open for further replies.

claude69

Technical User
Jan 30, 2003
15
0
0
IN
Hi guy, I need help cause after the insert of 2 new table in my universe and after the join creation without problem, if I take some objects of this table to do a report nevertheless the join BO consider 2 different separate select.

Select1
SELECT
CODICE,COD_ASL,DESCRIZIONE
FROM
STRUTTURE

select 2
SELECT
COD_RIF,NOME
FROM
ASL

and not

SELECT
STRUTTURE.CODICE,
STRUTTURE.COD_ASL,
STRUTTURE.DESCRIZIONE,
ASL.COD_RIF,
ASL.NOME
FROM
ASL,STRUTTURE
WHERE
ASL.COD_RIF=STRUTTURE.CODICE


 
Hi,

Check whether you had any contexts associated with the Universe previously and find out where these two tables fall. It is possible that these tables are in two different contexts.

Sri
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top