ORA-02019 - need another set of eyes

It must be fair in my driveway, but something is cheating on me.

Try to use db link returns the equivalent of ora-12154/tns-03505 but tnsping says its there

Connected to:

Oracle Database 11 g Release 11.2.0.2.0 - 64 bit Production

SQL > select count (*) in the attendee@epm;

Select count (*) in attendee@epm

*

ERROR on line 1:

ORA-02019: description of the connection to the remote database not found

SQL > select host dba_db_links where db_link = 'EMP ';

HOST

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

epmdev. World

SQL >! epmdev.World tnsping

AMT Ping utility for Linux: Version 11.2.0.2.0 - Production on 16 July 2015 10:21:47

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

Use settings files:

/U01/app/Oracle/product/11.2.0.2/PS/network/admin/SQLNET.ora

TNSNAMES adapter used to resolve the alias

Try to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = xxsqlsrvrxx) (port = 1521)) (CONNECT_DATA = (SID = epmdev)) (HS = OK))

OK (0 msec)

SQL > show the global_names parameter

VALUE OF TYPE NAME

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

global_names boolean FALSE

SQL > show the db_domain parameter

VALUE OF TYPE NAME

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

db_domain chain

A private DB link? I forgot once when I ORA-02019

Tags: Database

Similar Questions

  • stack of quotations - need another pair of eyes

    Oracle 11.2.0.1 SE - One, 64-bit
    Oracle Linux 5.6 x 86-64

    Given the following procedure and focusing on the call to dbms_scheduler
    create or replace 
    PROCEDURE dw.fix_job_timezone(
        p_jobschema_in IN VARCHAR2 default null) 
    IS
      
    type sched_jobs_tbl_type
    IS
      TABLE OF dba_scheduler_jobs.job_name%TYPE INDEX BY binary_integer;
      t_sched_jobs sched_jobs_tbl_type;
      
      v_job          VARCHAR2(128);
    BEGIN
      SELECT
        job_name 
      bulk collect INTO
        t_sched_jobs
      FROM
        dba_scheduler_jobs
      WHERE
        owner = p_jobschema_in
      ORDER BY
        job_name ;
        
      FOR i IN t_sched_jobs.first .. t_sched_jobs.last
      LOOP
        v_job := '"' || p_jobschema_in || '"."'||t_sched_jobs(i) || '"';
        dbms_output.put_line('Processing '||v_job);
        dbms_scheduler.set_attribute_null (v_job, 'START_DATE');  
      END LOOP;
    
    END;
    If the owner of the procedure above will connect and call dbms_scheduler directly:
    SQL> show user
    USER is "DW"
    SQL> exec DBMS_SCHEDULER.set_attribute_null ('"ESTEVENS"."EDS_SQLNAV_JOB1"', 'ST
    ART_DATE');
    
    PL/SQL procedure successfully completed.
    However, when you call the procedure above:
    SQL> exec dw.fix_job_timezone('ESTEVENS');
    Processing "ESTEVENS"."EDS_SQLNAV_JOB1"
    BEGIN dw.fix_job_timezone('ESTEVENS'); END;
    
    *
    ERROR at line 1:
    ORA-27486: insufficient privileges
    ORA-06512: at "SYS.DBMS_ISCHED", line 4398
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 2892
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 3028
    ORA-06512: at "DW.FIX_JOB_TIMEZONE", line 78
    ORA-06512: at line 1
    
    
    SQL>
    Maybe a problem with the quote encompassing, or lack of?
    Change the line key to
    dbms_scheduler.set_attribute_null ('v_job', 'START_DATE');  
    And we get
    SQL> exec dw.fix_job_timezone('ESTEVENS');
    Processing "ESTEVENS"."EDS_SQLNAV_JOB1"
    BEGIN dw.fix_job_timezone('ESTEVENS'); END;
    
    *
    ERROR at line 1:
    ORA-27476: "DW.V_JOB" does not exist
    ORA-06512: at "SYS.DBMS_ISCHED", line 4398
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 2892
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 3028
    ORA-06512: at "DW.FIX_JOB_TIMEZONE", line 78
    ORA-06512: at line 1
    Or
    dbms_scheduler.set_attribute_null ('''||v_job||''', 'START_DATE');  
    And get
    SQL> exec dw.fix_job_timezone('ESTEVENS');
    Processing "ESTEVENS"."EDS_SQLNAV_JOB1"
    BEGIN dw.fix_job_timezone('ESTEVENS'); END;
    
    *
    ERROR at line 1:
    ORA-27452: '||v_job||' is an invalid name for a database object.
    ORA-06512: at "SYS.DBMS_ISCHED", line 4398
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 2892
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 3028
    ORA-06512: at "DW.FIX_JOB_TIMEZONE", line 78
    ORA-06512: at line 1
    dbms_scheduler.set_attribute_null ('v_job', 'START_DATE');  
    And get
    ERROR on line 1:
    ORA-27476: "DW. V_JOB' does not exist
    ORA-06512: at "SYS." DBMS_ISCHED', line 4398
    ORA-06512: at "SYS." DBMS_SCHEDULER', line 2892
    ORA-06512: at "SYS." DBMS_SCHEDULER', line 3028
    ORA-06512: at "DW. FIX_JOB_TIMEZONE', line 78
    ORA-06512: at line 1
    I’ve been chasing my tail to get the right combination of single-quotes and possibly concatenation, but it has eluded me.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    Hello

    EdStevens wrote:
    ... But in this case, the owner IS the Summoner.

    No matter who is the Summoner. In an AUTHID DEFINE strored procedure, privileges must be granted directly to the owner of the procedure.

    And the same owner was able to make the call directly, but not in a procedure that the same owner... property.

    Exactly. The owner must have had some privileges granted only via a role.

  • Open the .txt file - need another pair of eyes

    Hi folks - the attachment opens in Notepad and MS Excel as 9999 rows x 3 columns (values X, Y, Z, respectively).  I tried different delimiters using "Worksheet reading File.vi" to put in all the data, but only succeeded in bringing in the first column of 9999 values.  Can someone take a look at this and give me the trickto get it open using LabVIEW?  I think it's something very simple, but it is a Monday, isn't it?

    Thanks in advance.

    Don

    Make sure you select '-' code display.  Otherwise, it's actually \\s which is nothing. In addition, you can simply use the constant of space as did the person above this post.

  • HFM another set hierarchy in place the question

    Hello!
    I need to set up another hierarchy who said ' keep company (a company consolidated level) then company B (one of her children) him. I can see how to set up the hierarchy which would add things together, but not how to set one up that would have subtracted from another entity.

    If someone has been able to do this successfully? Is this possible? If so, please help :)

    Thank you!
    Kristen

    There is no easy way to do it. You couldn't have something with the rules, but I wouldn't recommend it. Why not establish a hierarchy that omits the entity you want to take away or create a new node that does not include it.

  • 6 more need another apple ID after reset

    6 more need another apple ID after reset!

    Is your Apple ID?

    If this isn't the case, you must contact the original owner and ask him to remove this iPhone in the devices list. Otherwise, your iPhone will be a useless brick.

    Find my iPhone Activation Lock: a mechanism of extraction of the previous owner - Apple Support

  • I have an apple tv, model A1469. I can access my cable network to play in another room? Or do I need another cable box? Thank you.

    I have an apple tv model A1469. It can access what is played on my receiver in another room? Or do I need another cable box for that? Thank you.

    The AppleTV doesn't work at all with your decoder.  It is a separate system.  Thus it will not transfer from one box to the other

  • When you perform a reset wilI it allow you to do another set of recovery disc

    When you perform a reset to factory setting on windows 8. It will allow you to make another set of recovery disc?

    Hello

    It depends on how do the reset

    (a) using a new set of HP or the recovery partition (no game has been created): Yes

    (b) using a set that was created from your machine before: No.

    Kind regards.

  • I hae a Trogan Virus to also keep a large number of viruses, too... from Windows Security Alert. The Microsoft malicious software tool does not work on Vista 64. I need another product.

    I wouldn't not viruses. I ran scans all time th. My Windows Security Alert was for a few hours and I can't ge to do anything. He keeps asking me to run the installation and then refuses, saying that all ready I have. I ran about three virs scan as this has been posted yet and I didn't have a virus. He said that maybe it's a thing.

    I tried to run th malicious Malware tool, just in case the virus were real, but he came upward and sad for a Vista 64 bit it was not compatible and I need another product. Is this one?

    E-mail address is removed from the privacy *.

    Judging strictly from your post it looks like you have too many malware scanners installed which can decrease your overall protection in the end.

    No matter what scanners you used, please follow the instructions below. Reply back with the results and include a list of all malware/antivirus scanners software that are currently installed on your computer.

    Restart the computer in Safe Mode with network. Click HERE. Download Malwarebytes. Update Malwarebytes and perform a scan.  Choose whether to remove anything found. Once completed click HERE and download Superantispyware Portable. Perform a quick scan again remove anything found.

  • I'm sorry for being stupid. I have read several posts, but I still don't know if I need another spyware program to run with MSE ect IObit 360 or Malwarebytes. What is MSE protects me from all known threats?

    I'm sorry for being stupid. I have read several posts, but I don't know if I need another spyware program to run along the coast MSE. IObit 360 ECT or malwarebytes. MSE protects me from all know threats?

    MSE is all that you need to protect you from antimalware.  The definition files are updated approximately every 24 hours, and it does a great job to protect you.  NO anti-malware product you will protect against threats KNOWN of ALL.  And by running several products is probably not provide you more protection and will likely impact of the performance of your machine.  At the very least, several products require more administration and support.

    Doc

  • You need to set the drive letter to the USB Ports front before any device has been inserted - that won't change when the device is connected. I have Windows XP Professional with Visual Studio 6 installed

    You need to set the drive letter to the USB Ports front before any device has been inserted - that won't change when the device is connected. I have Windows XP Professional with Visual Studio 6 installed. Thanks for your help

    diana73,

    First of all, make sure that you're connected Administrators account to do.

    How to change a drive letter to change an existing drive letter on a drive, on a partition, or a volume, follow these steps:

    1. Sign in as an administrator or as a member of the Administrators group.
    2. Click Start , click run and type compmgmt.msc .
    3. In the left pane, and then click disk management .
    4. Right click on the drive, the partition, the logical drive or volume that you want to assign a drive letter to and then click change drive letter and paths .
    5. Click change .
    6. Click assign the following drive letter if it is not already selected, click the drive letter that you want to use, and then click OK .
    7. Click Yes when you are prompted to confirm the drive letter change.

    The letter of the drive, partition, or volume that you specified is changed, and the new drive letter is displayed in the appropriate drive, partition, or volume in the disk management tool.

    Good luck! Please rate me upward if you find my post helpful. Thank you!

  • If you have firewall and windows defender, do you really need another security software?

    If you have firewall and windows defender, do you really need another security software?

    I have no other security software

    Norton internet security becomes awkward

    Peter

    Hello

    Yes you still need an antivirus program and you are right that Norton tends to cause problems.

    Norton Removal Tool
    http://Service1.Symantec.com/support/tsgeninfo.nsf/docid/2005033108162039

    You want to remove Norton and old and even uninstalled antivirus can leave remnants then download and run
    the Norton Removal Tool. Also, I would get Avast and Prevx and you should be in good shape.

    Download the 3 to get back to after removing the McAfee antivirus.

    Download - SAVE - go to where you put them - right click - RUN AS ADMIN - REBOOT after each.

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

    Here is what I use:

    Avast and Prevx proved extremely reliable and compatible with everything I threw at them.

    Avast Home free - stop any shields is not necessary except away from Standard, Web and network is working.

    Prevx - Home - free

    Windows Firewall

    Windows Defender

    Protected IE - mode

    IE 8 - SmartScreen filter WE (IE 7 phishing filter)

    I also IE always start with asset if filter InPrivate IE 8.
    (Sometimes you have to temporarily turn off with the little icon to the left of the + bottom right of IE)

    Avast - stop home - free - all shields you do no need except leave Standard, Web and network running.
    (Double-click the blue icon - details look OK. - upper left Shields - those that you do not cancel).
    http://www.avast.com/eng/avast_4_home.html
    Prevx - Home - small, fast, exceptional CLOUD free protection, working with other security programs. It comes
    a scan only, VERY EFFICIENT, if it finds something to come back here or use Google to see how to remove.
    http://www.prevx.com/

    PCmag - Prevx - Editor's choice
    http://www.PCMag.com/Article2/0, 2817,2346862,00.asp

    Also get Malwarebytes - free - use as scanner only. If you ever suspect malware, and that would be unusual with
    Avast and Prevx running except a low occasional (not much), updated cookie and then run it as
    a scanner. I have a lot of scanners and they never find anything of note that I started to use this configuration.

    http://www.Malwarebytes.org/

    I hope this helps.

    Rob - bicycle - Mark Twain said it is good.

  • have WRT54G2 - needing another port wireless

    I have a WRT54G2 (which works fine) and I need another port wireless.  It wouldn't hurt to add 2 ports (space to grow) 2 cables and wireless.  What is the best way for a fool to achieve?

    Thank you

    Larry

    Huh?  What are you talking about?  You have 4-port cable and wireless for about 45 wireless connections.  A total of 253 addessses IP can be processed by the router.  You can add switches to increase your wired ports.

  • BlackBerry Smartphones Newbie needs help setting up email

    Hello world

    I've been the proud owner of a "BOLD" for about 48 hours now. This is my first Blackberry, so please bear with me.

    I need to set up my Yahoo email. I remember setting up front, but I deleted it as my allowance for the use of network (3 Australia) showed 2 MB roaming allowance, of which half was used in one day.

    I think that the e-mail message has been implemented via a browser page, but I can't go back to this page. The e-mail setup wizard seems to be to the establishment through BES which I did not. Does anyone know the address of the page?

    I also remember, when I chose the browser (not of Planet 3) I was taken in a BB page that showed several options of setting up various things. There were about 5 or 6 boxes grey listed above the other? Anyone also know the address of the page for this?

    Thanks for any help,

    Paul

    You also see a personal Email Setup on the device icon? If not try going into the Options | Advanced options | The host routing table. In this screen press press the button menu and choose to register now. See if you receive a message from check delivered to your device. Subsequently, reset the unit by removing the battery for 30 seconds. See if you have this icon now after restarting the device. If you still don't you can try setting up the account again on your carrier's Web site BIS to add return e-mail accounts?

    What options do you remember on this Web site? Try to go to mobile.blackberry.com on your browser and see if it's the page.

  • I need to set up my computer at home to print from a working remote desktop connection - how to put in place

    I need step by hep instructions on how to install one in my home computer can print remote desktop connection works.  OS 7 Pro work and home OS is Windows 7 home preuiem.  I don't know how to set options in local resources.  I just need to set up my printer driver or printer on the remote computer.

    Thank you

    Hello

    Thanks for posting your question in the Microsoft Community forums.

    I see from the description of the problem, you want to know how to configure the printer to print from the remote desktop connection.

    I will surely you help with this.
    I suggest that you set these settings before you connect and check if it helps.

    (a) Open Remote Desktop connection by clicking the Start button, clicking all programs , clicking Accessories, and then clicking Remote Desktop connection.
    (b) click on Optionsand then click the local resources tab.
    (c) under local devices and resources, Select the check box Printers .
    (d) click Connect to start the session.

    If the problem persists, I suggest you send the request in TechNet community to improve assistance in this regard. Please visit the link below to find a community that will provide the support you want.
    http://social.technet.Microsoft.com/forums/en/w7itpronetworking/threads
    Let us know the status of the issue after you perform the troubleshooting steps. If you need additional help or information on Windows, I'll be happy to help you. We, at tender Microsoft to excellence.
  • The second member of these groups redolog needed another diskgroup smillar

    Dear Experts,

    Separated us + REDO diskgroup (with normal redundancy) for REPEAT 3 with redolog groups.

    Is the second member of these groups redolog needed another diskgroup smillar? Or quite simply, we can put these redolog on diskgroup even members (+ REMAKE)

    As we have this diskgroup with a failgroup on a separate physical disk.

    CREATE DISKGROUP redo NORMAL REDUNDANCY
    failgroup diskredo1 DISK
    '/devices/diska1'
    failgroup diskredo2 DISK
    '/devices/diskb1';
    

    Thank you and best regards,

    IVW

    You should have some members on the disk groups. For each redolog group should be spread on your + redo disk group and another group of disks that is physically separated from the + redo disk group. That is to say + group of DATA disks.

    http://docs.Oracle.com/database/121/HABPT/config_storage.htm#CDEJCHDG

Maybe you are looking for