0

I have a view in Oracle with customer data from e.g. table DEBTABLENL:

SELECT DEBTABLENL.ACCOUNTNUMBER  AS DBDebnmbr
 , DEBTABLENL.ELCSEARCHCODE   AS DBNameShort
 , DEBTABLENL.NAME    AS DBName1
 , Etc, Etc FROM DEBTABLENL

Is it possible to extend the view to include the same kind of records from a different table, in this example DEBTABLEBE

SELECT DEBTABLEBE.ACCOUNTNUMBER  AS DBDebnmbr
 , DEBTABLEBE.ELCSEARCHCODE   AS DBNameShort
 , DEBTABLEBE.NAME    AS DBName1
 , Etc, Etc FROM DEBTABLEBE

Thus ending up with one view with all my customers from NL and BE. My BE customers are in a MSSQL database which I'll transfer daily to my Oracle database to get one big list. Because the Oracle View has to have the records I can't go the other way around..

Regards,

Mike

2 Answers 2

1

use union in both the queries like:

SELECT DEBTABLENL.ACCOUNTNUMBER  AS DBDebnmbr
 , DEBTABLENL.ELCSEARCHCODE   AS DBNameShort
 , DEBTABLENL.NAME    AS DBName1
 , Etc, Etc FROM DEBTABLENL
UNION ALL
SELECT DEBTABLEBE.ACCOUNTNUMBER
 , DEBTABLEBE.ELCSEARCHCODE
 , DEBTABLEBE.NAME
 , Etc, Etc FROM DEBTABLEBE
Sign up to request clarification or add additional context in comments.

Comments

0

Assuming both tables have the same structure, you could write your view as:

SELECT DEBTABLE.ACCOUNTNUMBER  AS DBDebnmbr
 , DEBTABLE.ELCSEARCHCODE   AS DBNameShort
 , DEBTABLE.NAME    AS DBName1
 , Etc, Etc 
FROM (SELECT * FROM DEBTABLENL UNION ALL SELECT * FROM DEBTABLEBE) AS DEBTABLE

If you have other tables joined to DEBTABLENL in your existing views, this approach means that you will only need to link them to the alias DEBTABLE once, instead of linking them separately to both DEBTABLENL and DEBTABLEBE and then UNIONing the results.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.