摘要:
打脚本的时候报错: ORA-01116:打开数据库文件203时出错 ORA-01110:数据文件203: '/u01/app/oracle/oradata/temp02.dbf' ORA-27041:无法打开文件Linux-x86_64 Error: 2: No such file or direc 阅读全文
摘要:
代码如下: import os dirpath = 'D:\\' t = [] for root,dirs,files in os.walk(dirpath): for file in files: temp = os.path.join(root,file).replace('\\','\\\\' 阅读全文
摘要:
本来想用python调用cx_Oracle模块写个自动化脚本,每天调用往表里插入数据,被数据类型的报错搞得有点烦,于是决定换种方法:调用存储过程来插入数据,存储过程如下 create or replace procedure xjbcf as begin insert into 表名(表字段1,表字 阅读全文