全部博文(172)
发布时间:2013-01-06 12:06:49
windows环境: 1.在环境变量中添加一条 oracle_home=d:\oracle\product\10.2.0 2.还要将PATH中的oracle的bin目录大写,即“BIN” 3.然后通过注册表修改服务对应新路径的exe文件 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\OracleServiceORCL 修改对应的ImagePath......【阅读全文】
发布时间:2013-01-06 08:33:31
show parameter undo-----------------查看默认回退段表空间,是否自动管理select tablespace_name,contents from dba_tablespaces----------------查看有哪些表空间alter system set undo_tablespace=undotbs2---------------------修改默认回退段表空间create undo tablespace undotbs2 datafile 'e:\oracle\undotbs02.dbf' size 100m-------创建回退段drop tables......【阅读全文】
发布时间:2012-12-31 17:37:53
rman备份/恢复http://www.xifenfei.com/category/database/oracle/oracle_backup_recover/rman ......【阅读全文】
发布时间:2012-12-26 14:08:54
1.创建表空间create tablespace example_tablespace datafile 'e:\****.dbf' size 10m reuse autoextend on next 1m maxsize unlimited;2.创建用户,指定表空间,临时表空间create user username identified by password default tablespace usertablespace temporary tablespace temp;3.IMP导入数据库文件注意grant dba to username;DBA权限是必需的一般默认导入的表空间是......【阅读全文】