0% found this document useful (0 votes)
10 views

Oracle Basic Commands

imp

Uploaded by

nagamalli1248
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views

Oracle Basic Commands

imp

Uploaded by

nagamalli1248
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

https://mohamedazar.

com/2020/11/05/oracle-database-upgrade-from-12c-to-19c/

create user bipadmin identified by bipadmin;


grant create session to bipadmin;
grant sysdba to bipadmin;

create user naga identified by naga;


grant create session to naga;
grant sysdba to naga;

select username,sysdba, sysoper, sysasm from v$pwfile_users ;

sqlplus bipadmin/bipadmin@orcl

connect bipadmin/bipadmin

select name from v$database;

cd C:\Program Files\Java\jdk1.8.0_361\bin

set JAVA_HOME=C:\Program Files\Java\jdk1.8.0_361\bin


set JRE_HOME=C:\Program Files\Java\jre1.8.0_361

select username, account_status, expiry_date, created from dba_users where username


like '%DEV%';

create directory dp_dir as '/u01/dpump';

grant read, write on directory dp_dir to dpl;

1 shutdown immediate;
2 startup nomount;
3 alter database mount;
4 alter database open;
5 select name from v$database;

ps -ef | grep tomcat

firewall-cmd --add-port 4430/tcp --permanent

cat /etc/redhat-release

uname -a

You might also like