exp system/manager file=filename owner=username
imp system/manager file=filename fromuser=username touser=username

解决方案 »

  1.   

    是否只要备份cwjmx这一个表?如果是,则:
    create table cwjmx_bf as select * from cwjmx.
      

  2.   

    exp system/manager file=filename owner=username
    倒出
    imp system/manager file=filename fromuser=username touser=username
    倒入
      

  3.   

    如果只是简单地改这一个表的数,而没有什么触发器什么的,那还是jin0607(dd)的方法最实用了!
      

  4.   

    我认为这样是最好的办法了,create table cwjmx_bf as select * from cwjmx  简单、明了、省事
      

  5.   

    最好的方法都已经说了,同意jin0607(dd)的方法,如果数据库有问题,用EXP和imp最好!当然这有点小题大做!!!
      

  6.   

    同意诸位的说法,如果只是备份某一个表,就没有必要用exp/imp,只要重新拷贝一份就行了,create table newtablename as select * from cwjmx