Are you prepared in attending an interview? We are there to assist you with. If you are preparing for IBM Informix job interview and don’t know how to clear the interview, do not hassle as we have collected and sorted out the type of questions through Wisdomjobs IBM Informix interview questions and answers page to secure the job. IBM Informix is the database server that maintains object relational, dimensional, traditional relational databases. Informix runs on Unix, Linux, Mac OS X and also Windows. It is available in number of editions including free developer editions and for small and large enterprise applications. Below is the list of frequently asked IBM Informix interview questions and answers which gets you ready to face the interviews:
Question 1. What Is The Informix-list@iiug.org Mailing List?
Answer :
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.
Question 2. What Rules Exist Regarding Format, Content, Flame Wars, Etc
Answer :
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.
Question 3. What Is Chunk In Informix?
Answer :
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.
Question 4. What Is Informix Instance?
Answer :
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.
Question 5. What Are The Uses Of Key Value Locking In Informix?
Answer :
The 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.
Question 6. Who Conceived And Designed The Informix Database Management System?
Answer :
The Informix database management system was conceived and designed by Roger Sippl in the late 1970s. Informix was founded in 1980, went public in 1986, and for a period during the 1990s Informix was the second most popular database system, after Oracle.
Answer :
from command line# onmonitor ->Logical-Logs->Databases.
Question 8. Who Developed Informix?
Answer :
IBM released Informix
Question 9. Mention The Database Server Operating Modes Available For Informix?
Answer :
Informix IDS provide following modes:-
Administrators use this mode to perform maintenance functions that do not require the execution of SQL and DDL statements. Only the administrator (user informix) can access the database server.
Administrators use this mode to perform any maintenance task, including tasks requiring the execution of SQL and DDL statements. Administrators can also perform all other functions available in Online mode. You can see the current database server mode by executing the onstat - utility from the command.
Question 10. What Is Extent In Informix?
Answer :
If a table is designed without specifying extent sizes, Informix uses a default of 16 pages for the first and 8 pages for each subsequent extent. Extent sizing is done when the table is initially created.
Question 11. What Is Informix Binary Large Object?
Answer :
A binary large object, also known as a blob, is a collection of binary data stored as a single entity in a database management system. Informix invented an alternative backronym, Binary Large Object. Blobs are typically images, audio or other multimedia objects, though sometimes binary executable code is stored as a blob.
Question 12. Explain About Light Scans In Informix?
Answer :
Light scans occur under the following conditions: The optimizer chooses a sequential scan of the table. The number of pages in the table is greater than the number of buffers in the buffer pool. The isolation level obtains no lock or a shared lock on the table: Dirty Read (including non logging databases) isolation level Repeatable Read isolation level if the table has a shared or exclusive lock Committed Read isolation if the table has a shared lock
Question 13. Can I Ask About Perl, Dbi And Dbd Informix? Other Products?
Answer :
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.
Question 14. Can I Install Informix On A Non-english Version Of Windows Nt?
Answer :
Yes, but you need to install version 7.30 TC 6 or higher.
Answer :
If Informix is still online, you can get a new onconfig with:
onstat -c >onconfig
If Informix is offline, you can retrieve the settings from the database with:
oncheck -pR
or
oncheck -pP 1 1
Question 16. Somehow Informix Fails To Go Online. Is There A Way To View What Oninit Is Doing?
Answer :
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.
Question 17. What Can Be Used To Capture An Isam Error From An Informix Odbc Program On Unix?
Answer :
We can use the SQLCA structure to get the ISAM Error.
sqlca.sqlerrd[1] holds the ISAM error return code.
We can also use the rgetlmsg() and rgetmsg() library functions to obtain ISAM error message text.
Question 18. What Is Informix Universal Server?
Answer :
Informix Universal Server was the brand name given to the 9.X versions of the product; the upgrade from the Informix Dynamic Server (IDS) 7.X products, skipping the XPS 8.X release numbers. The 9.X server contained a number of functional advances (data type extensibility, DataBlades etc), as well as improvements to the storage manager and SQL processing. The most recent versions of the Informix line -- 10.X -- are an evolutionary progression over the 9.X engine.
Question 19. What Is The Size Of Informix Page?
Answer :
The most common page size used is 2KB, though some systems uses 4KB page.
Question 20. Why A Foreground Write In Informix Decrease Performance?state The Reason For The Same?
Answer :
foreground writes (FG) should always be zero. A foreground write is caused when a session needs to have a page from disk placed into the buffer pool, but there are no clean/free buffers available. In this case, the sqlexec thread will pick a page off the least recently used side of an LRU queue, write it out, and mark the page as clean. This process is time consuming for a session and should be avoided.
Question 21. How Would You Convert A Secondary Server Into A Primary Server ?
Answer :
Answer :
Question 23. How Could You Increase The Speed Of Ontape/onbar Backups ?
Answer :
Question 24. Can You Explain Pdq Priority?
Answer :
By setting PDQ PRIORITY the DBA can change the query execution priority and increase the number of internal threads spawned by Informix to satisfy the query. Also, some memory allocation strategies differ upon setting PDQPRIORITY.
Question 25. And Why Are These Important ?
Answer :
Question 26. Explain The Purpose Of Optimizer Directives And How/why You Would Use Them
Answer :
A DBA can use directives mostly to change / test / evaluate the execution plan (costs / benefits) for a query, by forcing an index / change join order / etc.
Question 27. Why Is Update Statistics Important To A Database?
Answer :
Answer :
Answer :
Question 30. What Are The Informix Isolation Levels And Can You Explain Each One ?
Answer :
Question 31. What Command Would You Use To Move The Physical Log?
Answer :
Question 32. What Are The Sql Joins Available In Informix?
Answer :
INNER JOIN, LEFT / RIGHT OUTER JOIN, FULL OUTER JOIN, CROSS JOIN
Question 33. Explain The Concept Of Fragment Elimination In Informix ?
Answer :
Question 34. Why Do Foreground Writes Decrease Performance ?
Answer :
Whenever Informix sqlexec process searches for a free / clear buffer in order to read a page from the disk into that buffer is called foreground write operation. The performance penalty appears when there are no free / clean buffers left, and sqlexec has to search for a less used buffer, write its content to disk, clean the buffer and reuse the buffer for a foreground write operation – having the disadvantage of NOT being asynchronous (as chunk writes/lru writes)
Question 35. What Can Be Used To Capture An Isam Error From An Informix Odbc Program On Unix ?
Answer :
If the DBA has a query inside a script / program that connects to an Informix instance through an ODBC connection, and running the query results in an error, then he can use the TRACE functionality, and return DBINFO(sqlca.sqlerrd[1,2]).
Question 36. What Are The Options/commands Used Which Dbspace A Database Resides?
Answer :
Question 37. What Is A Binary Large Object ?
Answer :
Question 38. Explain About Light Scans In Informix ?
Answer :
A light scan may occur when Informix internal optimizer decides that the best execution plan will be a sequential scan (bad query selectivity, lack of indexes…). In this case, if the optimizer further decides that the data set resulting from the query will not fit in the buffer pool, it will bypass it. The result is a light scan.
Question 39. What Is An Informix Instance?
Answer :
A collection of informix processes in charge of:
Question 40. What Is An Extent In Informix?
Answer :
In Informix, the smallest unit containing data is the “page”. A continuous group of pages form an extent
Question 41. What Are The Database Server Operating Modes Available For Informix? Explain Each.
Answer :
Question 42. What Is A Chunk In Informix ?
Answer :
The “chunk” is a file containing informix database data (or a subset of that data). In can be a file on a internal disk (cooked file) or a raw device (from a SAN platform or internal disks/arrays).
IBM Informix Related Tutorials |
|
---|---|
IBM DB2 Tutorial | MySQL Tutorial |
MongoDB Tutorial |
All rights reserved © 2020 Wisdom IT Services India Pvt. Ltd
Wisdomjobs.com is one of the best job search sites in India.