Tagged Questions

The Ingres RDBMS is an Open Source commercially supported database solution. It was developed at UCB in the 1970s & for a long period in its history was the top competitor to Oracle.

learn more… | top users | synonyms

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
1answer
238 views

Ingres connection on an IIS deployed site

I have a .net 2.0 app being hosted on IIS, that connects to a Ingres DB. The connection uses iBatis with an ODBC driver to connect to an ingres database being protected behind an installation ...
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
95 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 ...
2
votes
1answer
75 views

Ingres with Classic ASP

I have a classic ASP application which is connecting to Ingres 9.3 database. The classic ASP website in IIS has windows integrated security enabled. It connects to Ingres for reading data, and its ...
1
vote
1answer
147 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
55 views

Ingres: how to read the database in a specified encoding in PHP?

I've to use CakePhp with ingres. The problem is that I've to use UTF-8 in the website and the database is provided in ISO-8859-1. So my question is, how to manage this charset problem? On MySql I ...
1
vote
1answer
95 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
394 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
1answer
36 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
40 views

additionals properties of a model in cakephp?

I'm starting to use cakePhp and I would like to know: When I do a query(like with $this->Product->find(...)), I receive an array, right? Then: -If I've some non-db fields with default values that ...
0
votes
1answer
48 views

Php:ingres equivalent of mysql_insert_id()

I've to make some PHP interaction with an Ingres database. I need to get the ID of the last entry I inserted in the database. How should I proceed? I'm not an ingres expert, but I suppose there is ...
0
votes
1answer
34 views

Php - Ingres, fresh install : How to debug?

I just finished to install Ingres on my server(only the client part, to connect to an existing ingres server), I just added the php_ingres module. Now php recognize my module, so I tried to connect ...
0
votes
2answers
86 views

Install ingres extension for PHP on a debian server

I've to work with a ingres database for my php server. I just have one question: I will never connect myself on an ingres server locally, is it still mandatory to install ingres locally to install ...
0
votes
3answers
185 views

Install ingres extension for php on my WAMP server

I've a development computer, which runs under windows. For a project, I've to make a php website which has to connect to an Ingres database server. So I installed wamp, I installed ingres(server and ...
0
votes
1answer
150 views

Use LINQ expressions or Specification pattern to access Ingres database?

I am working on a WCF project, which provides business information out of several data sources. To reuse the code, my BusinessContactService contains a generic repository dependency defined as: ...
0
votes
2answers
103 views

Restoring Ingres Database from one system to another system

We want to restore the database that we have got from the client as backup in our development environment, we are unable to restore the database successfully, can any one help us to know the steps ...
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
1answer
173 views

Migrating and Ingres Data Base to SQL Server 2008

I have a cline that is looking to convert an Ingres Database into SQL Server 2008. WE can easily convert the tables but there are a large number of views and procedures that are complex. Does anyone ...
0
votes
3answers
196 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 ...
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 ...
0
votes
2answers
42 views

capture process cannot access

There is the following line command: statdump -zdl %db% > "%ckpdb_dir%"\statdump_%db%.log the result of the Statdump is sent to the log file, but I would like that if there is some error, for ...
0
votes
1answer
595 views

How to change identifier quote character in SSIS for connection to ODBC DSN

I'm trying to create an SSIS 2008 Data Source View that reads from an Ingres database via the ODBC driver for Ingres. I've downloaded the Ingres 10 Community Edition to get the ODBC driver, installed ...
0
votes
2answers
734 views

Spring - Ingres RDBMS support in sql-error-codes.xml error code mapping file

I have a Java project connecting to an Ingres database and using the Spring Framework. This issue is related to the error codes list configuration. According to Spring Framework API: Class ...
0
votes
2answers
270 views

Connecting Ingres from C

I need to connect to an Ingres supplied demodb through OpenAPI, both Ingres and C application running on windows. What i have done: Created a "node" in the Ingres Network Utility named "usernode". ...