V$RMAN_BACKUP_JOB_DETAILS view showing rman status running

Hi,
There is no rman session running in the database but still V$RMAN_BACKUP_JOB_DETAILS shows status as running
select SID,username, opname,to_char(START_TIME,'dd mm yyyy hh:mm:ss'),TOTALWORK, sofar, (sofar/totalwork) * 100 done,TIME_REMAINING/3600/24,
to_char(sysdate + TIME_REMAINING/3600/24,'dd mm yyyy hh:mm:ss') end_at
from v$session_longops
where totalwork > sofar
AND opname NOT LIKE '%aggregate%'
AND opname like 'RMAN%'SQL>   2    3    4    5    6
  7  ;
no rows selected
SQL> select sid, CLIENT_INFO ch, seq#, event, state from v$session where program like '%rman%';
no rows selected
SQL> select SESSION_KEY,SESSION_RECID,START_TIME,END_TIME,STATUS from V$RMAN_BACKUP_JOB_DETAILS where START_TIME > sysdate-3;
SESSION_KEY SESSION_RECID START_TIM END_TIME  STATUS
       2853          2853 20-NOV-12 20-NOV-12 COMPLETED
       2862          2862 22-NOV-12           RUNNING
       2864          2864 22-NOV-12 22-NOV-12 COMPLETEDplease can anyone shed some light on it
Thanks

Fixed.
In my solution I grabbed the command id from the details view and then matched that with the sid in the status view
SQL> select session_key, command_id, status, time_taken_display from v$rman_backup_job_details where command_id='2012-11-27T22:30:37';
SESSION_KEY COMMAND_ID                        STATUS
TIME_TAKEN_DISPLAY
        602 2012-11-27T22:30:37               RUNNING WITH ERRORS
16:32:53
SQL> select sid from v$rman_status where COMMAND_ID='2012-11-27T22:30:37';
       SID
         4
         4
SQL>then I made sure I was sys, before grabbing the session info and killing the session
SQL> select user from user_users;
USER
SYS
SQL>
SQL> select sid,serial#,inst_id from gv$session  where sid=4 and serial#=3;
       SID    SERIAL#    INST_ID
         4          3          2
SQL> alter system kill session '4,3,@2' immediate;
System altered.
SQL> let me know if this worked for you.
hope this helps, C

