Advertisement
mbnoimi

symmetric.log

Mar 19th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.27 KB | None | 0 0
  1. 2014-03-19 17:52:10,559 INFO [] [AbstractCommandLauncher] [main] Option: name=engine, value={corp-000}
  2. 2014-03-19 17:52:10,562 INFO [] [AbstractCommandLauncher] [main] Option: name=format, value={XML}
  3. 2014-03-19 17:52:15,186 INFO [] [AbstractCommandLauncher] [main] Option: name=engine, value={corp-000}
  4. 2014-03-19 17:52:15,191 INFO [] [AbstractCommandLauncher] [main] Option: name=format, value={XML}
  5. 2014-03-19 17:52:15,705 WARN [] [DatabaseWriter] [main] Did not find the item table in the target database
  6. 2014-03-19 17:52:15,711 INFO [] [DatabaseWriter] [main] About to create table using the following definition: <table name="item">
  7.         <column name="item_id" primaryKey="true" required="true" type="INTEGER"/>
  8.         <column name="name" type="VARCHAR" size="100"/>
  9.     </table>
  10. 2014-03-19 17:52:15,728 WARN [] [DatabaseWriter] [main] Did not find the item_selling_price table in the target database
  11. 2014-03-19 17:52:15,729 INFO [] [DatabaseWriter] [main] About to create table using the following definition: <table name="item_selling_price">
  12.         <column name="item_id" primaryKey="true" required="true" type="INTEGER"/>
  13.         <column name="store_id" primaryKey="true" required="true" type="VARCHAR" size="5"/>
  14.         <column name="price" required="true" type="DECIMAL" size="10,2"/>
  15.         <column name="cost" type="DECIMAL" size="10,2"/>
  16.         <foreign-key name="fk_price_item_id" foreignTable="item">
  17.             <reference local="item_id" foreign="item_id"/>
  18.         </foreign-key>
  19.     </table>
  20. 2014-03-19 17:52:15,734 WARN [] [JdbcSqlTemplate] [main] [SQLITE_ERROR] SQL error or missing database (near "CONSTRAINT": syntax error).  Failed to execute: ALTER TABLE "item_selling_price"
  21. ADD CONSTRAINT "fk_price_item_id" FOREIGN KEY ("item_id") REFERENCES "item" ("item_id")
  22. 2014-03-19 17:52:15,735 ERROR [] [DatabaseWriter] [main] Failed to alter table using the following xml: <table name="item_selling_price">
  23.         <column name="item_id" primaryKey="true" required="true" type="INTEGER"/>
  24.         <column name="store_id" primaryKey="true" required="true" type="VARCHAR" size="5"/>
  25.         <column name="price" required="true" type="DECIMAL" size="10,2"/>
  26.         <column name="cost" type="DECIMAL" size="10,2"/>
  27.         <foreign-key name="fk_price_item_id" foreignTable="item">
  28.             <reference local="item_id" foreign="item_id"/>
  29.         </foreign-key>
  30.     </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement