数据库操作
往事随風
这个作者很懒,什么都没留下…
展开
-
SQL对比记录
*.ctl 内容 load datainfile '***.txt'append into table test1fields terminated by X'09'(testid) SQL: select a.* from zs_pt_zk7 a,zs_bank_zk7 b where a.jgdm=b.jgdm select a.* from zs_pt_zk7 a where a.jgd原创 2013-07-02 18:15:55 · 559 阅读 · 0 评论 -
DMP导出导入
数据导出: 1 将数据库TEST完全导出,用户名system 密码manager 导出到D:\daochu.dmp中 exp system/manager@TEST file=d:\daochu.dmp full=y 2 将数据库中system用户与sys用户的表导出 exp system/manager@TEST file=d:\daochu.dmp owner=(system,sys原创 2013-07-02 18:16:37 · 497 阅读 · 0 评论 -
锁(locking)
业务逻辑的实现过程中,往往需要保证数据访问的排他性。如在金融系统的日终结算 处理中,我们希望针对某个 cut-off 时间点的数据进行处理,而不希望在结算进行过程中 (可能是几秒种,也可能是几个小时),数据再发生变化。此时,我们就需要通过一些机 制来保证这些数据在某个操作过程中不会被外界修改,这样的机制,在这里,也就是所谓 的 “ 锁 ” ,即给我们选定的目标数据上锁,使其无法被其他程序修改。 H原创 2013-07-02 18:16:52 · 551 阅读 · 0 评论 -
SQL批量生成SQL语句
select 'truncate table '||table_name|| '; ' from tabs where tablespace_name= 'OA_CNEMC' //表空间原创 2013-07-02 18:17:19 · 459 阅读 · 0 评论