Similar Messages

  • My iTunes 11 Mac Install is Missing "View- Show/Hide Status Bar" Options

    All:
    Okay...this is weird.  I did an upgrade from iTunes 10 to 11 on my Snow Leopard MacBook Air.   Under the "View" menu, it has the "Show Sidebar" option.  However, it does NOT have the "Show Status Bar" or "Hide Status Bar" options at all (screen shot below).  What gives???
    - Billish

    Our two Macs also lack the "Show/Hide Status Bar" View menu item. This is a giant fail on Apple's part— I am being inundated with support calls about this. I have found a link to iTunes 10.7 and am advising all upset clients to dump iTunes 11 and download and re-install iTunes 10.7 until the issues are fixed.
    Among other issues: iTunes 11 no longer automatically imports mp3 optical disks into its library as it did in iTunes 10.7.
    Now, when we want to import mp3s from an optical disk, we have to do it manually:
    1) insert optical disk
    2) select File>Add to Library (or Command-O)
    3) click on the optical disk in in the Devices sidebar of the dialog box that opens
    4) select the tracks to install
    5) click "Okay" or hit the Return key
    5 steps to accomplish what once happened upon just inserting the disk!
    If my clients are any indication, this is a pretty big deal. Apple would be well-advised to fix this fast.
    Our Macs:
    2006 Core Duo Mini, 1.66 gHz, 2Gb RAM, 256 Gb Sandisk SSD, OS X 10.6.8
    2008 MBP OS X 10.6.8
    2002 iBook OS X 10.5.x

  • Why does it show RMAN is still running...

    I am using RMAN in Oracle 11.2.
    I tried kicking off RMAN a few times to test my script, and then did a kill -9 on the process numbers.
    But I found out that RMAN was still running in the database, and was using a lot of System I/O (from what I could see in OEM).
    I see the session in Toad and killed them from within Toad, and the system I/O dropped off.
    I could also see in OEM that my RMAN processes were killed off.
    So, first, why didn't the kill -9 actually kill the processes running in the database?
    Next, when I still look in V$RMAN_BACKUP_JOB_DETAILS, it shows I have some jobs still running.
    How do I terminate these processes?
    I need to do this as soon as possible. Please help if you can.

    There is nothing there any longer.
    But it still shows up in V$RMAN_BACKUP_JOB_DETAILS.
    SQL> select username, program, status from v$session where status = 'ACTIVE' and username is not null order by 1;
    USERNAME                 PROGRAM                                          STATUS
    ARADMIN                  oracle@cassini (P003)                            ACTIVE
    ARADMIN                  [email protected] (TNS V1-V3)                 ACTIVE
    ARADMIN                  oracle@cassini (P002)                            ACTIVE
    DBSNMP                   emagent@cassini (TNS V1-V3)                      ACTIVE
    SYS                      sqlplus@cassini (TNS V1-V3)                      ACTIVE
    SYSMAN                   OMS                                              ACTIVE
    6 rows selected.
    SQL>  select username, program, status from v$session where username = 'SYS';
    USERNAME                 PROGRAM                                          STATUS
    SYS                      OMS                                              INACTIVE
    SYS                      sqlplus@cassini (TNS V1-V3)                      ACTIVE
    SYS                      OMS                                              INACTIVE
    3 rows selected.But, yet if I query V$RMAN_BACKUP_JOB_DETAILS, you see it says it is running.
        SESSION_KEY INPUT_TYPE    STATUS    START_TIME     END_TIME           HRS
               4252 DB INCR       COMPLETED 12/10/12 01:00 12/10/12 01:07     .13
               4258 DB INCR       RUNNING   12/10/12 13:53
               4260 DB INCR       RUNNING   12/10/12 13:57
               4262 DB INCR       RUNNING   12/10/12 14:03
               4264 DB INCR       RUNNING   12/10/12 14:06
               4266 DB INCR       RUNNING   12/10/12 14:08

  • Which views have RMAN backup jobs information?

    Hi there,
    I use EM to schedule the db backup using RMAN.
    I can view the jobs in the EM.
    But I can not find out which views have RMAN backup jobs information in sqlplus.
    like dba_scheduler_jobs.
    Your advice will be appreciated.
    Thanks,
    SZ

    Hi,
    V$RMAN_STATUS - Shows the success/failure status of all recently completed RMAN jobs.
    V$RMAN_OUTPUT
    Displays messages reported by an RMAN job in progress
    If you want to monitor then go the following :-
    Monitoring RMAN Job Progress :- view V$SESSION_LONGOPS.
    first Step :-
    Before starting the job, create a script file (called, for this example, longops) containing the following SQL statement:
    SELECT SID, SERIAL#, CONTEXT, SOFAR, TOTALWORK,
    ROUND(SOFAR/TOTALWORK*100,2) "%_COMPLETE"
    FROM V$SESSION_LONGOPS
    WHERE OPNAME LIKE 'RMAN%'
    AND OPNAME NOT LIKE '%aggregate%'
    AND TOTALWORK != 0
    AND SOFAR <> TOTALWORK
    After connecting to the target database and, if desired, the recovery catalog database, start an RMAN job. For example, enter:
    RESTORE DATABASE;
    While the job is running, start SQL*Plus connected to the target database, and execute the longops script to check the progress of the RMAN job. If you repeat the query while the restore progresses, then you see output such as the following:
    SQL> @longops
    SID SERIAL# CONTEXT SOFAR TOTALWORK %_COMPLETE
    8 19 1 10377 36617 28.34
    SQL> @longops
    SID SERIAL# CONTEXT SOFAR TOTALWORK % COMPLETE
    8 19 1 21513 36617 58.75
    Cheers
    Pavan Kumar N

  • Workflow attached to content type shows the status as 'Starting'

    Hi,
    I have developed a workflow to distribute documents from Drop Off library to different SharePoint libraries based on the content type that the document uploaded to.
    The drop off library has been configured incoming mail settings hence the documents would be on boarded to drop off library through e-mails. In this scenario, my workflow should be triggered when the document is on boarded through email.
    Another scenario, the user can upload the document to different content type manually and updates the respective meta data values. This scenario, my workflow should be triggered when the item updated.
    So, I have configured my workflow should run on the content types and trigger when item is created through e-mail and item is updated by manual.
    The document on boarded through e-mails are working fine as soon as the item is created.
    Issue:
    The workflow associated on a content type which needs to be triggered on item created is triggering as soon as the user uploads a document manually and shows the status as 'Starting'.
    The workflow associated on a content type which needs to be triggered on item modified is triggering as soon as the user updating meta data values after document is uploaded. Hence, throwing an error
    'cannot open a file from drop off' library exception when I try to read file using C# code as file stream bytes.
    Configuration:
    1. The content types are having mandatory fields which has a default values set.
    2. The document version settings are set as check out the document when editing the properties.
    Please help me to resolve this bug and let me know if you need more details.
    Also, let me know how can we cancel the workflow if it is in 'starting' mode.
    The workflow should run the document is onboardedwhen an item is created and

    Hi,
    According to your description, my understanding is that you want to get data from content type in JSlink.
    I suggest you can get the content type data in JSLink using JavaScript Client Object Model.
    Here are some derailed code demos for your reference:
    http://sharepoint.aspcode.net/view/635399286724222582163436/sharepoint-how-to-get-field-value-using-jsom-jslink-without-async-call
    http://sharepoint.stackexchange.com/questions/93777/how-to-get-contenttype-name-in-clientsidejavascript-jquery-csom-etc-in-editf
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • Waiting for the service MSExchangeMailboxAssistants to reach status Running

    I have to say that the installation of Exchange Server 2013 SP1 has been an emotional experience so far. I have encountered and fixed approximately 20 errors so far and can still not complete the installation.  Errors have ranged from adding a registry
    key for "Pickup" to toggling IPv6 settings etc.  The errors haven't been too bad up to now as they're clearly stated in both the setup log and event viewer.  A quick Google search usually gives a few solutions to try and eventually fix
    the problem.
    My recent error has been difficult to find a solution to as the setup log simply says it cannot start the "MSExchangeMailboxAssistants" service.  I have tried to start the service manually but the event log doesn't show any messages relating
    to the stopping of the service.
    Error:
    Service 'MSExchangeMailboxAssistants' failed to reach status 'Running' on this server.
    Platform:
    Windows Server 2012 R2
    Exchange Server 2013 SP1
    Things I've tried:
    Starting all Exchange services.  All are working fine.
    Started MSExchangeMailboxAssistants.  Stopped immediately without an errors in event log.
    Started MSExchangeMailboxAssistants.exe from command prompt.  Wouldn't start as it's a service.
    Used cmdlet to increase logging level to "high" and "expert" for all 'MSExchangeMailboxAssistants' services.  Started service again and nothing logged.
    Installed Operations Manager.  Nothing logged.
    Manually removed Exchange from server several times and reinstalled.  Cleaned out AD, registry, files, IIS etc.  No change, same error.
    Try installing with and without Malware Protection.
    Checked IPv6 is enabled on all NICs.
    Checked registry settings for quotes around file name.  It does contain the quotes so nothing to fix.
    Checked Exchange 2013 SP1 is compatible with Windows Server 2012 R2.  The original version wasn't but SP1 is.
    I'm all out of ideas now and no error message in the logs to google.
    Any help would be appreciated.

    Thank you for your reply Exchange Shelly, I really appreciate your help.
    Unfortunately, "MSExchangeTransport" failing to start was one of the many issues that I encountered during the installation of Exchange 2013 SP1 on Windows 2012 R2.  I had already visited the website mentioned above (which was very helpful) and
    the registry key is already in place.
    I did double check the registry after reading your reply just in case and can confirm it's definitely there.
    If I could get an error message when the MSExchangeMailboxAssistants service fails to start, I would have a fighting chance.  I've tried increasing the logging level using the cmdlet and the registry but still not seeing anything in the Event Log.

  • ISE 3315 show application status ise taking so long

    Hi,
    I have a brand new ISE 3315 appliance  running 1.1.1.268 , whenver I try to issue the command "show application status ise" , it takes so long time before it shows the output ..the same when I try to start or stop the application ..
    I would like to know if the NTP reachability can cause this kind of behavior .. I'm still testing the appliance in the lab , and I have no NTP server , but I have created local DNS server on a router.
    any ideas !

    Hi
    The Execute Network Device Command diagnostic tool allows you to run the show command on any network device. The results are exactly what you would see on a console, and can be used to identify problems in the configuration of the device. You can use it when you suspect that the configuration is wrong, you want to validate it.
    Please make sure that you have performed these steps:
    Step 1 Choose Operations > Troubleshoot > Diagnostic Tools > General Tools > Execute Network Device Command.
    Step 2 Enter the information in the appropriate fields.
    Step 3 Click Run to execute the command on the specified network device.
    Step 4 Click User Input Required, and modify the fields as necessary.
    Step 5 Click Submit to run the command on the network device, and view the output.

  • I updated win7 and now I cant see ff. I have reinstalled it 5 times now. It shows it is running in task manager but it is not visible on the desk top.

    I installed win7 ultimate and then ff. ff worked fine until I installed win7 service pack 1 and all the other updates it recommended. I click to open ff and nothing happens. I look in task manager and it shows it is running. It is not visible on the screen or in the task bar. I have reinstalled a fresh download of it 5 times. I even tried the beta version but still the same problem. I can use explorer and chrome ok but not ff.

    The "System Tray" is located at the very bottom right of your screen and is a list of most/all running applications that will show in this list.
    For your SysFader issue, this "may" be the problem:
    1 Find the "My Computer" desktop icon and right-click it. A pull-down menu will appear. Select "Properties."
    2 Click on the "Advanced" tab. This will load a new page of options.
    3 Select the "Visual Effects" tab at the top of the window and deselect "Animate Windows when minimizing and maximizing," "Fade or slide menus into view," "Fade or slide Tool Tips into view" and "Fade out Menu items after checking."
    4 Click "OK." This will remove most if not all of the Sysfader effects, at the same time correcting related errors that used to come up during opening a new file or program.

  • How to show network status in top toolbar?

    how to show network status in top toolbar? Network preferences is there, but network status has disappeared on last reset of Airport Express, but may not be connected. Thanks in advance for practical help

    Interestingly, in my experience, using the method described above of unchecking the "Show Connected Servers" box in the Finder Preferences makes no difference in what I can put in the sidebar. I was able to move a sub-folder of a shared disk to the Favorites section of the Finder Sidebar, but nothing else. (i.e. I could not add the shard disk itself to the sidebar – either to the devices, favorites, or any other section, and I could only add a subfolder of the shared disk to the favorites section – not to the devices section or any other section). This was the same whether I had "Show Connected Servers" checked or not.
    I'm running OS X Mavericks, and the setup I have is with a previous generation Time Capsule (i.e. the short, square kind that you could buy before the most recent taller variety came out last year), with a LaCie 3 TB USB 3.0 external drive plugged into the USB port of the Time Capsule. I'm then accessing this network drive over WiFi. The differences in what I'm seeing may be due to some change they made in the way Mavericks handles these setups.
    I could also just be misunderstanding what you're saying, but I thought I'd add this in case anyone else gets similar results so that they'd know they're not alone. Let me know if I'm missing something here.

  • Urgent,showing error while running form..pls,help...

    Hi,
    I have created my own view named GP_NUIF_V and have also successfully established a Database connection,using FWK_TBX_TUTORIAL.I have developed a personal page in Oracle9i JDeveloper ,which is to fetch particular details from my view and show it .. but whenever I run my form I am continuously getting this type of error..pls,help me out ,as my project delivery is nearing..for this I am not been able to head on to registering the form..I have checked from Pl/Sql developer that my query is just running fine as I wanted it to be..I have also changed the FNDNAM in the .dbc file to my view name but it is giving me the same error..please,look at my error and suggest all other ways in how I can solve my problem ,as early as possible..
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.adf.mds.exception.MDSRuntimeException
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1064)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1794)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:463)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:384)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    oracle.adf.mds.exception.MDSRuntimeException
         at oracle.adf.mds.internal.MUnResolvedState.resolveState(MUnResolvedState.java:193)
         at oracle.adf.mds.internal.ElementData.resolveState(ElementData.java:509)
         at oracle.adf.mds.internal.ElementData.getUntransAttrVal(ElementData.java:922)
         at oracle.adf.mds.internal.ElementData.getAttrVal(ElementData.java:835)
         at oracle.adf.mds.internal.ElementData.getAttributeValue(ElementData.java:260)
         at oracle.adf.mds.internal.Cache.getAttribute(Cache.java:237)
         at oracle.adf.mds.internal.MetadataManagerBase.getAttributeValueInternal(MetadataManagerBase.java:1069)
         at oracle.adf.mds.internal.MElementImpl.getAttrValueOrExpression(MElementImpl.java:620)
         at oracle.adf.mds.internal.MElementImpl.getAttributeValue(MElementImpl.java:230)
         at oracle.adf.mds.MElement.getLocalRef(MElement.java:291)
         at oracle.apps.fnd.framework.webui.JRADWebBeanMetaData.getUINodeName(JRADWebBeanMetaData.java:1812)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.addAkChildren(OAWebBeanContainerHelper.java:223)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:197)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:123)
         at oracle.apps.fnd.framework.webui.OARowLayoutHelper.setMetaDataProperties(OARowLayoutHelper.java:74)
         at oracle.apps.fnd.framework.webui.OARowLayoutHelper.createWebBean(OARowLayoutHelper.java:53)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1046)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:782)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:469)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:460)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.addAkChildren(OAWebBeanContainerHelper.java:229)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:197)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:123)
         at oracle.apps.fnd.framework.webui.OAContentContainerHelper.setMetaDataProperties(OAContentContainerHelper.java:74)
         at oracle.apps.fnd.framework.webui.OAContentContainerHelper.createWebBean(OAContentContainerHelper.java:55)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1046)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:782)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:469)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:460)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.addAkChildren(OAPageLayoutHelper.java:657)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:197)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:123)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.setMetaDataProperties(OAPageLayoutHelper.java:243)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.createWebBean(OAPageLayoutHelper.java:194)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1046)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:993)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:902)
         at oracle.apps.fnd.framework.webui.OAPageBean.createRootWebBean(OAPageBean.java:3966)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:1962)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1562)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:463)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:384)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    oracle.adf.mds.exception.MDSRuntimeException
         at oracle.adf.mds.internal.MUnResolvedState.resolveState(MUnResolvedState.java:193)
         at oracle.adf.mds.internal.ElementData.resolveState(ElementData.java:509)
         at oracle.adf.mds.internal.ElementData.getUntransAttrVal(ElementData.java:922)
         at oracle.adf.mds.internal.ElementData.getAttrVal(ElementData.java:835)
         at oracle.adf.mds.internal.ElementData.getAttributeValue(ElementData.java:260)
         at oracle.adf.mds.internal.Cache.getAttribute(Cache.java:237)
         at oracle.adf.mds.internal.MetadataManagerBase.getAttributeValueInternal(MetadataManagerBase.java:1069)
         at oracle.adf.mds.internal.MElementImpl.getAttrValueOrExpression(MElementImpl.java:620)
         at oracle.adf.mds.internal.MElementImpl.getAttributeValue(MElementImpl.java:230)
         at oracle.adf.mds.MElement.getLocalRef(MElement.java:291)
         at oracle.apps.fnd.framework.webui.JRADWebBeanMetaData.getUINodeName(JRADWebBeanMetaData.java:1812)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.addAkChildren(OAWebBeanContainerHelper.java:223)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:197)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:123)
         at oracle.apps.fnd.framework.webui.OARowLayoutHelper.setMetaDataProperties(OARowLayoutHelper.java:74)
         at oracle.apps.fnd.framework.webui.OARowLayoutHelper.createWebBean(OARowLayoutHelper.java:53)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1046)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:782)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:469)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:460)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.addAkChildren(OAWebBeanContainerHelper.java:229)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:197)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:123)
         at oracle.apps.fnd.framework.webui.OAContentContainerHelper.setMetaDataProperties(OAContentContainerHelper.java:74)
         at oracle.apps.fnd.framework.webui.OAContentContainerHelper.createWebBean(OAContentContainerHelper.java:55)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1046)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:782)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:469)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:460)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.addAkChildren(OAPageLayoutHelper.java:657)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:197)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:123)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.setMetaDataProperties(OAPageLayoutHelper.java:243)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.createWebBean(OAPageLayoutHelper.java:194)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1046)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:993)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:902)
         at oracle.apps.fnd.framework.webui.OAPageBean.createRootWebBean(OAPageBean.java:3966)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:1962)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1562)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:463)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:384)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)

    Don't put reposts. Follow the issue at one place Re: Urgent,showing error while running form..pls,help...
    --Shiv                                                                                                                                                                                                                                                                   

  • HELP: Oracle VM Manager 3.1.1  VM Server Status Running (Error)

    Hi All,
    I have updated the latest patch of VM Manager 3.1.1. In my server pool, I have 3 VM servers.
    All VM Server shows Status Running (Error). I don't care about the small red x icons displayed on the VM Manager but it stops all my operations:
    1. Not able to Edit the virtual machine from one server.
    OVMAPI_9013E Cannot perform operation on Virtual Machine: racnode1, no server available.
    Wed Nov 07 14:29:32 PST 2012
    2. Not able to Remove a VM Server from the Server pool
    com.oracle.ovm.mgr.api.exception.RuleException: OVMRU_004004E: - Cannot delete server: vmsvr2.X.com, while it is in a server pool
    Wed Nov 07 14:31:21 PST 2012
    at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:151)
    at com.oracle.odof.command.InvokeMethodCommand.process(InvokeMethodCommand.java:100)
    at com.oracle.odof.core.BasicWork.processCommand(BasicWork.java:81)
    at com.oracle.odof.core.TransactionManager.processCommand(TransactionManager.java:773)
    at com.oracle.odof.core.WorkflowManager.processCommand(WorkflowManager.java:401)
    at com.oracle.odof.core.WorkflowManager.processWork(WorkflowManager.java:459)
    at com.oracle.odof.io.AbstractClient.run(AbstractClient.java:42)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: com.oracle.ovm.mgr.api.exception.RuleException: OVMRU_004004E: - Cannot delete server: vmsvr2.X.com, while it is in a server pool
    Wed Nov 07 14:31:21 PST 2012
    at com.oracle.ovm.mgr.rules.modules.api.physical.ServerRules.onPersistableCleanPre(ServerRules.java:249)
    at com.oracle.ovm.mgr.api.job.JobEngine.invokeMethod(JobEngine.java:662)
    at com.oracle.ovm.mgr.api.job.JobEngine.invokeMethod(JobEngine.java:631)
    at com.oracle.ovm.mgr.rules.RulesEngine.runRules(RulesEngine.java:190)
    at com.oracle.ovm.mgr.rules.RulesEngine.preProcess(RulesEngine.java:142)
    at com.oracle.ovm.mgr.model.ModelEngine.preValidate(ModelEngine.java:547)
    at com.oracle.ovm.mgr.model.ModelEngine.access$200(ModelEngine.java:65)
    at com.oracle.ovm.mgr.model.ModelEngine$3.notify(ModelEngine.java:352)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:325)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:289)
    at com.oracle.odof.core.storage.Transaction.invokeMethod(Transaction.java:826)
    at com.oracle.odof.core.Exchange.invokeMethod(Exchange.java:245)
    at com.oracle.odof.core.Exchange.invokeMethod(Exchange.java:219)
    at com.oracle.ovm.mgr.api.job.JobEngine.invokeMethod(JobEngine.java:744)
    at com.oracle.ovm.mgr.api.manager.ModelManagerDbImpl.deleteObject(ModelManagerDbImpl.java:868)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:329)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:289)
    at com.oracle.odof.core.storage.Transaction.invokeMethod(Transaction.java:826)
    at com.oracle.odof.core.Exchange.invokeMethod(Exchange.java:245)
    at com.oracle.ovm.mgr.api.manager.ModelManagerProxy.deleteObject(Unknown Source)
    at com.oracle.ovm.mgr.api.manager.OvmManagerImpl.deleteObjectInternal(OvmManagerImpl.java:386)
    at com.oracle.ovm.mgr.api.manager.OvmManagerImpl.deleteObject(OvmManagerImpl.java:409)
    at com.oracle.ovm.mgr.api.manager.OvmManagerImpl.deleteObject(OvmManagerImpl.java:391)
    at com.oracle.ovm.mgr.api.system.FoundryDbImpl.deleteServer(FoundryDbImpl.java:1007)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:329)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:289)
    at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:136)
    ... 7 more
    I can't help to complain. The VM Manager just have been so buggy. Can't anyone help!
    Edited by: 969880 on Nov 7, 2012 2:33 PM
    Edited by: 969880 on Nov 7, 2012 2:34 PM

    I used to see this message in my Oracle VM.
    Your all questions are the same root cause is cause from your VM Servers are not available. If you want edit or remove virtual machine is need your VM Servers are available. If you want to remove Server Pool is need all VM Server are removed from it first and also cannot deleted VM Servers too.
    What you have to do first is make all VM Servers up and available.
    Option1. You can try to restart VM Serer agent (ovs-agent) and Oracle VM Manager service (ovmm) and try to log out and log in.
    Option2. Restore Oracle VM from backup with option --UUID of previous VM Manager.
    Thanks and regards,
    Vandy

  • Viewing shows with an external HDMI TV

    Running FCP on a 27" iMac and would like to hook up an external TV to view shows from within FCP. Currently outputting then reviewing on an HDMI TV because I don't get an accurate view of the show from either viewer in FCP. Can I hook up an HDMI TV using a Mini Display (plugged into a Thunderbolt port) to HDMI cable AND get an accurate representation of the video with this setup? This would save so much time.

    Yes, you can output to your HDMI TV using a mini displayport to HDMI adapter. Note that no all adapters carry audio, so make sure you choose one that does.
    The TV will appear like another monitor your mac can use. You can elect to Show Viewers on Second Display and then put the viewer on full screen.

  • Oracle SSO not showing up status after rebooting the 10gapplication server

    Hi all,
    I installed 10g R2 10.1.2.0.2 application server RHEL AS 4.0 2.6.9-11 kernel.
    After the successful installation IM and MR and MT (BI). All the components in the MT and infrastructure was showing up status. After rebooting the machine i executed the following commands
    For Infrastructure
    1.     To make the metadata repository up and running
    Log in as an oracle user
    #cd /home/oraASInfra/bin
    #export ORACLE_HOME=/home/oraASInfra
    #export ORACLE_SID=mamcinfr
    #./lsnrctl start
    #./sqlplus
    Enter userame: sys as sysdba
    Sql>startup
    Sql>Exit
    2.     To start the other components of the infrastructure
    Log in as an oracle user
    #cd /home/oraASInfra/opmn/bin
    #./opmnctl startall
    3.     To start the iasconsole
    #cd /home/oraASInfra/bin
    #./emctl start iasconsole
    For Middle tier
    1.     To start the middle tier components
    Log in as an oracle user
    #cd /home/oraASmt/opmn/bin
    #./opmnctl startall
    2.     To start the iasconsole
    #./emctl start iasconsole
    In the MT all the components is showing up status
    In the Infrastructure except oracle sso OID , HTTP server and OC4J security is showing up status.
    There is no any port conflicts between the infrastructure and MT.
    Is there any post installation tasks has to be done after the installation?
    please help me to sort out the issue.
    thanks,
    C Saju

    1. After RapidWiz with 11.5.10.2 CDs, do we need to
    do any post installation step to make the browser
    load Oracle Forms. Do we need to create our own
    certificate using envshell.cmd and then adjkey. And,
    apply that to Jinitiator using adjbuild.sh and
    regenerate JAR files using ADADMIN Jar ( I am so far
    assuming that these steps are not necessary after for
    rapidwiz install of 11.5.10.2 )Your assumption is right. You do not have to do anything
    2. Do I need to apply the Oracle App 11i 11.5.10.2
    Maintenance Pack after installing using RapidWiz from
    the main set of CDs labeled as 11.5.10.2No
    3. Should I try by installing manually latest
    Jinitiator 1.3.1.21 or 1.3.1.25You do not have to upgrade your jinitiator version unless you want to go with the latest one.
    Since (adsign.txt, appltop.cer, and identitydb.obj) do not exist in your system, you just need to initialize the java certificate as follows:
    adjkey -initialize
    This will create the following files:
    - adsign.txt directory $APPL_TOP/admin
    - appltop.cer direcotry $APPL_TOP/admin
    - identitydb.obj directory $HOME of the user that launch adjkey
    Metalink note: 365735.1 should be helpful.
    Good luck

  • Em showing wrong status

    Hi,
    RDBMS : 10.2
    OS : Centos 5
    I can successfully start and stop emctl service. emctl start/stop dbconsole is showing no error. But when I hit the em URL , it is showing db and listener status as down. But they are working :(
    can you please tell how to correct this behavior ?

    database is working perfectly. No error generated.
    If on EM page, I may process to startup, it takes all the credentials and on next screen detect oracle database as up and running. When I click return, it takes me to the same screen showing everything status down.

  • SCCM 2012 Client was removed but SCCM console still showing the status as "Yes"

    Hi,
    In a VM, SCCM 2012 client agent was removed and the VM was reverted back to a clean machine. SCCM console still shows the status as "Yes" even after the client agent was removed. Heartbeat Discovery is set to run every 1 hour.
    Please guide on this.
    Regards, Lorin Davis

    It's kind like a person dying (sorry to be a bit morbid) -- how does the phone company know the person died? The dead person certainly can't tell them and the phone company doesn't query every person it services and ask them "are you alive?"
    Thus, someone else must notify them of the person's passing. This is no different than a client agent "dying" in ConfigMgr. A ConfigMgr site never initiates communication with clients and thus something else needs to tell the site that the client
    agent is dead. You! Or, an automated process (as Torsten mentioned) that goes through automatically marks a client as "dead" that hasn't been heard from in x number of days.
    Jason | http://blog.configmgrftw.com | @jasonsandys

Maybe you are looking for

  • When I open safari I can go into websites but after a while it will shut down out of nowhere and it always comes up with this:

    When I open safari I can go into websites but after a while it will shut down out of nowhere and it always comes up with this: Process:         Safari [1562] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.S

  • Having issues with Surface Pro 3 downloading boot image over PXE

    Hi, We've recently started to buy the new Surface Pro 3 with the new USB 3.0 Gigabit Ethernet adapter and we have some issues deploying them through SCCM. Basically, with the Pro 2 and Fast Ethernet adapter we have no issue at all, of course the depl

  • File Manager Issue on Z10

    Anyone else having this issue - my File Manager started appearing blank and I can not view any of the folder (files) and can't change between my SD card, Box accoutn and Device.  It was working no problem up until a couple of days ago. I tried resett

  • Wrong search results - Oracle 10.1.0.5

    I have a text index based on a file datastore which has around 25,000 documents (pdf, doc and xls). In some cases the search returns documents that do not have the search string. I have tried dropping and recreating the index, but the problem doesn't

  • Problem in supporting html functionality

    Hi, I am trying to develope the editor like microsoft frontpage. but i can't support functionality like table. and if i have to get the perticuler element selected in JTextpane, i.e. if user select some text and i want to know the attribute of that t