0% found this document useful (0 votes)
24 views1 page

xxrsi_data_fix_378678 (1)

The document outlines SQL commands to create three new tables based on the 'JUL24-FY25' period from existing tables. It also includes updates to change the period name from 'JUL24-FY25' to 'JUL24-FY24' across multiple tables. Finally, a commit statement is issued to save the changes made to the database.

Uploaded by

emmanuelkbr100
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views1 page

xxrsi_data_fix_378678 (1)

The document outlines SQL commands to create three new tables based on the 'JUL24-FY25' period from existing tables. It also includes updates to change the period name from 'JUL24-FY25' to 'JUL24-FY24' across multiple tables. Finally, a commit statement is issued to save the changes made to the database.

Uploaded by

emmanuelkbr100
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

create table xxrsi_gl_period_378678 as

select * from gl_periods


where period_name = 'JUL24-FY25';

create table xxrsi_gl_period_stat_378678 as


select * from gl_period_statuses
where period_name = 'JUL24-FY25';

create table xxrsi_gl_period_map_378678 as


select * from gl_date_period_map
where period_name = 'JUL24-FY25';

update gl_periods
set period_name = 'JUL24-FY24',
last_updated_by = -88,
last_update_date = sysdate
where period_name = 'JUL24-FY25';

update gl_period_statuses
set period_name = 'JUL24-FY24',
last_updated_by = -88,
last_update_date = sysdate
where period_name = 'JUL24-FY25';

update gl_date_period_map
set period_name = 'JUL24-FY24',
last_updated_by = -88,
last_update_date = sysdate
where period_name = 'JUL24-FY25';

commit;

You might also like