In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
When making a report, it needs to read a large amount of data and carry out complex calculations, which is often time-consuming, so the results are generally stored in a result table, and the report reads the result table directly, which will be very fast. At this time, in order to update the result table and get the latest data, you need to execute some SQL statements regularly. At this time, you can use the method of stored procedure + job to achieve the goal. The specific steps are as follows
Create a stored procedure:
Create or replace procedure datawarn.P_TEST is
Begin
Delete from test_table
Insert test_table select * from table1;-- sql block, that is, the sql statement you want to execute
Commit;-sql block
End
Execute the stored procedure (manually call the stored procedure once):
EXEC stored procedure name
Create a JOB:
Begin
Dbms_scheduler.create_job (
Job_name = > 'Jacks JOB,-- name
Job_type = > 'STORED_PROCEDURE'
Job_action = > 'stored Testament,-- stored procedure name
Start_date = > sysdate
Repeat_interval = > 'FREQ=MINUTELY; INTERVAL=10',-every ten minutes
Comments = > 'JOB description'
);
End
Ps: be careful when creating a job. Check it carefully and don't miswrite the information. If you report an error, creating it again will lead to unsuccessful creation. You can try to change the job name.
-- start
Begin
Dbms_scheduler.enable ('Jacks TEST')
End
Execution
Begin
Dbms_scheduler.run_job (job_name = > 'Jacks TESTESTERT force = > TRUE);-- true stands for synchronous execution
End
Stop it
Dbms_scheduler.stop_job (job_name = > 'Jacks TESTESTELER force = > TRUE)
-- DI JOB query
Select * from tsc_jobstatus
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.