Missing output variable specification

Hi there,
I am trying to put in place a one way BPEL process, which receive the invocation from the Mediator component and do not expect any response from the process. I get this error during compilation:
Buildfile: /opt/oracle-jdev/bea-home/jdeveloper/bin/ant-sca-compile.xml
scac:
[scac] Validating composite "/home/alessandro/Work-Space/JDeveloperProject/SOA-POC/trunk/AuditService/composite.xml"
[scac] Setting BPELC option 'classpath' to /opt/oracle-jdev/bea-home/jdeveloper/jdev/extensions/oracle.sca.modeler.jar:/opt/oracle-jdev/bea-home/jdeveloper/soa/modules/oracle.soa.fabric_11.1.1/fabric-runtime.jar:/opt/oracle-jdev/bea-home/jdeveloper/soa/modules/oracle.soa.mgmt_11.1.1/soa-infra-mgmt.jar:/opt/oracle-jdev/bea-home/oracle_common/modules/oracle.fabriccommon_11.1.1/fabric-common.jar:/opt/oracle-jdev/bea-home/jdeveloper/soa/modules/oracle.soa.bpel_11.1.1/orabpel.jar:/opt/oracle-jdev/bea-home/jdeveloper/soa/modules/oracle.soa.mediator_11.1.1/mediator_client.jar:/opt/oracle-jdev/bea-home/oracle_common/modules/oracle.mds_11.1.1/mdsrt.jar::/home/alessandro/Work-Space/JDeveloperProject/SOA-POC/trunk/AuditService/SCA-INF/classes
[scac] FATAL_ERROR: in BPELProcess.bpel(107): output variable not defined
[scac] <invoke/> missing output variable specification
[scac] Make sure to use attribute outputVariable to specify the output message
BUILD FAILED
/opt/oracle-jdev/bea-home/jdeveloper/bin/ant-sca-compile.xml:236: Java returned: 1 Check log file : /home/alessandro/Work-Space/JDeveloperProject/SOA-POC/trunk/AuditService/SCA-INF/classes/scac.log for errors
Total time: 9 seconds
BPEL
<?xml version = "1.0" encoding = "UTF-8" ?>
<!--
Oracle JDeveloper BPEL Designer
Created: Thu Oct 07 16:50:01 CEST 2010
Author: alessandro
Purpose: One Way BPEL Process
-->
<process name="BPELProcess"
targetNamespace="http://xmlns.oracle.com/SOA_POC_jws/AuditService/BPELProcess"
xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
xmlns:client="http://xmlns.oracle.com/SOA_POC_jws/AuditService/BPELProcess"
xmlns:ora="http://schemas.oracle.com/xpath/extension"
xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
xmlns:ns1="http://xmlns.oracle.com/pcbpel/adapter/db/SOA-POC/AuditService/AuditDB%2F"
xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
xmlns:ns2="http://xml.virtual-lab.eu/schema/poc-soa/audit/def"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ns3="http://xmlns.oracle.com/pcbpel/adapter/db/top/AuditDB"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<!--
PARTNERLINKS
List of services participating in this BPEL process
-->
<partnerLinks>
<!--
The 'client' role represents the requester of this service. It is
used for callback. The location and correlation information associated
with the client role are automatically set using WS-Addressing.
-->
<partnerLink name="bpelprocess_client" partnerLinkType="client:BPELProcess" myRole="BPELProcessProvider"/>
<partnerLink name="AuditDB" partnerRole="AuditDB_role"
partnerLinkType="ns1:AuditDB_plt"/>
</partnerLinks>
<!--
VARIABLES
List of messages and XML documents used within this BPEL process
-->
<variables>
<!-- Reference to the message passed as input during initiation -->
<variable name="inputVariable" messageType="client:BPELProcessRequestMessage"/>
<variable name="Invoke_AuditDB_insert_InputVariable"
messageType="ns1:LogCollection_msg"/>
<variable name="outputVariable" type="xsd:string"/>
</variables>
<!--
ORCHESTRATION LOGIC
Set of activities coordinating the flow of messages across the
services integrated within this business process
-->
<sequence name="main">
<!-- Receive input from requestor. (Note: This maps to operation defined in BPELProcess.wsdl) -->
<receive name="receiveInput" partnerLink="bpelprocess_client" portType="client:BPELProcess" operation="process" variable="inputVariable" createInstance="yes"/>
<assign name="Assign_Payload">
<copy>
<from variable="inputVariable" part="payload"
query="/ns2:add/ns2:executionTime"/>
<to variable="Invoke_AuditDB_insert_InputVariable" part="LogCollection"
query="/ns3:LogCollection/ns3:Log/ns3:when"/>
</copy>
<copy>
<from variable="inputVariable" part="payload"
query="/ns2:add/ns2:onSys/@ns2:which"/>
<to variable="Invoke_AuditDB_insert_InputVariable" part="LogCollection"
query="/ns3:LogCollection/ns3:Log/ns3:whichSys"/>
</copy>
<copy>
<from variable="inputVariable" part="payload"
query="/ns2:add/ns2:fromUser"/>
<to variable="Invoke_AuditDB_insert_InputVariable" part="LogCollection"
query="/ns3:LogCollection/ns3:Log/ns3:who"/>
</copy>
<copy>
<from variable="inputVariable" part="payload"
query="/ns2:add/ns2:usingClient"/>
<to variable="Invoke_AuditDB_insert_InputVariable" part="LogCollection"
query="/ns3:LogCollection/ns3:Log/ns3:whichClient"/>
</copy>
<copy>
<from variable="inputVariable" part="payload"
query="/ns2:add/ns2:fromIP"/>
<to variable="Invoke_AuditDB_insert_InputVariable" part="LogCollection"
query="/ns3:LogCollection/ns3:Log/ns3:ipClient"/>
</copy>
<copy>
<from variable="inputVariable" part="payload"
query="/ns2:add/ns2:callingWS_Operation"/>
<to variable="Invoke_AuditDB_insert_InputVariable" part="LogCollection"
query="/ns3:LogCollection/ns3:Log/ns3:wsOperation"/>
</copy>
</assign>
<invoke name="Invoke_AuditDB"
inputVariable="Invoke_AuditDB_insert_InputVariable"
partnerLink="AuditDB" portType="ns1:AuditDB_ptt"
operation="insert"/>
<terminate name="Terminate"/>
</sequence>
</process>
Could anyone explain me why the compiler expects an output variable and why it doesn't work anyway.
Thanks in advance
Alessandro I

