HELP
I need to copy all table data from one DB to another identical DB.
The DB and Tables are identical.
I am running Interbase 5.1 on NT.
Any help would be most grateful
Cheers
In MySQL I would use mysqldump command, I'm not sure about Interbase... just visit their site and read about - dump, backup...
is that a SQL-based database?
if so, you can use "INSERT INTO table_name SELECT * FROM other_table_name"