Unable to solve the ORA-12514

Hi all

I am running Oracle 11 g under OEL under VirtualBox. I have a default listener LISTENING and created a new listener NEWLIST under/u01/oracle/net and set this directory as TNS_ADMIN value. I want to make a dynamic entry to the db with the listener. Here's my listener.ora and tnsnames.ora files and the output of the lsnrctl commands.

Listener.ora
NEWLIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP) (HOST = 127.0.0.1)(PORT = 2525))
)

tnsnames.ora
NEW =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP) (HOST = 127.0.0.1)(PORT = 2525))
)
(CONNECT_DATA =
(SERVICE_NAME = SERV)
)
)

LSNRCTL STATUS NEWLIST
-----------------------------------------
[oracle@localhost net1] $ lsnrctl status newlist

LSNRCTL for Linux: Version 11.2.0.1.0 - Production on January 13, 2011 00:24:59

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

Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=127.0.0.1) (PORT 2525 =)))
STATUS of the LISTENER
------------------------
Alias newlist
Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production
Start date 12 January 2011 23:42:29
Uptime 0 days 0 h 42 min 30 s
Draw level off
Security ON: OS Local Authentication
SNMP OFF
Parameter Listener of the /u01/oracle/net1/listener.ora file
The listener log file /U01/app/Oracle/diag/tnslsnr/localhost/NewList/alert/log.XML
Summary of endpoints listening...
(DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=127.0.0.1) (PORT 2525 =)))
Summary of services...
Service 'SERV.localdomain' has 1 instance (s).
Instance "orcl", State LOAN, has 1 operation for this service...
Service 'orcl.localdomain' has 1 instance (s).
Instance "orcl", State LOAN, has 1 operation for this service...
Service 'orclXDB.localdomain' has 1 instance (s).
Instance "orcl", State LOAN, has 1 operation for this service...
The command completed successfully

LSNRCTL SERVICES NEW
---------------------------------------
[oracle@localhost net1] $ lsnrctl services

LSNRCTL for Linux: Version 11.2.0.1.0 - Production on January 13, 2011 00:25:51

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

Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=127.0.0.1) (PORT = 2525)) (CONNECT_DATA = (SERVICE_NAME = SERV)))
Summary of services...
Service 'SERV.localdomain' has 1 instance (s).
Instance "orcl", State LOAN, has 1 operation for this service...
Managers:
"DEDICATED" set up: 0 denied: 0 status: ready
LOCAL SERVER
Service 'orcl.localdomain' has 1 instance (s).
Instance "orcl", State LOAN, has 1 operation for this service...
Managers:
"DEDICATED" set up: 0 denied: 0 status: ready
LOCAL SERVER
Service 'orclXDB.localdomain' has 1 instance (s).
Instance "orcl", State LOAN, has 1 operation for this service...
Managers:
"D000" put in place: 0 denied: current: 0 0 max: 1022 State: loan
DISPATCHER < machine: localhost.localdomain, pid: 2389 >
(ADDRESS = (PROTOCOL = tcp (PORT = 53741))(HOST=localhost.localdomain))
The command completed successfully

TNSPING NEW
---------------------
[oracle@localhost net1] $ new tnsping

AMT Ping utility for Linux: Version 11.2.0.1.0 - Production on January 13, 2011 00:26:11

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

Use settings files:
/U01/app/Oracle/product/11.2.0/dbhome_1/network/admin/SQLNET.ora

TNSNAMES adapter used to resolve the alias
Try to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP) (HOST = 127.0.0.1)(PORT = 2525))) (CONNECT_DATA = (SERVICE_NAME = SERV)))
OK (0 msec)

SQLPLUS SYSTEM/ORACLE@NEW
--------------------------------------------------
[oracle@localhost net1] $ sqlplus system/oracle@new

SQL * more: Production of release 11.2.0.1.0 Thu Jan 13 00:27:32 2011

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

ERROR:
ORA-12514: TNS:listener is not currently of service requested in connect
descriptor of

I had issued these commands after starting the listener to record the database dynamically with the listener
ALTER system set service_name is serv scope = mΘmoire;.
ALTER system set local_listener = NEW scope = mΘmoire;
editing the system registry;

