INSERT statement in Oracle

INSERT statement in oracle is a DML ( Data Manipulation Language) command. It is used to insert new rows into the oracle tables in the oracle database Syntax INSERT INTO <table_name>(col1, col2, … column_n )VALUES(value1, value2, … value_n ); Heretable_name: Table where new records need to be insertedcol1,col2: is the column in the tablesvalue1,value2….: are […]

INSERT statement in Oracle Read More »

EBS R12 start and stop scripts

Here are the EBS R12 start and stop scripts valid for both R12.0 and R12.1 for the EBS maintenance activities R12 start and stop scripts The scripts are their in the directory $ADMIN_SCRIPTS_HOME ($INST_TOP/admin/scripts) adstpall.sh – stop all servicesadstrtal.sh – start all servicesadapcctl.sh – start/stop/status Apacheadformsctl.sh – start/stop/status OC4J Formsadoacorectl.sh – start/stop/status OC4J oacoreadoafmctl.sh –

EBS R12 start and stop scripts Read More »

How to recover the datafile in Dataguard Environment

In this Oracle tutorial, we will provide information on how to recover the datafile in Dataguard environment We have a Oracle Production env TSPRD which is having the Standby Database TSSTD CaseStudy 1: Suppose one of the file(For example file# 11) on the primary side(TSPRD) got corruptedThe only solution is to restore the file and recover itInstead

How to recover the datafile in Dataguard Environment Read More »

Scroll to Top