I need a SQL statement which turns off/on foreign key checks in a DB2 database.
All I found so far is this: SET INTEGRITY FOR <your_table> OFF
but that turns off the constraints only for one specific table. I could iterate through all tables in schema and call that command but that's not very effective. Is this even posible in DB2?