Error tns 12541 tns no listener

User tries to launch Controller. User receives error message on screen. If they look at their client PC's 'application' Event Log, there is an entry there, corresponding with the time when they tried to logon. On the Controller application server, there are periodic VBRUNTIME errors.

Problem

User tries to launch Controller. User receives error message on screen.

If they look at their client PC’s ‘application’ Event Log, there is an entry there, corresponding with the time when they tried to logon.

On the Controller application server, there are periodic VBRUNTIME errors.

Symptom

Client PC screen:

An error occurred while trying to access the server

Client PC Event Log:

Event Type: WarningEvent Source: Cognos ControllerEvent Category: NoneEvent ID: 0Date: 1/31/2008Time: 10:20:10 AMUser: N/AComputer: PCNAMEDescription:Error occured at 1/31/2008 10:20:10 AM in Cognos Controller, Error No=5, Source=FrangoDirect.ServerInfoD.GetServerInfo#ControllerProxyClient, Description=System.Web.Services.Protocols.SoapException: Server was unable to process request. —> System.Runtime.InteropServices.COMException (0x80004005): ORA-12541: TNS:no listener at FrServerB.ServerInfoClass.GetServerInfo(String sGuid, String sUser) at Cognos.Controller.Proxy.CCRWS.ServerInfo_GetServerInfo(String sGuid, String sUser) — End of inner exception stack trace —, HelpFile= HelpContext=0

Application Server Event Log:

    Event Type: Warning
    Event Source: VBRuntime
    Event Category: None
    Event ID: 1
    Date: 1/31/2008
    Time: 10:08:02 AM
    User: N/A
    Computer: SERVERNAME
    Description:
    The VB Application identified by the event source logged this Application FrSrvFunc: Thread ID: 3424 ,Logged: Error occured at 1/31/2008 10:08:02 AM in FrSrvFunc, Error No=-2147467259, Source=Server function:Db_CreateConnection(..) , Description=ORA-12541: TNS:no listener, HelpFile= HelpContext=0

And:

    Event Type: Error
    Event Source: VBRuntime
    Event Category: None
    Event ID: 1
    Date: 1/31/2008
    Time: 10:08:02 AM
    User: N/A
    Computer: SERVERNAME
    Description:
    The VB Application identified by the event source logged this Application FrSrvFunc: Thread ID: 3424 ,Logged: Connection Error: Udl=File Name=C:Program Filescognosc8DataDEVELOPMENT.Udl But security is OFF!!!
    Error No=-2147467259, Source=OraOLEDB, Description=ORA-12541: TNS:no listener, Native Error=12541, Sql State =

In addition, if using TNSPING, you may get the error ‘TNS-12541: TNS: no listener‘.

Cause

There are many potential causes for ‘ORA-12541 TNS:no listener’ errors. For example:

  • Scenario #1 — Tnsnames.ora file does not have the correct information required to connect to

the Oracle instance

    • See separate IBM Technote 1346169 for more details
  • Scenario #2 — Oracle server has more than one network card, but only 1 card is configured
    • See separate IBM Technote 1353150 for more details
  • Scenario #3 — IBM Cognos server has Oracle 9 client installed, but the data source is hosted on an Oracle 10 database server.
  • Scenario #4 — Server has Symantec Firewall installed. By default, this blocks TNSPING
    • See separate IBM Technote 1372042 for more details
  • Scenario #5 — Problem with sqlnet.ora file
    • See separate IBM Technote 1342952 for more details

However, this IBM Technote specifically deals with the scenario where the Oracle server was not operational/misconfigured. In one customer’s specific case, the Oracle server’s listener was not configured correctly.

Resolving The Problem

Ask Oracle DBA to check the Oracle server, to solve connection problem.

NOTE: Oracle is a third party (non-IBM) piece of software. IBM cannot give any official advice on third-party (non-IBM) products.

However, in one customer’s case, the problem was solved by deleting and re-creating the Oracle Listener.

