修改Oracle数据库的名字
最近闲来无事,决定修改一下数据库的名字,记得曾经学过通过重建控制文件来修改数据库的名字,网上找了下也可以通过oracle自带的
最近闲来无事,决定修改一下数据库的名字,记得曾经学过通过重建控制文件来修改数据库的名字,网上找了下也可以通过Oracle自带的nid修改数据库的名字,不过这个方法有些麻烦,并且修改的数据库名字不能带“_"。
1,通过重建控制文件修改数据库名字。
为了方便查找trace文件我们在进行备份控制文件的时候我们可以标记下trace文件:
alter session set tracefile_identifier='control_bak'
下面我们备份我们的控制文件:
alter database backup controlfile to trace;
10g是在我们的$ORACLE_BASE/admin\orcl\bdump下面的包含”control_bak“的文件
11g是在我们的$ORACLE_BASE/diag/rdbms/orcl/orcl/trace下面包含的”control_bak的文件
无论是那个版本的数据库我们可以通过查询查找到trace文件的路径
select * from v$diag_info;
关闭数据库,,删除控制文件(如果我们想要复制数据库,我们可以把所有的文件复制到相应的位置,包括数据文件,归档文件,在线日志文件和和网络有关的三个文件;不需要复制控制文件)
单纯的修改数据库的名字这步可以省略,我们需要修改pfile文件:主要是修改数据库的文件路径和数据库的名字,以修改后的数据文件启动新库到nomount阶段。
打开刚才找到的trace文件,复制创建控制文件的一段(一般以CREATE CONTROLFILE 开始)
我们需要修改两个地方:
1,将“REUSE”修改为“set”,原数据库名修改数据库名,其他文件的路径按需修改
· 2,需要移除RECOVER DATABASE USING BACKUP CONTROLFILE这一句
执行我们复制的脚步
以resetlog的方式打开我们的数据库
alter database open resetlogs;
启用临时文件
alter tablespace temp add tempfile '/.../temp01.dbf' reuse;
如果只是修改数据库的名字这一步可以省略。
可以正常打开表示修改数据库的名字成功
2,通过nid修改数据库的名字
启动数据库到mount阶段,修改数据库的名字
startup mount;
host nid target=sys/orcl dbname=new_name
关闭再次启动到mount阶段
alter system set db_name=new_name scope=spfile;
shutdown immediate;
重建控制文件
host orapwd file=/../pwdorcl.ora password=orcl entries=5(其实这个参数用处不大,多少个这样的用户是根据系统来设置的)
以resetlogs方式打开
startup mount;
alter database open resetlogs;
查看数据库的名字
select dbid,name from v$database;
更改数据库的instance_name,windows下面停止所有的服务
重建实例
oradim -delete -sid old_name;
oradim -new -sid new_name -intpwd pwd -startmode a -pfile c:\..\initonew_name.ora(修改原来的参数文件)
进入到数据库中创建spfile文件
set oracle_sid=new_name
sqlplus sys/orcl as sysdba
create spfile from pfile='c:\..\initnew_name.ora';
重新载入监听文件
lsnrctl reload;
如果不能启动可以执行resetlogs
alter database open resetlogs;
在使用2方法修改数据库的名字的时候切忌修改的名字不能带“_",否则会报:DIM-00003: 参数缺失变元。
网上查了下是oracle的一个bug,Oracle在Bug No. 6000490中进行了描述。
解决方式就是去掉”_",并说这个bug已经提交进行到开发,但是要等到12版本才能解决。
目前解决方式只能是去掉下划线。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

How to integrate GoWebSocket with a database: Set up a database connection: Use the database/sql package to connect to the database. Store WebSocket messages to the database: Use the INSERT statement to insert the message into the database. Retrieve WebSocket messages from the database: Use the SELECT statement to retrieve messages from the database.

Using the database callback function in Golang can achieve: executing custom code after the specified database operation is completed. Add custom behavior through separate functions without writing additional code. Callback functions are available for insert, update, delete, and query operations. You must use the sql.Exec, sql.QueryRow, or sql.Query function to use the callback function.

Use the DataAccessObjects (DAO) library in C++ to connect and operate the database, including establishing database connections, executing SQL queries, inserting new records and updating existing records. The specific steps are: 1. Include necessary library statements; 2. Open the database file; 3. Create a Recordset object to execute SQL queries or manipulate data; 4. Traverse the results or update records according to specific needs.

PHP database connection guide: MySQL: Install the MySQLi extension and create a connection (servername, username, password, dbname). PostgreSQL: Install the PgSQL extension and create a connection (host, dbname, user, password). Oracle: Install the OracleOCI8 extension and create a connection (servername, username, password). Practical case: Obtain MySQL data, PostgreSQL query, OracleOCI8 update record.

Through the Go standard library database/sql package, you can connect to remote databases such as MySQL, PostgreSQL or SQLite: create a connection string containing database connection information. Use the sql.Open() function to open a database connection. Perform database operations such as SQL queries and insert operations. Use defer to close the database connection to release resources.
