I have 2 databases D1 and D2 with tables T1 and T2 respectively.
CREATE VIEW V1
AS
SELECT
T2Column1, T2Column2
FROM
D2.T2
WHERE
(T2column3 = 'condition')
This code creates a view in SQL Server. I want the corresponding Oracle code.