PL/SQL Developer OCA - order of examinations (1ZO-047, 1Z0-144)

Hello
"I would like to know if I can get the ' 1ZO-144-Oracle Database 11 g: program PL/SQL ' review * before * the Expert"1Z0-047-Oracle SQL database.

In the 'Page of Certification Oracle' :* http://bit.ly/1oyl6E * I read the diagram and I just looked in this forum, but still have this doubt.
You would be so kind to share this information, or better yet you can testify your experience doing the * "1Z0-047' in the beginning * of the path?

Thank you in advance,
concerning

Giuseppe

Published by: zep111 on Sep 3, 2010 10:32

zep111 wrote:
Hello
"I would like to know if I can get the ' 1ZO-144-Oracle Database 11 g: program PL/SQL ' review * before * the Expert"1Z0-047-Oracle SQL database.

In the 'Page of Certification Oracle' :*http://bit.ly/1oyl6E * I read the diagram and I just looked in this forum, but still have this doubt.
You would be so kind to share this information, or better yet you can testify your experience doing the * "1Z0-047' in the beginning * of the path?

Thank you in advance,
concerning

Giuseppe

Published by: zep111 on Sep 3, 2010 10:32

It is possible and allowed to sit these exams is the order.

1Z0 - 047 seem relatively difficult to most people and expensive to regain power. So especially if you don't have this form of review before the cheaper and easier (for most people) 1z0-051 is probably a better option.

But in the end you pays yer money and takes your choice, what works for one individual may not be best for another.

Rgds - bigdelboy.

Tags: Oracle

