0

I am trying to import data from a dsv file to a hsql database but for that I have to disable the constraints on the schema. There was a command like Alter Schemaname or similar, but i don't remember details.

Laurenz Albe
  • 209,280
  • 17
  • 206
  • 263
  • [probably the answer is here](https://stackoverflow.com/questions/14972816/how-to-disable-constraints-for-all-the-tables-and-enable-it) – muneeb_ahmed Jan 21 '18 at 16:47

1 Answers1

0
SET DATABASE REFERENTIAL INTEGRITY FALSE; // to disable REFERENTIAL INTEGRITY

Documentation link is here

Anurag Sharma
  • 2,409
  • 2
  • 16
  • 34