【发布时间】:2020-09-03 16:45:16
【问题描述】:
运行以下脚本:
import cx_Oracle
conn = cx_Oracle.connect(user = db_user, password = db_pwd, dsn = 'TULSA').
cur = conn.cursor()
sql = ("""
BEGIN
truncate table shop_ord_temp;
truncate table shop_ord_item_temp;
truncate table shop_cust_temp;
END;
""")
cur.execute(sql)
cur.close()
conn.close()
运行此匿名块时收到此错误:
cx_Oracle.DatabaseError: ORA-06550: line 3, column 22:
PLS-00103: Encountered the symbol "TABLE" when expecting one of the following:
:= . ( @ % ;
【问题讨论】: