Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FINI-6157: Script to bump up krew_ppl_flw_mbr_s sequence if it is beh… #48

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
--
-- Copyright 2005-2019 The Kuali Foundation
--
-- Licensed under the Educational Community License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.opensource.org/licenses/ecl2.php
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--

SET @ppl_flw_max = (SELECT MAX(id) + 1 FROM krew_ppl_flw_s);
SET @ppl_flw_mbr_max = (SELECT MAX(id) + 1 FROM krew_ppl_flw_mbr_s);
SET @ppl_flw_auto_inc = (select if (@ppl_flw_max > @ppl_flw_mbr_max, @ppl_flw_max, @ppl_flw_mbr_max));
SET @alter_auto_increment = CONCAT('ALTER TABLE krew_ppl_flw_mbr_s AUTO_INCREMENT=', @ppl_flw_auto_inc);
PREPARE stmt FROM @alter_auto_increment;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
--
-- Copyright 2005-2019 The Kuali Foundation
--
-- Licensed under the Educational Community License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.opensource.org/licenses/ecl2.php
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--

DECLARE ppl_flw_mbr_inc NUMBER;
BEGIN
SELECT krew_ppl_flw_s.nextval - krew_ppl_flw_mbr_s.nextval INTO ppl_flw_mbr_inc FROM dual;
IF ppl_flw_mbr_inc > 0 THEN
EXECUTE IMMEDIATE 'alter sequence krew_ppl_flw_mbr_s increment by ' || ppl_flw_mbr_inc;
EXECUTE IMMEDIATE 'SELECT krew_ppl_flw_mbr_s.nextval FROM dual' INTO ppl_flw_mbr_inc;
EXECUTE IMMEDIATE 'ALTER SEQUENCE krew_ppl_flw_mbr_s INCREMENT BY 1';
END IF;
END;
/