该文被密码保护。 阅读全文
摘要:
--查询SCOTT用户中所有表的记录数 declare v_count number; query varchar2(4000); begin for i in (select table_name from all_tables where owner = 'SCOTT' order by 1) 阅读全文
摘要:
oracle通过分析函数获取当前行之前的不为空的值 使用last_value,但是要注明ignore nulls 比如有数据如下: RN ADDRESS ARRIVAL_TIME USERID 1 A1 2012-7-9 下午12:03:21 1 (null) A2 2012-7-9 下午12:04 阅读全文
摘要:
INFO: oracle.sysman.top.oms:calling function BIPConfig : writeInFile:/home/oracle/middleware/install/setupinfo.txt data This information is also avail 阅读全文
摘要:
mysql5.5导出数据提示–secure-file-priv选项问题的解决方法 MYSQL导入数据出现ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot ex 阅读全文
摘要:
方法一: impdp导数据的时候经常会有很多表在不同的表空间的情况,如果想进行批量替换表空间,可以用%作为通配符来替换。 remap_tablespace=%:tbs 方法二: 如上的方法我在自己的机器上测试可以,但是在其他的环境上不可以正常运行。 然后可以用其他的方法,如下: transform 阅读全文