Please advise advise what's wrong with that.

OK, here is the demo that I promised

First of all, let's take a look on my tnsnames.ora for reference. Note the entries for larry and moe differ only in the way specified SERVICE_NAME

[oracle@vmlnx01 admin]$ cat tnsnames.ora
# tnsnames.ora Network Configuration File: /ora00/app/oracle/product/10.2.0/db_1/network/admin/tnsnames.ora
# Generated by Oracle configuration tools.

larry =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = vmlnx01.vmdomain)(PORT = 1521))
    )
    (CONNECT_DATA =
      (SERVICE_NAME = vlnxora1.mydomain)
    )
  )

moe =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = vmlnx01.vmdomain)(PORT = 1521))
    )
    (CONNECT_DATA =
      (SERVICE_NAME = vlnxora1)
    )
  )

Now we will connect to the database and look at the init key parms. Note the value of db_domain sucks and service_name is simple.

[oracle@vmlnx01 admin]$ sqlplus / as sysdba

SQL*Plus: Release 10.2.0.4.0 - Production on Thu Jan 13 20:42:34 2011

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.

Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> show parameter db_domain

NAME     TYPE VALUE
------------------------------------ ----------- ------------------------------
db_domain     string
SQL> show parameter  service

NAME     TYPE VALUE
------------------------------------ ----------- ------------------------------
service_names     string vlnxora1
SQL> exit

Now check the listner said. Note that the service names are simple and corresponding to the value of the init parm service_name.

[oracle@vmlnx01 admin]$ lsnrctl status

LSNRCTL for Linux: Version 10.2.0.4.0 - Production on 13-JAN-2011 20:42:57

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

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=vmlnx01.vmdomain)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 10.2.0.4.0 - Production
Start Date                13-JAN-2011 20:18:25
Uptime                    0 days 0 hr. 24 min. 32 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /ora00/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
Listener Log File         /ora00/app/oracle/product/10.2.0/db_1/network/log/listener.log
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=vmlnx01.vmdomain)(PORT=1521)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC0)))
Services Summary...
Service "PLSExtProc" has 1 instance(s).
  Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
Service "vlnxora1" has 1 instance(s).
  Instance "vlnxora1", status READY, has 1 handler(s) for this service...
Service "vlnxora1XDB" has 1 instance(s).
  Instance "vlnxora1", status READY, has 1 handler(s) for this service...
Service "vlnxora1_XPT" has 1 instance(s).
  Instance "vlnxora1", status READY, has 1 handler(s) for this service...
The command completed successfully

Now let's try a couple of connections. Don't forget the two entries in my tnsnames file? Larry specified with the domain name, but that we do not know the listener.

[oracle@vmlnx01 admin]$ sqlplus scott/tiger@larry

SQL*Plus: Release 10.2.0.4.0 - Production on Thu Jan 13 20:43:15 2011

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.

ERROR:
ORA-12514: TNS:listener does not currently know of service requested in connect
descriptor

Enter user-name: 

But moe used simple service name, known to the listener.

[oracle@vmlnx01 admin]$ sqlplus scott/tiger@moe

SQL*Plus: Release 10.2.0.4.0 - Production on Thu Jan 13 20:43:25 2011

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.

Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

We will now modify the init parms

SQL> conn / as sysdba
Connected.
SQL> alter system set db_domain='mydomain' scope=spfile;

System altered.

SQL> startup force

We have only changed the db_domain, but what do we see on the reboot? The value has been added to service_name, even if we have not changed that one.

ORACLE instance started.

Total System Global Area  285212672 bytes
Fixed Size    1267068 bytes
Variable Size   83888772 bytes
Database Buffers  197132288 bytes
Redo Buffers    2924544 bytes
Database mounted.
Database opened.
SQL> show parameter db_domain

NAME     TYPE VALUE
------------------------------------ ----------- ------------------------------
db_domain     string mydomain
SQL> show parameter service

NAME     TYPE VALUE
------------------------------------ ----------- ------------------------------
service_names     string vlnxora1.mydomain
SQL> exit
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

