I have multiple database, each has table "authentication". In each table I want to drop a constraint and replace it with a new one. That would be great if I had not to do that manually.
ALTER TABLE authentication DROP CONSTRAINT uk_authentication_01;
ALTER TABLE authentication ADD CONSTRAINT uk_authentication_01 UNIQUE (authenticator, method);
is there a way to do a bulk alter with a script?
dblinkand database list frompg_database.