Steps to delete/re-create an Oracle Listener:

  1. Obtain a short period of downtime
  2. Logon to Oracle server as an administrator
  3. Click «Start — Programs — Oracle — OraDb10g_home1 — Configuration and Migration Tools — Net Configuration Assistant»
  4. Select «Listener configuration» and choose ‘Next’
  5. Choose ‘Delete’.
  6. Use the wizard to delete the listener(s).
  7. Repeat steps 4, 5 and 6 until *all* listeners have been deleted
  8. Choose ‘Add’ then ‘Next’
  9. Give the listener a suitable name (for example default = LISTENER) and click ‘Next’
  10. Ensure that the ‘Selected Protocols’ is correct (typically, this should only include ‘TCP’) and click ‘Next’
  11. Choose the TCP port (typically accept the default ‘1521’) and click ‘Next’
  12. Finish
  13. Test.

Related Information

[{«Product»:{«code»:»SS9S6B»,»label»:»IBM Cognos Controller»},»Business Unit»:{«code»:»BU059″,»label»:»IBM Software w/o TPS»},»Component»:»Controller»,»Platform»:[{«code»:»PF033″,»label»:»Windows»}],»Version»:»8.2″,»Edition»:»All Editions»,»Line of Business»:{«code»:»LOB10″,»label»:»Data and AI»}}]

Historical Number

1038229

ORA-12541 is the same as TNS-12541, they all indicate that the listener is not running according to your specified destination.

Let’s see how we reproduce ORA-12541 and TNS-12541.

SQL*Plus throws ORA-12541

SQL> conn hr/hr@orcl
ERROR:
ORA-12541: TNS:no listener

TNSPING throws TNS-12541

C:Usersed>tnsping compdb

TNS Ping Utility for 64-bit Windows: Version 12.1.0.1.0 - Production on 22-JUL-2014 19:20:06

Copyright (c) 1997, 2013, Oracle.  All rights reserved.

Used parameter files:
C:oracleappclientedproduct12.1.0client_1networkadminsqlnet.ora

Used TNSNAMES adapter to resolve the alias
Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = primary01)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = compdb)))
TNS-12541: TNS:no listener

Cause

The connection cannot find the listener, it could be:

  • The listener is not started.
  • This is the most common problem of ORA-12541 we have met. Just start it up and make sure it’s running.

  • The listener is listening to another port other than the default one, e.g. 1522.
  • Backup port like 1522 may be used by the listener for connection, you should ask for DBA to handle it.

  • The connection went for the wrong database server.
  • Please check every parameter in your connect descriptor and make sure they are correct.

  • Routing to the wrong destination.
  • It’s rare, but it did happen in a very complex network environment. Part of connections are routed by some network device to an unknown server where no listener on port 1521.

Solution

Check the status and port of LISTENER on server side and start it if necessary.

[oracle@primary01 ~]$ lsnrctl status

LSNRCTL for Linux: Version 12.1.0.1.0 - Production on 22-JUL-2014 19:22:34

Copyright (c) 1991, 2013, Oracle.  All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
TNS-12541: TNS:no listener
 TNS-12560: TNS:protocol adapter error
  TNS-00511: No listener
   Linux Error: 2: No such file or directory
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=primary01)(PORT=1521)))
TNS-12541: TNS:no listener
 TNS-12560: TNS:protocol adapter error
  TNS-00511: No listener
   Linux Error: 111: Connection refused

As you can see, the database port is 1521 without questions. But the listener is not started. So let’s start it up.

[oracle@primary01 ~]$ lsnrctl start

LSNRCTL for Linux: Version 12.1.0.1.0 - Production on 22-JUL-2014 19:23:59

Copyright (c) 1991, 2013, Oracle.  All rights reserved.

Starting /u01/app/oracle/product/12.1.0/dbhome_1/bin/tnslsnr: please wait...

TNSLSNR for Linux: Version 12.1.0.1.0 - Production
System parameter file is /u01/app/oracle/product/12.1.0/dbhome_1/network/admin/listener.ora
Log messages written to /u01/app/oracle/diag/tnslsnr/primary01/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=primary01)(PORT=1521)))

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 12.1.0.1.0 - Production
Start Date                22-JUL-2014 19:23:59
Uptime                    0 days 0 hr. 0 min. 2 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /u01/app/oracle/product/12.1.0/dbhome_1/network/admin/listener.ora
Listener Log File         /u01/app/oracle/diag/tnslsnr/primary01/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=primary01)(PORT=1521)))
The listener supports no services
The command completed successfully

