hello, im from poland. I'm stuck here
CREATE TABLE drupal_install_test (id int NULL). Firebird reports the
following message: CREATE TABLE drupal_install_test (id int) - Array ()
SQLSTATE[HY000]: General error: -607 unsuccessful metadata update
Table DRUPAL_INSTALL_TEST already exists
please help...

Comments

jscoble’s picture

From the error message posted, you are trying to create a table that already exists. Since you cannot have more than one table in the database with the same name...the error you are seeing occurs.

If you wish to have the table you are attempting to create replace the already existing DRUPAL_INSTALL_TEST table add the follwing line of SQL prior to your CREATE TABLE statement:

DROP TABLE IF EXISTS drupal_install_test;

tunczyk’s picture

thx, working fine!