Essential Difference
Database security
PermissionsThe MySQL permission system is a hierarchical structure formed by inheritance. When permissions are granted to a higher level, other lower levels implicitly inherit the permissions granted. Of course, the lower levels can also rewrite these permissions. Depending on the authorization scope, MySQL has the following authorization methods: 1. Global; 2. Based on each host; 3. Table-based; 4. Based on table columns. Each level has an authorization table in the database. When performing permission checks, MySQL checks each table from high to low, and lower-range authorizations take precedence over higher-range authorizations. Unlike Oracle, MySQL does not have the concept of roles. That is to say, if the same permissions are granted to a group of users, each user needs to be authorized separately. Schema MigrationA schema contains tables, views, indexes, users, constraints, stored procedures, triggers, and other database-related concepts. Most relational databases have similar concepts. The following contents are included: 1. Similarity of pattern objects; 2. The name of the schema object; 3. Focus on table design; 4.Multiple database integration; 5. Concerns about MySQL schema integration. Similarity of pattern objectsIn terms of schema objects, Oracle and MySQL store many similarities, but there are also some differences. The name of the schema objectOracle is case-insensitive, and schema objects are stored in-line on write. In the Oracle world, columns, indexes, stored procedures, triggers, and column aliases are all case-insensitive, and this is true on all platforms. MySQL is case sensitive, such as the storage path relative to the database and the files corresponding to the table. Both Oracle and MySQL allow you to use keywords with schema objects when you enclose them in quotes. But for some keywords in MySQL, it is OK without quotes. Table design concerns1. The type of character data; 2. Column default value. 3. Character Data Type (1) Oracle supports four font types: CHAR, NCHAR, NVARCHAR2, and VARCHAR2. The maximum length of CHAR and NCHAR is 2000 bytes. The maximum length of NVARCHAR2 and VARCHAR2 is 4000 bytes. (2) There are some differences between MySQL and Oracle in saving and reading character data. The length of MySQL character types such as CHAR and VARCHAR is less than 65535 bytes. Oracle supports four font types: CHAR, NCHAR, NVARCHAR2, and VARCHAR2. The maximum length of CHAR and NCHAR is 2000 bytes, and the maximum length of NVARCHAR2 and VARCHAR2 is 4000 bytes. MySQL handles column default values and does not allow them to be empty, which is different from Oracle. In Oracle, if you insert data into a table, you need to have values for all columns that do not allow NULL. Multi-database migrationIf multiple MySQL databases are located on the same database service, migration is supported. Data storage conceptsThe MySQL database corresponds to a directory within the data directory on the server. This data storage method is different from that of many databases, including Oracle. The table in the database corresponds to one or more files in the database directory and uses the storage engine when storing the table. An Oracle database contains one or more tablespaces. Tablespaces correspond to the physical storage of data on disk. A tablespace is constructed from one or more data files. A data file is a file in the file system or a piece of raw storage space. Grammatical DifferencesPrimary Key:
Quote mark problem:
Pagination query:
Data Type:
The above is a detailed explanation of the misunderstandings between Mysql and Oracle. For more information about the misunderstandings between Mysql and Oracle, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
>>: Example code for implementing triangles and arrows through CSS borders
<br />Previous article: Web Design Tutorial ...
The new official website is online, but the exper...
Today, I want to write about a "low-tech&quo...
A distinct Meaning: distinct is used to query the...
Table of contents 1. Docker Image 2. Create an in...
1. Dashed box when cancel button is pressed <br...
This article shares the specific code of JavaScri...
Overview There are many form requirements in the ...
Problem code Look at a closure problem code cause...
<br />Original text: http://andymao.com/andy...
MTR stands for Mini-Transaction. As the name sugg...
Table of contents 1. Background knowledge 1. Intr...
In MySQL, there is a function called "group_...
Last week, the teacher gave me a small homework, ...
Sometimes, in order to facilitate the export and ...