For more testing skills, you may check Oracle 19c Net Services Administrator’s Guide: 15 Testing Connections.

Ora tns no listener errorThe ora 12541 tns no listener is an issue that can happen due to various reasons such as if the listener is down, connectivity problem with the network, improper configuration, and if the connection has not been started. If you don’t know which of these reasons apply to the issue you are having, our coding experts are here to help you out! Read on as we inspect each of these causes and provide solutions.

Contents

  • Why Is Your System Is Showing Ora 12541 TNS No Listener Issue
  • How To Solve This Error
    • – ORA-12541 TNS No Listener Error While Using SQL *Plus
    • – Example 2: ORA-12541 TNS No Listener in SSIS Error
    • – Example 3: ORA-12541 TNS No Listener in Windows
    • – Example 4: ORA-12541 TNS No Listener In Project
  • FAQs
    • – What Are TNS and Listeners?
    • – What is a TNS File in SQL Developer?
    • – How To Save a Tnsname File?
  • Conclusion

Why Is Your System Is Showing Ora 12541 TNS No Listener Issue

The error message can be caused by some major reasons which are listed below and can make the user run into ora 12541 tns no listener whenever there is a problem with the listener. The error can be caused:

  • If the database was briefly unavailable at the time when the user tried to access it
  • If the oracle client application on the machine is not configured
  • It can be due to a network connection problem, and if the connection has not started or if it went for a wrong database parameter
  • If there are corrupted listener configurations files
  • If the user is incorrectly registered or listened to another port other than the default
  • If there is a complex network environment whereby the connection is routed by another device to an unknown server.

The warning syntax looks like this:

ERROR:
ORA-12541: TNS: no listener

How To Solve This Error

There are a few steps to take when resolving ora 12541 tns no listener issue.

You should make sure that the listener is up and running. To do this, go to the control panel into services under NT or listener control programs. This will show you the current status of the listener whether active or not. If the listener is not active i.e not running, restart the listener service by running the net start command by filling in “XX”.

What To Do After Checking the Listener Status? If the listener is active, the problem may be caused if it is not associated with the correct instance or protocol. To make sure all protocols or instances are correct, obtain the basic information about the listener and the configuration settings by using the  “STATUS” command. This will give you basic information about the listener and the configured protocol address, the summary of the services registered, and the services l handlers allocated to each service.

What to do next? Determine the type of status received:

  • If the status is “Ready” the instance can accept connections
  • If the status is “Blocked” the instance cannot accept connections
  • If the status is Ready/Secondary, the primary and the second configuration is ready to accept connections
  • If the status is *Unknown”, it is because the instance is registered in the Listener. ora file instead of the service registration

To avoid ora 12541 tns no listeners as a user, you should actively monitor and ensure adequate security.

Let us consider some major examples of possible ora 12541 errors you can encounter in your programs and how to solve them.

– ORA-12541 TNS No Listener Error While Using SQL *Plus

The ora 12541 tns no listener can also be caused when trying to connect to a database using SQL *Plus in oracle.

If you encounter such an issue when using SQL *Plus, there are steps to take to identify where the problem lies.

On the database server, connect to the database using an SQLNet connection which is

sqlplusacott/tiger@databasename

If the first method doesn’t work for you after trying it, don’t give up. There may be an issue with the connection setup on the server. What you can do is to check the listener log file and try tnsping from the server and see if the settings are the same with the client.

If you have challenges with the above solution, you can check the listener log file again for failed connections by increasing your trace level for adequate information.

The last problem to watch out for is the firewall. If you have tried all the above-mentioned methods and all failed, resolve the firewall problem first by disabling it and then try all over again.

– Example 2: ORA-12541 TNS No Listener in SSIS Error

The error ora 12541 tns no listener in SSIS is caused when connecting to oracle through SSIS.

If you are seeing this error when connecting to the oracle, you should check for tnsnames. ora. Check whether the listener is running and then check the path variable containing oracle here (oracle_himebin) for the solution.

