Urgent: IMP-00034: Warning: FromUser "USER1" not found in export file

Hello all
I succeccfully export DMP file using sys user with the option full=y.
I want now to import the schema objects for the user1 with the folloing command:
C:\oracle\ora81\bin\IMP.EXE sys/sys@bas fromuser=user1 touser=scott file=C:\omran12-06-2005.dmp
But I received this error :
IMP-00034: Warning: FromUser "OMBR" not found in export file
Import terminated successfully with warnings.
What is the problem
Thanks in advance

Hello
Thanks for ur replay but doesn't work at all:
- Itried the first by creatint the user and i received this error:
C:\oracle\ora81\bin\IMP.EXE newuser/newnewuser@sid file=C:\x.dmp log=c:\log.log full=y
Warning: the objects were exported by SYSTEM, not by you
import done in AR8MSAWIN character set and AR8MSAWIN NCHAR character set
. importing SYSTEM's objects into OMBR1
Import terminated successfully without warnings.
Then I tried this:
C:\>C:\oracle\ora81\bin\IMP.EXE sys/sys@sid file=C:\x.dmp log=c:\log.log full=y show=y
I received this:
Warning: the objects were exported by SYSTEM, not by you
import done in AR8MSAWIN character set and AR8MSAWIN NCHAR character set
. importing SYSTEM's objects into SYS
Import terminated successfully without warnings.
Then i tried this:
C:\>C:\oracle\ora81\bin\IMP.EXE system/system@sid file=C:\x.dmp log=c:\log.log full=y show=y
And I get this error:
Export file created by EXPORT:V08.01.07 via conventional path
import done in AR8MSAWIN character set and AR8MSAWIN NCHAR character set
. importing SYSTEM's objects into SYSTEM
Import terminated successfully without warnings.
Why nothing work with me????????

