Oracle
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Oracle

Làm thế nào để sử dụng sql * plus trong tập lệnh lệnh Windows để điều khiển luồng?

Tôi có thể sẽ viết tập lệnh (hoặc điều kiện, tùy thuộc vào yêu cầu) từ script.sql được gọi chính nó.

Ví dụ:script.sql sau tạo tệp .bat windows_commands.bat :

set feedback off
set echo off
set trimspool on
set termout off
set serveroutput on size 100000 format wrapped
set lines 500
set pages 0

-- create the bat file to be executed later:
spool windows_commands.bat

declare
  c number;
begin

  select count(*) into c from dual;

  -- depending on a conditional, write the stuff to be executed into the
  -- bat file (windows_commands.bat)
  if c = 1 then
     dbms_output.put_line('@echo everthing ok with dual');
  else
     dbms_output.put_line('@echo something terribly wrong with dual');
  end if;

end;
/

spool off

exit

Sau đó, bạn có thể gọi script.sql từ một tệp .bat khác như vậy:

@rem create oracle session, call script.sql
sqlplus %user%/%password%@%db% @script.sql

@rem script.sql has created windows_commands.bat.
@rem call this newly created bat file:
call windows_commands.bat


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Hàm danh sách ORACLE SQL

  2. Sách trắng về thống kê CBO

  3. Sql * plus luôn trả về mã thoát 0?

  4. Lỗi SQL:ORA-02000:thiếu từ khóa LUÔN khi tạo bảng dựa trên cột nhận dạng

  5. Oracle Trigger ORA-04098:trigger không hợp lệ và không thể xác thực lại