0
votes
1answer
61 views

Which is better: storing string including Unicode character in NVARCAHR or VARCHAR? [duplicate]

I want to store the string including Unicode character. I know there are two choices. NVARCAHR and VARCHAR. NVARCAHR uses 2 bytes to store a character; however VARCHAR uses 1 byte for a character. ...
1
vote
1answer
74 views

Code fix for decode in Informix

I am using a decode function in Informix database. I am retrieving a field which is an integer datatype. If the value I retrieved is '' then I need to set it as null; if not I am setting the same ...
2
votes
3answers
287 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
87 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.
1
vote
1answer
141 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 ...
1
vote
2answers
293 views

mysql_fetch_assoc equivalent for informix

I just started to work on informix.( I have been using mysql all my life) how i substitute mysql_fetch_assoc for informix. Lets say I want to display one item at a time.normally in mysql i would run a ...
1
vote
1answer
166 views

What is the replacement data type in Informix for MySQL's BIGINT?

I want to store big integer values such as MySQL bigint in my Informix table. But Informix does not have a data type bigint. What is the data type I have to use instead?
1
vote
2answers
216 views

what is the replace function in informix for mysql now()

I have table field defined as like this approved_at DATETIME YEAR TO SECOND NOT NULL. In MySQL, when I insert to a datetime field I used MySQL function now(). But I couldn't find any function in ...
1
vote
2answers
533 views

Hibernate Query problem with Informix

I have written an application using Seam 2.2.1 & MySQL which is working. I am now trying to connect the application to Informix and when I execute a query from hibernate(select user from User ...
2
votes
2answers
1k views

Informix equivalent to mysql's SHOW CREATE TABLE

is there any equivalent to MySQL's SHOW CREATE TABLE in informix? I would like to run it in the SQL Manager on the Server Studio and would also like to obtain information about a tables columns and ...
1
vote
2answers
1k views

how to list all informix data bases names

i want to know :: is there any way to list (get) all the data bases names on my server,,i use INFORMIX so i need proper query or stored procedure to do that...
1
vote
3answers
107 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, ...
5
votes
3answers
520 views

Which DBMSs offer index-organized tables?

My current knowledge: Oracle does offer index-organized tables and defaults to heap-organized. I heard that SQL-Server uses only index-organized tables I am especially interested in answers for ...
1
vote
3answers
423 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
votes
4answers
144 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
172 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
173 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
283 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 ...
1
vote
2answers
705 views

ISQL app migration option, Progress - “OpenEdge” Personal RDBMS with 4GL(ABL) development system?

Back in 1985, when I was a Product Planner for AT&T-IS Labs (Unix Product Management), one of my primary duties was to evaluate emerging 4GL/RDBMS products, submit product plans and recommend ...
3
votes
3answers
157 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
93 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
992 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
1answer
381 views

Sync tables between different database providers

I have 2 tables in 2 different databases, one is in a mysql server and one is in an informix server. Using .net and odbc, is there a way to identify the differences of both tables and merge them? so ...
1
vote
5answers
540 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
529 views

Migrating schema and SP from informix to mysql

We need to redo a database in MySQL that has been already done on Informix, is there a way to migrate not only the schema, but the stored procedures as well? Thanks. We have a client whom we built a ...