关于Oracle RAC的维护
◆oracle用户的环境设置:$ cat .profile# Created for oracle RAC by ljg, 20091230 --- begin#umask 022ORACLE_BASE=/u01/app/
◆Oracle用户的环境设置:
$ cat .profile
# Created for oracle RAC by ljg, 20091230 --- begin
#
umask 022
ORACLE_BASE=/u01/app/oracle;export ORACLE_BASE
CRS_HOME=/u01/crs/oracle/product/10/app;export CRS_HOME
ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1;export ORACLE_HOME
ORACLE_SID=eoms1;export ORACLE_SID
AIXTHREAD_SCOPE=S;export AIXTHREAD_SCOPE
PATH=/usr/bin:/etc:/usr/sbin:/usr/ucb:$HOME/bin:/usr/bin/X11:/sbin:$ORACLE_HOME/bin:$CRS_HOME/bin:.;export PATH
#
# Created for oracle RAC by ljg, 20091230 --- end
if [ -s "$MAIL" ] # This is at Shell startup. In normal
then echo "$MAILMSG" # operation, the Shell checks
fi # periodically.
◆oracleRAC操作语法(4个层次):
1、服务、实例、数据库:
srvctl status|start|stop service -d eoms -s TAF_EOMS_SERVER
srvctl status|start|stop instance -d eoms -i eoms1
srvctl status|start|stop database -d eoms
2、ASM实例:
srvctl status|start|stop asm -n sdwgrac1
3、nodeapps资源:
srvctl status|start|stop nodeapps -n sdwgrac1
4、crs:
crs_stat -t
crs_start res|-all
crs_stop res|-all
crsctl check|stop|start crs
/etc/init.crs start|stop
◆为ASM增加磁盘的操作步骤:
在盘阵侧为ASM新添加vdisk后,在两个节点执行以下步骤
cfgmgr:扫描硬件改动
lspv:检查是否有新盘
lsattr -El hdiskn:查看新加盘的属性
chdev -l hdiskn -a reserve_policy=no_reserve:把新加的盘设为共享
(如果有pvid,需要如下方式取消:chdev -l hdiskn -a pv=clear)
修改pv的属性为oracle用户使用:
chown oracle:dba /dev/rhdiskn
chmod 660 /dev/rhdiskn
最后在+ASM1实例添加磁盘:
$ export ORACLE_SID=+ASM1
$ sqlplus "/ as sysdba"
alter diskgroup DATA add disk '/dev/rhdiskn';
select group_number, name, TOTAL_MB, FREE_MB from V$asm_disk_stat;
alter diskgroup DATA drop disk DATA_0001;
◆创建表空间的步骤:
create (bigfile) tablespace test_ljg datafile '+DATA0/pm/datafile/test_ljg' size 200m;
alter database datafile '+DATA0/pm/datafile/test_ljg' resize 300m;
drop tablespace test_ljg including contents and datafiles;

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



MySQL is chosen for its performance, reliability, ease of use, and community support. 1.MySQL provides efficient data storage and retrieval functions, supporting multiple data types and advanced query operations. 2. Adopt client-server architecture and multiple storage engines to support transaction and query optimization. 3. Easy to use, supports a variety of operating systems and programming languages. 4. Have strong community support and provide rich resources and solutions.

To query the Oracle tablespace size, follow the following steps: Determine the tablespace name by running the query: SELECT tablespace_name FROM dba_tablespaces; Query the tablespace size by running the query: SELECT sum(bytes) AS total_size, sum(bytes_free) AS available_space, sum(bytes) - sum(bytes_free) AS used_space FROM dba_data_files WHERE tablespace_

MySQL is an open source relational database management system, mainly used to store and retrieve data quickly and reliably. Its working principle includes client requests, query resolution, execution of queries and return results. Examples of usage include creating tables, inserting and querying data, and advanced features such as JOIN operations. Common errors involve SQL syntax, data types, and permissions, and optimization suggestions include the use of indexes, optimized queries, and partitioning of tables.

Creating an Oracle table involves the following steps: Use the CREATE TABLE syntax to specify table names, column names, data types, constraints, and default values. The table name should be concise and descriptive, and should not exceed 30 characters. The column name should be descriptive, and the data type specifies the data type stored in the column. The NOT NULL constraint ensures that null values are not allowed in the column, and the DEFAULT clause specifies the default values for the column. PRIMARY KEY Constraints to identify the unique record of the table. FOREIGN KEY constraint specifies that the column in the table refers to the primary key in another table. See the creation of the sample table students, which contains primary keys, unique constraints, and default values.

Uninstall method for Oracle installation failure: Close Oracle service, delete Oracle program files and registry keys, uninstall Oracle environment variables, and restart the computer. If the uninstall fails, you can uninstall manually using the Oracle Universal Uninstall Tool.

Data import method: 1. Use the SQLLoader utility: prepare data files, create control files, and run SQLLoader; 2. Use the IMP/EXP tool: export data, import data. Tip: 1. Recommended SQL*Loader for big data sets; 2. The target table should exist and the column definition matches; 3. After importing, data integrity needs to be verified.

There are three ways to view instance names in Oracle: use the "sqlplus" and "select instance_name from v$instance;" commands on the command line. Use the "show instance_name;" command in SQL*Plus. Check environment variables (ORACLE_SID on Linux) through the operating system's Task Manager, Oracle Enterprise Manager, or through the operating system.

Oracle View Encryption allows you to encrypt data in the view, thereby enhancing the security of sensitive information. The steps include: 1) creating the master encryption key (MEk); 2) creating an encrypted view, specifying the view and MEk to be encrypted; 3) authorizing users to access the encrypted view. How encrypted views work: When a user querys for an encrypted view, Oracle uses MEk to decrypt data, ensuring that only authorized users can access readable data.
