Tagged Questions

7
votes
7answers
1k views

EXPLAIN SELECT in other databases

I found EXPLAIN SELECT query very useful in MySQL because it gives information on how SQL will be executed and gives the opportunity to analyze, for e.g., missing indexes you should add in order to ...
3
votes
4answers
3k views

How to limit result set size for arbitrary query in Ingres?

In Oracle you can limit the number of rows returned in an arbitrary query by filtering on the "virtual" rownum column. e.g. select * from all_tables where rownum <= 10 will return at most 10 ...
0
votes
1answer
35 views

Oracle equivalent to Ingres inquire_sql or inquire_ingres?

I'm converting some legacy embedded-Ingres C code to work against Oracle. I've found references to functions "inquire_ingres()" and "inquire_sql()," which, per the docs at ...
0
votes
1answer
162 views

Mapping one Entity class to two different databases (Oracle and Ingres)

I am newbie to ORM and JPA. I have a table called Table1 in Ingres. I need to copy Table1 from Ingres to Oracle. I have been successful in connecting to both databases. Is it possible to create only ...