Tagged Questions
1
vote
1answer
217 views
Informix equivalent to Oracle's UPDATE … RETURNING INTO statement
In Oracle I can return information from an UPDATE statement like so:
UPDATE SOME_TABLE
SET SOME_COL = SYSDATE
WHERE
...
RETURNING SOME_COL INTO :OutParameter
Combined with the number of ...
2
votes
3answers
272 views
Does the order of tables in straight joins, with no hint directives, affect performance?
All SQL-based RDBMS' (versions up to 10 years old):
Does the order of tables in a straight join query (with no hint directives) make a difference for optimum performance and memory management? I ...
2
votes
2answers
86 views
Can EXPLAIN provide more than just a Query Plan? [closed]
It would be useful to also know Disk Reads/Writes, Memory, CPU, etc. statistics for a given SQL statement.
2
votes
1answer
166 views
What is the Oracle equivalent of the Informix `interval` function?
I have been tasked with converting some scripts referencing an Informix database to be compatible with a new Oracle database.
I thought I would start out by going through the individual scripts and ...
1
vote
1answer
136 views
IPC between Linux and Windows processes
How can one database hosted in windows system be accessed and queryed by a Linux's process ?
I have a web application with mysql and I am going to have to create a database in Linux then I need an ...
4
votes
4answers
579 views
In SQL, How can I generate every possible unique combination of 5!56?
I have a TABLE "elements" with one COLUMN "number", type SMALLINT that contains numbers 1 thru 56. How can I generate unique sets of 5 numbers of every possible combination from 1 to 56, using an SQL ...
1
vote
2answers
380 views
Informix “SERIAL” to Oracle NUMBER/Sequence/Trigger in Pro*C
I'm trying to convert some Informix ESQL to Oracle Pro*C. In the existing Informix code the "SERIAL" data type was used to indicate automatically incrementing columns. According to the Oracle ...
-1
votes
1answer
117 views
Legal Database Column Names
I am designing a table that is to be used on multiple database engines:
Informix SE
Oracle
PostgreSQL
Do all these databases allow numbers in the column names? E.g. field1, field2, field3...
5
votes
7answers
972 views
Data migration between different DBMS's
As i couldnt get any satisfying answer to my Question it seems we have to write our own program for that, we are in the design phase and we are thinking which format shall we use to backup the data.
...
1
vote
3answers
262 views
Inserting data into Oracle
I am trying to migrate a DB from Informix to Oracle.Informix had an option like while inserting into a table if the size of the value exceeds the column length then Informix automatically trims the ...
2
votes
5answers
715 views
Transfering data between different DBMS's
I would like to transfer the whole Database i have in Informix to Oracle. We have an an application which works on both Databases, one of our customers is moving from Informix to Oracle, and needs to ...
2
votes
2answers
973 views
Sanitization against SQL Injection for Input going into an Oracle database
Hello I have been working for a while with PHP and MySQL. Now I am working in a PHP-Informix and PHP-Oracle environment. I have always used mysql_real_escape_string for the data going into the ...
1
vote
3answers
106 views
How can I conditionally construct a table name for an SQL CREATE TABLE statement?
Within an SQL stored procedure, I would like to have the ability to construct a table name and create it. Example: I just logged into my databse under company 03 and a customer table does not exist, ...
1
vote
3answers
412 views
SERIAL-like INT column
I have an app where depending on the type of transaction being added or updated, the ticket number may or may not increment. I can't use a SERIAL datatype for ticket number because it would increment ...
1
vote
1answer
116 views
Is a CLUSTER INDEX desireable when loading a sorted loadfile into a new table?
INFORMIX-SE:
My users periodically run an SQL script [REORG.SQL] which unloads all rows from a table in sorted order to two separate files (actives and inactives), drops the table, re-creates the ...
1
vote
3answers
199 views
Autoextend on chunks informix
Does anyone know if Informix has the same capability as Oracle with respect to the autoextend feature. With Oracle I can create a datafile and by using the autoextend feature Oracle will automatically ...
0
votes
0answers
93 views
What obstacles have you encountered when developing apps with your development tool? [closed]
I'm debating whether to re-write my INFORMIX-SQL app with I4GL (character-based) or another Windows/GUI-based tool.
I want to know specific instances of limitations, bugs or drawbacks of using ...
1
vote
1answer
328 views
How can I display and manipulate record arrays?
Looking for the following forms functionality with INFORMIX 4GL?, ISQL with ESQL/C?, PROGRESS-4GL?, ORACLE? etc?
I have a CRUD form which displays a customer[master] with all of their asociated ...
-1
votes
4answers
141 views
Re-Invent a better wheel or make ado with available RDBMS-based app development products? [closed]
My first experience developing DBMS-based apps was with IMS, using COBOL calls to DLI. Later on, I worked with several other products, on a smaller scale, such as: DBASE, INFORMIX 3.3/SQL and ORACLE ...
1
vote
4answers
171 views
Distributed db's or not?
INFORMIX-SQL 7.32 (SE) Linux Pawnshop App.
I have some users who own several pawnshops within a 100-mile radius. Each pawnshop app runs with SE. The only functionality these owners need are: ability ...
3
votes
2answers
171 views
Which RDBMS has the richest super-set of ANSI-SQL?
Back in 1989, when I used to program with Oracle 5.2.3 on UNIX and VAX/VMS platforms, I considered SQL*PLUS as having the richest super-set of built-in functions. ORACLE*FORMS also had the ability to ...
1
vote
2answers
279 views
Which implementations of SQL have PSM like functionality?
Although Oracle is one of the earliest to create stored procedures (PL/SQL) then Informix with (SPL) which RDBMS products besides DB2 have implemented SQL/PSM or a subset of it after 1998?.. Which ...
3
votes
3answers
156 views
Database responsibility
I'm starting with Databases. I've been playing around with MySQL and Informix, but never had a real life project.
What is the real responsibility of a Database? Should we add Store procedures and ...
0
votes
4answers
1k views
Is ROWID internally indexed unique by an SQL DBMS?
It's my understanding that the quickest way to access a particular row is by its ROWID. In INFORMIX-SE 7.3, when I do a SELECT ROWID FROM table I notice that its values are type SERIAL[INT]. In ...
2
votes
3answers
91 views
Would a built-in multi-threading capability for SQL be desireable?
For example: Being able to start displaying or manipulating rows as they are being returned by a query while the query has not finished searching the table?.. and I don't mean using the FIRST ROWS ...
18
votes
6answers
989 views
What deficiencies do you feel exist with SQL and what changes would you make to it?
Have you encountered deficiencies, limitations or flaws while using SQL?
EDIT: I cannot believe that several things which are so trivial to accomplish under 3GL's like BASIC or other non-SQL data ...
2
votes
2answers
375 views
Should I denormalize Loans, Purchases and Sales tables into one table?
Based on the information I have provided below, can you give me your opinion on whether its a good idea to denormalize separate tables into one table which holds different types of contracts?.. What ...
1
vote
2answers
109 views
What are the types and inner workings of a query optimizer?
As I understand it, most query optimizers are "cost-based". Others are "rule-based", or I believe they call it "Syntax Based". So, what's the best way to optimize the syntax of SQL statements to help ...
1
vote
3answers
457 views
Override Locale Date with custom settings.
Aside from the GL Support, is there a way to override locale settings with custom values for month and day when using mmm-dd-yyyy, modified Spanish examples: Jan = ENE, Aug = AGO, or long dates (mmmm) ...
1
vote
4answers
957 views
DATE lookup table (1990/01/01:2041/12/31)
I use a DATE's master table for looking up dates and other values in order to control several events, intervals and calculations within my app. It has rows for every single day begining from ...
2
votes
1answer
236 views
Continuation - Viewing FIRST_ROWS before query completes
I have identified the query constructs my users normally use. Would it make sense for me to create composite indexes to support those constructs and provide FIRST_ROWS capability?
If I migrate from ...
1
vote
5answers
536 views
Begin Viewing Query Results Before Query Ends
Lets say I query a table with 500K rows. I would like to begin viewing any rows in the fetch buffer, which holds the result set, even though the query has not yet completed. I would like to scroll ...
1
vote
1answer
219 views
Informix timestamps in Oracle (via ODBC)
I need to select some values from an Informix database via Oracle ODBC. One of the columns is a timestamp, and when I just select it all I see in SQL*Plus is the date value. How do I get the time as ...
2
votes
6answers
716 views
How to generate 2TB+ size of data for Oracle, Informix & Sybase
I am a new to Informix and as part of my testing activity I am in need of creating 2TB+ size data for Oracle, Informix & Sybase. Is there a database-neutral way of doing this?
I am looking for ...
1
vote
1answer
550 views
Lost RPC connection to remote Agent error with Oracle connected to Informix
I am having a problem with a simple data importer / updater that takes data from Informix, inserts it into a table in Oracle, and updates a flag in the original table. The set up is this
Pro*C ...
2
votes
3answers
1k views
Informix to Oracle: Dealing with Fetching Null Values
A bit of background first. My company is evaluating whether or not we will migrate our Informix database to Oracle 10g. We have several ESQL/C programs. I've run some through the Oracle Migration ...
1
vote
2answers
504 views
Migrating Informix ESQLC to Oracle Pro*C
Currently tasked with migrating Informix ESQLC files to Oracle Pro*C and have a few questions. First, we use a lot of proprietary Informix functions within our embedded ESQLC code such as rstrdate(), ...
3
votes
3answers
716 views
Upgrading Informix - Switch to Oracle, Sybase or stay with Informix?
Previously I posted a question so I could confirm our current (albeit archaic) version of Informix here:
http://stackoverflow.com/questions/682154/how-do-you-identify-informix-version-on-solaris
...