And now what is the listener knows? Service names now reflect the new value of the init parm.

[oracle@vmlnx01 admin]$ lsnrctl status

LSNRCTL for Linux: Version 10.2.0.4.0 - Production on 13-JAN-2011 20:44:25

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

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=vmlnx01.vmdomain)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 10.2.0.4.0 - Production
Start Date                13-JAN-2011 20:18:25
Uptime                    0 days 0 hr. 26 min. 0 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /ora00/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
Listener Log File         /ora00/app/oracle/product/10.2.0/db_1/network/log/listener.log
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=vmlnx01.vmdomain)(PORT=1521)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC0)))
Services Summary...
Service "PLSExtProc" has 1 instance(s).
  Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
Service "vlnxora1.mydomain" has 1 instance(s).
  Instance "vlnxora1", status READY, has 1 handler(s) for this service...
Service "vlnxora1XDB.mydomain" has 1 instance(s).
  Instance "vlnxora1", status READY, has 1 handler(s) for this service...
Service "vlnxora1_XPT.mydomain" has 1 instance(s).
  Instance "vlnxora1", status READY, has 1 handler(s) for this service...
The command completed successfully

NOW, what do we expect to happen when we specify larry and moe as net service names?

[oracle@vmlnx01 admin]$ sqlplus scott/tiger@larry

SQL*Plus: Release 10.2.0.4.0 - Production on Thu Jan 13 20:44:37 2011

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.

Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> exit
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
[oracle@vmlnx01 admin]$ sqlplus scott/tiger@moe

SQL*Plus: Release 10.2.0.4.0 - Production on Thu Jan 13 20:45:07 2011

Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.

ERROR:
ORA-12514: TNS:listener does not currently know of service requested in connect
descriptor

Enter user-name:
[oracle@vmlnx01 admin]$ exit
logout

Tags: Database

