Connect the internal device only until the release of the oracle sql developer

Hi, I'm trying to connect to an oracle server using oracle Sql developer Im getting an error like

connect only until release

Please let me know how to resolve this error.

Thankyou

+4
source share
2 answers

Are you the database administrator of this database? If not, you need to contact the database administrator - this error indicates that the database, in fact, is not working. There is nothing the end user can do to fix this error.

If you are a database administrator, which version of Oracle are you using? The most common problem is that the directory (or one of the directories depending on your configuration) that you configured Oracle to record archive logs is full and needs to be cleaned. Can you free some space in this directory?

+4
source

Check the warning log on the Oracle server, as well as free disk space at the destination of the archive log. This error can be caused by an archiver error when it cannot archive redo logs.

You can log in as dba and do: show parameter archive , as Justin explained in his comment.

You are looking for entries like log_archive_dest_N . You will likely have many of these options, and I would suggest checking every drive / location that matters.

My database has log_archive_dest_1 = '/o296/dbSID/arch'

+2
source

All Articles