Uninstall Oracle DB on Windows completely

Manually

  1. START -> RUN -> Services.msc
  2. Locate all Ora* services & click on STOP
  3. Start -> RUN -> Regedit
  4. Locate HKEY_LOCAL_MACHINE folder in the registry
  5. Open Software folder
  6. Delete the Oracle folder under Software
  7. Open System folder in HKEY_LOCAL_MACHINE
  8. Open CurrentControlSet folder within the System folder
  9. Open Services
  10. Delete all keys related to Oracle. Every key starts with “ORA..”
  11. Close the regedit
  12. Delete ORACLE_HOME folder
  13. Delete the Oracle folder in Program Files
  14. Reboot

Uninstall all Oracle components using the Oracle Universal Installer (OUI).

Read More

Grant privilege on all objects in a Schema to a user in Oracle Database

In this example I have given select on all tables in schema test1 to user test2. As well grant all DML privilege on tables and views, and grant execute on procedures, functions and packages in a schema test1 to user test2.

SQL> create user test1 identified by test1;
User created.
SQL> grant connect,resource to test1;
Grant succeeded.
SQL> create user test2 identified by test2;
User created.
SQL> grant connect,resource to test2;
Grant succeeded.
SQL> conn test1/test1
Connected.
SQL> create table test_table1(id number,name varchar2(30));
Table created.
SQL> create table test_table2(id number,name varchar2(30));
Table created.
SQL> show user;
USER is "TEST1"

If you want to grant select privilege:

Read More

Oracle database Commands

SSH vào server bằng tài khoản oracle.

Truy cập công cụ sqlplus, đăng nhập quyền sysdba:

sqlplus / as sysdba

Thông thường, có thể lệnh sqlplus có thể sẽ không tồn tại trong session hiện tại, bạn cần thực hiện câu lệnh sau để áp dụng biến môi trường (xem trong bài Install Oracle 11g R2 on CentOS):

Read More

Install Oracle 12c R2 on CentOS

Cài đặt GUI

Đầu tiên cần cài đặt giao diện GUI cho CentOS, làm theo bài hướng dẫn sau: Install Gnome 3 GUI on RHEL, CentOS

Download bộ cài

Download bộ cài Oracle 12c từ trang chủ của Oracle hoặc bằng link Google Drive tại đây:

Linux 64 bit 12.2.0.1

Read More

Install Oracle 11g R2 on CentOS

Cài đặt GUI

Đầu tiên cần cài đặt giao diện GUI cho CentOS, làm theo bài hướng dẫn sau: Install Gnome 3 GUI on RHEL, CentOS

Download bộ cài

Download bộ cài Oracle 11g từ trang chủ của Oracle hoặc bằng link Google Drive tại đây:

Linux 64 bit 11.2.0.1 Part 1

Linux 64 bit 11.2.0.1 Part 2

Read More