Similar Questions

  • Unable to solve the ORA-12154: TNS: could not resolve the connect identifier specified

    Hi friends,

    I'm unable to resolve ORA-12154: TNS: could not resolve the connect identifier specified, error:

    C:\Windows\System32 > sqlplus scott/tiger@ORADATA

    SQL * more: Production release 11.2.0.1.0 on Sun Feb 2 13:46:10 2014

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

    ERROR:

    ORA-12154: TNS: could not resolve the connect identifier specified

    SQL > select database_name from v$ database;

    DATABASE_NAME

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

    ORADATA

    SQL > select instance_name from v$ instance;

    INSTANCE_NAME

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

    oradata

    tnsnames.ora

    ============

    ORADATA =

    (DESCRIPTION =

    (ADDRESS_LIST =

    (ADDRESS = (PROTOCOL = TCP)(HOST=himanshu-PC) (PORT = 1521))

    )

    (CONNECT_DATA =

    (SERVICE_NAME = oradata)

    (SERVER = DEDICATED)

    )

    )

    Listener.ora

    =========

    LISTENER =

    (DESCRIPTION_LIST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP) (HOST = himanshu-PC)(PORT = 1521))

    )

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))

    )

    )

    SID_LIST_LISTENER =

    (SID_LIST =

    (SID_DESC =

    (GLOBAL_DBNAME = ORADATA)

    (ORACLE_HOME = G:\app\himanshu\product\11.2.0\dbhome_1)

    (SID_NAME = oradata)

    )

    )

    SQLNET.ora

    ========

    SQLNET. AUTHENTICATION_SERVICES = (NTS)

    C:\Windows\System32 > lsnrctl status

    LSNRCTL for 32-bit Windows: Version 11.2.0.1.0 - Production on February 2, 2014 13:53:37

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

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP) (HOST = himanshu-PC)(PORT=1521)))

    STATUS of the LISTENER

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

    Alias LISTENER

    Version TNSLSNR for 32-bit Windows: Version 11.2.0.1.0 - Production

    Start date February 2, 2014 13:29:35

    Uptime 0 days 0 h 24 min 6 sec

    Draw level off

    Security ON: OS Local Authentication

    SNMP OFF

    Listener parameter File G:\app\himanshu\product\11.2.0\dbhome_1\network\admin\listener.ora

    G:\app\himanshu\diag\tnslsnr\himanshu-PC\listener\alert\log.XML log listener

    Summary of endpoints listening...

    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp) (HOST = himanshu-PC)(PORT=1521)))

    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))

    Summary of services...

    Service 'ORADATA' has 2 occurrences.

    Instance "ORADATA', status UNKNOWN, has 1 operation for this service...

    Instance "oradata' READY State, has 1 operation for this service...

    Service 'ORADATAXDB' has 1 instance (s).

    Instance "oradata' READY State, has 1 operation for this service...

    The command completed successfully

    Kindly guide whats wrong with my setup.

    You can remove your tnsnames.ora if he isn't there the other TNS inside. and use netmanager

    http://docs.Oracle.com/CD/E11882_01/network.112/e41945/AdminTools.htm#NETAG216

    Concerning

  • Today I imported recently an android project in my workspace in eclipse android 4.2.2 then when I run the application it is show Eroor: unable to solve the target 'unknown target problem Android android-7 "tru."

    Eclipse SDK

    Version: 4.2.2
    Build id: M20130204-1200

    When I right click on the app and clcik as run as application Android Iam see following errors: -.

    The path location type Resource Description
    Is only permitted to line /tru system AndroidManifest.xml 20 problem with lint Android apps

    The path location type Resource Description
    Is only permitted to line /tru system AndroidManifest.xml 20 problem with lint Android apps

    The path location type Resource Description
    Unable to solve the target 'unknown target problem Android android-7 "tru."

     

    including AndroidManifest.xml is as below:

     

     


    http://schemas.Android.com/APK/RES/Android ".
    package = "com. Tru.
    Android: versionName = "3.47" android: versionCode = "073434" >



    Android: largeScreens = "true".
    Android: anyDensity = "true" / >





    Error: it is only allowed to the system applications

     

     

    A number of permissions of the Android app is not supported. The impact of these unsupported features varies.

    Visit this link and check the authorization of any authorized all in porting the app... If the permissions that your application requires in the right list you might need to make some changes in your application

    https://developer.BlackBerry.com/PlayBook/Android/apisupport/unsupportedapi_playbook_app_permissions...

  • The ORA-12514 error when you try to connect remotely

    I am trying to connect remotely to the 12 c with SQL Developer Oracle database. In order to connect remotely from another computer, on the server that is running Oracle, I opened a port in the firewall of Windows 7. The listener.ora file, as you can see below, has its default listening port set to localhost.  So, I created second listener called REMOTE_LISTENER, to listen on a different port to 1521.  I put it in place of 1531.  That part worked, but now the listener isn't me in due to this error IN what ORA-12514 earphone does not currently of service required to connect descriptor.

    This is the setting of the SQL Developer on the remote computer:

    CONNECT.JPG

    It's the side server, listener.ora file:

    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\app\Owner\product\12.1.0\dbhome_1)
    (= Extproc PROGRAM)
    (ENVS = "EXTPROC_DLLS=ONLY:C:\app\Owner\product\12.1.0\dbhome_1\bin\oraclr12.dll")
    )
    )

    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost) (PORT = 1521))
    (SERVICE_NAME = editor)
    )
    )

    REMOTE_LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.2.19)(PORT = 1531))
    (SERVICE_NAME = editor)
    )
    )

    It's the tnsnames.ora file:

    PUBLISHER =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.2.19)(PORT = 1531))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = editor)
    )
    )

    LISTENER_EDITOR =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost) (PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = editor)
    )
    )


    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))
    )
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    )
    )

    As you can see, I edit the file tnsnames.ora slightly to allow a connection to the database of the editor, but my edit does not seem to fix anything. You will notice that I also updated the port 1531 to match the listener in the listeners.ora file.  I can not connect with SQL Developer on the client side. I am able to connect locally with the SQL Developer on the server, but I need to access the database from a different computer.   I am able to connect to the database using SQL more on the server.

    I ran lsnrctl service from the command prompt. Here is the output of this command:

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = IPC) (KEY = EXTPROC1521)) (SERVICE_NAM

    E = editor))

    Summary of services...

    Service 'CLRExtProc' has 1 instance (s).

    Instance of 'CLRExtProc', status UNKNOWN, has 1 operation for this service...

    Managers:

    "DEDICATED" set up: 0 denied: 0

    LOCAL SERVER

    Service "Editor" has 1 instance (s).

    Instance "editor", State LOAN, has 1 operation for this service...

    Managers:

    "DEDICATED" set up: 0 denied: 0 status: ready

    LOCAL SERVER

    Service 'editorXDB' has 1 instance (s).

    Instance "editor", State LOAN, has 1 operation for this service...

    Managers:

    "D000" put in place: 0 denied: current: 0 0 max: 1022 State: loan

    DISPATCHER < machine: PC SHIERS, pid: 1580 >

    (ADDRESS = (PROTOCOL = tcp) (HOST = Shiers-PC)(PORT=49367))

    Service 'pdborcl' has 1 instance (s).

    Instance "editor", State LOAN, has 1 operation for this service...

    Managers:

    "DEDICATED" set up: 0 denied: 0 status: ready

    LOCAL SERVER

    The command completed successfully

    As you can see, it shows a service instance named "editor."  It comes, it does not say which port.  You will also notice a service named "editorXDB". Where it went out, I don't know.  It is certainly not in the tnsnames.ora file, and whenever I run the lsnrctl services command port number changes.  In any case, this part, I think, is a red herring.  I've been spinning my wheels on this one for a few days.  If anyone can help me with the steps to connect to a remote computer via SQL Developer, it would be greatly appreciated.

    So now what would be better, it's if we could get the database to dynamically register with the listener as it should so that I get the READY State.  Could help you with this please, then I think we're done.


    What is the setting for the LOCAL_LISTENER parameter in your database?  To keep things simple, it must be null, which allows the DB to-default - use the 1521 port to communicate with the listener for the record.

    See: (exploring the-local_listener-parameters)

    (SID_DESC =

    (SID_NAME = editor)

    (ORACLE_HOME = C:\app\Owner\product\12.1.0\dbhome_1)

    (GLOBAL_NAME = editor)

    )

    )


    BTW, * if * you insist on using a listener.ora and you insist on the use of the SID_LIST section in this document, you should really use SERVICE_NAME instead of SID_NAME.

  • Microsoft fix it Center unable to solve the problem because the error code 800154

    My computer is running slow and sometimes hangs.  I tried to improve or correct this problem through the difficulty it Center Microsoft.  I have programs stalled unin I thought my being the cause of (these) problems.  I get an "error code 800154" and this error code blocks any other measure to correct my problem.  Can you help me?

    Harold Nelson * E-mail address is removed from the privacy *   

    Hello

    (1) did you do changes on the computer before this problem?

    (2) what is the full error message or error code?

    (3) when you receive the error message, it is trying to run the fix it?

    I would suggest trying the following methods and check if it helps.


    Method 1:

    Microsoft Safety Scanner: http://www.microsoft.com/security/scanner/en-us/default.aspx
    Note: The Microsoft Safety Scanner ends 10 days after being downloaded. To restart a scan with the latest definitions of anti-malware, download and run the Microsoft Safety Scanner again.

    Note: the data files that are infected can be cleaned by removing the file completely, which means there is a risk of data loss.

    Method 2:

    Put the computer in a clean boot state, then check if that helps you.

    How to solve the problem by running the clean boot in Windows 7: http://support.microsoft.com/kb/929135 
                                                                                                                         
    Note: once you have completed troubleshooting, perform the steps from step 7: to reset the computer as usual.


    Method 3:

    Slow PC? Optimize your computer for peak performance
    http://www.Microsoft.com/athome/Setup/optimize.aspx

    If the error is due to this problem, then I recommend you to get in touch with Microsoft Fix it Center forums

    http://social.Microsoft.com/forums/is/fixitcenter/threads

    It will be useful.

  • my computer hp zd 8000 laptop has a line of 1.25 verical white up and down the monitor, unable to solve the problem

    my computer hp laptop 2002 zd 8000 has a vertical white line from top to bottom, 1.25 impossible to remove, your suggestion would be useful.

    Hi, Nylachance,

    Open the menu of the monitor by pressing the button on the console for the functions in the menu. This will be one of the buttons on the face of the screen. If you encounter problems, find the button press, consult the operating instructions of your particular model camera.

    Scroll through the menu options with the '+' and '-' buttons on the screen until you find the option "Degauss".

    Press the 'Enter' to the demagnetization of the screen. It aims to realign the magnetic field of the monitor, potentially solve your problem.

    Go to your video card manufacturer's Web site and visit the "Support" page Your computer's documentation should include the manufacturer and model of your video card number. If you no longer have the manual for your computer, visit the manufacturer's website; There is a PDF version available in the Support"" section.

    Click on the section "Downloads" of the support page and enter your specific video card model number to locate your required driver.

    Download the driver and save it to your desktop.

    Double-click the installation file to start the process. Follow the on-screen instructions to update your driver, who usually has to agree to a license agreement.

    Restart your computer and your monitor.

  • ExplorerFrame.dll is not working and unable to solve the problem of other similar positions. Who can help me?

    Windows Vista Edition Home Premium. I can't looking for photos, Control Panel, computer etc... He said: "class not registered" when I click on any folder. I googled the error and solutions must go to cmd.exe and type regsvr32 ExplorerFrame.dll. Do that and it doesn't work. I get a response that says: "ExplorerFrame.dll" module is not compatible with the version of Windows that you are running. Check if the module is compatible with a x 86 (32 bit) or x 64 (64-bit) version of regsvr32.exe. »

    I also tried sfc/scannow and that crosses and said errors were found and he was not able to fix all the. It's that I got. I hope that someone who has had this problem can help me find a solution.

    Kevin

    Hi Kevin, welcome Microsoft answers forum! You did changes to the computer? Have you installed the latest windows updates? Step 1: Check if windows is enabled, if not, go ahead and activate windows how to activate Windows Vista http://support.microsoft.com/kb/940315 step 2: install the latest windows updates.

    Step 3: Check with a different user profile

    If you do not have a different user account, you will need to create a.  If everything works fine with a different user profile, you can infer that the user profile is damaged, click on the link to find out how to solve this problem.

    Difficulty of a corrupted user profile

    http://Windows.Microsoft.com/en-us/Windows-Vista/fix-a-corrupted-user-profile

    Step 4: Online a scanner for any threat and try to correct

    http://OneCare.live.com/site/en-us/Center/cleanup.htm

    You can check the link that addresses a similar issue and try to install the hotfix mentioned in KB 935855 http://social.technet.microsoft.com/Forums/en-US/itprovistadesktopui/thread/1480f05f-f2a5-4e43-9c78-39ddf9193d93

    Thank you, and in what concerns:

    Ajay K

    Microsoft Answers Support Engineer

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • BlackBerry Smartphones Bouygue such unable to solve the pb connection

    Hello

    I contact for a month with webmail bouygue service to resolve a major BP with my internet connection and the Web-based e-mail. According to them all my services are increasing and running, but they do not know why I can not receive emails, or connect to the internet. It was all working well for the previous three months and it has just stopped working

    Annuary services are reset to zero,

    BlackBerry internet services work

    etc... It's a mystery to them

    What would be the procedure to resolve this problem, reset everything? All ideas

    Has anyone met a such pb and how solve you it... If you did?

    See you soon

    Hey,.

    OK not solved yet pb / sent bb for repair but ddnt found nothing...

    If I do a diagnosis =

    ping echo no

    and is not in bb server. I have an e-mail address registered at bouygue bb, according to them, should be enough.

    any ideas.

    I've actually found a lot of similar pb on the forums, this seems to be a common problem. It would be good that ppl bb look at this!

    see you soon

    and thks

  • My error reports windows 8024402F on run windows update. FixIt unable to solve the problem.

    I was faced this problem of win vista do not update on windows update is running. Error reported is 8024402F. I tried to do a full disk check and also ran mic. FixIt two or three times. The Fixit says that the error has been resolved, but it remains. My security essentials is not also updated and it is also in yellow.

    Please provide assistance.
    Akhilesh Das
    India

    0X8024402F WU_E_PT_ECP_SUCCEEDED_WITH_ERRORS cab file external treatment is completed with errors.

    If you have tried the Fixit the answer, I suggest that you manually advance in long lists

    http://support.Microsoft.com/kb/836941

  • Why do I to a new order of creative cloud every month after that online help is unable to solve the same problem of billing again and again. Up to 4 am trying to fix this once per month

    Once per month for 6 months, I get an email saying that my Adobe CC will be cancelled. So I contact online support to fix it. After going through several stages as the change of the mode of payment by myself does not help person gets actually agree to a change in payment. Good that it is corrected. A month later same email appears. Go through the same process with online help. He swears that it is 150% fixed. A month later the same email appears. This lasts for months now. The people of the online help can't fix actually. What makes it so frustrating is that they absolutely refuse to upgrade the issue that extends beyond the online help for the India Center, even if after going through the very same thing month after month. There is something wrong beyond what may set the guys of the India online help. Does anyone know how to get in touch with real Adobe USA customer service?

    Well Brent you must reach out to the support for the resolution of the issue.

    Contact the customer service

    * Be sure to stay connected with your Adobe ID before accessing the link above *.

  • Unable to solve the query

    Hello

    I have the following table.

    Complex No.Amount complexThe child BillAmount of the invoiceDate of invoice
    12390002452000October 1, 13
    1234563000November 1, 13
    123567400031 October 13

    My requirement is to generate the next report

    Complex No.Amount complexUntil the DateLater date
    123900060003000

    Where Till Date is the sum of the amount of the invoice dated of the < = 31 October 13 and dated in the future is the sum of the amount of the invoice dated dated > 31 - OCT-13.

    Can someone help me with the query?

    with t as)

    Select 123 complex_no 9000 complex_amount, child 245, invoice_amount 2000, date ' 2013-10-01' invoice_date of all the double union

    Choose 123, null, 456, 3000, date '' 2013-11-01 all the double union

    Choose 123, null, 567, 4000, date '' 2013-10-31 of the double

    )

    Select complex_no,

    Sum (complex_amount) complex_amount,

    Sum (case when invoice_date<= last_day(sysdate)="" then="" invoice_amount="" end)="">

    sum (case when invoice_date > last_day (sysdate) then invoice_amount end) future_date

    t

    Complex_no group

    /

    COMPLEX_NO COMPLEX_AMOUNT TILL_DATE FUTURE_DATE
    ---------- -------------- ---------- -----------
    123 9000 6000 3000

    Scott@ORCL >

    SY.

  • Application of computer Virtual Image precompiled App development database: start of the CBD fails with ORA-12514

    Hello

    I have a few questions about the pre built Database App Development VM image.

    I am trying to use it to familiarize myself with Oracle 12 c and would like to receive feedback on the following points:

    1. When you open a terminal session and then trying to connect as the sysdba, it automatically connects me to the ORCL PDB. How does this happen? I have just a sqlplus/nolog followed normal con sys/oracle as a sysdba. My ORACLE_SID is set to cdb1. Thank you I can change session at the root, etc. - my query is how by default does me to the ORCL PDB?
    2. If I connect to the container root of the CBD, namely sqlplus sys/oralce@cdb1 and then issue an immediate halt, the CBD closes down, but in the process gives an ORA-12514 error - after that I am unable to start CDB, as shows the ORA-12514 error when I try to sys/oracle@cdb1 conn - TNS:Listener is not currently of service requested in connect appears.

    For directions to the two above would be appreciated.

    Thank you, Mohan

    All,

    Well, I have fixed it for myself.

    TWO_TASK env var has been ORCL beforehand to be close the CDB.

    Disabling then close the container and restarting it fixed my error ORA-12514.

    Kind regards

    Mohan

  • Tnsping is works but get the error ORA-12514

    Hello

    I configured a RAC environment.

    tnsping is functional and able to ping scan ip as well but is the ORA-12514 error connecting.

    Thank you

    Rahul Joshi

    You must register your services with SCAN listeners, probably with

    ALTER system set remote_listener ='rac - scan.sigmasys .net: 1521';

  • Unable to recover the TCP/IP connectivity & corrupt Winsock keys with error code 11003

    After being unable to solve the problems created by the McAfee download causing failure DComm and lost connectivity I uninstalled SP 3 and reinstalled.

    I have a corrupted Winsock2 registry and auto config proxy TCP/IP keys and detect the proxy appear as 'not available '.

    I tried to reset TCP/IP using netsh int ip reset c:\ reseting.txt and also the use of the patch tool.  The error code is the function IntHelper.dll in IPMONTR. DLL could start with error code 11003.

    I am able to visual determine that the winsock keys are corrupted, as described in kb/811259. I tried to reset the winsock2 registry keys by using the netsh winsock reset command. The error code is the IntHelperDll function in IPMONR. DLL could start with error code 11003.

    I would like any suggestions or ideas that anyone can have for the restoration of connectivity.

    Oh, and I'm not going to use McAfee products in the future.

    Thank you.

    Hi there nzcleman,

    Download and run LSPFix from here: http://www.cexx.org/lspfix.htm
    Read the instructions on how to use LSPFix carefully here: http://www.bleepingcomputer.com/tutorials/tutorial59.html

    Once executed, restart your system.

    Now download and run WinsockXPFix from here: http://majorgeeks.com/WinSock_XP_Fix_d4372.html
    Restart your system once again WinsockXPFix finished (even though it should restart for you).

    I hope this will help :)

    --> I hope this helps! Please mark it as correct answer or vote if it does :)<>

    http://www.pcuk.biz - my website

    Info from Microsoft about phishing . Information from Microsoft on the fake security software

  • Impossible to solve the printer problem.

    my printer needs to troubleshooting when I troubleshoot the process didn't end well. What could be the problem?

    Original title: printer troubleshooting

    Hi Moeket,

    Thanks for posting in the Microsoft Community.

    From the description, it seems that you are unable to solve the problem of the printer.

    Regarding the question, I need more information to solve the problem.

    1. Which is exactly the problem that you are facing with printer?
    2. What happens when you try to solve the problems?
    3. You receive an error message/code?
    4. What is the number and model of the printer
    5. What is a printer wired or wireless?
    6. The printer is connected over the network to your computer?
    7. Were there any hardware or software changes made on the computer before this problem?
    8. Have you installed a third-party software in calculation?

    I suggest to run the Print Troubleshooter and check to see if it helps:

    You can see the Microsoft article and check if that helps:

    http://Windows.Microsoft.com/en-us/Windows7/open-the-printer-Troubleshooter

    You can also view the Microsoft Help article.

    http://Windows.Microsoft.com/en-us/Windows/printer-problems-in-Windows-help#fix-printer-problems=Windows-7&V1H=win8tab1&V2H=win7tab2&V3H=winvistatab1&v4h=winxptab1

    Please answer us with more information to help.

    Thank you.

Maybe you are looking for

  • How can I send emails in bulk to our members of the 170 club?

    I want to use Thunderbird as the e-mail program for our boat with 170 members club. We send an update to all members once a week, but Thunderbird will not send this number in one batch. If this is not possible, how can I split into acceptable groups

  • How can I save my tabs for the next time I open the browser?

    In the previous edition (3.6.12) if I want to close my pc, I had the ability to save my tabs for the next time... I can't find this option in this version.

  • Satellite A500-17 x restarts

    I recently received my A500-17 x back from repair, and now whenever I play a game, about 10 to 20 minutes in (sometimes as little as 5 seconds, however.) will restart the laptop. No error/blue screen. It happened only once before the repair as far as

  • "Standby" is dark or gray

    When I click on the "Start" button, I go down newspaper and restart but the "Standby" button is dark

  • Simulator of OS6 and torch

    When I try to run the torch on OS5 or OS6 Simulator, he breaks with a null pointer exception. None of my code is executed.  Attached to peak.  (Eclipse) What is not seen in the photo is the popup indicating the composite number waiting for me to clic