Similar Questions

  • Oracle PL/SQL Developer certified associate

    EXAM 1Z0-007 Introduction to Oracle9i SQL®
    or
    1Z0-047 Oracle database SQL expert
    or
    1Z0-051-Oracle Database 11g: SQL Fundamentals I

    Program REVIEW with PL/SQL 1Z0-147
    OR
    Oracle Database 11 g: program with PL/SQL 1Z0-144

    Oracle PL/SQL Developer certified associate

    I checked the link: http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=155 & p_org_id = 53

    After completing the 1 review basic of sql and pl/sql, I need to attend a practice exam for the certification of pl/sql developer OCA or not need?

    9i DBA OCP, before I attend the practical exam. now, there is no change for 11g OCA?

    Thanks in advance.

    rajeysh wrote:
    Hi don,.

    Thanks for your reply.
    My question is, we would have to apply the hands on review after completing exams Developer OCA to get our certification in post?

    PL/SQL Developer OCA or same PL/SQL Developer OCP have one hand on the requirement of the course.

    You don't need to attend (yet) training for the latter.

    Search requirements @ http://www.oracle.com/education/certification (locate under Certifications... View all certifications).

  • Order that SQL Developer Modeler generates objects in DDL download

    Little annoying question... When I have an existing data model that includes all of my table definitions and ALSO my package definitions, I try to make a DDL download and load it into an instance of Oracle 11g and get an error on a procedure declaration does not have a column type.

    What I see is when I open the prepared ddl script, the package is created until the table is under construction.  Is it possible I can tell SQL Developer Data Modeler to build like objects together (table, then sequences and then triggers and packages and procedures/functions?

    SQL Developer Data model version 4.1.3 Oracle database 11g r2...

    Thank you

    Tony Miller
    Los Alamos, NM

    Hi Tony,.

    Data Modeler generates at the beginning of the Package definitions in the DDL file, so that they appear before the objects such as Tables, views, and triggers that may refer to them.

    And the Package body are generated at the end, so that they can refer to Tables and views.

    Unfortunately there is no option to change the sequence of generation.

    In general, the Data Modeler takes dependencies between objects into account to generate the DDL file objects in a proper order.

    However, it does not detect the dependencies TYPE %.  I connected an enhancement request to add to its dependency checking (22581821).

    Kind regards

    David

  • Need advice on OCA PL/SQL Developer Exam

    Hello

    I wrote exam 1Z0-007 and was planning to write 1Z0 - 147 next Saturday.

    But I came across the post here in this forum that Oracle University will soon release a new option of the review for those pursuing the Oracle PL/SQL Developer certified associate (IBC) or certifications Oracle Advanced PL/SQL Developer Certified Professional (OCP).

    And the test will be offered as an alternative to taking existing exam 1Z0-147 (PL/SQL program) in the ways of Oracle Advanced PL/SQL Developer Certified Professional (OCP) and Oracle PL/SQL Developer Certified Associate (OCA) certification.

    So, what should I do now?

    Should I go ahead and take the exam next week or otherwise?

    Looking forward to your answers.

    Thank you.

    Brandye Barrington

    I went through this site
    http://education.Oracle.com/pls/web_prod-PLQ-dad/db_pages.GetPage?page_id=41&p_org_id=1001&lang=us&p_exam_id=1Z0_147...

    Follow the procedures and rules.
    Thanks for the advice in a timely

    Thank you
    Billon

    Published by: Bhaskar.k on April 21, 2009 03:27

  • SQL * more the 'timing' in SQL Developer command

    I installed SQL Developer version 4.1.1.19. In the sql worksheet, how can I use SQL * more order 'timing' in a script to see a time elapsed SQL? The "Timing" on 'set' did not return any info after running SQL, and 'calendar beginning mon_timer' back 'command Timing is obsolete. Help, please.

    Thank you

    • As you can see, there is no calendar information in the script output log.
    • Then I tried on the discussion forum, found it can be enabled in "tool > preference > Database > startup script" and set as startup script:

    Set serveroutput on

    set timing on

    • However, 2 questions are:
    1. the calendar that he returned is NOT the elapsed time of my stored procedure to run. He simply choose the 2 time points its time, before and not after MS point run. Set timing on is therefore not a solution for me.
    2. He did not follow the instructions in the startup script. After that I put the calendar in the startup script, stop & restart SQL Developer, same laptop charging, timing still on. The only way to turn off now is to configure it to NOT use

    any startup script.

    • Then I developed my own coding as a solution:

    3. control of the COIL

    VAR bv_start_ts VARCHAR2 (30)

    VAR bv_end_ts VARCHAR2 (30)

    VAR bv_elps_ts VARCHAR2 (30)

    DECLARE

    v_start_ts VARCHAR2 (30);

    BEGIN

    SELECT TO_CHAR (SYSTIMESTAMP, 'yyyymmddfxDyhh24miss.ff6') INTO v_start_ts FROM DUAL;

    : bv_start_ts: = v_start_ts;

    END;

    /

    IMPRESSION bv_start_ts

    EXEC pmsmmi.rpt.rpt_ethncty_race_smry (15);

    DECLARE

    v_end_ts VARCHAR2 (30);

    BEGIN

    SELECT TO_CHAR (SYSTIMESTAMP, 'yyyymmddfxDyhh24miss.ff6') INTO v_end_ts FROM DUAL;

    : bv_end_ts: = v_end_ts;

    END;

    /

    IMPRESSION bv_end_ts

    EXEC: bv_elps_ts: = TO_CHAR (TO_TIMESTAMP (: bv_end_ts, 'yyyymmddfxDyhh24miss.ff6')-TO_TIMESTAMP (: bv_start_ts, 'yyyymmddfxDyhh24miss.ff6'), 'hh:mi:ss.ff6');

    IMPRESSION bv_elps_ts

    SPOOL OFF

    • Then I got what I want, the answer is in the 'PRINT ': bv_elps_ts

    SQL > VAR bv_start_ts VARCHAR2 (30)

    SQL > VAR bv_end_ts VARCHAR2 (30)

    SQL > VAR bv_elps_ts VARCHAR2 (30)

    SQL > DECLARE

    v_start_ts VARCHAR2 (30);

    BEGIN

    SELECT TO_CHAR (SYSTIMESTAMP, 'yyyymmddfxDyhh24miss.ff6') INTO v_start_ts FROM DUAL;

    : bv_start_ts: = v_start_ts;

    END;

    /

    PL/SQL procedure successfully completed.

    Elapsed time: 00:00:00.031

    SQL > PRINT bv_start_ts

    BV_START_TS

    -----------

    20150702Thu112617.775545

    SQL > EXEC pmsmmi.rpt.rpt_ethncty_race_smry (15)

    PL/SQL procedure successfully completed.

    SQL > DECLARE

    v_end_ts VARCHAR2 (30);

    BEGIN

    SELECT TO_CHAR (SYSTIMESTAMP, 'yyyymmddfxDyhh24miss.ff6') INTO v_end_ts FROM DUAL;

    : bv_end_ts: = v_end_ts;

    END;

    /

    PL/SQL procedure successfully completed.

    Elapsed time: 00:00:00.062

    SQL > PRINT bv_end_ts

    BV_END_TS

    ---------

    20150702Thu112630.805786

    SQL > EXEC: bv_elps_ts: = TO_CHAR (TO_TIMESTAMP (: bv_end_ts, 'yyyymmddfxDyhh24miss.ff6')-TO_TIMESTAMP (: bv_start_ts, 'yyyymmddfxDyhh24miss.ff6'), 'hh:mi:ss.ff6')

    PL/SQL procedure successfully completed.

    SQL > PRINT bv_elps_ts

    BV_ELPS_TS

    ----------

    + 00:00:13.030241000 000000

    SQL > SPOOL OFF

  • Bug: Details of body inaccurate package SQL Developer 4.0 and 4.1

    I went through the trouble to recompile the schema SYS with native = PLSQL_CODE_TYPE and PLSQL_OPTIMIZE_LEVEL = 3. I found that it was unwise to change the PLSQL_OPTIMIZE_LEVEL for package under SYS specifications, so I left them alone. When I query the view of ALL_PLSQL_OBJECT_SETTINGS, it shows me that my Package body are properly compiled at level 3 and the specs are still 2. However when I look at the Details tab in SQL Developer 4.0 or 4.1 last Early Adopter, it shows the it is PLSQL_OPTIMIZE_LEVEL = 2. I did a test for the PLSQL_CODE_TYPE and the details of body in SQL Developer also follow the specification and not true values. I used the sub query to verify the real compile settings.

    SELECT owner,
           name,
           type,
           PLSQL_OPTIMIZE_LEVEL,
           PLSQL_CODE_TYPE
      FROM ALL_PLSQL_OBJECT_SETTINGS
     WHERE owner in ('SYS')
       AND type IN ('PACKAGE', 'PACKAGE BODY')
     order by 1,2,3;
    
    
    

    Thank you

    Steven Wilson

    The query we use does not take into account, there may be several entries for an object in the view. I think we have a bug. You connect.

  • Data tab returns data differently in different instances of SQL Developer

    On my instance of SQL Developer, when I click on the data tab, the data is returned immediately via a select * table query, but on one of the machines of my developer, when she clicks on the data tab, Developer SQL executes a select query * table... order in...

    The column it is order by is NOT indexed and the query takes a long time to return data.   We cannot understand where SQL Developer's store this particular query and associating it with the data on its instance SQL Developer tab.

    Anyone can shed some light?

    Right click on the grid, and then select "remove persisted settings...". »

  • Regarding SQL Expert (1ZO - 047) valid 12 c certification

    Hello

    I intend to raise 1ZO - 047 certification (Oracle database SQL Expert) during the previous month. Need some suggestions of people (preferably who took this exam after 15 September 2014) release of the exam and also some good books as references and sites that can help me to do the same.

    Shanmugavel wrote:

    Hello

    I intend to raise 1ZO - 047 certification (Oracle database SQL Expert) during the previous month. Need some suggestions of people (preferably who took this exam after 15 September 2014) release of the exam and also some good books as references and sites that can help me to do the same.

    I can do better than see you Matthew here resources:

    Oracle Certification Preparation: Details of the examination and preparation for 1Z0 - 047 resources

    and update here:

    http://certmag.com/oracles-SQL-expert-exam-slated-facelift-Sept-15/

    You are already aware of the post of topics updated September 2014.  You should subjects newly introduced (and there is really only a handful) will not be in e.g. book of O'Hearn and you sick he had to study these and practice literature oracle; Quality of oracle articles; Oracle Learning Library etc.

    other topics that he probably come in two categories: features present in 11g, but was not present at the review.  And features introduced with 12 c.

    While the description reads review: this review has been validated against Oracle Database 10 g, Oracle Database 11 g, Oracle Database 11 g Release 2, and database Oracle 12 c Release 1, taking into account the characteristics of 12 c are tested this should now rad this review has been validated against Oracle Database Release 1 12 c. (Not 10g / 11g).

  • Grouping of lines - SQL Developer

    I was wondering if someone can help me here - Im trying to group the lines in a "package" to get fewer lines of data and group together the dates where they follow (and they have the same class of service and client ID). Im not the most irritable person so any help is appreciated.

    Here's my CREATE & INSERT

    CREATE TABLE ACF_SERVICES_DIM (Client_id varchar2 (20),)
    Date of Agreement_Start_date,
    Date of Agreement_End_Date,
    Service_Category Varchar2 (200),
    Agreement_id varchar2 (20));

    Insert into Acf_Services_Dim (Client_Id, Agreement_Start_Date, Agreement_End_Date, Service_Category, Agreement_Id)
    VALUES ('2607 ', 'J2849', 'Red', TO_DATE (' 01/10/2013 ',' dd/mm/yyyy'), NULL);

    Insert into Acf_Services_Dim (Client_Id, Agreement_Start_Date, Agreement_End_Date, Service_Category, Agreement_Id)
    VALUES ('2607 ', 'J2279', 'Red', TO_DATE (' 30/09/2013 ',' dd/mm/yyyy'), TO_DATE (' 01/03/2002 ',' dd/mm/yyyy'));

    Insert into Acf_Services_Dim (Client_Id, Agreement_Start_Date, Agreement_End_Date, Service_Category, Agreement_Id)
    VALUES ('2607 ', 'J2284', 'Red', TO_DATE (' 30/09/2013 ',' dd/mm/yyyy'), TO_DATE (' 01/03/2002 ',' dd/mm/yyyy'));

    Commit;

    The last two are of the same exact service type / id / dates etc so id expect to see a result... I think however it it link to 1 also, such as tracking the dates on and again, everything else is the same.

    If there is a 4th line-

    VALUES ('2607 ', 'J2299', 'Blue', TO_DATE (' 30/09/2013 ',' dd/mm/yyyy'), TO_DATE (' 01/03/2002 ',' dd/mm/yyyy'));

    Commit;

    I only expect to show also in a separate package because it does not match the 1st 3 because it is a different class of service, even if the dates are the same... I hope that helps?

    The request im trying to use is the following... HOWEVER it keeps giving me a not authorized windows error function

    WITH got_package_id AS

    (

    SELECT agreement_id

    MIN (CONNECT_BY_ROOT agreement_id) AS package_id

    Of acf_services_dim

    CONNECT BY NOCYCLE client_id = client_id PRIOR

    AND service_category = PRIOR service_category

    AND agreement_id <>agreement_id PRIOR

    AND (agreement_start_date = agreement_end_date FRONT + 1).

    OR agreement_end_date = PRIOR agreement_start_date - 1

    OR (agreement_start_date = PRIOR agreement_start_date

    AND agreement_end_date = PRIOR agreement_end_date

    )

    )

    GROUP BY agreement_id

    )

    SELECT s.Client_Id

    MIN (s.Agreement_Start_Date) AS package_start_date

    , NULLIF (NVL (MAX (s.Agreement_End_Date))

    DATE "9999-01-01'

    )

    DATE "9999-01-01'

    ) AS package_end_date

    s.Service_Category

    p.package_Id

    ROW_NUMBER () OVER (PARTITION BY s.client_id

    s.service_category

    ORDER BY p.package_id

    ) AS package_num - if wanted

    Of s acf_services_dim

    JOIN got_package_id p ON p.agreement_id = s.agreement_id

    GROUP BY s.client_id

    s.service_category

    p.package_id

    ;

    Don't know why, but im getting the following error when running in SQL developer... no idea why?

    Error in the command column line: 32:56

    Error report:

    SQL error: ORA-30483: window functions are not allowed here

    30483 00000 - "window functions are not allowed here."

    * Cause: Window functions are allowed only in the SELECT a query list.

    And, depending on the window cannot be an argument in another window or group

    function.

    * Action:

    Make a copy of your test case in a spreadsheet SQL Developer 4.0.3 connected to Oracle Xe (11.2.0.2) with jdk1.7.0_67 on Windows 7, everything works as expected:

    CLIENT_ID PACKAGE_START_DATE PACKAGE_END_DATE SERVICE_CATEGORY

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

    2607 1 March 02 13 - SEP - 30 Blue

    2607 1 March 02 13 - SEP - 30 Red

    No ORA-30483 at all.  What versions of SQL, Oracle DB, Java developer and so on are you using?

  • Bug in SQL Developer 4.0.2.15.21 or incompatibility with JDev 12.1.2 Extension SDK

    Submenus and submenu items added to a context menu NOT displayed in sql developer, but appear in JDev.

    Individual, added to a context menu items work correctly but submenus are not.

    1 Sql Dev 4.0.2.15.21 is based on the JDev 12.1.3 framework which is NOT yet publicly released

    2. the below example (based on JDev Extension SDK FirstSample) displays the contextual and submenu menu items and submenuitems correctly

    3. the same example in Sql Dev does NOT contain the submenu and submenu items. Is this a bug or an incompatibility between the frames?

    The starting point was the FirstSample of the latest version of the Extension SDK. I confirmed this example worked in JDev 12.1.2.0.l0 and Sql Dev 4.0.2.15.21

    It's what you see, correctly, in JDev

    Connection

    Tables

    DEPT

    ESDK sample Action

    Custom element 1

    Custom element 2

    CustomSubMenu

    Custom submenu item1

    Custom submenu Item2

    The submenu and items are NOT displayed in Sql Dev

    Connection

    Tables

    DEPT

    ESDK sample Action

    Custom element 1

    Custom element 2

    The following changes to the 'extension.xml' file for the sample in order to display the menu items popup extra on a node 'TABLE' of the browser database:

    1 removed the menu items and the main gallery

    2. Add a section 'rules '.

    "<-hooks of relaxation xmlns ="http://xmlns.oracle.com/ide/extension">."

    < rules >

    < rule id = "framework-a-object-node" type = "framework-a-node" >

    < Parameters >

    < param name = "node-class" value = "oracle.dbtools.raptor.navigator.impl.ObjectNode" / > "

    < / Parameter >

    < / rule >

    < / rules >

    3 added four other 'actions '.

    < Code action = "CustomItem1" >
    Properties of <>
    < property name = "Name" > Custom Item 1 < / property >
    < property name = 'SmallIcon' >$ {OracleIcons.LABEL} < / property >
    < / properties >
    < / action >
    < Code action = "CustomItem2" >
    Properties of <>


    < property name = "Name" > Custom Item 2 < / property >
    < property name = 'SmallIcon' >$ {OracleIcons.LABEL} < / property >
    < / properties >
    < / action >

    < Code action = "CustomSubmenuItem1" >
    Properties of <>
    < property name = "Name" > Custom submenu Item1 < / property >
    < property name = 'SmallIcon' >$ {OracleIcons.LABEL} < / property >
    < / properties >
    < / action >
    < Code action = "CustomSubmenuItem2" >
    Properties of <>
    < property name = "Name" > Custom submenu Item2 < / property >
    < property name = 'SmallIcon' >$ {OracleIcons.LABEL} < / property >
    < / properties >
    < / action >

    4. changes to the section "context-menu-hook".

    a. change the "site" to display ONLY on the DB browser tree

    b. change the rule of the "always active" to the new rules would be affected "-a-object-context node ' so one database object context menus

    c. added two menu items

    d. has added a new item 'menu', section and two submenu items - they don't displaly on Sql Dev but NOT appear in JDev

    < context-menu-hook rule 'framework-a-object-node' = >

    < site idref = "db_nav" / >

    < menu >

    "< section xmlns ="http://jcp.org/jsr/198/extension-manifest"id ="MY_CUSTOM_MENU_SECTION_ONE"weight ="1.0">"

    < point action-ref = "oracle.ide.extsamples.first.invokeAction" > < / item >

    < point action-ref = "CustomItem1" > < / item >

    < point action-ref = "CustomItem2" > < / item >

    < menu id = "CustomSubMenu" >

    "< section xmlns ="http://jcp.org/jsr/198/extension-manifest"id ="MY_CUSTOM_MENU_SECTION_THREE"weight ="1.0">"

    < point action-ref = "CustomSubmenuItem1" > < / item >

    < point action-ref = "CustomSubmenuItem2" > < / item >

    < / section >

    < / menu >

    < / section >

    < / menu >

    < / context-menu-crochet >

    The JDev version I have is the 12.1.2 framework but Sql Dev, I was informed by the dev team Sql uses the 12.1.3 framework that is NOT yet accessible to the public.

    I do not know which of the three assumptions (or others) could be correct:

    1. something broken in the new 12.1.3 framework that works in the 12.1.2 framework

    2. the rules of XSD schema changed to specify submenus

    3. something broken or changed in the port of Sql Dev/use of the framework

    I hope that you will have the answer you are looking for on the side of the House JDeveloper.  From the point of view of pure Java, however, I tend to fall back on the generalization that the byte code and JVM, any extension you are building from Java source - whether you use a 32-bit JDK or 64 bits - can be run on a virtual machine JAVA 32 bit or 64 bit.  It should not matter: the building where you can then deploy anywhere.

  • Unable to connect to host: SQL Developer in Virtualbox:linux:oracle

    Hi all

    Hope this is the right place to ask this question - since his post installation problem.

    I'm very happy because I just installed yesterday manually Oracle Linux 6.5 and Oracle 11 GR 2 on a Virtualbox VM. Ive put the point for a long time but either in the oracle of banks already installed Linux in DBA or home installation of Oracle on windows. But I decided to try something I've been curious for a long time which was to install oracle on linux running in a virtual machine, then usinfg the VM development tools host * developer sql etc...). IM glad that in only 2 days, I was able to make all the measurements required in virtualbox additions for sharedfolders, linux with x, prerequisites for instalation oracle, RPM and Richmond stuff, tune kernel parameters and installation when smoothly managed yesterday

    Today, after the typical small things missing after starting the VM as:

    -lack of vars env; Oracle ADF for path;

    -sqlplus / as sysdba returned instance inactive, so I started OK with SQL > startup

    -also unlocked HR account and under linux has been able to connect to sqlplus h/h

    Now I'm trying to achieve the 2 following things after you start the virtual machine linux/oracle again today:

    1. connect to vm host windows 7 oracle sql developer for my db oracle Linux.

    2 business manager access to the browser in my host of windows 7. Yesterday, just after the installation of oracle finishing I could, just need to open port firewall linux 1158 and https://192.168.1.71:1158 / em Open ok. But today, after that it seems some process to start vm does not work... cause I can't get em either inside the virtual machine, nor my host locally.

    Some info of linux from my installation:

    $ echo $SHELL

    / bin/bash

    $ set | grep ORACLE

    ORACLE_HOME=/U01/app/Oracle/product/11.2.0/dbhome_1

    ORACLE_SID = orcl

    listener displays error before you start the instance

    $ lsnrctl status

    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 24 may 2014 14:28:29

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

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

    AMT-12541: TNS:no listener

    AMT-12560: TNS:protocol adapter error

    AMT-00511: no listener

    Linux error: 111: connection refused

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=localhost) (PORT = 1521)))

    AMT-12541: TNS:no listener

    AMT-12560: TNS:protocol adapter error

    AMT-00511: no listener

    Linux error: 111: connection refused


    departure since his inactivity aka oracle instance is not running

    $ sqlplus / as sysdba

    SQL * more: Production of release 11.2.0.1.0 sat may 24 14:19:08 2014

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

    Connect to an instance is idle.

    SQL > startup

    ORACLE instance started.

    Total System Global Area 417546240 bytes

    Bytes of size 2213936 fixed

    318769104 variable size bytes

    92274688 of database buffers bytes

    Redo buffers 4288512 bytes

    Mounted database.

    Open database.

    SQL > select count (*) in the hr.employees;

    COUNT (*)

    ----------

    107

    SQL > quit

    Disconnected from the database to Oracle 11 g Enterprise Edition Release 11.2.0.1.0 - 64 bit Production

    With partitioning, OLAP, Data Mining and Real Application Testing options

    listner even always return error before start oracle - so I'll start the listener:

    $ lsnrctl status

    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 24 may 2014 14:31:37

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

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

    AMT-12541: TNS:no listener

    AMT-12560: TNS:protocol adapter error

    AMT-00511: no listener

    Linux error: 111: connection refused

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=localhost) (PORT = 1521)))

    AMT-12541: TNS:no listener

    AMT-12560: TNS:protocol adapter error

    AMT-00511: no listener

    Linux error: 111: connection refused

    lsnrctl start $

    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 24 may 2014 14:36:10

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

    From /u01/app/oracle/product/11.2.0/dbhome_1/bin/tnslsnr: Please wait...

    TNSLSNR for Linux: Version 11.2.0.1.0 - Production

    System settings file is /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora

    Log messages written to /u01/app/oracle/diag/tnslsnr/EMANUELDSKLINUX1/listener/alert/log.xml

    Listen on: (DESCRIPTION = (ADDRESS = (PROTOCOL = ipc) (KEY = EXTPROC1521)))

    Listen on: (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=127.0.0.1) (PORT = 1521)))

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

    STATUS of the LISTENER

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

    Alias LISTENER

    Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production

    Start date may 24, 2014 14:36:12

    Uptime 0 days 0 h 0 min 0 sec

    Draw level off

    Security ON: OS Local Authentication

    SNMP OFF

    Parameter Listener of the /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora file

    The listener log file /U01/app/Oracle/diag/tnslsnr/EMANUELDSKLINUX1/listener/alert/log.XML

    Summary of endpoints listening...

    (DESCRIPTION = (ADDRESS = (PROTOCOL = ipc) (KEY = EXTPROC1521)))

    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=127.0.0.1) (PORT = 1521)))

    The listener supports no services

    The command completed successfully

    OK now seems sqlplus locally works fine.

    Now that I need help, that's what I'm missing to do this, I can connect with my my windows host oracle sql Developer 7?

    In my oracle sql developer im trying the following parameters:

    User name: sys

    Password: oracle

    Connection type: fundamental Role: SYSDBA

    HostName: 192.168.1.71

    Port: 1521

    SID: orcl

    and im getting the error when I click on the Test button:

    Status: Failure-Test failed: entry IO error: the network adapter could not establish the connection.

    Please let me know what orders/information you need to help me. Im sure im close to after so many steps to learn how to install and able to do the installation of oracle on linux in a virtualbox im really looking forward to complete this exercise, thank you very much for your help.

    See you soon,.

    Zen

    Your listener is the list on "localhost" (127.0.0.1 ip address) that the universal loopback address.  No request to this address never let the customer request.  Your virtual computer must have a fixed IP address, and the listener must be listening on this fixed IP address

    For more details see Configure the VirtualBox network | Ed Stevens, s/n

  • Error ORA-12505 only in SQL Developer - 11g Express

    Hello

    I found many similar problems but no answering mine.

    I installed the Oracle 11g Express version.  I can connect to my database order online when I try Developer SQL I get the following error code:

    Status: Failure-Test failed: listener refused the connection with the following error:
    ORA-12505, TNS:listener is not currently of SID given in connect descriptor.

    i\m data trying to connect to is xe.

    Here are my tnsnames.ora file content:

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

    XE =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP) (HOST = Jon-portable)(PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = XE)

    )

    )

    EXTPROC_CONNECTION_DATA =

    (DESCRIPTION =

    (ADDRESS_LIST =

    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1))

    )

    (CONNECT_DATA =

    (SID = PLSExtProc)

    (PRESENTATION = RO)

    )

    )

    ORACLR_CONNECTION_DATA =

    (DESCRIPTION =

    (ADDRESS_LIST =

    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1))

    )

    (CONNECT_DATA =

    (SID = CLRExtProc)

    (PRESENTATION = RO)

    )

    )

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

    Here is the output of "tnsping xe:

    Use settings files:

    C:\oraclexe\app\oracle\product\11.2.0\server\network\admin\sqlnet.ora

    TNSNAMES adapter used to resolve the alias

    Try to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP) (HOST = Jon-Lapt

    OP) (PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = XE)))

    OK (0 msec)

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

    The production of SERVICES of LSNRTCL are:

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = IPC) (KEY = EXTPROC1)))

    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 'PLSExtProc' has 1 instance (s).

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

    Managers:

    "DEDICATED" set up: 0 denied: 0

    LOCAL SERVER

    Service 'XEXDB' has 1 instance (s).

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

    Managers:

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

    DISPATCHER < machine: JON-laptop, pid: 2636 >

    (ADDRESS = (PROTOCOL = tcp) (HOST = Jon-Laptop)(PORT=1064))

    "Xe" service has 1 instance (s).

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

    Managers:

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

    LOCAL SERVER

    The command completed successfully

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

    NOTE: I tried to connect to ORCL with SQL Developer and put with the SYSTEM account.

    Please let me know if you need more information.  Thanks in advance.

    you typed in the 'OracleServiceXE' chain & the listener isn't aware of any Service with this exact name.

    You must only enter "XE".

  • problem using dbms_xplan.display_cursor in SQL Developer 4

    In SQL Developer 3, I am able to do successfully the following:

    ALTER session set statistics_level = all;

    Select...

    Select * from table (dbms_xplan.display_cursor (null, null, 'ALLSTATS LAST ALIAS'));

    This shows the trace of the SQL I ran. However, developer 4, the same statements always show a trace of

    Select child_number from v$ sql where sql_id =: 1 order by child_number

    Y at - it a configuration option which fixes this?

    Thank you.

    Simply -.

    Select...

    Select * from table (dbms_xplan.display_cursor (null, null, 'ALLSTATS LAST ALIAS'));

    Run this set as a script.

    Otherwise if you run

    Select...

    We immediately then interrogate SD in the SQLID to this request so that we do the plan available.

  • Script SQL Developer runs all the lines

    I have a group of scripts that I want to execute in the order since a main script.  I created a file referencing these scripts as follows below.  My problem is that when I run this script (via F5 or another script referencing it), it runs only the first line and stops.  I have excluded questions with my references to file by changing the order - always the first runs and stops.  I have tried such as displayed below and with a semicolon; to separate each command.  I have scoured the web and can not find any reason why it does not work.  Each of the scripts listed below contains multiple statements separated by a; that wraps a file to a NAS where he is picked up by our external file transfer program.  It all works properly - the only thing that I have problems with using 1 script to call several files and run them in order.

    Any help is greatly appreciated!

    @EMSTATUS.sql

    @EMPLOYEE.sql

    @HREMPUSF.sql

    @HRHISTORY.sql

    @HRSUPER.sql

    @JOBCLASS.sql

    @JOBCODE.sql

    @PAACTREAS.sql

    @PAEMPLOYEE.sql

    @PAEMPPOS.sql

    @PCODES.sql

    @PCODESDTL.sql

    @PERSACTHST.sql

    @PRDISTRIB.sql

    @PRPAYCODE.sql

    @PSGRELATE.sql

    @REVIEW.sql

    Hello

    Note You can place in the path: Tools-> preferences-> database-> spreadsheet-> "path select default to search scripts"


    I tried the following:

    c:\tmp\calltwoscripts. SQL

    set echo on

    @zone.sql

    @ztwo.sql

    Select 'done' double.

    c:\tmp\zone. SQL:

    Select 'one' double;

    c:\tmp\ztwo. SQL:

    Select 'two' SQL;

    executed in a worksheet:

    @c:/tmp/calltwoscripts.sql

    Output:

    > @zone.sql

    > select "one" of the double

    'A '.

    -----

    one

    > @ztwo.sql

    > Select "both" of the double

    "TWO".

    -----

    two

    > select 'done' double

    'DONE '.

    ----------

    Finish

    The things that could go wrong:

    Your scripts could end with "quit".

    Paths can mingle: try (not @) and full of paths.

    You could hit a code issue, the spreadsheet does not recover-in which case you should get the output on the command line and or Page logging of messages in the view.

    Turloch

    SQLDeveloper - team

    http://www.thatjeffsmith.com/archive/2012/06/how-to-collect-Debug-Info-for-Oracle-SQL-Developer/

    http://totierne.blogspot.co.UK/2013/07/user-check-on-sqldeveloper-worksheet.html

  • Look at a USER_SCHEDULER_ * in SQL Developer through the GUI


    SQL Developer: Version 3.2.20.09
    Oracle DB: Oracle Database 10 g Enterprise Edition Release 10.2.0.5.0 - 64 bit

    Question:

    When I connect to the database I don't see "DBMS Jobs" to the title of 'Planner' (in GUI). There are projects Planner user-defined settings and I get good results when I query the tables like USER_SCHEDULER_JOBS. I just can't view/edit them the GUI.

    My only thought is that this DB has been improved over the years (from 8.x to 9.x to 10.x) and a type SYSTEM table SQL Developer turned to in order to see if the jobs at the request of the user are still an option (and it is not properly defined or my account does not have rights to see).

    Or maybe there is a hidden options of SQL Developer which says "show only jobs of DBMS?

    Thanks for any help.

    You can try this

    For windows

    In a cd to the command window/sqldeveloper/bin

    Break-in sqldeveloper - su

    Add the argument - su, this will create a new set of saved settings.   You will need to re-coonect to the DB and see if the menus appear under Scheduler.

Maybe you are looking for

  • Nero 7 on Qosmio F30?

    Hello world Does anyone has installed Nero 7 on a Qosmio (F30)? It interferes with the pre-installed software? Thank you

  • Lenovo V570 - Power Manager question WITHOUT BATTERY IS INSTALLED?

    Hey guys... I have a problem with my lenovo v570 model I installed an App... I think it was called Power Manager version 3.65 but the main problem is, it says battery is not installed... It's all in the original packaging. and I have installed energy

  • 7520 printer

    My printer has suddenly started printing only on half of the page.  Don't know what I've done - of course it's operator error!

  • Deleted the shortcut which reappeared and cannot be deleted

    Hello I have a shortcut from my old phone that I had deleted, it was to a paired device, after deleting, he re-appeard.It is 0 bytes in size and gives me this error message when I try to remove it.Article not foundThis item is not foundIt is no longe

  • White white icons on the desktop, bar of tasks & files

    So as the title says, most of my shortcut icons is turned to 'record' white icons by default. This happened after a certain program called Registry Booster crashed Mid-process. Uniblue support recommended to restore the backup of the registry of the