After nearly five years of working with DB2 on Linux, Unix, and Windows ("LUW"), there are a number of features that I miss in the DBMS, and some annoyances that I'd like the product to get rid of. Some of these items are purely DB2 specific, others are applicable to other DBMSes, as well.
When the subject is brought up, someone may point you to db2look+db2move, but restoring a database using these tools is not a substitute for having platform-independent backup/restore, because:
CREATE TABLE parent (parent_x INT NOT NULL PRIMARY KEY)
and
CREATE TABLE child (parent_x INT NOT NULL REFERENCES parent(parent_x), some_attribute VARCHAR(100) NOT NULL)
it should be able to state:
SELECT * FROM parent REFERENTIAL JOIN child
or (as a short-hand):
SELECT * FROM parent REFJOIN child
and the statements would implicitly join on the column(s) which have already been declared as making up the foreign key.
This would be sort-of using a natural join in other DBMSes:
SELECT * FROM parent NATURAL JOIN child
—only safer, because the columns joined on wouldn't rely on naming conventions.
Referential joins should only be allowed for tables which are related through foreign key constraints.
Referential joins could (like natural joins) allow for substantially shorter query statements.