If you are still experiencing the error, what you need to do is to troubleshoot the SSIS. To do that, you will use the database native tools to check the connectivity, using SQLPLUS.EXE. But if you have an issue when using the native tool, the problem is not an SSIS issue. If it is SSIS, check if you can resolve the host by using PING<hostname>. If this doesn’t work, try PING <IP address> and check the port with TELNET <host> <port>.

If it doesn’t work, then the problem has been detected. It is either the service is not listening or you need to open the port, which is:

SQL Server (default port 1433)

and a web server (default port 80 for unencrypted comms)

– Example 3: ORA-12541 TNS No Listener in Windows

Let’s consider an ora error in windows. We will provide solutions to errors due to an issue with the window box to the VM.

What we recommend that you should do is to check the VM/Windows step up, including the software and the address. To solve the ora-12541 problem relating to the window issue, always check the status of your listener, then open the command prompt and type Isnrctl status. If you get no listener, open the listener.ora file which is present in the following directory:

C:oraclexeapporacleproduct11.2.0servernetworkADMIN

After that, open the file and change the host parameter to your computer name ( You can get the computer name by right-clicking on My Computer and checking your computer name), and replace the host parameter with your computer name as follows.

LISTENER = (DESCRIPTION_LIST = (DESCRIPTION = (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1)) (ADDRESS = (PROTOCOL = TCP)(HOST = Electron-PC)(PORT = 1521)) ) )

So here you can observe HOST = Electron-P, which is a computer name. Save the listener.ora file and again return to command prompt and type the following in command prompt lsnrctl start

There is another way to solve the problem, you can use this method if the solution above doesn’t work on your system. You have to uninstall all the oracle files from your computer if you had previously installed them. Stop all its services by going to services. msc in cmd.

What to do:

  • Restart your computer
  • Install oracle if you have not already
  • After that, go to cmd
  • Type services. msc in cmd, then select any service and type ‘O’. This will get to you all the services starting with O. Select OracleJobScheduerXE from the list. Right-click and go to properties
  • In the general tab go to Startup type. Select automatic from it
  • Click apply then click start and then OK
  • Also, enable OracleXeClrAgent and start your service. So totally 4 services would be working out of 5 except OracleMTSRecoveryService
  • Now go to cmd type lsnrctl->enter-> type status you should be able to see your instance

The oracle-12541 error was caused by changing the ownership to root. This error can be caused if the administration or user attempts to stop or start the listener by executing the command as a root or root-like user.

The error can be resolved by carrying out an operation in the form of the root. Stop the listener  (it may not stop cleanly)

su – oracle

lsnrctl stop

mv /var/tmp/.oracle /home/oracle

lsnrctl start

– Example 4: ORA-12541 TNS No Listener In Project

The ora-12541 TNS no listener, may occur when opening or validating a ReqPro project.

The error is caused because the connection request to the database could not be completed. After all, the listener is not running or the listening address supplied in the TNSNAMES. The ORA file is invalid.

To resolve the problem we need to check if the listener is active by running the lsnrctl utility on the Oracle server.

To start the lsnrctl utility:

  • Select Start > Run…, then type CMD and click OK
  • At the Command line. type in lsnrctl and hit Enter
  • Type in status and hit Enter
  • If the listener is not started you will receive several error messages that start with TNS.
  • To start the listener type start from the command line and hit Enter.

If the listener has been started, and you continue to receive the error message, check if the destination address in the TNSNAMES.ORA file on the client system matches one of the listening addresses listed in the LISTENER.ORA file on the database server.

FAQs

– What Are TNS and Listeners?

A TNS name is like an alias to the service instance. The TNS listener service acts as a sort of lookup service. If the actual service you are trying to connect to via a TNS name isn’t valid, you will have an error.

The listener can be referred to as the “oracle Net listener” or the “oracle TNS listener“.

TNS stands for Transparent Network Substrate and it is the network protocol used by oracle for connectivity to the oracle database.

– What is a TNS File in SQL Developer?

