怎么Oracle中怎么使用backup函数,谁能举个例子看看。
这个要函数要在那里才能执行  我在sql*plus和PL/SQL中执行这个函数,提示错误未知命令 

解决方案 »

  1.   

    Solution #1       declare
                result number;
            begin
                -- Call the function
                result := function_name (15000);
            end;Solution #2We can also execute a function by running an SQL statement. For example:    select function_name (15000)
        from dual;
      

  2.   


    是函数,还是sqlplus的命令呀。