rownum in Oracle

Here in this post, we will talk about the ROWNUM keyword in Oracle What is ROWNUM Example CREATE TABLE “EMP” ( “EMPNO” NUMBER(4,0), “ENAME” VARCHAR2(10), “JOB” VARCHAR2(9), “MGR” NUMBER(4,0), “HIREDATE” DATE, “SAL” NUMBER(7,2), “COMM” NUMBER(7,2), “DEPTNO” NUMBER(2,0), CONSTRAINT “PK_EMP” PRIMARY KEY (“EMPNO”), CONSTRAINT “FK_DEPTNO” FOREIGN KEY (“DEPTNO”) REFERENCES “DEPT” (“DEPTNO”) ENABLE ); insert into emp

rownum in Oracle Read More »

How To Backup Database To Cloud Object Storage Using DBCLI

Introduction High-Level steps Steps to Backup Database To Cloud Object Storage Using DBCLI Create the object store on the DB system We need the information below before we create an object store Login to the server as OPC and sudo to root dbcli create-objectstoreswift -n <object_store_name> -t <object_storage_namespace> -u <user_name> -e https://swiftobjectstorage.<region_name>.oraclecloud.com/v1 -p [-h] [-j] This will prompt for the auth

How To Backup Database To Cloud Object Storage Using DBCLI Read More »

How to perform DML operations on Oracle View: Insert, Update, delete

DML operations like insert, update, and delete are allowed in Oracle views with certain restrictions. Let’s check in this post to update the view in Oracle, insert into view Oracle, delete from view in Oracle DML on view in Oracle For example, Let’s first create the TEST view. Create view emp_data  as select e.empno,e.ename,e.sal,e.deptno,d.dname From

How to perform DML operations on Oracle View: Insert, Update, delete Read More »

FNDLOAD command

INTRODUCTION TO FNDLOAD CONFIGURATION FILE The contents of the configuration file are at the heart of the loader operation since they specify the structure of the data and the access methods to use to move the data between the data file and a database. A configuration file has the form: configuration_file ::= item { item

FNDLOAD command Read More »

Scroll to Top