Looks like you deleted the the response back from the client.
If you want to fire and forget BPEL process create an empty BPEL process or an async process. Don't delete the callback in the async process. If the client isn't listening then nothing will happen.
also why is your last step a terminate, this will force all process to have a status of fail.
cheers
James

Similar Messages

  • PL/SQL array bind output variable

    I've been trying to learn how to pass an array to an pl/sql script. Getting the data into the db seems to be working fine, but I would like to know if there was a problem inserting the data. More specifically, I would like to know THE SPECIFIC ROW that caused the problem.
    pl/sql code:
    create or replace procedure pp (
              v_out      out number,
              v_listtype in repair_codes.listtype%type,
    v_repaircode in repair_codes.repaircode%type
    is
    begin
    insert into repair_codes (listtype, repaircode) values (v_listtype,v_repaircode);
         v_out:=1;
    commit;
         --just setting up test variable for now     
    end;
    vb.code:
    Dim cmd As New OracleCommand("pp", dbConn)
    cmd.CommandType = CommandType.StoredProcedure
    cmd.ArrayBindCount = 3
    Dim al(2) As String
    Dim ar(2) As String
    al(0) = "JOE1"
    al(1) = "JOE2"
    al(2) = "JOE3"
    ar(0) = "TEST1"
    ar(1) = "TEST2"
    ar(2) = "TEST3456789"
    Dim out As New OracleParameter("v_out", OracleDbType.Varchar2, 20)
    out.Direction = ParameterDirection.Output
    cmd.Parameters.Add(out)
    Dim listtype As New OracleParameter("v_listtype", OracleDbType.Varchar2)
    listtype.Value = al
    cmd.Parameters.Add(listtype)
    Dim repaircode As New OracleParameter("v_repaircode", OracleDbType.Varchar2)
    repaircode.Value = ar
    cmd.Parameters.Add(repaircode)
    dbConn.Open()
    Try
    cmd.ExecuteNonQuery()
    Catch ex As OracleException ' catches only Oracle errors
    ex = ex
    Select Case ex.Number
    Case 1
    MessageBox.Show("Error attempting to insert duplicate data.")
    Case 12545
    MessageBox.Show("The database is unavailable.")
    Case Else
    MessageBox.Show("Database error: " & ex.Message.ToString())
    Dim wha = ex.Errors(0).ArrayBindIndex 'always '0'
    End Select
    Finally
    dbConn.Close()
    End Try
    error:
    OracleParameter.ArrayBindSize is invalid
    Code above will work if I remove everything about the 'output' variable
    To test I would like to put in data for a column that is too large, have all other rows inserted, but return the row that had bad data. Thanks for any thoughts on this-

    I have a similar issue, i.e. the pl/sql table type as out parameter is causing probleml in one API related to Oracle Applications. I have singled this problem out by creating wrappers and testing them against BPEL process. Now as soon as I put an out parameter with pl/sql table in my wrapper, I start getting errors. Why the invoke even care about what is in output while calling the API? How can I get rid of it. I am not able to pin point where exactly you made the changes. Could you please share some more info or possibly share the BAD and GOOD code.
    We will probably get away with this by creating just a wrapper that would have NO out parameter as PL/SQL table as I don't think we need it anyway.
    Still want to know what is the issue here as we would like to avoid any custom wrapper creation?
    Shobhit
    Message was edited by:
    Shobhit.Kapila

  • Db adapter insert/update/delete output variable

    Hi
    How can I know how many records have been updated after an insert/update/delete operation done using the db adapter?
    I was looking for an output variable to use in the invoke activity of a partnerlink created using the db adapter wizard (update operation), but seems not possible to associate an outpout variable. the update operation is a one way operation. So, what could I do to know how many records was updated?
    thanks bye Paolo

    The input variable specifies the records to be updated/inserted. If you count these ones, you know how many have been updated. Otherwise the Invoke will fail.
    Marc

  • Defining xsd and assiging an array to the output variable in a BPELprocess

    I have created a BPEL application in which a web service has been invoked which returns an array.If the array has a fixed size i am able to define the XSD,but what if the array does not have a fixed size.How should i define the xsd in this case,i mean how should the output node be defined.Also how can i assign the array returned by the webservice to the Output variable using the assign activity.

    Hi,
    What you could do is set the second step to loop.
    Then use as one of the parameters to VI YY the string array using RunState.LoopIndex as the array index.
    eg. Locals.MyStringArray[RunState.LoopIndex]
    Hope this helps
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Error in Invoke activity Output Variable

    Hi,
    When invoking a HTTP service, the response XML is not getting matched correctly to the output variable, instead it is storing the response as a string in root element of the output variable.
    The response should be:
         <mthLoginLogout_output xmlns="http://www.lexisnexis.org/PCDSC">
              <status>
                   <status_code>0000</status_code>
                   <error_message></error_message>
              </status>
         </mthLoginLogout_output>
    The actual response I am getting now is as below
         <mthLoginLogout_output xmlns="http://www.lexisnexis.org/PCDSC">
                   <xml version="1.0" encoding="UTF-8">
                   <mthLoginLogout_output>
                        <status>
                             <status_code>0000</status_code>
                             <error_message></error_message>
                        </status>
                   </mthLoginLogout_output>
         </mthLoginLogout_output>
    Edited by: sjohn on Sep 7, 2009 9:45 PM

    Hi ,
    It is a SELECT :
    If I use WireShark to track my Network Communication.
    BPEL use the invoke input variable to send the Following to the .wsdl and WS.
    This is the data from WireShark:
    <soapenv:Body>
    <Create
    xmlns="urn:NWU-Integration-BPEL-Biographic">
    <s0:Submitter
    xmlns:s0="urn:NWU-Integration-BPEL-Biographic">
    $USER$
    </s0:Submitter>
    <s0:Assigned_To
    xmlns:s0="urn:NWU-Integration-BPEL-Biographic">
    na
    </s0:Assigned_To>
    <s0:Status
    xmlns:s0="urn:NWU-Integration-BPEL-Biographic">
    0
    </s0:Status>
    <s0:Short_Description
    xmlns:s0="urn:NWU-Integration-BPEL-Biographic">
    na
    </s0:Short_Description>
    <s0:firstNames
    xmlns:s0="urn:NWU-Integration-BPEL-Biographic">
    TestDi1
    </s0:firstNames>
    <s0:surname
    xmlns:s0="urn:NWU-Integration-BPEL-Biographic">
    TESTDi1
    </s0:surname>
    </Create>
    </soapenv:Body>
    </soapenv:Envelope>
    This is the data we get back from the target system webservice.
    This is the data from WireShark:
    <soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body>
    <ns0:CreateResponse
    xmlns:ns0="NWU-Integration-BPEL-Biographic"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ns0:Request_ID>
    000000000006048
    </ns0:Request_ID>
    </ns0:CreateResponse>
    </soapenv:Body>
    </soapenv:Envelope>
    But in BPEL the console I can see that the invoke iput data to the target System is OK. But even if wireShark indicates that the output is OK. We do not receive the output variable:
    In BPEL
    Request_ID variable is empty, it is as if their is no mapping.

  • Index is missing for a specific Primary key.

    Hi All,
    Index is missing for a specific Primary key but for other PKs index is available (verified in metadata, USER_INDEXES).
    Status of problematic PK is enabled.  This issue is only in one environment and other envs index is associated with this PK without any issue.
    Could you please advice, what could the possible reason?
    Regards,
    Narasimha.

    What other indexes are on your table? You do not need a unique index to enforce a primary key:
    > create table bc (col1 number, col2 number);
    Table created.
    > create index bc_ix on bc (col1, col2);
    Index created.
    > alter table bc add constraint bc_pk primary key (col1) using index bc_ix;
    Table altered.
    > create unique index bc_pk on bc (col1);
    Index created.
    > select index_name, uniqueness from user_indexes where table_name = 'BC';
    INDEX_NAME                     UNIQUENES
    BC_IX                          NONUNIQUE
    BC_PK                          UNIQUE
    > select constraint_name, constraint_type from user_constraints where table_name = 'BC';
    CONSTRAINT_NAME                C
    BC_PK                          P
    > drop index bc_pk;
    Index dropped.
    > select index_name, uniqueness from user_indexes where table_name = 'BC';
    INDEX_NAME                     UNIQUENES
    BC_IX                          NONUNIQUE
    > select constraint_name, constraint_type, index_name from user_constraints where table_name = 'BC';
    CONSTRAINT_NAME                C INDEX_NAME
    BC_PK                          P BC_IX
    >

  • Can i Create Output Variable for DB Polling in BPEL 11g?

    Hi Team,
              I want to create the Output Variable for DB Polling,But when i double click on Reply Activity-->Create New Variable it is giving error message like "Can't Create output variable.The Selected operation doesn't have an Output Message".
    My Question is Can we create Output Variable for DB Polling, if Yes tell me the procedure to create the Output variable ?
    Regards,
    Kiran

    Hi Kiran,
    In these scenario generally runtime faults occurs so you can use the CatchAll activity and rethrow activity to complete the instance in error state. Also before the completion of the process if exception occurs you can rollback all the transaction.
    or
    you can use the Fault handling framework:
    Using Fault Handling in a BPEL Process - 11g Release 1 (11.1.1.7)
    Regards,
    Anshul

  • Output Variable - Type: Date - Problem with WSDL in Designer

    Greetings,
    We are seeking some information about the following:
    We have a process in Process Designer that has and output variable of the type: Date. When the process is activated and we connect to a WSDL in LC ES Designer we get both a DATE and CALENDAR in the Data View.
    Hope that is at least somewhat clear. Please respond with any help or questions.
    Thanks,
    Rick Kuhlmann
    Tech-Pro

    This is to distinguish between java.util.Date and java.util.Calendar types. If the date is returned as java.util.Date, it will be in the DATE.date field. If the date is returned as java.util.Calendar, it will be in the DATE.calendar field.
    There are a bunch of xPath dates function in the xPath builder you can use.
    Jasmin

  • [SOLVED]"Missing url variable" when uploading package

    AUR gives me this error when trying to upload my tile-world.tar.gz file. The PKGBUILD is the only file in the archive. Am I missing something?
    Missing url variable in PKGBUILD.
    # Contributor: Phillip Smith ([email protected]
    pkgname=tile-world
    pkgver=1.3.0
    pkgrel=1
    pkgdesc="emulation of the game Chip's Challenge"
    arch=(i686 x86_64)
    url="http://www.muppetlabs.com/~breadbox/software/tworld/"
    license=('GPL')
    depends=()
    optdepends=()
    source=(http://www.muppetlabs.com/~breadbox/pub/software/tworld/tworld-$pkgver-CCLP2.tar.gz)
    md5sums=(100311f324b00a13649148448a20dc29)
    build() {
    cd "$srcdir/tworld-$pkgver"
    echo ./configure --prefix=$pkgdir/usr
    ./configure --prefix=$pkgdir/usr
    echo "=========================="
    echo " MAKE "
    echo "=========================="
    make || return 1
    echo "=========================="
    echo " MAKE INSTALL to $pkgdir"
    echo "=========================="
    make install
    # vim:set ts=2 sw=2 et:
    EDIT: found the problem. The missing ) after my e-mail address seems to make it sad... Bug perhaps?
    Last edited by fukawi2 (2009-02-04 05:25:21)

    The AUR code seems to have issues with handling comments in general (e.g. reported bug about source array comments: FS#12698).
    Last edited by tdy (2009-02-04 19:42:16)

  • Outputting a specific level of Content Parent

    I've taken a look at the Developer Guide and the Javadoc Reference but couldn't find an answer to my question.
    Is there a way to either:
    - Read Content Parent assets, but at a specific level (depth) only, in order to output them (e.g. in an HTML option list) or
    - When reading Content Parent Assets are you able to identify what level (depth) an item is, in order to only output a specific level
    E.g. if I have a 'Location' taxonomy of Region > Country > State and define this into a Content Parent structure of the same to create assets of: Asia Pacific > Australia > NSW.... how can I read the Content Parent assets and output a list of only Countries?
    Not sure on tag or API... but assume there is some way?
    Cheers

    You will have to use filed copier in parents i.e. in countries and regions.
    parentRegion- this attribute will hold the name value of region parent
    parentCountry- this attribute will hold the name value of Country parent
    This way your asset will inherit the both the values for Region and countries and then you can search state on Countries which have the same region giving you the list you require.
    For e.g.
    NSW will have country as Australia and region as Asia Pacific.
    Now you will apply search state for all countries having attribute Region as Asia Pacific
    You can also refer FirstSite for this. They have used this for Navigation instead of Dropdown.

  • Formula node output variable

    I have a formula node with an output variable. When i run my program the first time the output is correct. But when i run it after that, only the previous output value is displayed, the variable is not refreshing. It seems as if the value is copied into the memory and is not being updated. Is there a property for the output variable that must be changed?

    The formula node should update the output each time it is run. There is no property node for the ouputs.
    Ensure that (1) your inputs are actually changing as you expect - use a probe to confirm and (2) that the indicator you are looking at is wired to the output correctly.
    Post an example of the problem you're seeing if you still have a problem
    Tim

  • REF CURSOR not returned to "Output Variables"

    I have a poorly performing procedure that returns a Ref Cursor. I can retrieve the Ref Cursor via Crystal Reports, so I know that it is working. However, the data is not showing up in the "Output Variables" section on SQL Developer version 3.1.07.42.
    I have other procs that run much faster and the data shows up just fine for them.
    I'm wondering if the fact that the query runs in about 4 minutes is causing the results to be lost?
    Oracle 11.2.0.3.0 64 bit on AIX version 6.
    Sql Developer 3.1.07.42.
    Thanks.

    Can't reproduce. Test case:
    <code>
    create or replace
    package pivot
    as
    type rc is ref cursor;
    procedure tst4( c1 in out rc, c2 out rc, i out integer, c4 out rc );
    end;
    create or replace
    package body pivot
    as
    procedure tst4( c1 in out rc, c2 out rc, i out integer, c4 out rc ) is
    stmt1 long;
    stmt2 long;
    stmt3 long;
    stmt4 long;
    begin
    stmt1 := 'select 11 one, 12 two, ''a'' from dual union select 21 one, 22 two, ''b'' from dual';
    open c1 for stmt1;
    stmt2 := 'select 2 from dual';
    select count(1) into stmt4 from dual -- simulated delay
    connect by level < 40000000;
    open c2 for stmt2;
    i:=42;
    stmt4 := 'select level from dual connect by level < 7';
    open c4 for stmt4;
    end;
    end;

  • Deleting Coordination Action Output Variables in SPD 2013

    I have a workflow where I have reached the 50 variable limit. I have deleted / consolidated as many variables as possible, but I noticed there are 5 unused variables in the "workflow variables list" when using the "set workflow variable"
    action. These variables are not located under the local variables option in the menu. All of these variables were created as output variables (Variable: __SharePoint 2010 Output: Variablexyz) when I attempted to use 2010 WF interoperability / coordination
    actions early in development. I have since deleted those steps, but the variables still remain. I am still at a loss as to where I can delete these variables and get this workflow under 50 variables.
    I have researched this extensively and I am unable to find any solutions. 

    Hi,
    Please go through below articles, might help you
    http://blogs.msdn.com/b/sharepointdesigner/archive/2011/07/08/understanding-workflow-starting-parameters-part-1.aspx
    http://msdn.microsoft.com/en-us/library/office/jj163181(v=office.15).aspx
    http://techbrij.com/sharepoint-designer-2013-workflow-dynamic-approvers
    Regards
    Prasad Tandel

  • Two signals on two outputs with specific time interval

    I cant manage with following:
    Have NI-6251 card. Trying to sent two step-signals on two outputs with
    specific time interval, say 1 to 10 ms with 1us accuracy.
    How can I start?
    Thanks!

    Hi Anonymous,
    What do you mean by step-signals?  Do you mean a signal that steps up the voltage over time, a step function signal that is zero until a certain time then goes to 1, or a pulse train?
    In the meantime you can find examples for getting started in the NI Example Finder by selecting Help » Find Examples
    When that opens you can limit the examples to ones that are compatible with your hardware.  In the bottom left corner select your hardware and check the Limit results to hardware box.
    Browse to Hardware Input and Output » DAQmx » Digital Generation or Generating Digital Pulses.
    Best Regards,
    Bryan H.

  • Missing user variable input values in export to excel functionality

    Hi,
    I have a problem in exporting data into excel, I could able to export the data with complete result rows but i am not able to see the user input variable values.
    To be in detail: The moment i execute the report in web, user gives the initial variable values as selections and run a report. The data will be displayes as per the user selections. Then the user clicks on export to excel (designed as per SAP how to), now the excel data shows the body of the results but the initial input variable values are missing.
    It would be really good if we also export variable values along with the report output.
    If any of you solved this requirement, could you please help me in solving this.
    Thanks in advance
    Regards
    Varada

    Hi,
    Here is a solution to make visible the Values of variables you selected in the Excel File.....
    1.Create a Web Template with an Analysis Item and Info Field Item
    2.Assign the Data Provider which contains varaibles to the Analysis Item
    3.Assign the same Data Provider to an Info Field Item
    4.In the Properties of Info Field Item,
    Set the Visibility as "Visible"
    Data Binding as "Variable Value" and mention the varaible
    Save the Web template->Execute and Export to Excel
    Now you will get it in Excel file
    For more info....
    Re: Display values of variables in exported excel file
    Rgds,
    Murali

Maybe you are looking for

  • How to set my own Ranges in Charts

    Hi- I've just started playing with making charts in Numbers. When I select some cells and then ask Numbers to produce a chart it does so and sets it's own values for the Y-Axis. How can I set MY OWN values for the upper and lower limits (ie. 0 at the

  • Scroll wheel problems

    I have had my nano for few months, and recently it started having a problem. The right side of the wheel (to advance through songs) no longer works. If I hold it in, I can fast-forward... but it still won't simply change songs. The left side still au

  • Permission denied after restore

    i have restored the fresh instance backup and untared it. appl tier=p01 db tier=p02,p03,p04,p05 oracle database user is =orapix appl user is = applpix i have given chown -R applpix.dba p01 and i have given chown -R orapix.dba p02 chown -R orapix.dba

  • How can I link my iPad1 to Hp h470 bluetooth printer?

    I got a Hp h470 bluetooth mobile printer, does anyone know how to link it to my ipad1. so that i could print stuff directly from ipad. Many thanks

  • RMAN-06208

    Hi, we are in 9.2.0 version of DB. 1-I have this RMAN-06208 in RMAN backup output : RMAN-06207: WARNING: 5 objects could not be deleted for DISK channel(s) due RMAN-06208: to mismatched status. Use CROSSCHECK command to fix status List of Mismatched