Similar Messages

  • Requested node not found in configuration file

    The following warning appears when I instantiate the ReportClientDocument object:
    [main] WARN  com.businessobjects.reports.sdk.JRCCommunicationAdapter  - Requested node not found in configuration file
    This looks to me like a configuration issue. How can I get rid of it?

    Please read the rules of engagement and add all of the missing info. I'm assuming you are developing in Java so moved your post to the Java forum.

  • Problem deploying connector: META-INF/ejb-jar.xml not found in jar file

              Has anyone seen this problem:
              I built Sun's Blackbox implementation and packaged
              it identical to the BlackBoxNoTx.rar included with
              Weblogic's 'jconnector' sample (even using the same
              ra.xml and weblogic-ra.xml). When I try to deploy
              it, the server reports:
              java.io.FileNotFoundException:
              META-INF/ejb-jar.xml not found in jar file
              I have no idea why the server thinks my connector
              is an EJB. If I deploy the BlackBoxNoTx.rar included
              with the sample, everything works without a hitch.
              The only variable that I'm changing in my BlackBoxNoTx.rar
              is that I build the Blackbox classes myself--otherwise,
              the RAR packagings are identical. Any assistance is
              greatly appreciated since I'm banging my head against
              a wall...
              Thanks,
              -jason
              

              I was finally able to resolve this one. On the odd chance that someone else encounters
              the same problem, here's what went wrong:
              My RAR file had two directories: 'META-INF' and 'meta-inf'. The first was created
              by the jar tool and contained the manifest.mf file. The second I created manually
              and it contained my ra.xml and weblogic-ra.xml. When I examined the RAR using
              any tools or I extracted the contents, it looked like it only contained one directory:
              META-INF (because NT is case-insensitive).
              "Jason L" <[email protected]> wrote:
              >
              >Has anyone seen this problem:
              >
              >I built Sun's Blackbox implementation and packaged
              >it identical to the BlackBoxNoTx.rar included with
              >Weblogic's 'jconnector' sample (even using the same
              >ra.xml and weblogic-ra.xml). When I try to deploy
              >it, the server reports:
              >
              >java.io.FileNotFoundException:
              >META-INF/ejb-jar.xml not found in jar file
              >
              >I have no idea why the server thinks my connector
              >is an EJB. If I deploy the BlackBoxNoTx.rar included
              >with the sample, everything works without a hitch.
              >The only variable that I'm changing in my BlackBoxNoTx.rar
              >is that I build the Blackbox classes myself--otherwise,
              >the RAR packagings are identical. Any assistance is
              >greatly appreciated since I'm banging my head against
              >a wall...
              >
              >Thanks,
              >
              >-jason
              

  • ERROR: exception symbol "09732" not found in resource file

    I am trying to get a client to work with workflow services. I get 'ERROR: exception symbol "09732" not found in resource file' in the output when the method queryTasks is excecuted.
    Jdeveloper 10.1.3.4 and SOA Suite 10.1.3.3.0
    Any ideas?
    Eydun
    ------------------ program ---------------------
    package project1;
    //import com.oracle.services.bpel.task.Task;
    import java.util.ArrayList;
    import oracle.bpel.services.workflow.client.IWorkflowServiceClient;
    import oracle.bpel.services.workflow.client.WorkflowServiceClientFactory;
    import oracle.bpel.services.workflow.query.ITaskQueryService;
    import oracle.bpel.services.workflow.verification.IWorkflowContext;
    import java.util.List;
    import oracle.bpel.services.workflow.repos.Ordering;
    import oracle.bpel.services.workflow.repos.Predicate;
    import oracle.bpel.services.workflow.repos.TableConstants;
    import oracle.bpel.services.workflow.task.ITaskService;
    import oracle.bpel.services.workflow.task.model.Task;
    public class Class1 {
    public Class1() {
    public void TryTask() {
    try {
    //Create JAVA WorflowServiceClient
    IWorkflowServiceClient wfSvcClient =
    WorkflowServiceClientFactory.getWorkflowServiceClient(WorkflowServiceClientFactory.WSIF_CLIENT);
    //Get the task query service
    ITaskQueryService querySvc = wfSvcClient.getTaskQueryService();
    //Login as jstein
    IWorkflowContext ctx = querySvc.authenticate("jstein",
    "welcome1",
    null, //Use default realm
    null);//Not logging in on behalf of another user
    //Set up list of columns to query
    List queryColumns = new ArrayList();
    queryColumns.add("TASKID");
    queryColumns.add("TASKNUMBER");
    queryColumns.add("TITLE");
    queryColumns.add("OUTCOME");
    //Create a predicate to query tasks that have a null outcome
    String outcome = null;
    Predicate predicate = new Predicate(TableConstants.WFTASK_OUTCOME_COLUMN,
    Predicate.OP_EQ,
    outcome);
    //Create an ordering to order tasks by task number
    Ordering ordering = new Ordering(TableConstants.WFTASK_TASKNUMBER_COLUMN
    ,true //Ascending order
    ,false //Nulls last
    //Query a list of tasks assigned to jstein
    List tasks = querySvc.queryTasks(ctx,
    queryColumns,
    null, //Do not query additional info
    ITaskQueryService.ASSIGNMENT_FILTER_MY,
    null, //No keywords
    null, //predicate, //Only tasks with no outome set
    ordering, //Order by ascending task number
    0, //Do not page the query result
    0);
    //Get the task service
    ITaskService taskSvc = wfSvcClient.getTaskService();
    //Loop over the tasks, outputting task information, and approving tasks
    for(int i = 0 ; i < tasks.size() ; i ++)
    Task task = (Task)tasks.get(i);
    int taskNumber = task.getSystemAttributes().getTaskNumber();
    String title = task.getTitle();
    String taskId = task.getSystemAttributes().getTaskId();
    //Set the outcome
    taskSvc.updateTaskOutcome(ctx,taskId,"APPROVED");
    System.out.println("Task #"+taskNumber+" ("+title+") is APPROVED");
    catch (Exception e)
    //Handle any exceptions raised here...
    System.out.println("Caught workflow exception: "+e.getMessage());
    public static void main(String[] args) {
    Class1 class1 = new Class1();
    class1.TryTask();
    ------------------- output ---------------------
    C:\java\jdk1.6.0_07\bin\javaw.exe -client -classpath C:\jdev11work\eej\mywork\Application3\Project1\classes;C:\oracle\jdev10134bpellibs\bpel\lib\bpm-infra.jar;C:\oracle\jdev10134bpellibs\bpel\lib\orabpel-common.jar;C:\oracle\jdev10134bpellibs\bpel\lib\orabpel-thirdparty.jar;C:\oracle\jdev10134bpellibs\j2ee\home\jazncore.jar;C:\oracle\jdev10134bpellibs\j2ee\home\oc4jclient.jar;C:\oracle\jdev10134bpellibs\lib\xml.jar;C:\oracle\jdev10134bpellibs\lib\xmlparserv2.jar;C:\oracle\jdev10134bpellibs\bpel\system\services\config;C:\oracle\jdev10134bpellibs\webservices\lib\orasaaj.jar;C:\oracle\jdev10134bpellibs\webservices\lib\soap.jar;C:\oracle\jdev10134bpellibs\bpel\system\services\lib\bpm-services.jar;C:\oracle\jdev10134bpellibs\bpel\system\services\schema;C:\oracle\jdev10134bpellibs\bpel\lib\olite40.jar;C:\oracle\jdev10134bpellibs\jdbc\lib\ojdbc14.jar;C:\oracle\jdev10134bpellibs\bpel\lib\orabpel.jar;C:\oracle\jdev10134bpellibs\wsclient_extended.jar project1.Class1
    <::> WorkflowService:: TaskQueryService.authenticate(): called. user = jstein identityContext = null onBehalfOfUser = null
    <::> WorkflowService:: VerificationService.authenticateUser: attempting for user = jstein identityContext = null
    <ISConfiguration::load> Found Configuration=Configuration: realmName=jazn.com properties:{} has 1 providers:
    <ISConfiguration::load>      Provider: service=Identity providerType=JAZN providerName=XML Provider properties:{usersPropertiesFile=users-properties.xml}
    <ISConfiguration::load>      
    <ISConfiguration::validate> Validate configuration=Configuration: realmName=jazn.com properties:{} has 1 providers:
    <ISConfiguration::validate>      Provider: service=Identity providerType=JAZN providerName=XML Provider properties:{usersPropertiesFile=users-properties.xml}
    <ISConfiguration::validate>      
    <ISConfiguration::save> Save IdentityService configuration file into /C:/oracle/jdev10134bpellibs/bpel/system/services/config/is_config.xml
    <ServiceFactory::getService> Provider type is JAZN
    <ServiceFactory::getService> JAZN's ProviderType=XML
    <XMLIdentityService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLAuthenticationService::init> Load provider initialization complete
    <XMLAuthorizationService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLProvider::addUserToCache> User wfaulk is loaded ....
    <BPMUserImpl::<init>> Constacted user=sfitzger
    <XMLProvider::addUserToCache> User sfitzger is loaded ....
    <BPMUserImpl::<init>> Constacted user=jstein
    <XMLProvider::addUserToCache> User jstein is loaded ....
    <BPMUserImpl::<init>> Constacted user=istone
    <XMLProvider::addUserToCache> User istone is loaded ....
    <BPMUserImpl::<init>> Constacted user=jcooper
    <XMLProvider::addUserToCache> User jcooper is loaded ....
    <BPMUserImpl::<init>> Constacted user=mtwain
    <XMLProvider::addUserToCache> User mtwain is loaded ....
    <BPMUserImpl::<init>> Constacted user=jlondon
    <XMLProvider::addUserToCache> User jlondon is loaded ....
    <BPMUserImpl::<init>> Constacted user=ltolstoy
    <XMLProvider::addUserToCache> User ltolstoy is loaded ....
    <BPMUserImpl::<init>> Constacted user=fkafka
    <XMLProvider::addUserToCache> User fkafka is loaded ....
    <BPMUserImpl::<init>> Constacted user=szweig
    <XMLProvider::addUserToCache> User szweig is loaded ....
    <BPMUserImpl::<init>> Constacted user=mmitch
    <XMLProvider::addUserToCache> User mmitch is loaded ....
    <BPMUserImpl::<init>> Constacted user=jausten
    <XMLProvider::addUserToCache> User jausten is loaded ....
    <BPMUserImpl::<init>> Constacted user=achrist
    <XMLProvider::addUserToCache> User achrist is loaded ....
    <BPMUserImpl::<init>> Constacted user=rsteven
    <XMLProvider::addUserToCache> User rsteven is loaded ....
    <BPMUserImpl::<init>> Constacted user=cdoyle
    <XMLProvider::addUserToCache> User cdoyle is loaded ....
    <BPMUserImpl::<init>> Constacted user=wshake
    <XMLProvider::addUserToCache> User wshake is loaded ....
    <BPMUserImpl::<init>> Constacted user=guest
    <XMLProvider::addUserToCache> User guest is loaded ....
    <BPMUserImpl::<init>> Constacted user=bpeladmin
    <XMLProvider::addUserToCache> User bpeladmin is loaded ....
    <BPMUserImpl::<init>> Constacted user=default
    <XMLProvider::addUserToCache> User default is loaded ....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadRoles> XMLProvider::load() Load roles from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role BPMAnalyst is loaded .....
    <XMLProvider::addRoleToCache> Role BPMWorkflowAdmin is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role LoanAgentGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role Supervisor is loaded .....
    <XMLProvider::addRoleToCache> Role California is loaded .....
    <XMLProvider::addRoleToCache> Role WesternRegion is loaded .....
    <XMLProvider::addRoleToCache> Role EasternRegion is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <XMLAuthorizationService::init> Load provider initialization complete
    <XMLAuthenticationService::authenticateUser> XMLAuthenticationService::authenticateUser():: begin
    <BPMServiceJAZNBase::getRealm> BPMAuthenticationServiceImpl::getRealm():: begin
    <BPMServiceJAZNBase::getRealm> Realm=[Realm: jazn.com]
    <BPMServiceJAZNBase::getRealm> BPMAuthenticationServiceImpl::getRealm():: end
    <XMLAuthenticationService::authenticateUser> XMLAuthenticationService:: call authenticate
    <XMLAuthenticationService::authenticateUser> XMLAuthenticationService:: user is authenticated!
    <XMLAuthenticationService::authenticateUser> XMLAuthenticationService::authenticateUser():: end
    <ServiceFactory::getService> Provider type is JAZN
    <ServiceFactory::getService> JAZN's ProviderType=XML
    <XMLIdentityService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLProvider::addUserToCache> User wfaulk is loaded ....
    <BPMUserImpl::<init>> Constacted user=sfitzger
    <XMLProvider::addUserToCache> User sfitzger is loaded ....
    <BPMUserImpl::<init>> Constacted user=jstein
    <XMLProvider::addUserToCache> User jstein is loaded ....
    <BPMUserImpl::<init>> Constacted user=istone
    <XMLProvider::addUserToCache> User istone is loaded ....
    <BPMUserImpl::<init>> Constacted user=jcooper
    <XMLProvider::addUserToCache> User jcooper is loaded ....
    <BPMUserImpl::<init>> Constacted user=mtwain
    <XMLProvider::addUserToCache> User mtwain is loaded ....
    <BPMUserImpl::<init>> Constacted user=jlondon
    <XMLProvider::addUserToCache> User jlondon is loaded ....
    <BPMUserImpl::<init>> Constacted user=ltolstoy
    <XMLProvider::addUserToCache> User ltolstoy is loaded ....
    <BPMUserImpl::<init>> Constacted user=fkafka
    <XMLProvider::addUserToCache> User fkafka is loaded ....
    <BPMUserImpl::<init>> Constacted user=szweig
    <XMLProvider::addUserToCache> User szweig is loaded ....
    <BPMUserImpl::<init>> Constacted user=mmitch
    <XMLProvider::addUserToCache> User mmitch is loaded ....
    <BPMUserImpl::<init>> Constacted user=jausten
    <XMLProvider::addUserToCache> User jausten is loaded ....
    <BPMUserImpl::<init>> Constacted user=achrist
    <XMLProvider::addUserToCache> User achrist is loaded ....
    <BPMUserImpl::<init>> Constacted user=rsteven
    <XMLProvider::addUserToCache> User rsteven is loaded ....
    <BPMUserImpl::<init>> Constacted user=cdoyle
    <XMLProvider::addUserToCache> User cdoyle is loaded ....
    <BPMUserImpl::<init>> Constacted user=wshake
    <XMLProvider::addUserToCache> User wshake is loaded ....
    <BPMUserImpl::<init>> Constacted user=guest
    <XMLProvider::addUserToCache> User guest is loaded ....
    <BPMUserImpl::<init>> Constacted user=bpeladmin
    <XMLProvider::addUserToCache> User bpeladmin is loaded ....
    <BPMUserImpl::<init>> Constacted user=default
    <XMLProvider::addUserToCache> User default is loaded ....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadRoles> XMLProvider::load() Load roles from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role BPMAnalyst is loaded .....
    <XMLProvider::addRoleToCache> Role BPMWorkflowAdmin is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role LoanAgentGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role Supervisor is loaded .....
    <XMLProvider::addRoleToCache> Role California is loaded .....
    <XMLProvider::addRoleToCache> Role WesternRegion is loaded .....
    <XMLProvider::addRoleToCache> Role EasternRegion is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <XMLIdentityService::init> Load provider initialization complete
    <XMLAuthenticationService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLProvider::addUserToCache> User wfaulk is loaded ....
    <BPMUserImpl::<init>> Constacted user=sfitzger
    <XMLProvider::addUserToCache> User sfitzger is loaded ....
    <BPMUserImpl::<init>> Constacted user=jstein
    <XMLProvider::addUserToCache> User jstein is loaded ....
    <BPMUserImpl::<init>> Constacted user=istone
    <XMLProvider::addUserToCache> User istone is loaded ....
    <BPMUserImpl::<init>> Constacted user=jcooper
    <XMLProvider::addUserToCache> User jcooper is loaded ....
    <BPMUserImpl::<init>> Constacted user=mtwain
    <XMLProvider::addUserToCache> User mtwain is loaded ....
    <BPMUserImpl::<init>> Constacted user=jlondon
    <XMLProvider::addUserToCache> User jlondon is loaded ....
    <BPMUserImpl::<init>> Constacted user=ltolstoy
    <XMLProvider::addUserToCache> User ltolstoy is loaded ....
    <BPMUserImpl::<init>> Constacted user=fkafka
    <XMLProvider::addUserToCache> User fkafka is loaded ....
    <BPMUserImpl::<init>> Constacted user=szweig
    <XMLProvider::addUserToCache> User szweig is loaded ....
    <BPMUserImpl::<init>> Constacted user=mmitch
    <XMLProvider::addUserToCache> User mmitch is loaded ....
    <BPMUserImpl::<init>> Constacted user=jausten
    <XMLProvider::addUserToCache> User jausten is loaded ....
    <BPMUserImpl::<init>> Constacted user=achrist
    <XMLProvider::addUserToCache> User achrist is loaded ....
    <BPMUserImpl::<init>> Constacted user=rsteven
    <XMLProvider::addUserToCache> User rsteven is loaded ....
    <BPMUserImpl::<init>> Constacted user=cdoyle
    <XMLProvider::addUserToCache> User cdoyle is loaded ....
    <BPMUserImpl::<init>> Constacted user=wshake
    <XMLProvider::addUserToCache> User wshake is loaded ....
    <BPMUserImpl::<init>> Constacted user=guest
    <XMLProvider::addUserToCache> User guest is loaded ....
    <BPMUserImpl::<init>> Constacted user=bpeladmin
    <XMLProvider::addUserToCache> User bpeladmin is loaded ....
    <BPMUserImpl::<init>> Constacted user=default
    <XMLProvider::addUserToCache> User default is loaded ....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadRoles> XMLProvider::load() Load roles from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role BPMAnalyst is loaded .....
    <XMLProvider::addRoleToCache> Role BPMWorkflowAdmin is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role LoanAgentGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role Supervisor is loaded .....
    <XMLProvider::addRoleToCache> Role California is loaded .....
    <XMLProvider::addRoleToCache> Role WesternRegion is loaded .....
    <XMLProvider::addRoleToCache> Role EasternRegion is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <XMLAuthenticationService::init> Load provider initialization complete
    <XMLAuthorizationService::init> Load provider initialization begin
    <AbstractXMLProvider::loadUsers> XMLProvider::load() Load users from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <BPMUserImpl::<init>> Constacted user=cdickens
    <XMLProvider::addUserToCache> User cdickens is loaded ....
    <BPMUserImpl::<init>> Constacted user=wfaulk
    <XMLProvider::addUserToCache> User wfaulk is loaded ....
    <BPMUserImpl::<init>> Constacted user=sfitzger
    <XMLProvider::addUserToCache> User sfitzger is loaded ....
    <BPMUserImpl::<init>> Constacted user=jstein
    <XMLProvider::addUserToCache> User jstein is loaded ....
    <BPMUserImpl::<init>> Constacted user=istone
    <XMLProvider::addUserToCache> User istone is loaded ....
    <BPMUserImpl::<init>> Constacted user=jcooper
    <XMLProvider::addUserToCache> User jcooper is loaded ....
    <BPMUserImpl::<init>> Constacted user=mtwain
    <XMLProvider::addUserToCache> User mtwain is loaded ....
    <BPMUserImpl::<init>> Constacted user=jlondon
    <XMLProvider::addUserToCache> User jlondon is loaded ....
    <BPMUserImpl::<init>> Constacted user=ltolstoy
    <XMLProvider::addUserToCache> User ltolstoy is loaded ....
    <BPMUserImpl::<init>> Constacted user=fkafka
    <XMLProvider::addUserToCache> User fkafka is loaded ....
    <BPMUserImpl::<init>> Constacted user=szweig
    <XMLProvider::addUserToCache> User szweig is loaded ....
    <BPMUserImpl::<init>> Constacted user=mmitch
    <XMLProvider::addUserToCache> User mmitch is loaded ....
    <BPMUserImpl::<init>> Constacted user=jausten
    <XMLProvider::addUserToCache> User jausten is loaded ....
    <BPMUserImpl::<init>> Constacted user=achrist
    <XMLProvider::addUserToCache> User achrist is loaded ....
    <BPMUserImpl::<init>> Constacted user=rsteven
    <XMLProvider::addUserToCache> User rsteven is loaded ....
    <BPMUserImpl::<init>> Constacted user=cdoyle
    <XMLProvider::addUserToCache> User cdoyle is loaded ....
    <BPMUserImpl::<init>> Constacted user=wshake
    <XMLProvider::addUserToCache> User wshake is loaded ....
    <BPMUserImpl::<init>> Constacted user=guest
    <XMLProvider::addUserToCache> User guest is loaded ....
    <BPMUserImpl::<init>> Constacted user=bpeladmin
    <XMLProvider::addUserToCache> User bpeladmin is loaded ....
    <BPMUserImpl::<init>> Constacted user=default
    <XMLProvider::addUserToCache> User default is loaded ....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadRoles> XMLProvider::load() Load roles from source:users-properties.xml
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role BPMAnalyst is loaded .....
    <XMLProvider::addRoleToCache> Role BPMWorkflowAdmin is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users begins
    <XMLProvider::addRoleToCache> Role LoanAgentGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role LoanAnalyticGroup is loaded .....
    <XMLProvider::addRoleToCache> Role Supervisor is loaded .....
    <XMLProvider::addRoleToCache> Role California is loaded .....
    <XMLProvider::addRoleToCache> Role WesternRegion is loaded .....
    <XMLProvider::addRoleToCache> Role EasternRegion is loaded .....
    <AbstractXMLProvider::loadPrincipals> AbstractXMLProvider::load() Loading users ends
    <XMLAuthorizationService::init> Load provider initialization complete
    <BPMAuthorizationServiceImpl::lookupUser> BPMAuthorizationServiceImpl::lookupUser():: begin, userName=jstein
    <BPMServiceJAZNBase::getRealm> BPMAuthenticationServiceImpl::getRealm():: begin
    <BPMServiceJAZNBase::getRealm> Realm=[Realm: jazn.com]
    <BPMServiceJAZNBase::getRealm> BPMAuthenticationServiceImpl::getRealm():: end
    <BPMUserImpl::<init>> User=jstein was created
    <BPMAuthorizationServiceImpl::lookupUser> User is found, user=RealmUser: jstein
    <BPMIdentityImpl::getActions> BPMIdentityImpl::getActions()
    <BPMIdentityImpl::getAllGrantedRealmRoles> Identity has the following granted realmRoles=[RealmRole: BPMWorkflowReassign, RealmRole: BPMWorkflowSuspend, RealmRole: BPMAnalyst]
    <RoleProperties::load> Resource oracle/tip/pc/services/identity/role.properties is loaded, s_properties={BPMWorkflowSuspend=SUSPEND,RESUME, BPMWorkflowAdmin=ADMIN, BPMWorkflowReassign=REASSIGN, BPMPublic=VIEW_WORK_LIST,ACQUIRE,WITHDRAW,ESCALATE,ERROR,PUSH_BACK,RENEW,RELEASE,REQUEST_INFO,SUBMIT_INFO,CUSTOM,VIEW_TASK_HISTORY,VIEW_SUB_TASKS,UPDATE,ADHOC_ROUTE,OUTCOME_UPDATE_ROUTE, BPMSystemAdmin=, BPMWorkflowViewHistory=VIEW_TASK_HISTORY,VIEW_PROCESS_HISTORY, BPMAnalyst=VIEW_REPORTS}
    <BPMIdentityImpl::getActions> Identity has the following roles:[BPMWorkflowReassign, BPMWorkflowSuspend, BPMAnalyst]
    <BPMIdentityImpl::getActions> Role: BPMWorkflowReassign
    <BPMIdentityImpl::getActions> Actions: [OUTCOME_UPDATE_ROUTE, REQUEST_INFO, CUSTOM, VIEW_SUB_TASKS, WITHDRAW, PUSH_BACK, ACQUIRE, ADHOC_ROUTE, RENEW, UPDATE, SUBMIT_INFO, VIEW_TASK_HISTORY, ERROR, VIEW_WORK_LIST, RELEASE, ESCALATE, REASSIGN]
    <BPMIdentityImpl::getActions> Role: BPMWorkflowSuspend
    <BPMIdentityImpl::getActions> Actions: [RESUME, OUTCOME_UPDATE_ROUTE, REQUEST_INFO, CUSTOM, VIEW_SUB_TASKS, WITHDRAW, PUSH_BACK, SUSPEND, ACQUIRE, ADHOC_ROUTE, RENEW, UPDATE, SUBMIT_INFO, VIEW_TASK_HISTORY, ERROR, VIEW_WORK_LIST, RELEASE, ESCALATE]
    <BPMIdentityImpl::getActions> Role: BPMAnalyst
    <BPMIdentityImpl::getActions> Actions: [OUTCOME_UPDATE_ROUTE, REQUEST_INFO, CUSTOM, VIEW_SUB_TASKS, WITHDRAW, PUSH_BACK, ACQUIRE, ADHOC_ROUTE, RENEW, UPDATE, SUBMIT_INFO, VIEW_TASK_HISTORY, ERROR, VIEW_WORK_LIST, RELEASE, ESCALATE, VIEW_REPORTS]
    <BPMIdentityImpl::getActions> Identity has the following actions:[RESUME, OUTCOME_UPDATE_ROUTE, REQUEST_INFO, CUSTOM, VIEW_SUB_TASKS, WITHDRAW, PUSH_BACK, SUSPEND, ACQUIRE, RENEW, ADHOC_ROUTE, UPDATE, SUBMIT_INFO, VIEW_TASK_HISTORY, VIEW_WORK_LIST, ERROR, ESCALATE, RELEASE, REASSIGN, VIEW_REPORTS]
    <BPMPrincipalImpl::getAttribute> Attribute=languagePreference is not set. Populate principal=jstein
    <::> WorkflowService:: VerificationService.authenticateUser: successful for user = jstein identityContext = null
    <::> WorkflowService:: TaskQueryService.authenticate(): completed. token = c9pHcmBFtc4DWR0OLJvz8rFEzdme6Pp2TZRWe5OrGZEHVSHodTb5cYfhEt/ZgboPeVZZzz9FipCUi4EMWqyqKIXfQxTW8YdqoisIJyA4TUhFa2SyU0fNHjDEy9sm/JSYqqFy/nvYWsjO2nPXdsbbnpLuHUwoM2IZ+D/mTaN6pgcIPS+iyKbVgV3wBqFiqGHbuasTyn7SE6ZBnw3Xr5QOHQ==
    <::> VerificationService.createWorkflowContext: Request NOT authenticated by WS-Security framework
    <BPMAuthorizationServiceImpl::lookupUser> BPMAuthorizationServiceImpl::lookupUser():: begin, userName=jstein
    <BPMUserImpl::<init>> User=jstein was created
    <BPMAuthorizationServiceImpl::lookupUser> User is found, user=RealmUser: jstein
    <BPMPrincipalImpl::getAttribute> Attribute=languagePreference is not set. Populate principal=jstein
    <::> WorkflowService:: TaskQueryService.queryTasks(): called. token = c9pHcmBFtc4DWR0OLJvz8rFEzdme6Pp2TZRWe5OrGZEHVSHodTb5cYfhEt/ZgboPeVZZzz9FipCUi4EMWqyqKIXfQxTW8YdqoisIJyA4TUhFa2SyU0fNHjDEy9sm/JSYqqFy/nvYWsjO2nPXdsbbnpLuHUwoM2IZ+D/mTaN6pgcIPS+iyKbVgV3wBqFiqGHbuasTyn7SE6ZBnw3Xr5QOHQ== ctxUser = jstein displayColumns = TASKID, TASKNUMBER, TITLE, OUTCOME optionalInformation = assignmentFilter = My keywords = null predicate = null ordering = wfn.taskNumber ASC startRow = 0 endRow = 0
    <::> WorkflowService:: TaskQueryService.getCombinedPredicate(): called. token = c9pHcmBFtc4DWR0OLJvz8rFEzdme6Pp2TZRWe5OrGZEHVSHodTb5cYfhEt/ZgboPeVZZzz9FipCUi4EMWqyqKIXfQxTW8YdqoisIJyA4TUhFa2SyU0fNHjDEy9sm/JSYqqFy/nvYWsjO2nPXdsbbnpLuHUwoM2IZ+D/mTaN6pgcIPS+iyKbVgV3wBqFiqGHbuasTyn7SE6ZBnw3Xr5QOHQ== ctxUser = jstein assignmentFilter = My keywords = null predicate = null
    <::> WorkflowService:: TaskQueryService.getAssignmentFilterPredicate(): called. token = c9pHcmBFtc4DWR0OLJvz8rFEzdme6Pp2TZRWe5OrGZEHVSHodTb5cYfhEt/ZgboPeVZZzz9FipCUi4EMWqyqKIXfQxTW8YdqoisIJyA4TUhFa2SyU0fNHjDEy9sm/JSYqqFy/nvYWsjO2nPXdsbbnpLuHUwoM2IZ+D/mTaN6pgcIPS+iyKbVgV3wBqFiqGHbuasTyn7SE6ZBnw3Xr5QOHQ== ctxUser = jstein assignmentFilter = My
    <::> WorkflowService:: TaskQueryService.getAssignmentFilterPredicate(): completed. assignmentFilterPred = ((wfn.taskId=wfa.taskId AND wfa.isGroup =? AND ( wfa.assignee IN (?))) OR ( ( wfn.originalAssigneeUser IN (?)) AND wfn.taskId=wfa.taskId) AND wfn.isGroup =?) AND ( wfn.identityContext IS NULL )
    <::> WorkflowService:: TaskQueryService.getCombinedPredicate(): completed. combinedPredicate = ((wfn.taskId=wfa.taskId AND wfa.isGroup =? AND ( wfa.assignee IN (?))) OR ( ( wfn.originalAssigneeUser IN (?)) AND wfn.taskId=wfa.taskId) AND wfn.isGroup =?) AND ( wfn.identityContext IS NULL )
    ERROR: exception symbol "09732" not found in resource file.
    <::> ORABPEL-09732
    <::>
    <::>
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.getNonTransactionService(PersistencyDriver.java:231)
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.getInstance(PersistencyDriver.java:152)
    <::>      at oracle.bpel.services.workflow.query.impl.TaskQueryService.queryTasks(TaskQueryService.java:213)
    <::>      at oracle.bpel.services.workflow.query.impl.TaskQueryServiceWSIF.queryTasks(TaskQueryServiceWSIF.java:172)
    <::>      at oracle.bpel.services.workflow.query.client.TaskQueryServiceWSIFClient.queryTasks(TaskQueryServiceWSIFClient.java:66)
    <::>      at oracle.bpel.services.workflow.query.client.AbstractDOMTaskQueryServiceClient.queryTasks(AbstractDOMTaskQueryServiceClient.java:180)
    <::>      at project1.Class1.TryTask(Class1.java:55)
    <::>      at project1.Class1.main(Class1.java:91)
    <::> Caused by: java.lang.NullPointerException
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.getDatasourceName(PersistencyDriver.java:177)
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.initNonTransactionDataSource(PersistencyDriver.java:198)
    <::>      at oracle.bpel.services.workflow.repos.PersistencyDriver.getNonTransactionService(PersistencyDriver.java:224)
    <::>      ... 7 more
    <2008-10-14 23:59:00,952> <ERROR> <oracle.bpel.services> <::>
    java.lang.NullPointerException
         at oracle.bpel.services.workflow.repos.PersistencyDriver.getDatasourceName(PersistencyDriver.java:177)
         at oracle.bpel.services.workflow.repos.PersistencyDriver.initNonTransactionDataSource(PersistencyDriver.java:198)
         at oracle.bpel.services.workflow.repos.PersistencyDriver.getNonTransactionService(PersistencyDriver.java:224)
         at oracle.bpel.services.workflow.repos.PersistencyDriver.getInstance(PersistencyDriver.java:152)
         at oracle.bpel.services.workflow.query.impl.TaskQueryService.queryTasks(TaskQueryService.java:213)
         at oracle.bpel.services.workflow.query.impl.TaskQueryServiceWSIF.queryTasks(TaskQueryServiceWSIF.java:172)
         at oracle.bpel.services.workflow.query.client.TaskQueryServiceWSIFClient.queryTasks(TaskQueryServiceWSIFClient.java:66)
         at oracle.bpel.services.workflow.query.client.AbstractDOMTaskQueryServiceClient.queryTasks(AbstractDOMTaskQueryServiceClient.java:180)
         at project1.Class1.TryTask(Class1.java:55)
         at project1.Class1.main(Class1.java:91)
    Caught workflow exception:
    Process exited with exit code 0.

    Although the versions 10.1.3.4 and 10.1.3.3 are close and should be able to use 10.1.3.4 JDev for most 10.1.3.3 development, the human tasks is the one exception. 10.1.3.3 had a few bugs fixed therefore the jar file used in JDev 10.1.3.4 may not be compatible with 10.1.3.3.
    I would either use JDev 10.1.3.3 or upgrade SOA Suite to 10.1.3.4
    cheers
    James

  • Message 2100 not found; No message file for product=RDBMS, facility=UL

    Hi,
    I am trying to run sqlldr. But I got this message:
    Message 2100 not found; No message file for product=RDBMS, facility=UL;
    I checked my ORACLE_HOME and it is set to: C:\oraclexe\app\oracle\product\10.2.0\server which includes the folders BIN,RDBMS, ....
    I checked my C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS and there is no ORAUS.MSG inside the folder. If this is the solution where can I find this file? I read in the forums to copy it from the server directory to the client, but I couldn't find it anywhere on my machine.
    Thanks,
    M

    Thansk, I really appreciate your help. This is the result:
    AGSDESKTOPJAVA=C:\Program Files (x86)\ArcGIS\Desktop10.0\
    ALLUSERSPROFILE=C:\ProgramData
    APPDATA=C:\Users\Matt\AppData\Roaming
    CommonProgramFiles=C:\Program Files\Common Files
    CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
    CommonProgramW6432=C:\Program Files\Common Files
    COMPUTERNAME=Smith
    ComSpec=C:\Windows\system32\cmd.exe
    DEFLOGDIR=C:\ProgramData\McAfee\DesktopProtection
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=C:
    HOMEPATH=\Users\Matt
    JAVA_HOME=C:\Program Files\Java\jdk1.6.0_23
    LOCALAPPDATA=C:\Users\Matt\AppData\Local
    LOGONSERVER=\\Smith
    NUMBER_OF_PROCESSORS=2
    ORACLE_BASE=C:\oraclexe\app\oracle
    ORACLE_HOME=C:\oraclexe\app\oracle\product\10.2.0\server
    ORA_NLS=C:\oraclexe\app\oracle\product\10.2.0\server\nls
    OS=Windows_NT
    Path=C:\XEClient\bin;C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\Windows
    \system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerSh
    ell\v1.0\;c:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\MATLAB\R
    2010a\runtime\win64;C:\MATLAB\R2010a\bin;C:\Program Files (x86)\Common Files\Rox
    io Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\10.0\DLLSh
    ared\
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    PROCESSOR_ARCHITECTURE=AMD64
    PROCESSOR_IDENTIFIER=Intel64 Family 15 Model 6 Stepping 2, GenuineIntel
    PROCESSOR_LEVEL=15
    PROCESSOR_REVISION=0602
    ProgramData=C:\ProgramData
    ProgramFiles=C:\Program Files
    ProgramFiles(x86)=C:\Program Files (x86)
    ProgramW6432=C:\Program Files
    PROMPT=$P$G
    PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
    PUBLIC=C:\Users\Public
    RoxioCentral=C:\Program Files (x86)\Common Files\Roxio Shared\10.0\Roxio Central
    36\
    SESSIONNAME=Console
    SQLPATH=C:\XEClient\sqlplus
    SystemDrive=C:
    SystemRoot=C:\Windows
    TEMP=C:\Users\Matt\AppData\Local\Temp
    TMP=C:\Users\Matt\AppData\Local\Temp
    USERDOMAIN=Smith
    USERNAME=Matt
    USERPROFILE=C:\Users\Matt
    VS100COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools
    VS90COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\Tools\
    VSEDEFLOGDIR=C:\ProgramData\McAfee\DesktopProtection
    windir=C:\Windows

  • Message 2100 not found; No message file for product=RDBMS, facility=ULMessa

    hi all,
    I am using windows2000 and 10g i am running loader using java
    but getting a message like
    Message 2100 not found; No message file for product=RDBMS, facility=ULMessage
    I have checked oracle_home and path in my env setting. but no progress same message i am getting
    but its running fine using cmd prompt.
    please help
    thanks in advance.

    First 10g is not a version it is a marketing label. What is the version number (to 3 decimal places).
    Second can you expand your question to explain you this has to do with AQ? How are enqueued, what code is executing to dequeue? We can make guesses but they may have nothing to do with your actual environment.

  • ERROR: exception symbol "20001" not found in resource file.

    HI,
    I am trying to use the Java API to create and update Work Tasks. When I setup a situation where two users edit and update the same work task I get an exception as follows.
    07/03/02 09:58:51 ERROR: exception symbol "20001" not found in resource file.
    07/03/02 09:58:51 a042d39669c482aa:-6ee930c2:1110a6f1a2f:-7a06
    <2007-03-02 09:58:51,453> <ERROR> <oracle.bpel.services> <::>
    ORABPEL-20001
         at oracle.bpel.services.workflow.repos.driver.olite.OliteWFTask.lockTask(OliteWFTask.java:425)
         at oracle.bpel.services.workflow.repos.driver.olite.OliteWFTask.updateWFTask(OliteWFTask.java:259)
         at oracle.bpel.services.workflow.repos.driver.PersistencyService.updateWFTask(PersistencyService.java:434)
         at oracle.bpel.services.workflow.task.impl.TaskService.performPostActionOperation(TaskService.java:2958)
         at oracle.bpel.services.workflow.task.impl.TaskService.performPostActionOperation(TaskService.java:2805)
         at oracle.bpel.services.workflow.task.impl.TaskService.performPostActionOperation(TaskService.java:2780)
         at oracle.bpel.services.workflow.task.impl.TaskService.updateTask(TaskService.java:492)
         at oracle.bpel.services.workflow.task.ejb.TaskServiceBean.updateTask(TaskServiceBean.java:135)
    <<<snip>>>
    Digging away and doing a bit more debugging indicates that the exception is due to not being able to load a Resource file...
    07/03/02 09:58:51 Got Throwable : - java.lang.ExceptionInInitializerError, null
    07/03/02 09:58:51 java.lang.ExceptionInInitializerError
    07/03/02 09:58:51      at com.evermind.server.rmi.RMICall.EXCEPTION_ORIGINATES_FROM_THE_REMOTE_SERVER(RMICall.java:109)
    07/03/02 09:58:51      at com.evermind.server.rmi.RMICall.throwRecordedException(RMICall.java:125)
    07/03/02 09:58:51      at com.evermind.server.rmi.RMIClientConnection.obtainRemoteMethodResponse(RMIClientConnection.java:517)
    07/03/02 09:58:51      at com.evermind.server.rmi.RMIClientConnection.invokeMethod(RMIClientConnection.java:461)
    07/03/02 09:58:51      at com.evermind.server.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:63)
    <<<snip>>>
    ...and...
    07/03/02 09:58:51 Caused by: java.util.MissingResourceException: Can't find bundle for base name com.collaxa.cube.i18n.exception_cube, locale en
    07/03/02 09:58:51      at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:836)
    07/03/02 09:58:51      at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:726)
    07/03/02 09:58:51      at java.util.ResourceBundle.getBundle(ResourceBundle.java:699)
    07/03/02 09:58:51      at com.collaxa.cube.CubeException.getResourceBundle(CubeException.java:142)
    07/03/02 09:58:51      at com.collaxa.cube.CubeException.<clinit>(CubeException.java:82)
    07/03/02 09:58:51      at java.lang.Class.forName0(Native Method)
    07/03/02 09:58:51      at java.lang.Class.forName(Class.java:242)
    07/03/02 09:58:51      at com.evermind.io.ClassLoaderObjectInputStream.resolveClass(ClassLoaderObjectInputStream.java:33)
    07/03/02 09:58:51      at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1538)
    07/03/02 09:58:51      at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1460)
    07/03/02 09:58:51      at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1693)
    07/03/02 09:58:51      at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
    07/03/02 09:58:51      at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
    07/03/02 09:58:51      at com.evermind.server.rmi.RMIClientConnection.handleMethodInvocationResponse(RMIClientConnection.java:856)
    Digging through the classes gives me a pretty good guess that the missing resource is in "orabpel.jar" which is on the classpath and in the class exception_cube_bpeltest.java.
    "exception.20001.severity", "10"
    "exception.20001.type", "error"
    "exception.20001.name", "Assertion execution error."
    "exception.20001.description", "A problem occurred while converting the assertion value \"{0}\" to a number at activity \"{1}\"."
    "exception.20001.fix", "Please change the value to be a number or do a string comparison."
    What I'm looking for is the nicely formatted exception to come back from Oracle so that I can wrap it up in our own exception handling and deal with the situation nicely. Instead of a java.lang.ExceptionInInitializerError - I think I'm supposed to be getting a proper "ORABPEL-20001" exception.
    I suspect it's got something to do with classpath. But I've checked that orabpel.jar is on the classpath.
    Please help :-)
    - Richard Perfect.

    I think it is a classloader related problem. I had the same situation when updating BPEL Tasks from a custom web application using REMOTE_CLIENT (RMI) method. I have no clue which classloader loads which class so I choosed a simple workaround: extracted the com.collaxa.cube.i18n folder and its contents from orabpel.jar into the oc4j container's applib directory. This way every classloader can find the resource files. (Do not copy the orabpel.jar into applib. It causes other classloader related dependency problems. Copy only the resource files.)

  • ORA-19571: archived-log recid 118360 stamp not found in control file - help

    Hi
    Every backup I do I am getting an error like below at the bottom :, every backup I do, it's complaaining about DIFFERENT archive log.
    ORA-19571: archived-log recid 118360 stamp 705446770 not found in control file.
    I have set keep control file info to 14 days, my retention is 7 days in RMAN, so I don't know why it's complaining, below is the full log.
    It seeems to be having problems with archive logs that have just been generated while it's doing the backup I think??
    channel d3: specifying archive log(s) in backup set
    input archive log thread=1 sequence=705 recid=124248 stamp=707103829
    input archive log thread=1 sequence=706 recid=124249 stamp=707103830
    input archive log thread=1 sequence=707 recid=124250 stamp=707103831
    input archive log thread=1 sequence=708 recid=124251 stamp=707103831
    input archive log thread=1 sequence=709 recid=124252 stamp=707103832
    input archive log thread=1 sequence=710 recid=124253 stamp=707103832
    input archive log thread=1 sequence=711 recid=124254 stamp=707103833
    input archive log thread=1 sequence=712 recid=124255 stamp=707103833
    input archive log thread=1 sequence=713 recid=124256 stamp=707103834
    input archive log thread=1 sequence=714 recid=124257 stamp=707103835
    input archive log thread=1 sequence=715 recid=124258 stamp=707103835
    input archive log thread=1 sequence=716 recid=124259 stamp=707103836
    input archive log thread=1 sequence=717 recid=124260 stamp=707103836
    input archive log thread=1 sequence=718 recid=124261 stamp=707103837
    input archive log thread=1 sequence=719 recid=124262 stamp=707103837
    input archive log thread=1 sequence=720 recid=124263 stamp=707103838
    input archive log thread=1 sequence=721 recid=124264 stamp=707103838
    input archive log thread=1 sequence=722 recid=124265 stamp=707103839
    input archive log thread=1 sequence=723 recid=124266 stamp=707103840
    input archive log thread=1 sequence=724 recid=124267 stamp=707103840
    input archive log thread=1 sequence=725 recid=124268 stamp=707103841
    input archive log thread=1 sequence=726 recid=124269 stamp=707103841
    RMAN-03009: failure of backup command on d3 channel at 01/01/2010 02:11:33
    ORA-19571: archived-log recid 118360 stamp 705446770 not found in control file
    continuing other job steps, job failed will not be re-run
    channel d6: starting compressed archive log backupset
    channel d6: specifying archive log(s) in backup set
    input archive log thread=1 sequence=641 recid=124034 stamp=707077994
    input archive log thread=1 sequence=642 recid=124035 stamp=707077994
    ...

    It's a rac, so shall I restart one instance at a time?? Or the whole thing? I am using an recovery catalog, so should I be connected to the recovery catalog Or control file to do a cross check backup, also when it's doing the backup do u recon it can't fing archivelog in controlfile file as it's not done a resync, should I force it to do a resync after a backup then backup the archive logs??? I really don't want to bounce the db as it's 24/7

  • ServletRunnerInfo not found in configuration file

    I'm getting the following error message
    ServletRunnerInfo not found in configuration file
    for a servlet that I've never changed. The servlet was written by another developer sometime last year and it seems to have stopped working correctly over a month ago.
    I've checked the XML files and both have entries for the servlet. Anyone have an idea of how to resolve this?

    Sounds like an init parameter definition might be missing from the within this servlets definition in the web.xml file. Might need something like:
      <init-param>
        <param-name>ServletRunnerInfo</param-name>
        <param-value>Something or other config information</param-value>
      </init-param>You could tell if the init() method of the actual servlet asks for:
    config.getInitParameter("ServletRunnerInfo"));Then that is the problem for sure. Otherwise ... ????

  • IMP-00010: not a valid export file (downward from 10.2.0.1 to 8.1.7.0)

    Hi,
    We have requirement to transfer User's all tables from 10.2.0.1 database to 8.1.7.0 database
    I have successfully exported user along with all tables and its data from the 10.2.0.1 database,
    now when i am doing import into 8.1.7.0, i am getting the following error :
    IMP-00010: not a valid export file, header failed verification
    IMP-00000: Import terminated unsuccessfully
    when i searched the internet, in the one blog it mentions as below :
    Oracle's exp/imp utilities are not downward compatible.
    you must use 9.02.1 exp to extract from instance 9.02.03 and then you are able to imp into 9.02.1
    so as per above, i will have to use 8.1.7.0 exp to extract from instance 10.2.0.1 database.
    So, how it can be done ?????
    where i have done mistake ???
    With Regards
    Edited by: user640001 on Jan 7, 2009 10:27 PM

    It seem you quoted me out of context. I was trying to point out that why read some blog entry of the 'net when the basic rules are clearly documented.
    fbortel wrote:
    Well in that very same piece of documentation it becomes clear you cannot export 10G, and import into 8i.Which section says this?
    The table (if that's it) gives a few exampes: "Table 19-7 shows some examples "
    I'm pretty sure that anything after Oracle8 should work. As long as you are using the right version of 'exp'.
    But there is a Metalink Note that goes into more detail. (and should be more correct than my memory allows me)

  • IMP-00010: not a valid export file, header failed verification

    Hi everyone,
    I am new in oracle's world, and I've been working with an export from a sun platform, and I try to import to a windows platform. I've been receiving this message error
    IMP-00010: not a valid export file, header failed verification
    Please, help me I have to finish with that today..
    Thanks and have a nice New Year

    thanks for your answer.
    sorry, but I don't have all exact information, because that export is comming from a client, and I don't know all information. I only know that the platform is sun.
    I received the file via an usb memory, directly from the source.
    I've been read that if you make an export in sun platform and it isn't as binary when you transfer it to a windows platform, it will be corrupt.
    Could you confirm me that?

  • Stranger error:Old file not found.However,a file of the same name was found

    Hi All,
    I appologise if its not the right forum...
    I am a bit baffeled here by the following error when I am trying to install Java SDK or just JRE.
    I upgraded my windows 2000 box to win XP home edition, installed the latest updates etc and then tried to install java....
    and got the following error
    bin\appletviewer.exe:
    Old file not found.However, a file of the same name was found.No updates done since file contents does not match.
    I have removed everything from system that I could imagine might be using Java directly or indirectly. No JRE on the system, no old java folder under C: drive etc, But I still get the same error. I have never come accross a stupid error like this before. Any help will be appreciated. Thanks
    Message was edited by:
    Khalid.Ali

    hunmm..thanks for the reply, I will try to find appletviewer.exe, however, my guess is that file should be there cus I am just trying to install it from standard java SDK installation.
    Yes I did not do checkdisk and I will do that and post my findings

  • TNS-12560: Message 12560 not found; No message file for product=NETWORK

    I have downloaded and installed the SQL *Plus client software from the URL http://www.oracle.com/technology/tech/sql_plus/index.html
    This should help me connect to the Oracle database
    Following is the error I have in the sqlnet.log file (located at C:\oracle\product\10.2.0\client_1\BIN)
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleORCL)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=ORCL)(CID=(PROGRAM=C:\oracle\product\10.2.0\client_1\BIN\sqlplus.exe)(HOST=PEM270639IC)(USER=mattut))))
    VERSION INFORMATION:
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
    Time: 10-SEP-2007 10:45:13
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12560
    TNS-12560: Message 12560 not found; No message file for product=NETWORK, facility=TNS
    ns secondary err code: 0
    nt main err code: 530
    TNS-00530: Message 530 not found; No message file for product=NETWORK, facility=TNS
    nt secondary err code: 126
    nt OS err code: 0

    Where are you trying to connect to?
    If you want a local database you must down and install for example the Oracle 10 Express

  • ORA-01034: Message 1034 not found; No message file for product=RDBMS

    Hi!
    After creating a RAC Database (10.2.0.5) on Redhat Enterprise Linux 64-bit, we checked: Listeners, Processes and Environment variables.
    Everything was set up properly and running.
    When trying to connect as sysdba the following message appeared:
    $sqlplus / as sysdba
    sql>select * from v$instance;
    select * from v$instance
    ERROR at line 1:
    ORA-01034: Message 1034 not found; No message file for product=RDBMS,
    facility=ORA
    A shutdown and startup did not help.
    What could be the issue here?
    Thanks!

    Here is an excerpt of the alert log. No ora-
    ALTER DATABASE OPEN
    Picked broadcast on commit scheme to generate SCNs
    Fri Feb 24 11:26:50 CET 2012
    LGWR: STARTING ARCH PROCESSES
    ARC0 started with pid=32, OS id=4930
    Fri Feb 24 11:26:50 CET 2012
    ARC0: Archival started
    ARC1: Archival started
    LGWR: STARTING ARCH PROCESSES COMPLETE
    ARC1 started with pid=33, OS id=4932
    Fri Feb 24 11:26:50 CET 2012
    SUCCESS: diskgroup LOG01 was mounted
    SUCCESS: diskgroup LOG02 was mounted
    Thread 1 opened at log sequence 10
      Current log# 11 seq# 10 mem# 0: +LOG01/omdemo/onlinelog/group_11.265.776085353
      Current log# 11 seq# 10 mem# 1: +LOG02/omdemo/onlinelog/group_11.265.776085353
    Successful open of redo thread 1
    Fri Feb 24 11:26:50 CET 2012
    ARC0: Becoming the 'no FAL' ARCH
    ARC0: Becoming the 'no SRL' ARCH
    Fri Feb 24 11:26:50 CET 2012
    ARC1: Becoming the heartbeat ARCH
    Fri Feb 24 11:26:50 CET 2012
    SMON: enabling cache recovery
    Fri Feb 24 11:26:50 CET 2012
    Successfully onlined Undo Tablespace 1.
    Fri Feb 24 11:26:50 CET 2012
    SMON: enabling tx recovery
    Fri Feb 24 11:26:50 CET 2012
    Database Characterset is WE8MSWIN1252
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=34, OS id=4934
    Fri Feb 24 11:26:52 CET 2012
    Completed: ALTER DATABASE OPEN
    Sat Feb 25 02:00:23 CET 2012
    Thread 1 advanced to log sequence 11 (LGWR switch)
      Current log# 12 seq# 11 mem# 0: +LOG01/omdemo/onlinelog/group_12.266.776085355
      Current log# 12 seq# 11 mem# 1: +LOG02/omdemo/onlinelog/group_12.266.776085355$ps -ef|grep mon
    oracle    4694     1  0 Feb24 ?        00:00:10 /oracle/app/oracle/product/10.2.0/db_1/bin/racgimon startd OMDEMO
    oracle    4773     1  0 Feb24 ?        00:00:04 ora_pmon_OMDEMO1
    oracle    4779     1  0 Feb24 ?        00:00:03 ora_lmon_OMDEMO1
    oracle    4819     1  0 Feb24 ?        00:00:05 ora_smon_OMDEMO1
    oracle    4825     1  0 Feb24 ?        00:00:00 ora_mmon_OMDEMO1
    root     10429     1  0 Jan24 ?        03:29:11 /oracle/app/grid/11.2.0/grid/bin/osysmond.bin
    root     10475     1  0 Jan24 ?        00:01:44 /oracle/app/grid/11.2.0/grid/bin/cssdmonitor
    grid     11214     1  0 Jan24 ?        00:00:46 asm_pmon_+ASM1
    grid     11301     1  0 Jan24 ?        00:00:19 asm_lmon_+ASM1
    grid     11335     1  0 Jan24 ?        00:00:00 asm_smon_+ASM1
    grid     11343     1  0 Jan24 ?        00:00:00 asm_gmon_+ASM1
    grid     11347     1  0 Jan24 ?        00:00:00 asm_mmon_+ASM1
    dbus     11972     1  0 Jan17 ?        00:00:03 dbus-daemon --system
    xfs      14493     1  0 Jan17 ?        00:00:00 xfs -droppriv -daemon
    avahi    14594     1  0 Jan17 ?        00:00:00 avahi-daemon: running [at1srv0080.local]
    avahi    14595 14594  0 Jan17 ?        00:00:00 avahi-daemon: chroot helper
    root     14671     1  0 Jan17 ?        00:00:00 /usr/sbin/gdm-binary -nodaemon
    root     14736 14671  0 Jan17 ?        00:00:00 /usr/sbin/gdm-binary -nodaemon
    oracle   17059 12052  0 10:42 pts/1    00:00:00 grep mon
    [oracle@at1srv0080 /]$ sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.5.0 - Production on Mon Feb 27 10:46:51 2012
    Copyright (c) 1982, 2010, Oracle.  All Rights Reserved.
    Connected to an idle instance.
    SQL> startup
    ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file '/oracle/app/oracle/product/10.2.0/db_1/dbs/initOCTA1.ora'

  • Each time I start up my computer and have my iPhone plugged in, I get a message window that eads "New Wave" file not found in your files....How do I get this file I am missing?

    Each time I start up my computer and have my iPhone plugged in, I get a message window that eads "New Wave" file not found in your files....How do I get this file I am missing?

    Hey Podieboy,
    Thanks for the question. It sounds like you are receiving a message about missing files when you start iTunes. The following resource may provide more information:
    iTunes: Finding lost media and downloads - Apple Support
    http://support.apple.com/en-us/TS1408
    If the file/song is not important, you can simply delete it from your library to avoid this error message in the future:
    iTunes 12 for Windows: Delete songs, playlists, or other items
    http://support.apple.com/kb/PH20391
    Thanks,
    Matt M.

