Home » Oracle » Oracle Database » Page 5

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

Size of schema in oracle

A schema in Oracle consists of tables, index, Log segments, Lob Index, table partition and index partition. The schema size in Oracle depends on the size of all these objects. Let’s check how to find the size of the schema in Oracle How to find the segment_type for a particular schema select segment_type,count(*) from dba_segments …

Size of schema in oracle Read More »

How to use google translate URL in Oracle plsql

We all know Google Translate which can help translate from one language to another. We will explore the option to use Google functionality in Oracle plsql in the Oracle database to get the translation done. BEGINDBMS_NETWORK_ACL_ADMIN.CREATE_ACL(acl => ‘google_translatorapi.xml’,description => ‘Google Translator Access’,principal => ‘SCOTT’,is_grant => true,privilege => ‘connect’);DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(acl => ‘google_translatorapi.xml’,principal => ‘SCOTT’,is_grant => true,privilege => …

How to use google translate URL in Oracle plsql Read More »

Oracle 23c Database New Features

Oracle 23c is the latest Release of Oracle Database. Oracle has introduced lot of new features in it. Here are the Top Features Developer-Friendly Features Oracle has been adding features to make developers’ lives easier, such as SQL and PL/SQL enhancements, JSON improvements, REST interfaces, etc. SELECT without FROM clause You can now run SELECT …

Oracle 23c Database New Features Read More »

Scroll to Top