Home > Database > Oracle > body text

How to solve Oracle error 959

WBOY
Release: 2022-05-30 15:12:09
Original
3995 people have browsed it

Method: 1. Use "create tablespace...datafile 'dbf path' size 100M..." to create the table space; 2. Use "alter user demo quota unlimited on table space name" to specify the table space No restrictions are required.

How to solve Oracle error 959

The operating environment of this tutorial: Windows 10 system, Oracle 11g version, Dell G3 computer.

How to solve oracle error 959

IMP-00003: 遇到 ORACLE 错误 959
ORA-00959: 表空间 'XXXXXXXXXXX' 不存在。
Copy after login

IMP-00017: Due to ORACLE error 959,

Solution:

1. Before importing , first create the table space

(The creation directory is the data directory of oracle)

create tablespace xxx datafile 'D:\oracle\data\xxx.dbf' size 100M autoextend on;
Copy after login

2. Specify the user and the table space is not restricted

alter user demo quota unlimited on xxx;//后面的xxx是表空间名
Copy after login

Then imp

Note that log must be specified when importing to facilitate analysis and solution

The example is as follows:

How to solve Oracle error 959

Recommended tutorial: "Oracle Video Tutorial"

The above is the detailed content of How to solve Oracle error 959. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!