Home » Oracle » Oracle Database » Page 17

Oracle Database

An Oracle database is a collection of data treated as a unit. The purpose of a database is to store and retrieve related information. A database server is the key to solving the problems of information management.Many companies has implemented their data in Oracle. Most of them are mission critical. So Oracle database concept need to be very clear to manage these mission critical things. At the same time Oracle database needs to deliver high performance also. A database server also prevents unauthorized access and provides efficient solutions for failure recovery.

Below section I have tried to present all the important features in Oracle Database management

How to login as user without changing the password in Oracle database(alter user identified by values)

In many cases, DBA needs to log in with another user whose credentials/oracle password are not known, also exporting schema and importing the schema, and preserve the same password. Let’s check out how it works out with alter user identified by values Oracle Database 10G Oracle stores the hash of the username and password is …

How to login as user without changing the password in Oracle database(alter user identified by values) Read More »

How to see the OS timezone used when the database was started

Sometimes we might have different OS timezone settings while starting the database. Also, it could be possible that srvctl is using different timezone settings while starting the Database and this will impact the Database timezone used. You can use the below method to find currently used OS timezone for background processes For 11.2 and up:this …

How to see the OS timezone used when the database was started Read More »

Oracle Database Recovery various cases and solution

Oracle Database administrator has to prepare for the possibility of hardware, software, network, process, or system failure. If such a failure affects the operation of a database system, he must usually recover the database and return to normal operation as quickly as possible.So database recovery is very important for the organization Oracle Database Recovery should …

Oracle Database Recovery various cases and solution Read More »

Shared Pool in Oracle and Shared pool flush in Oracle database

A shared pool is an important memory structure in Oracle database system global area(SGA) What is Shared Pool in Oracle The shared pool in the Oracle database is the place where Oracle caches the SQL, PL/SQL and dictionary data. Whenever we parse a query, the parsed representation is cached there and it is shared also. Oracle …

Shared Pool in Oracle and Shared pool flush in Oracle database Read More »

Scroll to Top