Tnsnames.ora is a SQL*Net/Oracle Network Manager configuration file that describes databases and how to connect to them. The file contains the connection name, protocol, address, network port, and instance name. The tnsnames.ora file translates the Oracle Net service alias in the connection string to a network address, protocol, service, and instance name.

The tnsnames.ora plain text file is located on both the client and the server. Typically, this file is located under the oracle_homenetworkadmin directory. You can make changes to the file using any text editor.

– How To Save a Tnsname File?

In most cases, you may want to save the file at a location where you need administrator permissions to do so. There are two possible solutions for this:

Store the file somewhere elsewhere you don’t need admin permission (like your own documents or something like that).

Start the program you use to save the file as Administrator (if you have the permission to do so) and save the file anywhere you want. !Caution! If you save the file this way, you can overwrite other files with the same name even if they are critical and you can store the file in locations where a user can’t read it.

Conclusion

In the article, we have shown you the causes of ora 12541 tns no listener error and possible solutions. Let’s check the key points we mentioned in the article:

  • The ora 12541 tns no listener is caused when the TNS name isn’t valid
  • The error can be caused by reasons such as connectivity problems, and incorrect registration
  • TNS is the network protocol used by oracle for connectivity to the oracle database
  • The error can be caused if the listener is not associated with the correct protocol

How to fix ora tns no listenerNow that you have reached the article, you can avoid such errors and maintain a good database with your client.

  • Author
  • Recent Posts

Position is Everything

Position Is Everything: Your Go-To Resource for Learn & Build: CSS,JavaScript,HTML,PHP,C++ and MYSQL.

Position is Everything

when i was trying to connect my remote server as-

sqlplus SYSTEM/oracle@192.168.0.171:1521/kannel

it shows me this error-

SQL*Plus: Release 11.2.0.2.0 Production on Fri Nov 15 15:36:52 2013
copyright (c) 1982, 2010, Oracle.  All rights reserved.

ERROR:
ORA-12541: TNS:no listener

I have checked my listener, it is running

[root@roracle bin]# ./lsnrctl status

 LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 15-NOV-2013 15:42:24

 Copyright (c) 1991, 2011, Oracle.  All rights reserved.

 Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
 TNS-12541: TNS:no listener
 TNS-12560: TNS:protocol adapter error
 TNS-00511: No listener
 Linux Error: 111: Connection refused
 Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))
 TNS-12541: TNS:no listener
 TNS-12560: TNS:protocol adapter error
 TNS-00511: No listener
 Linux Error: 111: Connection refused

tnsnames.ora file contain —

KANNEL =
 (DESCRIPTION =
   (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
     (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = kannel)
     )
 )

listener.ora file contain

SID_LIST_LISTENER =
(SID_LIST =
 (SID_DESC =
   (GLOBAL_DBNAME = kannel)
   (ORACLE_HOME = /opt/u01/app/product/11.2.0/dbhome_1)
   (SID_NAME = kannel)
 )
)

LISTENER=
 (DESCRIPTION_LIST =
  (DESCRIPTION =
   (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
  )
   (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
   )
  )
 )

sqlnet.ora file contain-

SQLNET.AUTHENTICATION_SERVICES= (ALL)

NAMES.DIRECTORY_PATH= (TNSNAMES,ONAMES,HOSTNAME)

Oracle home path —

$ORACLE_HOME=/opt/u01/app/product/11.2.0/dbname_1

Oracle base path —

$ORACLE_BASE=/opt/u01/app

i have set environment variable

