Basic concepts of Oracle Database

Author: threedaymanSource: Hang Seng LIGHT cloud communityBasic conceptsdatabaseoracle database is the physical storage of data. Including data file ORA or DBF, control file, online file, log file and parameter file. oracle has only one database, which is managed by users. The process of creating a database in mysql database is to create a data ...

Posted by AP81 on Mon, 29 Nov 2021 19:03:07 -0800

Oracle,Mysql REGEXP_LIKE regular expression usage

1. Scenario Display Regular expressions and corresponding functions are the same in oracle and mysql. Introduction to regular expression symbols: '^' Matches the start position of the input string, used in a square bracket expression, where it indicates that the character set is not accepted. '$' Matches the end of the input string. If set Re ...

Posted by pixeltrace on Sat, 27 Nov 2021 21:53:58 -0800

oracle database foundation: DQL language foundation

The table.sql file used for testing was uploaded to my resource library... If you want to use it, you can use the following three tables for testing only. The specific contents of each table are as follows: Department table Area table Employee table There are too many specific contents. Some contents are displayed here 1. Basic quer ...

Posted by lawnmowerman on Tue, 23 Nov 2021 06:45:14 -0800

Oracle 21c new feature: Immutable tables to improve security

The block linked list of Oracle 21c is the most concerned feature, but there is another small feature rarely mentioned, that is Immutable tables - Immutable tables.The block linked list was introduced in 21c and then transplanted back to 19.10. The immutable list was introduced into Oracle 21.3 and 19.11 at the same time. Therefore, it can be c ...

Posted by lachhekumar on Tue, 23 Nov 2021 06:25:24 -0800

Oracle GoldenGate 11G synchronization configuration

  Item Source System Target System Platform CENTOS7 - 64bit CENTOS7 - 64bit Database Oracle 11.2.0.4 Oracle 11.2.0.4 Character Set AL32UTF8 AL32UTF8 ORACLE_SID cd sz Listener Name/Port LISTENER/1521 LISTENER/1521 Goldengate User ogg ogg   1. Install OGG and create a directory (both sou ...

Posted by Holoverse on Mon, 08 Nov 2021 13:42:29 -0800

Oracle Database Oracle collection

1, Definition of Oracle collection Set is a data type in Oracle, which stores a group of data with the same data type. 2, Composition of set Consists of subscripts and values. The types of subscripts include numeric types (integer type, pls_integer and binary_integer) and string types. The types of values are all types in the database (b ...

Posted by shan111 on Mon, 08 Nov 2021 03:06:22 -0800

Oracle Database: Installation & function query & condition query

1. Course introduction first day: 1.Oracle concept and installation 2. Basic query 3. Condition query 4. Functions in Oracle the second day: 1. Multi table query (mysql also has the same concept, different syntax and important aspect) 2. Sub query (it also exists in mysql, with the same concept, different syntax and important aspect) on th ...

Posted by troublemaker on Fri, 29 Oct 2021 17:42:01 -0700

Oracle advanced query introduction

Oracle advanced query Advanced query is widely used in database development. This paper introduces Oracle advanced query from three aspects: grouping query, multi table query and sub query. Grouping query Grouping query is to group according to certain rules. After grouping, data will be aggregated, and aggregation function is required. Howe ...

Posted by Dorky on Thu, 28 Oct 2021 19:44:04 -0700

Oracle learning VII - Oracle table building

Oracle create table Oracle table is the core of Oracle database and the logical basis for storing data. Oracle table is a two-dimensional data structure. The data with column fields and corresponding columns constitute a data storage structure. You can simply look at a two-dimensional table in rows and columns. Columns represent Oracle columns ...

Posted by PRodgers4284 on Mon, 25 Oct 2021 19:48:57 -0700

Oracle database statistical experiment

This experiment comes from Oracle developer performance lesson 2: Module 2: What are Database Statistics? It is a repetition and interpretation of this experiment. First, create two tables for the experiment, namely bricks and colors, and generate statistical information: -- According to document Database Reference,statistics_level The defau ...

Posted by ptolomea on Mon, 25 Oct 2021 06:34:28 -0700