Features of BigDecimal.ROUND_HALF_UP using ORACLE PLSQL

Hello

is there a way I can reproduce the functionality of BigDecimal.ROUND_HALF_UP using PL SQL to oracle.

I'm looking for the following rounded result.

Value-> expected result

165.725-> 165.72

165.726-> 165,73

165.724-> 165.72

ROUND (165.725,2) current is not giving me the results for 165.725 expected... I expect 165.72 rather 165.73.

Ravi

Hello

Solomon Yakobson says:

... And apparently you were flanking class Math...

I like the picture to go on the sides of the class math, rather than face him (perhaps for fear of flunking).

In any case, I don't think that we can simply add (or subtract) a constant and then round.  No mater what ever we choose, which will cause numbers which are very close to the Middle - order to round up the bad sense.  If we add-. 001, for example, this means a number such as 70.0059 will get rounded down to 70, not 70,01.

If we cannot assume that the numbers are already rounded, we should do something like this:

SELECT column_value AS n

CASE

WHEN ABS (MOD (column_value,.01)) =.005

THEN TRUNC (column_value, 2)

ANOTHER round (column_value, 2)

END AS round_half_down

TABLE (sys.odcinumberlist (65.72,65.7212,65.722,65.725,65.726,65.729, 65,73, 65.726,-65.72,-65.7212,-65.722,-65.725,-65.726,-65.729,-65.73,-65.726,-70.0059, 70.0059))

)

ORDER BY column_value

;

Output:

ROUND_HALF_DOWN N

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

-70.0059 - 70.01

-65.73 - 65,73

-65.729 - 65,73

-65.726 - 65,73

-65.726 - 65,73

-65.725 - 65,72

-65.722 - 65,72

-65.7212 - 65,72

-65.72 - 65,72

65,72 65,72

65.7212 65,72

65.722 65,72

65.725 65,72

65.726 65,73

65.726 65,73

65.729 65,73

65,73 65,73

70.0059 70.01

Tags: Database

