Tagged Questions
The ora-01790 tag has no wiki summary.
1
vote
3answers
647 views
Recursive SQL giving ORA-01790
Using Oracle 11g release 2, the following query gives an ORA-01790: expression must have same datatype as corresponding expression:
with intervals(time_interval) AS
(select trunc(systimestamp)
...
1
vote
6answers
4k views
How to resolve Oracle error ORA-01790?
I have two select statements joined by "union". While executing that statement I've got:
Error report:
SQL Error: ORA-01790: expression must have same datatype as corresponding expression
01790. ...
0
votes
1answer
79 views
ORA-01790 with EntityFramework
I'm using Entity-Framework with oracle.
I have a table 'Person'
and a linking table 'Manager' that have 2 columns that are FK to 'Person' table.
(the first column is the manager and the second is ...