Home » Page 73

alter table rename column in oracle database

Oracle allows you to rename existing columns in a table. Use the RENAME COLUMN clause of the ALTER TABLE statement to rename column i,e alter table rename column in oracle Syntax ALTER TABLE table_name RENAME COLUMN old_name to new_name; Let’s see this example SQL> CREATE TABLE DEPT_MASTER ( dept_nr NUMBER UNIQUE, dept_name varchar2(100) NOT NULL, dept_status NUMBER(1,0) NOT NULL, …

alter table rename column in oracle database Read More »

how to change user password in oracle apps from backend

Sometimes we want to change passwords through the backend in EBS. Here is how to change user password in oracle apps from backend. Login to the apps Schema and then execute this PLSQL block. set serveroutput on DECLARE change_pass BOOLEAN; user varchar2(40); pass varchar2(40); BEGIN user := ‘<user name>’; pass := ‘<password>’; change_pass := fnd_user_pkg.changepassword(user,pass); …

how to change user password in oracle apps from backend Read More »

Oracle Database 19c new features

Oracle Database 19c, is the long term support release of the Oracle Database 12c. It belongs to the family Oracle Database 12.2.0.x and 19c is basically Oracle Database 12.2.0.3.Premier and Extended Support for the Oracle 19c is through to March 2023 and March 2026 respectively. You can download Oracle database 19c from the below linkDownload …

Oracle Database 19c new features Read More »

Scroll to Top