[root@roracle bin]# env | sort

}
_=/bin/env
CVS_RSH=ssh
G_BROKEN_FILENAMES=1
HISTCONTROL=ignoredups
HISTSIZE=1000
HOME=/root
HOSTNAME=roracle
LANG=en_IN
LESSOPEN=|/usr/bin/lesspipe.sh %s
LOADEDMODULES=
LOGNAME=root
LS_COLORS=rs=<......something........>:
MAIL=/var/spool/mail/root
module=() {  eval `/usr/bin/modulecmd bash $*`
MODULEPATH=/usr/share/Modules/modulefiles:/etc/modulefiles
MODULESHOME=/usr/share/Modules
OLDPWD=/root
ORACLE_BASE=/opt/u01/app/
ORACLE_HOME=/opt/u01/app/product/11.2.0/dbhome_1
ORACLE_SID=kannel
PATH=/usr/lib64/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
PWD=/opt/u01/app/product/11.2.0/dbhome_1/bin
QTDIR=/usr/lib64/qt-3.3
QTINC=/usr/lib64/qt-3.3/include
QTLIB=/usr/lib64/qt-3.3/lib
SHELL=/bin/bash
SHLVL=1
SSH_CLIENT=192.168.0.83 35604 22
SSH_CONNECTION=192.168.0.83 35604 192.168.0.171 22
SSH_TTY=/dev/pts/0
TERM=xterm
USER=root

When i access database as a localhost —

./sqlplus / as sysdba[oracle@roracle bin]$ ./sqlplus / as sysdba

 SQL*Plus: Release 11.2.0.3.0 Production on Fri Nov 15 16:04:02 2013

 Copyright (c) 1982, 2011, Oracle.  All rights reserved.

 Connected to an idle instance.

 SQL> select v$database;
 select v$database
 *
 ERROR at line 1:
 ORA-01034: ORACLE not available
 Process ID: 0
 Session ID: 0 Serial number: 0

I Don’t understand where i am mistaking…..Can somebody help?

If you see this error
message in the alert log file of your primary database in a dataguard
environment, it is most likely that listener on the standby database host(s) is
not running. As a result, primary database will not be able to ship redo data
to the standby database. This failure of log shipping will add lines similar to
the following in the alert log file of the primary database.

Fatal NI connect error 12541, connecting to:

 (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=172.125.16.100)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=OPERA)(CID=(PROGRAM=oracle)(HOST=MYDBHOST)(USER=oracle))))

  VERSION
INFORMATION:

        TNS
for Linux: Version 11.2.0.3.0 — Production

       
Oracle Bequeath NT Protocol Adapter for Linux: Version 11.2.0.3.0 —
Production

       
TCP/IP NT Protocol Adapter for Linux: Version 11.2.0.3.0 — Production

  Time:
29-JUN-2017 01:21:38

  Tracing
not turned on.

  Tns error
struct:

    ns main
err code: 12541

TNS-12541: TNS:no listener

    ns
secondary err code: 12560

    nt main
err code: 511

TNS-00511: No listener

    nt
secondary err code: 111

    nt OS
err code: 0

To solve this issue, make sure that listener on
the standby database host(s) is running and is able to accept in coming connections
from the primary site. Once listener is started, use tnsping or sqlplus session
from the primary database to connect to the the standby database to confirm whether
connection is made successfully.

Popular Posts — All Times

  • This error means that you are trying to perform some operation in the database which requires encryption wallet to be open, but wallet is …

  • Finding space usage of tablespaces and database is what many DBAs want to find. In this article I will explain how to find out space usage …

  • ORA-01653: unable to extend table <SCHEMA_NAME>.<SEGMENT_NAME> by 8192 in tablespace <TABLESPACE_NAME> This error is q…

  • You may also want to see this article about the ORA-12899 which is returned if a value larger than column’s width is inserted in the col…

  • This document explains how to start and stop an Oracle cluster. To start and stop Grid Infrastructure services for a standalone insta…

  • If you want to know how we upgrade an 11g database to 12c using DBUA,   click here .  For upgrading 12.1.0.1 to 12.1.0.2 using DBUA,   …

  • If database server CPU usage is showing 100%, or high 90%, DBA needs to find out which session is hogging the CPU(s) and take appropriate …

  • By default AWR snapshot interval is set to 60 minutes and retention of snapshots is set to 8 days. For better and precise investigation of…

  • SWAP space recommendation from Oracle corp. for Oracle 11g Release 2 If RAM is between 1 GB and 2 GB, SAWP should be 1.5 times the s…

  • This article explains how to install a 2 nodes Oracle 12cR1 Real Application Cluster (RAC) on Oracle Linux 7. I did this installation on O…

Понравилась статья? Поделить с друзьями:
  • Error title screen
  • Error timeout while connecting to server
  • Error timeout was reached vk api
  • Error timeout was reached linux
  • Error timeout was reached attempt 1 5