All Downloads are FREE. Search and download functionalities are using the official Maven repository.

postgresql.uws.rollover.sql Maven / Gradle / Ivy

The newest version!
-- rollover Job and JobDetail tables to keep active table small and preserve history

-- rename indices
ALTER INDEX .jobdetail_fkey RENAME TO jobdetail_fkey_;
ALTER INDEX .job_creationtime RENAME TO job_creationtime_;
ALTER INDEX .job_ownerid RENAME TO job_ownerid_;
ALTER INDEX .job_pkey RENAME TO job_pkey_;

-- rename tables
alter table .Job rename to Job_;
alter table .JobDetail rename to JobDetail_;

-- the FK constraint in JobDetail->Job automatically follows the Job table rename





© 2015 - 2024 Weber Informatics LLC | Privacy Policy