Similar Questions

  • How to create the xml file in oracle plsql

    Hello

    I need the under xml (abc.xml) in unix Server out_directory file (the out_directory path: / u01/apps/xml /)

    Select sivauser, sivapwd from sivainformations;-it will be multiple records

    Select sivatelepone phone; - it will be multiple records

    Select xyzverion versionid; - it will be multiple records

    based on the above information, I need the sub file xml using oracle plsql procedure or a block

    example: suppose we record

    <? XML version = "1.0" encoding = "UTF-8"? >
    "< sivaService version ="2.0"xmlns ="http://www.siva.ab/siva/4.0/test">."
    < data language 'DEU' = >
    < sivauser action = "siva3" sivapwd = "siva123" > --i need to sivainformations table(sivauser,sivapwd) timeline
    phone < sivatelepone > < / sivatelepone >--i need to chronogram sivatelepone table (phone) based on the sivauser column
    < abcversion version = "1.0" >
    < Productinfo >
    versionID < xyzverion > < / xyzverion >--i need to xyzverion (versionid) based on the sivauser column table records
    < / Productinfo >
    < / abcversion >
    < / action >
    < / data >
    < / sivaService >


    example: assume that multiple records

    <? XML version = "1.0" encoding = "UTF-8"? >
    "< sivaService version ="2.0"xmlns ="http://www.siva.ab/siva/4.0/test>
    < data language 'DEU' = >
    < sivauser action = "siva3" sivapwd = "siva123" > --i need to sivainformations table(sivauser,sivapwd) timeline
    < sivatelepone > '345678' < / sivatelepone >--i need to chronogram sivatelepone table (phone) based on the sivauser column
    < abcversion version = "1.0" >
    < Productinfo >
    '1.1' < xyzverion > < / xyzverion >--i need to xyzverion (versionid) based on the sivauser column table records
    < / Productinfo >
    < / abcversion >
    < / action >

    < sivauser action = "siva4" sivapwd = "siva123" > --i need to sivainformations table(sivauser,sivapwd) timeline
    < sivatelepone > '123456' < / sivatelepone >--i need to chronogram sivatelepone table (phone) based on the sivauser column
    < abcversion version = "1.0" >
    < Productinfo >
    "1.2" < xyzverion > < / xyzverion >--i need to xyzverion (versionid) based on the sivauser column table records
    < / Productinfo >
    < / abcversion >
    < / action >
    < / data >
    < / sivaService >

    Please help me

    Thank you
    Siva

    I added a column ID to match the lines between the three tables.

    SQL> with sivainformations
      2  as
      3  (
      4     select 1 id, 'karthick' sivauser, 'karthick' sivapwd from dual union all
      5     select 2 id, 'ram', 'ram' from dual
      6  )
      7  , sivatelepone
      8  as
      9  (
     10     select 1 id, 1234567890 telepone from dual union all
     11     select 2 id, 1234512345 from dual
     12  )
     13  , versionid
     14  as
     15  (
     16     select 1 id, 1.1 versionid from dual union all
     17     select 2, 1.2 from dual
     18  )
     19  select xmlelement
     20         (
     21             "shivaService"
     22           , xmlattributes('2.0' as "version", 'http://www.siva.ab/siva/4.0/test' as "xmlns")
     23           , xmlelement
     24             (
     25                 "Data"
     26               , xmlattributes('DEU' as "language")
     27               , xmlagg
     28                 (
     29                     xmlelement
     30                     (
     31                          "Action"
     32                        , xmlattributes(s.sivauser as "sivauser", s.sivapwd as "sivapwd")
     33                        , xmlelement("shivatelepone", t.telepone)
     34                        , xmlelement
     35                          (
     36                              "abcversion"
     37                            , xmlattributes('1.0' as "version")
     38                            , xmlelement
     39                              (
     40                                   "ProductInfo"
     41                                 , xmlelement("xyzversion", v.versionid)
     42                              )
     43                          )
     44                      )
     45                 )
     46             )
     47         ).EXTRACT('*') xml_output
     48    from sivainformations s
     49    join sivatelepone t
     50      on s.id = t.id
     51    join versionid v
     52      on s.id = v.id;
    
    XML_OUTPUT
    -------------------------------------------------------------------------------------------------------------------
    
      
        
          1234567890
          
            
              1.1
            
          
        
        
          1234512345
          
            
              1.2
            
          
        
      
    
    
    SQL>
    
  • Clustered using Oracle ADF - CHECK_STATE_SERIALIZATION = all

    We use Oracle ADF 11.1.1.6. We have started to test our Oracle ADF application for cluster compatibility and used according to the document. We coded all recommendations figure in the document including allowing all classes of java there is place of serialization and also configure adf_config.xml < adfc:adf - scope-ha-support > true < / adfc:adf - scope-ha-support > and < adf:adf - scope-ha-support > true < / adf:adf - scope-ha-support > exactly as in in the document.

    http://docs.Oracle.com/CD/E12839_01/core.1111/e10106/ADF.htm

    Now, to verify the high availability on a stand-alone server of web logic for debugging use we have configured the Java Option '-Dorg.apache.myfaces.trinidad.CHECK_STATE_SERIALIZATION = all "in accordance with the recommendation.

    After the definition of this indicator system started throwing loads of mistakes similar to the below given error.

    [2012 07-26 T 14: 17:43.602 - 04:00] [OPERA_ADF1] [ERROR] [] [org.apache.myfaces.trinidadinternal.config.CheckSerializationConfigurator$ MutatedBeanChecker] [tid: [ASSETS].] [ExecuteThread: '17' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: edozer] [ecid: 64915ee7c1860d85:40a983d1:138bf4550b2:-7ffd - 0000000000005fcb, 0] [APP: OperaApplications_o90_smoke #V9.0.0] failover error: attribute: Serialization of the Session data is increased from oracle.adf.model.servlet.HttpBindingContext@365f8709 to oracle.adf.model.servlet.HttpBindingContext@36b6565b without the attribute being dirtied

    The question here is what are we missing?

    Please note that our application is still missing ControllerContext.getInstance () .markScopeDirty (pageFlowScope); but when I tried to create a sample application and deliberately left the 'markScopeDirty' using code below the above error was not reproducible.

    public class myBackingBean
    {
    public void changeValueButton (ActionEvent ae)
    {
    Map < String, Object > pageFlowScope = AdfFacesContext.getCurrentInstance () .getPageFlowScope ();
    pageFlowTestBean obj = (pageFlowTestBean) pageFlowScope.get ('pageFlowTestBean');
    System.out.println ("Old value" + obj.getYVar ());
    obj.setYVar ("new value");
    / * ControllerContext.getInstance () .markScopeDirty (pageFlowScope); */
    }
    }

    Anyone can shade more light on this subject?

    Also, I would like to know that someone can guide me what is the best practice to perform a ControllerContext.getInstance () .markScopeDirty (pageFlowScope); Because developers can easily miss this statement and I have not found any easy way to find code that is missing from this statement (I've already tried the Audit of Jdeveloper feature and it works for very rare cases).

    Hello

    Only when you do a Session.put (), the framework will know something has changed in the session Object and mark its scope as dirty and and he will try to replicate this object in another server...

    If change you it by reference. He won't try to reproduce the object in another server.
    For example, if you make below by changing something by reference, you must explicitly mark scopedirty. otherwise, the framework will not replicate the object to the failover server.

    In your code

    Card pageFlowScope = AdfFacesContext.getCurrentInstance () .getPageFlowScope ();
    pageFlowTestBean obj = (pageFlowTestBean) pageFlowScope.get ('pageFlowTestBean');
    System.out.println ("Old value" + obj.getYVar ());
    obj.setYVar ("new value");
    you change the value above by reference. So, unless you set the dirty scope this change in the PageFlowscope will not be replicated to another server.
    At this stage when a failover occurs, obj.getYVar () in the new server will always be the old value.

  • Links to learn and use Oracle audit

    Hi all
    I want links to learn and use Oracle DB audit featured
    I heard recently that the audit has two types: manual right and by Oracle? I want this one by Oracle
    This is the right forum for this thread?
    Thank you

    Note: I use DB Oracle 10g R2

    Dev. Men wrote:
    Hi all
    I want links to learn and use Oracle DB audit featured
    I heard recently that the audit has two types: manual right and by Oracle? I want this one by Oracle
    This is the right forum for this thread?
    Thank you

    Note: I use DB Oracle 10g R2

    Find this link to use Oracle audit:
    http://download.Oracle.com/docs/CD/B19306_01/network.102/b14266/cfgaudit.htm

  • Need help to understand the oracle plsql design phase.

    I am new user oracle plsql for learning. I wanted to know the following points.

    (1) is there any process that we follow before developing procedures for oracle.
    (2) is there any algorithm, flowchart, diagrams that we use for the Oracle procedure development.
    (3) what I should learn in order to begin to develop procedures for the oracle.

    organization charts
    data flow diagrams

    There any standard used in industry? comments or pointers would be useful

    user507531 wrote:

    Meanwhile, I would also like to know if there are any designs / charts, high level design, low level of design, ER diagrams to create before you start any development of Oracle plsql.

    It depends on the environment, work in and value standards. Some expect a case of use (UML) before a single line of code is written. At the time of Cobol, an organizational chart was generally expected.

    With some new programming approaches, the test cases are often used to define the program (as in turn, which defines the objectives of the program).

    ERDs come with database design - with the design of the PL/SQL program. You can use an ERD for a PL/SQL program, but is not part of the design of a PL/SQL program. It describes the database instead.

  • Use Oracle oci in CVI 2010

    Does anyone have experience using Oracle oci in CVI 2010 on Windows 7? Should I install 64-bit or 32-bit Oracle Instant Client? It is sufficient to compile the program that accesses Oracle data, do I need to have the Oracle database and the ODBC Manager put in place?

    Marg SZ wrote:

    Does anyone have experience using Oracle oci in CVI 2010 on Windows 7? Should I install 64-bit or 32-bit Oracle Instant Client? It is sufficient to compile the program that accesses Oracle data, do I need to have the Oracle database and the ODBC Manager put in place?

    you didn't have to buy the Toolbox, even think it makes your job easier

    http://orclib.sourceforge.NET/

    http://www.orafaq.com/wiki/Oracle_Call_Interfaces

  • Database objects can be replicated using Oracle Streams and which object cannot be replicated?

    Hi Experts,

    I need clarification on the sub questions,.


    Database objects can be replicated using Oracle Streams and which object cannot be replicated?

    How can we check that what schema and objects are used streams replication and which schema and objects is not used in the replication stream?

    Thanks in advance.

    Select *.
    of dba_streams_unsupported
    where owner | '.' || table_name (...)

    order by 1, 2, 3;

  • Take the backup of the user database using oracle forms 6i

    I need backup user database using oracle forms 6i. Is this possible?

    Yes.

    Try

    When press the button trigger

    DECLARE
        un                VARCHAR2(30);
        pw                VARCHAR2(30);
        db                VARCHAR2(30);
        con_str        VARCHAR2(100);
        --
        data_file    VARCHAR2(100);
        log_file    VARCHAR2(100);
        cmd_line    VARCHAR2(200);
        ALT NUMBER;
    BEGIN
        IF :CONTROL.file_name IS NULL THEN --- take a file location
            IF SHOW_ALERT('FILE_NAME') = ALERT_BUTTON1 THEN
                RAISE FORM_TRIGGER_FAILURE;
            END IF;
        END IF;
        --
        un    := GET_APPLICATION_PROPERTY(USERNAME);
        pw    := GET_APPLICATION_PROPERTY(PASSWORD);
        db    := GET_APPLICATION_PROPERTY(CONNECT_STRING);
        con_str    := un||'/'||pw||'@'||db;
        --
        data_file    := :CONTROL.file_name||'\'||un||
                                 TO_CHAR(SYSDATE, 'DDMMYYYY')||'.dmp';
    
        cmd_line    := 'exp userid='||con_str||' file='||data_file;
        HOST(cmd_line);
        --
    
        ALT:=SHOW_ALERT('MULTI_BACKUP');
        IF ALT=ALERT_BUTTON1 THEN
            RAISE FORM_TRIGGER_FAILURE;
        ELSE
            EXIT_FORM;
        END IF;
    
    END;
    
  • Using Oracle database for thesis software

    Hello, I want to use Oracle Database Enterprise Edition and Oracle Data Mining for my master's thesis, and maybe we can publish a book of science in the end. I already downloaded the database and work on it, but I need to know if it is OK to use the software free of charge during the preparation of my thesis. Is that what I should pay or should I inform Oracle about this? I don't know anything about using Oracle products for research projects. Any information you provide will be appreciated. Thanks, Hatice

    You must purchase a license for Oracle Personal Edition, which is the set of US $92 for a year. It includes the Advanced Analytics option, which is where your data mining.

  • Connection to the database to Oracle using Oracle Apex 5.0.1

    Hi all

    Is it possible to connect to the Oracle (Oracle SQL Developer 4.1.1) database using Oracle Apex 5.0.1 instead of using the object browser. As he was more workspace after you have downloaded the data we have on CSV Excel.

    For example: regardless of the tables I've created in the Application Builder is created in the object browser. We have limited the workspace of 500 MB. This is the reason why we cannot use this method to load the data and retrieve it. (Note: can I ask 2 GB of space to work on the approval of the Director, who is still not sufficient)

    Is it possible that I will create an apex.oracle.com application by using the application builder and I will create in the database tables. When I load the file in application, data will be stored in the database Oracle instead of the object browser.

    Well let me know is possible, if yes, how can I proceed.

    If this isn't the case, please let me know how I can get more workspace.

    According to my understanding, other possibilities are: 1) taking backup of old files and free up space, 2) create another workspace and get extra work space.

    Thanks for your help!

    Kind regards

    Vinod

    Hello

    When you load data using APEX SQL Workshop utilities for example, the data is stored in your database tables.

    Object browser is just seen tool your schema as the table objects and the data in the tables, just as SQL Developer.

    If you have no good reason to keep these files that you downloaded in the workspace, delete those. Data is stored in database tables.

    Kind regards

    Jari

  • Synchronize two schemas from database on a linux server using Oracle GoldenGate

    I followed this guide ( http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/goldengate/12c/OGG12c_Installation/index.html?cid=9167 & ssid = 0 ) and for two different databases running on the same instance of database schemas.


    What I have now is a Linux server with two Oracle database schemas.
    I have access through my Linux virtual machine. I want to do the synchronization possible between them.

    I use Oracle GoldenGate to make this possible. What should I do now? Goldengate is must be installed in the server too? I'm totally new to this situation. Can someone give me at least the major steps before going to the more comprehensive study?

    Well understood. This helped.

    Install Oracle GoldenGate Linux to synchronize two schemas from database on a single server

  • Using Oracle analytic function

    Hi all

    I use Oracle 10 g Release 10.0.2

    Here's the situation:

    I visited in my table of looks like this:

    Cust_id beg_dt end_dt sg_cd

    264321502 1 MAY 97 19 MARCH 98 1

    264321502 21 MAY 98 15 OCTOBER 98 6

    264321502 20 OCTOBER 98 22 APRIL 99 6

    264321502 23 APRIL 99 25 APRIL 00 6

    264321502 27 APRIL 00 20 JANUARY 02 6

    264321502 25 JANUARY 02 15 MAY 02 6

    264321502 MAY 21 02 27 MAY 02 6

    264321502 31 MAY 02 17 FEBRUARY 03 6

    264321502 21 FEBRUARY 06 03-7.-04 1

    264321502 25 FEBRUARY 03 25 FEBRUARY 03 1

    264321502 31 MARCH 03 30 APRIL 03 1

    264321502 07 - SEP - 04 26 DECEMBER 04 6

    264321502 29 DECEMBER 04 3 JANUARY 06 6

    264321502 4 JANUARY 06 3 JANUARY 07 12

    264321502 4 JANUARY 06 3 JANUARY 07 12

    264321502 4 JANUARY 06 3 JANUARY 07 12

    I need the results of the query as

    Cust_id beg_dt end_dt sg_cd

    264321502 1 MAY 97 19 MARCH 98 1

    264321502 21 MAY 98 17 FEBRUARY 03 6

    264321502 21 FEBRUARY 03 30 APRIL 03 1

    264321502 07 - SEP - 04 3 JANUARY 06 6

    264321502 4 JANUARY 06 3 JANUARY 07 12

    Basically, I need take a min max (end_dt) of sg_cd for this cust id (beg_dt).

    Any help is very much appreciated:

    My query is like that

    Select cust_id, end_dt, beg_dt, sg_cd,

    min (beg_dt) more (partition of cust_id, sg_Cd) as new_beg_dt,

    Max (end_dt) more (partition of cust_id, sg_cd) as end_Dt_nw

    of cust_tab.

    can be like that?

    1 data

    () 2

    3 select Cust_id 264321502, to_date('01-MAY-97','dd-mon-rr') beg_dt, to_date('19-MAR-98','dd-mon-rr') end_dt, 1 sg_cd of all the double union

    4. Select 264321502, to_date('21-MAY-98','dd-mon-rr'), to_date('15-OCT-98','dd-mon-rr'), 6 Union double all the

    5 select 264321502, to_date('20-OCT-98','dd-mon-rr'), to_date('22-APR-99','dd-mon-rr'), 6 Union double all the

    6. Select 264321502, to_date('23-APR-99','dd-mon-rr'), to_date('25-APR-00','dd-mon-rr'), 6 Union double all the

    7. Select 264321502, to_date('27-APR-00','dd-mon-rr'), to_date('20-JAN-02','dd-mon-rr'), 6 Union double all the

    8 select 264321502, to_date('25-JAN-02','dd-mon-rr'), to_date('15-MAY-02','dd-mon-rr'), 6 Union double all the

    9. Select 264321502, to_date('21-MAY-02','dd-mon-rr'), to_date('27-MAY-02','dd-mon-rr'), 6 Union double all the

    10. Select 264321502, to_date('31-MAY-02','dd-mon-rr'), to_date('17-FEB-03','dd-mon-rr'), 6 Union double all the

    11. Select 264321502, to_date('21-FEB-03','dd-mon-rr'), to_date('06-SEP-04','dd-mon-rr'), 1 Union double all the

    12 select 264321502, to_date('25-FEB-03','dd-mon-rr'), to_date('25-FEB-03','dd-mon-rr'), 1 Union double all the

    13 select 264321502, to_date('31-MAR-03','dd-mon-rr'), to_date('30-APR-03','dd-mon-rr'), 1 Union double all the

    14 select 264321502, to_date('07-SEP-04','dd-mon-rr'), to_date('26-DEC-04','dd-mon-rr'), 6 Union double all the

    15 select 264321502, to_date('29-DEC-04','dd-mon-rr'), to_date('03-JAN-06','dd-mon-rr'), 6 Union double all the

    16 select 264321502, to_date('04-JAN-06','dd-mon-rr'), to_date('03-JAN-07','dd-mon-rr'), 12 Union double all the

    17 select 264321502, to_date('04-JAN-06','dd-mon-rr'), to_date('03-JAN-07','dd-mon-rr'), 12 Union double all the

    18 select 264321502, to_date('04-JAN-06','dd-mon-rr'), to_date('03-JAN-07','dd-mon-rr'), 12 of the double

    (19) - select * from data

    20. Select Cust_id, beg_dt, max (end_dt) as end_dt, min (beg_dt), sg_cd

    21 of

    (22)

    23 select x.*, sum (flg) over (order by end_dt Cust_id partition) as grp

    24 of

    (25)

    26 select

    27 wagneur, case when lag (sg_cd, 1-9) over (order by end_dt Cust_id partition)! sg_cd = 1 END so that flg

    28 from data d

    x 29)

    x 30)

    Group 31 by Cust_id, sg_cd, grp

    32 * order of Cust_id, end_dt

    CUST_ID BEG_DT END_DT SG_CD

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

    264321502 1 MAY 97 19 MARCH 98 1

    264321502 21 MAY 98 17 FEBRUARY 03 6

    264321502 21 FEBRUARY 06 03-7.-04 1

    264321502 07 - SEP - 04 3 JANUARY 06 6

    264321502 4 JANUARY 06 3 JANUARY 07 12

  • How to change the password of a schema by using Oracle SQL Developer

    Hi need to change the password of a schema by using Oracle SQL Developer, how can I do?

    or maybe http://www.thatjeffsmith.com/archive/2012/11/resetting-your-oracle-user-password-with-sql-developer/

  • using Oracle job e-mail notification

    Hello

    I am trying to configure a job e-mail notification using Oracle 11 GR 2. By documnetation online, I made the following configuration, but email notification work is a failure. If you guys have any ideas, please help.

    Step 1:

    BEGIN

    DBMS_SCHEDULER.set_scheduler_attribute ('email_server', 'oracle.kotaise.com:25');

    DBMS_SCHEDULER.set_scheduler_attribute ('email_sender', ' [email protected]');

    END;

    /

    Step 2:

    BEGIN

    () DBMS_SCHEDULER.create_job

    job_name = > 'email_notification_job ',.

    job_type = > 'PLSQL_BLOCK ',.

    job_action = > ' NULL BEGIN; END;',

    start_date = > SYSTIMESTAMP,

    repeat_interval = > ' freq = minutely; BYSECOND = 0',

    enabled = > TRUE);

    END;

    /

    Step 3:

    BEGIN

    DBMS_SCHEDULER. () ADD_JOB_EMAIL_NOTIFICATION

    job_name = > 'email_notification_job ',.

    recipients = > ' [email protected] ',

    sender = > ' [email protected] ',

    subject = > 'Scheduler Job Notification-%job_owner%.%job_name%-%event_type%. "

    body = > ' event_type % occurred at % event_timestamp. ERROR_MESSAGE %'.

    events = > "JOB_FAILED, JOB_BROKEN, JOB_DISABLED, JOB_SCH_LIM_REACHED");

    END;

    /

    Step 4:

    I created the following post that runs a package that runs a package "test_package.pdata". This package is not created yet, because I wanted to see if the email notification works or not. As expected the 'TEST_JOB' failed due to missing package. But notification email '' email_notification_job' ' work, which takes place every minute, cannot send an e-mail notification.

    BEGIN

    SYS. DBMS_SCHEDULER. CREATE_JOB

    (

    job_name = > 'test_job '.

    , start_date = > SYSTIMESTAMP

    , repeat_interval = > ' freq = minutely; BYSECOND = 0'

    , end_date = > NULL

    , job_class = > 'DEFAULT_JOB_CLASS '.

    , job_type = > 'PLSQL_BLOCK '.

    , job_action = > ' BEGIN test_package.pdata; END; »

    , comments = > NULL

    enabled = > TRUE

    );

    end;

    /

    I questioned the DBA_SCHEDULER_NOTIFICATIONS table, and I see that email notification work has not begun.

    JOB_NAME EVENT RECIPIENT

    EMAIL_NOTIFICATION_JOB [email protected] JOB_FAILED

    EMAIL_NOTIFICATION_JOB [email protected] JOB_BROKEN

    EMAIL_NOTIFICATION_JOB [email protected] JOB_SCH_LIM_REACHED

    EMAIL_NOTIFICATION_JOB [email protected] JOB_DISABLED

    Thank you

    OK, now I understand your lack of understanding

    The ADD_JOB_EMAIL_NOTIFICATION procedure relates to employment that you specify in the parameter job_name. In your case, e-mail notifications will be sent against your email_notification_job, no test_job. You must use the ADD_JOB_EMAIL_NOTIFICATION for all the jobs you are interested in the result. So if you are interested in the results of running TEST_JOB, then you must specify this work for the ADD_JOB_EMAIL_NOTIFICATION procedure.

  • Deployment of application using Oracle EM failed

    Hello

    I use Jdeveloper 11.1.1.1.6, we previously deployed same EAR with V2.0, and now I'm trying to redeploy new EAR using Oracle EM, I get the error below. Any body has any idea what could go wrong?

    Archive selected ' Test.ear' is not versioned. You cannot redeploy application "Test_application1" without version. The application has been deployed previously versioned "V2.0."

    How to version an EAR before deployment?

    Thank you

    Please read Andrejus Baranovskis Blog: how to set the EAR Version for ADF Application on WebLogic which shows how to set up.

    Timo

