简体   繁体   中英

Create stored procedure error in oracle

I create a extremely basic stored procedure but oracle toad always shows "Warning: compiled but with compilation errors".

Here is the code:

CREATE OR REPLACE PROCEDURE update_history (
   tab1_name IN VARCHAR2

   )
AS

BEGIN

END;

Oracle does not handle the empty block; so you can simply add a NULL statement:

CREATE OR REPLACE PROCEDURE update_history (
   tab1_name IN VARCHAR2
   )
AS    
BEGIN
    null;
END;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM