An error occurred during Oracle logon, which prevented the user from logging on

Source: Internet
Author: User

An error occurred during Oracle logon, causing the user to be unable to log on with the following error

-------------------------------------------------------------------------

ORA-00604: A recursive SQL Level 1 error occurred

ORA-01653 table sys.aud$ cannot be extended by 1024 (in tablespace system)

ORA-02002: Error writing audit trail

ORA-01653 table sys.aud$ cannot be extended by 1024 (in tablespace system)

-------------------------------------------------------------------------

One of the solutions: scaling. aud$ the size of the table space (log on to Oracle with DBA)

--Query the remaining size of table space FreeSpace

Select Tablespace_name,count (*) as Extends,round (sum (bytes)/1024/1024,2) as mb,sum (blocks) as blocks

From dba_free_space where tablespace_name = ' Audtbs '

GROUP BY Tablespace_name

--Query The total size of the tablespace tablespace

Select Tablespace_name,sum (bytes)/1024/1024 as MB

From dba_data_files where tablespace_name = ' Audtbs '

GROUP BY Tablespace_name

--Query Table space location

SELECT * from dba_data_files where tablespace_name = ' Audtbs '

--Change Table space size

ALTER DATABASE datafile ' D:\App\ADMINISTRATOR\ORADATA\ORCL\AUDTBS_01.DBF ' resize 5524M

Complete, log in again.

An error occurred during Oracle logon, which prevented the user from logging on

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.