UTLRP script is not running properly

database version 8.1.7.4.1
windows 2000 server
UTLRP script is hanging up .
What can be the reasons?

my problem has been solved .
Actually there was inconsistency in archive mode operation.
log_mode was archivelog (v$database view)
sql> archive log list
Database log mode Archive Mode
Automatic archival Disabled
Archive destination d:\oracle\ora81\RDBMS
Oldest online log sequence 586
Current log sequence 588
I want development database in noarchive mode so I have altered database for
noarchivelog.
Now utlrp has completed it's operation.
Anyway thanks Satish
Cheers
Arun

Similar Messages

  • This SQL  script is not running properly

    The following is SQL script which I want to run.When I am running individual statements , all the statements are working. But When I am running script as a whole, its not working.
    what might be the problem with following script
    --the following table is created with list of Singapore Holidays
    set define off
    drop table exclude_date;
    create table exclude_date as
    select 2007 as year#, 1 month#, 1 day#, 'New Year Day' as name# from dual union all
    select 2007 as year#, 1 month#, 2 day#, 'New Year Day' as name# from dual union all
    select 2007 as year#, 2 month#, 18 day#, 'Chinese New Year' as name# from dual union all
    select 2007 as year#, 2 month#, 19 day#, 'Chinese New Year' as name# from dual union all
    select 2007 as year#, 2 month#, 20 day#, 'Chinese New Year' as name# from dual union all
    select 2007 as year#, 4 month#, 6 day#, 'Good Friday' as name# from dual union all
    select 2007 as year#, 5 month#, 1 day#, 'Labour Day' as name# from dual union all
    select 2007 as year#, 5 month#, 31 day#, 'Vesak Day' as name# from dual union all
    select 2007 as year#, 8 month#, 9 day#, 'National Day' as name# from dual union all
    select 2007 as year#, 10 month#, 13 day#, 'Hari Raya Puasa' as name# from dual union all
    select 2007 as year#, 11 month#, 8 day#, 'Deepavali' as name# from dual union all
    select 2007 as year#, 12 month#, 20 day#, 'Hari Raya Hji' as name# from dual union all
    select 2007 as year#, 12 month#, 25 day#, 'Christmas Day' as name# from dual ;
    show errors;
    drop type DateList;
    --This statement creates type of DateList for the function all_date_list which return DateList
    create or replace type DateList as table of date;
    show errors;
    --the following function returns list of working dates  between two dates excluding SAT , SUN and Singapore Holidays
    drop function all_date_list;
    create or replace function all_date_list(p_start date, p_end date)
    RETURN DateList
    PIPELINED
    IS
    curdate date:=p_start;
    exclude number;
    BEGIN
    WHILE curdate <= p_end
    LOOP
    BEGIN
    select 1
    into exclude
    from exclude_date
    where to_date(year#||lpad(month#,2,0)||lpad(day#,2,0),'YYYYMMDD')=trunc(curdate) --excluding unworked days
    or mod(to_char(curdate,'j'),7) in (5,6); --excluding week-end
    EXCEPTION WHEN NO_DATA_FOUND THEN PIPE ROW( curdate );
    WHEN OTHERS THEN NULL;
    END;
    curdate:=curdate+1;
    END LOOP;
    RETURN;
    END;
    show errors;
    --the following function returns number of working days  between two dates excluding SAT , SUN and Singapore Holidays
    drop function WorkingDays;
    CREATE OR REPLACE function WorkingDays(msgSentDate Date) return NUMBER is
    noOfWokingDays number;
    begin
    select count(*) into noOfWokingDays from table(all_date_list(msgSentDate,sysdate));
    return noOfWokingDays;
    end;
    show errors;

    --the following table is created with list of Singapore Holidays
    set define off
    drop table exclude_date;
    create table exclude_date as
    select 2007 as year#, 1 month#, 1 day#, 'New Year Day' as name# from dual union all
    select 2007 as year#, 1 month#, 2 day#, 'New Year Day' as name# from dual union all
    select 2007 as year#, 2 month#, 18 day#, 'Chinese New Year' as name# from dual union all
    select 2007 as year#, 2 month#, 19 day#, 'Chinese New Year' as name# from dual union all
    select 2007 as year#, 2 month#, 20 day#, 'Chinese New Year' as name# from dual union all
    select 2007 as year#, 4 month#, 6 day#, 'Good Friday' as name# from dual union all
    select 2007 as year#, 5 month#, 1 day#, 'Labour Day' as name# from dual union all
    select 2007 as year#, 5 month#, 31 day#, 'Vesak Day' as name# from dual union all
    select 2007 as year#, 8 month#, 9 day#, 'National Day' as name# from dual union all
    select 2007 as year#, 10 month#, 13 day#, 'Hari Raya Puasa' as name# from dual union all
    select 2007 as year#, 11 month#, 8 day#, 'Deepavali' as name# from dual union all
    select 2007 as year#, 12 month#, 20 day#, 'Hari Raya Hji' as name# from dual union all
    select 2007 as year#, 12 month#, 25 day#, 'Christmas Day' as name# from dual ;
    drop type DateList;
    create or replace type DateList as table of date;
    --the following function returns list of working dates  between two dates excluding SAT , SUN and Singapore Holidays
    drop function all_date_list;
    create or replace function all_date_list(p_start date, p_end date)
    RETURN DateList
    PIPELINED
    IS
    curdate date:=p_start;
    exclude number;
    BEGIN
    WHILE curdate <= p_end
    LOOP
    BEGIN
    select 1
    into exclude
    from exclude_date
    where to_date(year#||lpad(month#,2,0)||lpad(day#,2,0),'YYYYMMDD')=trunc(curdate) --excluding unworked days
    or mod(to_char(curdate,'j'),7) in (5,6); --excluding week-end
    EXCEPTION WHEN NO_DATA_FOUND THEN PIPE ROW( curdate );
    WHEN OTHERS THEN NULL;
    END;
    curdate:=curdate+1;
    END LOOP;
    RETURN;
    END;
    show errors;
    --the following function returns number of working days  between two dates excluding SAT , SUN and Singapore Holidays
    drop function WorkingDays;
    CREATE OR REPLACE function WorkingDays(msgSentDate Date) return NUMBER is
    noOfWokingDays number;
    begin
    select count(*) into noOfWokingDays from table(all_date_list(msgSentDate,sysdate));
    return noOfWokingDays;
    end;
    show errors;
    commit;
    The above script is not working properly.Last two fuctions are not executing.
    What might be the error?

  • FOR ALL ENTRIES stmnt. in SELECT query is not running properly

    Hello experts,
              In my report program, I write one query on table BSIS.
             Internal table declaration -             
           DATA : BEGIN OF DLC_BSIS OCCURS 0,
                            BUKRS LIKE BSIS-BUKRS,
                            GJAHR LIKE BSIS-GJAHR,
                            BELNR LIKE BSIS-BELNR,  
                            SHKZG LIKE BSIS-SHKZG,
                            BSCHL LIKE BSIS-BSCHL,
                            AUFNR LIKE BSIS-AUFNR,
                            HKONT LIKE BSIS-HKONT,
                            QSSKZ LIKE BSIS-QSSKZ,
                            DMBTR LIKE BSIS-DMBTR,
                       END OF DLC_BSIS.                                                                               
    Query as follows --
             SELECT BUKRS
                           GJAHR
                           BELNR
                           AHKZG
                           BSCHL
                           AUFNR
                           HKONT
                           QSSKZ
                            DMBTR FROM BSIS
                                      INTO TABLE DLC_BSIS
                                     FOR ALL ENTRIES IN IT_BKPF2
                                     WHERE BELNR = IT_BKPF2-BELNR
                                                  AND BUKRS = IT_BKPF2-BUKRS
                                                  AND GJAHR = IT_BKPF2-GJAHR.
    IT_BKPF2 internal table having -- BUKRS - LT01
                                                         BELNR - 6400000061
                                                         GJAHR - 2009.
    And in BSIS database  table  -- 3 entries are there for the above documnet.
    But, in my internal only one entry has come for the same above document.
    I think For all entries stmnt. is not running properly. But Why it's not running properly.??
    What would be the reason..??
    Thanks in advance....!!
    Regards,
    Poonam.

    >
    Poonam Patil wrote:
    > Hello experts,
    >           In my report program, I write one query on table BSIS.
    >
    >          Internal table declaration -             
    >                                            
    >        DATA : BEGIN OF DLC_BSIS OCCURS 0,
    >                         BUKRS LIKE BSIS-BUKRS,
    >                         GJAHR LIKE BSIS-GJAHR,
    >                         BELNR LIKE BSIS-BELNR,  
    >                         SHKZG LIKE BSIS-SHKZG,
    >                         BSCHL LIKE BSIS-BSCHL,
    >                         AUFNR LIKE BSIS-AUFNR,
    >                         HKONT LIKE BSIS-HKONT,
    >                         QSSKZ LIKE BSIS-QSSKZ,
    >                         DMBTR LIKE BSIS-DMBTR,
    >                    END OF DLC_BSIS.                                                                               
    >                           
    >          Query as follows --
    >
    >          SELECT BUKRS
    >                        GJAHR
    >                        BELNR
    >                        AHKZG
    >                        BSCHL
    >                        AUFNR
    >                        HKONT
    >                        QSSKZ
    >                         DMBTR FROM BSIS
    >                                   INTO TABLE DLC_BSIS
    >                                  FOR ALL ENTRIES IN IT_BKPF2
    >                                  WHERE BELNR = IT_BKPF2-BELNR
    >                                               AND BUKRS = IT_BKPF2-BUKRS
    >                                               AND GJAHR = IT_BKPF2-GJAHR.
    >
    > IT_BKPF2 internal table having -- BUKRS - LT01
    >                                                      BELNR - 6400000061
    >                                                      GJAHR - 2009.
    >
    > And in BSIS database  table  -- 3 entries are there for the above documnet.
    >
    > But, in my internal only one entry has come for the same above document.
    >
    > I think For all entries stmnt. is not running properly. But Why it's not running properly.??
    > What would be the reason..??
    >
    >
    > Thanks in advance....!!
    >
    > Regards,
    > Poonam.
    include the buzei field in selection criteria i have faced the same situation earlier.
    always select all the key fields.
    varun

  • Gimp will not run properly

    I just purchased a 24 inch Imac and Gimp will not run properly. I have the latest system updates and firmware. Gimp starts X11 and appears to load, but the only item visible is the Gimp menu, none of the tools. It shows as running in the dock.
    If I try to open a graphic with Gimp, it loads but the graphic is not visible and only the Gimp menu is visible in the menu bar. It shows up as running in the dock.
    It works fine on a G4 quicksilver. I have the latest version 2.2.11
    Thanks,
    Fran
    IMAG INTEL   Mac OS X (10.4)  

    Hello Francis,
    Did Gimp ever load properly? On first load, it should have gone through an installer within X11. Also, I've noticed that my image windows start up hidden. There also may be a bug in which clicking on the Gimp app icon in the dock itself won't bring the windows forward, so you have to use the X11 icon instead. Try using Expose to show all windows in all applications to see if they've opened but sort of "off-screen."
    It could be a bad installation, or it could be that somehow the toolbars and palettes, etc. in Gimp just never appeared. Check to make sure X11 is up to date as well. I'm currently running 1.1.3 with XFree86 4.4.0.

  • I have a copy of Web Premium CS3 which was installed on a Windows Vista PC.  I have a new Windows 7 PC and the installation disc will not run properly.  The installation begins and then asks for the CS3 disc to be inserted.  If I re-insert the CD I just g

    I have a copy of Web Premium CS3 which was installed on a Windows Vista PC.  I have a new Windows 7 PC and the installation disc will not run properly.  The installation begins and then asks for the CS3 disc to be inserted.  If I re-insert the CD I just get a message asking for the disc to be inserted.  any ideas anyone?

    Use the download version:
    Download CS3 products
    Mylenium

  • Captivate project not running properly on iPad

    Hello,
    I built a project using Captivate 7.0.  When I published the project, I checked both the SWF and HTML5 boxes so the tutorial would run on an iPad.  However, when I view the tutorial on the iPad, the tutorial does not run properly.  The pages do not advance (even though, in Captivate, I have the slides advancing automatically - not on mouse clicks), all of the bullets on a slide do not appear, and the narration stops in the middle of a slide and does not resume.
    Do you have any suggestions?
    Thank you,
    Sarah

    Hi Joel,
    I removed all bullet animations and re-published the project (I checked the "Force re-publish all the slides").  My tutorial runs on an iPad, without the slides hanging up.  It appears removing the bullet annimations solved that issue.  Thanks for the suggestion.
    However, neither my music introduction on the first slide nor my narration on subsequent slides comes in.  I confirmed I do not have "mute" on and that my volume is up.  Also, I confirmed the sound works by running the tutorial on my desktop. 
    Do you have any ideas?
    Thanks,
    Sarah

  • Vz protect not running properly

    I have the latest version, but it is not running properly (just keeps scanning).
    How can I fix this? Should I uninstall and then reinstall? Is there a charge to do that?

    hello lhill123, maybe that's an issue with hardware acceleration - first please try [[Upgrade your graphics drivers to use hardware acceleration and WebGL|updating your graphics driver]], or in case this doesn't solve the issue or there is no new version available at the moment, start firefox into safemode '''by pressing the shift key while the application is launching''' & disable hardware acceleration in the firefox ''menu ≡ > options > advanced > general'' (that setting will take a restart of the browser to take effect).
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • I have bought a iPhone 4 , yesterday . I heard that iOS 7 is not running properly on iPhone 4 , so I have decided to upgrade it to 6.1.2 . Please help to do this.

    I have bought a iPhone 4 , yesterday . I heard that iOS 7 is not running properly on iPhone 4 , so I have decided to upgrade it to 6.1.2 . Please help to do this.

    YOU CAN'T.
    If you upgrade your phone you can only upgrade to iOS 7 and that is it.  You can only ever update to the lastest available software, which in this case is iOS 7.  You either upgrade to this or not at all because you can't upgrade to anything else.

  • I defined custom action but it is not running properly.

    Hi,
    I defined custom action but it is not running properly.
    I deployed in MII (System Management --> Custom Actions)
    When i use it as an action in a transaction error below generated.
    Errors
    [ERROR]: STEP EXCEPTION (Custom_Action_0) : Item 'Custom_Action_0' is not an Action
    [ERROR]: STEP EXCEPTION (Custom_Action_0) : Item 'Custom_Action_0' is not an Action
    Custom action code is below.
    package com.wipro.action;
    import com.sap.xmii.xacute.actions.ActionReflectionBase;
    import com.sap.xmii.xacute.core.ILog;
    import com.sap.xmii.xacute.core.Transaction;
    @author cemil.bozlagan
    public class CustomAction extends ActionReflectionBase {
        private String strFirstInput;
        private String strSecondInput;
        private String strOutString;
        public CustomAction() {
            strFirstInput = "";
            strSecondInput = "";
            strOutString = "";
        @Override
        public String GetIconPath() {
            return "/com/wipro/action/resources/icons/CustomAction.png";
        @Override
        public void Invoke(Transaction trx, ILog ilog) {
            try {
                strOutString = strFirstInput + strSecondInput;
                // This varaible is defined in ActionReflectionBase class
                _success = true;
            } catch (Exception e) {
                _success = false;
        public String getFirstInput() {
            return strFirstInput;
        public void setFirstInput(String strFirstInput) {
            this.strFirstInput = strFirstInput;
        public String getSecondInput() {
            return strSecondInput;
        public void setSecondInput(String strSecondInput) {
            this.strSecondInput = strSecondInput;
        public String getOutString() {
            return strOutString;
        @Override
        public boolean isConfigurable() {
            return false;
    How can i solve this problem?
    Thanks.

    Hi Cemil,
    Pls check document, I hv sent to your mail.
    May be it helps.
    Regards
    Padma

  • Javascript does not run properly in Firefox

    Firefox does not run javascript properly.
    For example:
    http://vk.com/app2622342_40916334#NEW/comp1427
    Comment form does not run at all in Firefox ( the last version = 20.0.1)
    but runs OK in Opera.
    WHY?
    Mozilla still is HALF-DONE SOFTWARE!!!!!!!
    WHEN YOU DO IT IN A GOOD WAY?

    I have javazcript-enabled = TRUE in my about:config. So your comment did not solve my problem. I noticed that javascript does not run properly in some websites (forms in vk.com) but those forms run OK in OPERA - how can you explain this!?
    And I have no errors in the Web Console (Firefox/Tools > Web Developer).
    I wrote you a link to the page where javascript does not work.
    ( you need to login to vk.com to see that page
    http://vk.com/app2622342_40916334#NEW/comp1427
    )

  • 'Mail" not running properly

    After updating to Lion (10.7.2), "Mail" will not run properly. For each of my accounts, either the incoming or outgoing servers go offline, and while I can access incoming mail (sometimes), outgoing is impossible. I have deleted and reinstalled all of my accounts. Doesn't help.
    Anyone else having issues?

    WHOA!!!!! meant to say "After installing LION...."!!!
    Sorry.....

  • [svn:bz-trunk] 13744: Bug: BLZ-481 - AMFConnection JUnit test do not run properly as part of checkintests on Mac  (and Windows?)

    Revision: 13744
    Revision: 13744
    Author:   [email protected]
    Date:     2010-01-25 01:14:09 -0800 (Mon, 25 Jan 2010)
    Log Message:
    Bug: BLZ-481 - AMFConnection JUnit test do not run properly as part of checkintests on Mac (and Windows?)
    QA: No
    Doc: No
    Checkintests: Pass
    Details:
    -Don't start the server before unit task, unit task already checks if the server is not running and starts the server.
    -Don't stop the server after FlexUnit tests, JUnit tests need the server running, and they will stop the server after they are done.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-481
    Modified Paths:
        blazeds/trunk/build.xml
        blazeds/trunk/qa/apps/qa-regress/testsuites/flexunit/build.xml

    Tony,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Modify a Script To Not Run at Shutdown?

    Using the archstats script listed below, how could I alter the script so that it only runs the $ARCHSTATS_CMD command during boot but not when shutting down? I see that is handled by the 'stop)' section, but I am unclear how to properly remove this portion and still have the script operate as desired.
    #!/bin/bash
    . /etc/rc.conf
    . /etc/rc.d/functions
    # NOTE: If you use an alternate location for your archstats.conf file,
    # make sure to set that accordingly with the -c switch
    # Set this to the 'archstats' client path
    ARCHSTATS_CMD='/usr/bin/archstats'
    case "$1" in
    start)
    stat_busy "Updating ArchStats"
    if [ -x "$ARCHSTATS_CMD" ]; then
    "$ARCHSTATS_CMD" -u
    stat_done
    else
    stat_fail
    fi
    stop)
    stat_busy "Updating ArchStats"
    if [ -x "$ARCHSTATS_CMD" ]; then
    "$ARCHSTATS_CMD" -u
    stat_done
    else
    stat_fail
    fi
    echo "usage: $0 {start|stop}"
    esac
    exit 0

    I would guess this, just remark out the "stop" code. Just add "#" to the start of a line to remark it out, so it does not run.
    #!/bin/bash
    . /etc/rc.conf
    . /etc/rc.d/functions
    # NOTE: If you use an alternate location for your archstats.conf file,
    # make sure to set that accordingly with the -c switch
    # Set this to the 'archstats' client path
    ARCHSTATS_CMD='/usr/bin/archstats'
    case "$1" in
    start)
    stat_busy "Updating ArchStats"
    if [ -x "$ARCHSTATS_CMD" ]; then
    "$ARCHSTATS_CMD" -u
    stat_done
    else
    stat_fail
    fi
    stop)
    # stat_busy "Updating ArchStats"
    # if [ -x "$ARCHSTATS_CMD" ]; then
    # "$ARCHSTATS_CMD" -u
    # stat_done
    # else
    # stat_fail
    # fi
    echo "usage: $0 {start|stop}"
    esac
    exit 0

  • Linux Sh script is not running in forms10g(10.1.2)

    Hi
    The Oracle Forms server is installed in Linux.
    I have placed the below host commands in forms10g. The Host command is running but shell sh script is not executed.
    BEGIN
    :GLOBAL.DIR_PATH:='/forms/shell_files/';
    Host(:GLOBAL.DIR_PATH||'my_shell.sh'||' > '||:GLOBAL.DIR_PATH||'my_shell.log');
    END;
    I tried to execute the sh file and redirect the output to log file.
    But log file has been created with blank file. but shell sh script is not executed.
    I have given the full path of the shell sh file and given the full rights for the sh file.
    Is there any access permission to be set for sh file execution?
    Please help.Thank you in advance.

    OS: UNIX Solaries, Oracle Application Server 10g
    To run shell script from Oracle Forms, I used the following host('/bin/bash /u01/compile.sh') and it works well
    Now, I need to run unix command something like
    host('mv form1.fmx FORM1.FMX') but it's not working
    I tried to append the command mv form1.fmx FORM1.FMX' to the compile.sh shell script but also it's not working although the rest lines of the shell script is running well

  • Java Script Code not working properly for visios in sharepoint 2013

    Hi all ,
                 I have few visios and I am using the visio web part to display and to redirect from one visio to other visio I am using the java script code through content editor web part . 
    In share point 2010 it's working fine , I was able to redirect to all the visios and code is working fine .
    In share point 2013 its not the same , Its not working properly . only for the first time the code is working fine . once it goes to next visio the code stops working . 
    For example if i click in visio A it gets redirect to Visio B and its stops working , it wont allow to do any other steps . 
    I have checked with the URL its correct , I am not able to find any error also .
    Indresh

    This will be likely caused by the Minimal Download Strategy not registering the Javascript on the page reload. You can turn off the MDS feature to test this.
    You can either turn off MDS in your site, or register your Javascript functions with MDS to ensure they are called. To do this, you'll need all of your code to be wrapped in a javascript file (Embed this on the page using a <script> tag and
    inside that file in a function, which you then register with MDS as follows (I usually do this in the first line of the javascript file):-
    RegisterModuleInit("/SiteAssets/YourJavaScriptFile.js", NameOfYourFunction);
    Regards
    Paul.
    Please ensure that you mark a question as Answered once you receive a satisfactory response. This helps people in future when searching and helps prevent the same questions being asked multiple times.

Maybe you are looking for

  • RAM in MacBook Pro i7?

    I'm a very happy iPad user considering getting my first Mac -- and have pretty much settled on the 2.66Ghz Core i7 MacBook Pro. My biggest question concerns the RAM installed in the machine. I'd like to max it out to 8 gigs, and want to know how much

  • IDM 6 - Websphere datasource to Oracle

    Is there anyone usuing IDM 6 on Websphere app server and through datasource to connect Oracle database? If you do and IDM runs not problem, could you please share your webspher version, oracle version with me. I got issue connect to oracle when xml s

  • Personal Web Sharing not starting in 10.4.7

    Okay, I've been reading through here trying to fix my problem with PWS, but my symtoms don't match anyone elses. I haven't tried installing PHP 5 (though I want to) and I haven't tried upgrading to Apache 2 (though I don't know if OS X 10.4.6 - 4.7 i

  • Mm stock transfer in excisible scenario...

    Hi gurus, there are certain scenarios: 1)suppose i want to do sto from plant a to plant b. but both lie in different excisible zones. how is it mapped in sap . Give me detailed step by step (t.codes) 2) I purchased some raw materials for which i had

  • Setting the focus to a text field on a subform in the form initialize event.

    I have a form that checks the rawValue of a text field to determine whether or not the focus should be set on a particular text field. Here is the logic: if(txtEmailVisible.rawValue == "visible") frmEmailData.presence = "visible"; xfa.host.setFocus(x