Maybe you are looking for

  • Portege M400-103 starts very slowly

    My new M400-103 seems slow. I have another unit & even though it was a solo processor it still compares favourably in speed for example starting up my new machine.I saw that part of the problem may lie with all programs util that Toshiba load in stan

  • Sony Vaio laptop BSOD when waking from sleep. 8.1 64bits

    Hello My Sony vaio is strange. Whenever I put it to sleep and it wakes the BSOD while it recharges to the 'not found operating system". Now the power button down for 30 seconds and then it turning it back makes me back in the operating system without

  • Cannot find the shared library nilvaiu.dll and nican.dll.

    I'm using Labview 8.5.1 on windows XP 32-bit systems. Recently, I installed labview on a 64-bit XP system.  I feel what I think, problems of drivers on the 64-bit system, now. When executable files are run files are not: nilvaiu.dll and nican.dll.  S

  • How can I recover windows files on the start menu as "Accessories" after the fake recovery tool?

    My pc has been infected recently with the fake windows recovery tool. I don't know how to recover the files/folders in the start menu and the desktop that were there before.

  • Problem with my phone, need help from Sony

    HelloI bought my phone in Oct 17 with local agent warranty Sony "Cell Avenue", I noticed a flaw on the phone "pixel does not" same day to night and visited cell AAvenue to file a claim and raise a ticket the next day and this is what happened:1 asked