Informix

  Home  Databases Programming  Informix


“Informix Interview Questions and Answers will guide you now that database is a family of relational database management system (RDBMS) products by IBM. It is positioned as IBM's flagship data server for online transaction processing (OLTP) as well as integrated solutions. Learn Informix and get preparation for the of Informix by this Informix Interview Questions and Answers guide”



10 Informix Questions And Answers

1⟩ Somehow Informix fails to go online. Is there a way to view what oninit is doing?

Yes, you can start Informix in verbose mode:

oninit -v (this works on NT as well)

Informix will print everything that happens.

To close the verbose mode: start a second terminal session (UNIX) or command prompt (NT) and execute:

onmode -ky

N.B. Don't close your terminal session (UNIX) or command prompt (NT) while in verbose mode. This will take Informix offline immediately.

 150 views

4⟩ What Rules Exist Regarding Format, Content, Flame Wars, etc

None; this is a news group! That is, there are no rules enforced by the

software. There are periodically discussions on c.d.i about what should

and should not be said. This is my FAQ, so it gets my spin on the rules

that should be followed.

* Format: HTML postings are strongly discouraged; so are MIME

postings. Both cause problems with many frequently used news

readers. That means that attachments aren't encouraged either.

Also, sending the same information twice, once in HTML and once in

plain text, is downright wasteful.

 161 views

5⟩ What is the informix-list@iiug.org mailing list?

The informix-list@iiug.org mailing list is a bi-directional gateway to

the comp.databases.informix (c.d.i) UseNet news group. Messages posted

to the news group are forwarded by mail to subscribers of the mailing

list; responses sent to the informix-list@iiug.org email address are

also posted to the news group; and the gateway manages to keep track of

things so that postings do not repeat themselves. The mailing list is

'closed' in that you cannot post directly to the list unless you also

subscribe to the list. However, you can always post to the news group

instead; that is fully open and unmoderated.

 140 views

6⟩ What are the uses of key value locking in Informix?

he database server uses a concept called key-value locking to lock the deleted row. When the database server deletes a row, key values in the indexes for the table are not removed immediately. Instead, each key value is marked as deleted, and a lock is placed on the key value. One of the most important uses for key-value locking is to assure that a unique key remains unique through the end of the transaction that deleted it.

 166 views

8⟩ What is Informix instance?

An Informix instance is a single connection to shared memory. It is represented by one or more on init processes. When Informix is started or stopped, these processes appear and disappear. Informix used to use the term "server" when referring to an instance, hence the environment variable DBSERVERNAME.

 135 views

9⟩ What is chunk in Informix?

A chunk is a physical portion of disk on which Informix stores its data. A chunk can be either a raw partition or a file system file. Informix suggests that a chunk's name be a symbolic link to the actual chunk. For example, if you are using /dev/rdsk/c6t0d0s1 as a chunk, you could create a symbolic link named /dev/informix/chunk1 that points to /dev/rdsk/c6t0d0s1. That way, if there are ever any problems with that disk, you could replace the disk with another one and just change the symbolic link.

 137 views

10⟩ Can I ask about Perl, DBI and DBD Informix? Other products?

You may ask questions about Perl, DBI and DBD::Informix, but only if an

IBM or Informix database is involved, somehow -- it is not a general

forum for arbitrary questions about Perl. However, there are

alternative forums that you should also use, described in the product.

However, those locations have changed over time, so you should be aware

of the official home, http://dbi.perl.org/, which contains pointers to

how to subscribe to the dbi-users at perl.org (anti-spammed) mailing

list. Note that (as of 2005-03-01 and v2005.01) the email address for

DBD::Informix support is dbd.informix at gmail.com (anti-spammed).

 141 views