Maybe you are looking for

  • I need detailed explanation of the OC4J config/*.xml files.

    Anybody know where I can find good descriptions of the OC4J config files?? I've found some stuff on www.orionserver.com but they aren't good enough. Specifically, I have someone who wants a <lib> entry made for his app into the server.xml file. I wan

  • Trouble installing itunes 11.1

    I have a iphone 5s and when i plug it into my imac to get music on my phone it tells me i need to update itunes to 11.1 version. Then when i got to download that or update it, then it tells i have to update my OS x from 10.5.8 to 10.6.8 or later but

  • HT6114 Update 10.9.2. fails to install

    When I try to install the 10.9.2 update, the SoftwareUpdateLauncher shows up and hangs, any ideas what to do? -- https://twitter.com/drkrab/status/438975312106635264/photo/1 I've tried both installing it via the AppStore app, and downloading the "com

  • Rerunning script (DML and DDL) without ora-00001 and ora-00955 errors

    What is the best way to write a DML and DDL script so that it can be run multiple times without these ORA errors: ORA-00955: name is already used by an existing object ORA-00001: unique constraint (JILL.SYS_C00160247) violated I have just joined a pr

  • WebLogic Info

    hi, i need to report to my company about changing our e-business client/server transaction management. i am very interested in using WebLogic , but i am missing some info on the foolwing parts : how does WebLogic manages client transaction session ?