在测试的道路上,越走越远,越飞越高

发布新日志

  • oracle bporaexp export import table

    2013-06-28 14:38:42

     1. NBU 中 sample位置为 :\Program Files\Veritas\NetBackup\DbExt\Oracle\Samples\bporaexp
    2.修改其中的事例参数文件 bporaexp_tables.param.
    3. 运行:/usr/openv/netbackup/bin/bporaexp64 system/password parfile = bporaexp_tables.param


    4.用到的oracle命令:
    建表空间:create tablespace tablespace_name datafile '/tablespace_name.dbf' size 2m;
    授权:grant connect,resource,dba to system;

    建表:
    create table tablename ( id varchar(10) not null, name varchar(20) not null);
    insert into tablename values ('1','swan')
    commit


    查看当前实例:
    show parameters;


Open Toolbar