vote up 1 vote down star

In Informix I can run SQL statement that use other database:

INSERT INTO other_db:mytable ...

I would like "unite" both databases, but I would like do it "step by step".

At first I want to move all data from other_db to main database and make alias that other_db = main_database. This way I will have time to remove "other_db:" from all statements.

How can I set database alias?

flag

76% accept rate
Don't forget to select the answer - that's the big tick (check) mark beside the answer when you look at it. Click on it, and it goes green. (And it gets you 2 points, and it gives RET points too). – Jonathan Leffler Dec 24 '08 at 4:51
Thanks Jon, but I think Elvis has left the building... – RET Dec 31 '08 at 6:33
OK. Marked as accepted. I had some troubles noticing "V" sign :) . Now it is green) :). Regards, – Michal Niklas Dec 31 '08 at 8:29

1 Answer

vote up 3 vote down check

I'm not aware of any method for creating an alias for the whole database.

However, you can create synonyms across databases, in the form:

DATABASE old_db;
CREATE SYNONYM table_name FOR new_db:table_name;

If you create such an alias for each table as it's moved, you should be able to get the same effect. Once all tables have been relocated, you can remove all references to old_db.

You can query systables to identify real tables in old_db, ie:

DATABASE old_db;
SELECT tabname, nrows
  FROM systables
  WHERE tabtype = "T"
    AND tabid > 99 -- exclude internal tables

The row-count will of course depend on reasonably current UPDATE STATISTICS.

Hope that helps.

link|flag
That's the way to do it. – Jonathan Leffler Dec 23 '08 at 4:43
It works! Thanks! Regards, MichaƂ Niklas – Michal Niklas Dec 23 '08 at 9:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.