Tagged Questions
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 ...
2
votes
1answer
91 views
Search long varchar SQL
I have a database in Ingres 9.2.0 that contains a long varchar column. Is there any way that I can search this column for a specific string and only return the rows that contain have that string in ...
1
vote
1answer
142 views
How to select zero or one record from a dummy table in Ingres
In most SQL products, I can select from no table or from a dummy table like this:
-- Oracle
SELECT 1 FROM DUAL
-- Many other SQL products (including Ingres)
SELECT 1
Sometimes, I want to add a ...
1
vote
1answer
94 views
More than one SELECT in ingres report writer
Background
Im trying to create a report via ingres where i provide 2 dates ($begin_date and $end_date)
this report will provide me with errors from a system that occured between the two dates.
If ...
1
vote
1answer
388 views
DATE_ADD functionality in Ingres
Many (most? nearly all?) SQL dialects have a way to perform this type of function:
date_add( MyDate, MyInterval )
I've been through all of the docs, but I cannot find this functionality in Ingres. My ...
1
vote
5answers
1k views
Restrict number of rows retrieved in Ingres select query
I want to know if there is a way to select a subsequent bunch of rows in select query in Ingres. For example, the first 500 rows can be selected by using the select first 500 from tablename, but if I ...
0
votes
2answers
185 views
How to migrate Ingres database with tables, relationships along with data to MS SQL Server
I would like to know the best way to migrate Ingres database completly with tables, views, relationship along with data to MS SQL Server using any Windows application. If not possible is there any ...
0
votes
3answers
195 views
SQL ingres syntax
Unfortunately, I don't have access to an Ingres database at the moment and I'm just wondering if the inner join syntax that applies in standard SQL also applies in Ingres?
I'm also wondering about the ...