Home  >  Article  >  Database  >  How to create oracle table in navicat

How to create oracle table in navicat

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-08-17 16:29:005431browse

How to create oracle table in navicat

1. Oracle installation

https://blog.csdn.net/libingbojava/article/details/ 82025702

After installation, use Navicat to connect to the Oracle database.

How to create oracle table in navicat

#The user name is temporarily used to log in as system, and the password is the password set during the installation process. XE is the folder where CONTROL.DBF is stored.

How to create oracle table in navicat

Related recommendations: "Navicat for mysql graphic tutorial"

2. Create Oracle data table

Create table:

1. Create data table space

2. Create user (specify the default table space currently created)

Delete table:

1. Delete the user

2. Delete the data table space

The order cannot be reversed. If you delete the data table first, the user’s default table space will not be found. Open Do not open the database.

After the deletion is completed, manually delete the table space in the disk.

When creating a table space, the name must be in uppercase letters, otherwise an error will occur when the path is found after creation.

How to create oracle table in navicat

When creating a user, the default table space is the one just created.

How to create oracle table in navicat

Assign permissions

Minimum login permissions

In "Members belong to" we selected "DBA" permissions. In fact, for ordinary users, we only need to grant the permissions of connect, resource, and create view. But here we choose "DBA" for the convenience of demonstration.

Reference https://www.cnblogs.com/franson-2016/p/5925593.html

3. Data transmission

Log in again Create a user to perform data transmission. This user has permission to operate the table.

How to create oracle table in navicat

The above is the detailed content of How to create oracle table in navicat. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn