I would need to set all tables' primary key column temporarily to GENERATED BY DEFAULT instead of ALWAYS. I can ofcourse compile a list myself, but is it possible with "one go" to set this for all tables in a specific schema? Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you're on Mainframe DB2, then this command should work for you (this assumes you mean the key is an Identity column, generated always, there are other codes for defaults, which you can see on the Info Center page):
If you're on DB2 for LUW, then this should do it:
This will only generate the commands needed. You will need to execute them yourself. |
|||||
|
|
You can generate the query by querying the data from the catalog. I mean, you make a Select that returns the alter command, and this output is send to a file. After you just have to execute the content of that file (Linux/UNIX/Cywgin)
However, you have to check the generated commands, and if executed, check the returned values:
|
|||
|
|