Pb  export with OEM on Oracle 817

Hello
When I try to make an export or import on a table of my Oracle base, this message d error appears
Error connection on oracle target
Argument number too large at
and I do not see how solving it?
Thank you in advance.

It looks like you have a basic problem with your repository. Are you sure installation finished successfully? You could try to drop and recreate the repository (means almost the same as dropping and recreating user SYSMAN and its objects).
http://download-uk.oracle.com/docs/html/B12013_03/toc.htm
contains a chapter 'Dropping and Recreating the Management Repository'.

Similar Messages

  • Export Failing with EXP-00008: ORACLE error 1031 encountered and ORA-01031:

    HI Folks,
    I am trying export the 11.2.0.2.0 database using export 'exp' utility.I am getting below errors while exporting with my 'sa' user. I am below role privileges for the 'sa' user. The export from the same kind of priivileged user in other Database is working.
    1* select * from dba_role_privs where grantee='SA' order by 2
    SQL> /
    GRANTEE GRANTED_ROLE ADM DEF
    SA ACCOUNT_CREATOR NO YES
    SA APPLICATION_CREATOR YES YES
    SA APPLICATION_DBA NO YES
    SA APPLICATION_DEVELOPER YES YES
    SA APPLICATION_USER NO YES
    SA AQ_ADMINISTRATOR_ROLE NO YES
    SA CLARIFY_ADMINISTRATOR YES YES
    SA CLARIFY_REPORTER YES YES
    SA CLARIFY_USER YES YES
    SA CONNECT YES YES
    SA EXECUTE_CATALOG_ROLE NO YES
    SA GATHER_SYSTEM_STATISTICS NO YES
    SA MOB_CONNECT YES YES
    SA SCHEDULER_ADMIN NO YES
    SA SELECT_CATALOG_ROLE YES YES
    (hidh403)/opt/app/adba/crmdb()> exp sa/fre9shen@t1crm9d2 file=sample.dmp log=sample.log
    Export: Release 11.2.0.2.0 - Production on Tue Jan 31 12:55:22 2012
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Tes
    Export done in WE8ISO8859P1 character set and AL16UTF16 NCHAR character set
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user SA
    . exporting PUBLIC type synonyms
    EXP-00008: ORACLE error 1031 encountered
    ORA-01031: insufficient privileges
    EXP-00000: Export terminated unsuccessfully

    Yes, I do agree.But when i compared with the other database where i am able to export it doesn't have the 'EXPORT_FULL_DATABASE' privs.
    SQL> select * from role_role_privs;
    ROLE GRANTED_ROLE ADM
    HS_ADMIN_ROLE HS_ADMIN_SELECT_ROLE NO
    ACCOUNT_CREATOR APPLICATION_USER YES
    APPLICATION_DBA APPLICATION_OEM_TUNE NO
    APPLICATION_DBA ACCOUNT_CREATOR NO
    EXECUTE_CATALOG_ROLE HS_ADMIN_ROLE NO
    HS_ADMIN_ROLE HS_ADMIN_EXECUTE_ROLE NO
    APPLICATION_DBA APPLICATION_DEVELOPER YES
    SELECT_CATALOG_ROLE HS_ADMIN_ROLE NO
    APPLICATION_DBA APPLICATION_USER YES
    SELECT_CATALOG_ROLE HS_ADMIN_SELECT_ROLE NO
    EXECUTE_CATALOG_ROLE HS_ADMIN_EXECUTE_ROLE NO
    ROLE GRANTED_ROLE ADM
    APPLICATION_DBA APPLICATION_CREATOR YES

  • How to integrate oracle 11GR2 Database with OEM 12C

    Dear experts,
    I have installed Oracle Enterprise Manager Cloud Control 12c Release 2 Plug-in Update 1 (12.1.0.2) on windows 2008 64-bit version.
    how can I integrate my Oracle 11G R2 database with OEM.
    Thanks.

    Refer the following documents for promoting (discovering/adding) target database to EM 12c.
    Understanding Database Discovery in Enterprise Manager 12c Cloud Control (Note 1400463.1)
    Cloud Control for Oracle Database Assistant: Setup of Cloud Control to Manage Database Targets (Search Helper) (Note 1569848.2)
    Discovering, Promoting, and Adding Targets:
    http://docs.oracle.com/cd/E24628_01/doc.121/e24473/discovery.htm#CBAEGHBH
    HTH
    Mani

  • How to export data from a Oracle table to a delimited file?

    I know how to load delimited file into a table, but how to export
    data from a Oracle table to a delimited file?
    Thanks in advance.

    Try looking at this link, it's long but there's three different solutions discussed in it. If you look at Barbara Boehmer's
    solution in her posts in the link below you'll see that she's addressed your concerns with spool files.
    Re: utl_smtp and triggers

  • Error In Query Level export with  multiple conditions

    When i am running the following Query for Export with i am getting the result.
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY='"WHERE deptno > 10 and sal !=2850"' LOG=log011.log FILE=exp.dmp
    Export: Release 10.2.0.1.0 - Production on Wed Jan 30 10:01:27 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    About to export specified tables via Conventional Path ...
    . . exporting table EMP 10 rows exported
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    Export terminated successfully with warnings.
    But When I run with The following condition then it shows the following error...
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY='"WHERE deptno > 10 and job!='CLERK' "' LOG=log011.log FILE=Exp01.dmp
    LRM-00111: no closing quote for value ' LOG=log01'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    EXP-00000: Export terminated unsuccessfully
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY="WHERE deptno > 10 and job!='CLERK'" LOG=log5.log FILE=exp01.dmp
    LRM-00112: multiple values not allowed for parameter 'query'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    EXP-00000: Export terminated unsuccessfully
    Please suggest a solution for it.

    966523 wrote:
    Padma.... wrote:
    Hi,
    The single quotes used for CLERK are causing the issue most probably.
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY='"WHERE deptno > 10 and job!='CLERK' "' LOG=log011.log FILE=Exp01.dmp
    try replacing with this
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY='"WHERE deptno > 10 and job!=''CLERK'' "' LOG=log011.log FILE=Exp01.dmp
    Two single quotes(not double quotes) in the place of one single quote for CLERK.
    Thanks
    Padma...Thanks A Lot...if/when you place all inside control file, then you do not have to worry about such complications

  • Installing oracle 817 on redhat 7.1

    Could someone please help me? I'm trying to install oracle 817
    on redhat 7.1 i did all the prework and also installed java
    sdk1.3.1, and set my path also.
    when I try to run the ./runInstaller or even the
    install/linux/runInstaller, i get this error, Java runtime
    environment not found e/bin/jre.............
    the e at e/bin/jre had a little mark on top of it, i have no
    idea what that means. I diged through some documentation and
    the only reference that i found saids something about long file
    name. Has anyone else came across this and what would be the
    fix to this?
    Thank you.
    Will

    Hello.
    You dont need any java to install 8.1.7 in RedHat 7.1
    Just make a full installation of RedHat and for running the
    runInstaller export LD_ASSUME_KERNEL=2.2.5 before
    I dont know if this are in the RelaseNotes of Disk1 of RedHat 7.0
    or 7.1
    FS

  • Error in converting Access97 db to Oracle 817.2.6

    I need HELP!!!
    I have successfully migrated a Access2000 db to oracle 817 but am trying to do the same from access 97 and am getting the following application error message while trying to create the xml file:
    Error# 429:Activex component can't create object.
    Can somebody help me with this?
    Thanks,
    Konah

    Also,
    There are 2 .mde files in the %ORACLE_HOME%\Omwb\msaccess_exporter directory.
    You need to use omwb97.mde for Access 97 databases.
    If you encounter any other issues please contact [email protected]
    Regards
    John

  • Fail to register the jobs with OEM

    I have done following steps in developing a data warehouse project but im still in problum to load data from source to target:
    Create a source object with thier tables
    create a target object a dimension
    create a mapping
    create to operator one for source table and other for dimension
    linked colum by column
    validate this mapping
    genrate this mapping
    deployed this mapping
    but i am facing problum while i am goining to register the TCL with OEM. I am unable to register this and following error occures
    Faild to register the jobs with OEM:OEM registration Faild: OEM client not installed in Oracle_Home.
    java.lang.NoClassDefFoundError.
    Oracle/sysman/enSDK/client/omsClient/BadAttributeException
    Exception in thread "main"
    Plz help me to solve this problum.
    Plz give me exact solution.
    Plz give me steps from start to end of a data warehouse project.Steps involves in design ,validate and genrate and loading phase plz give me list of these steps.

    This combination is not certified. Please upgrade OWB to the latest available version (9.0.3.35) that is certified on the 9.2.0.1 database.
    Regards:
    Igor

  • Not able to deploy to register my mapping with OEM

    I am new to data ware housing.Iam using oracle9i warehouse builder.I created a source,target and mapping between these two using mapping editor.Then I have generated scripts bot not able to make OEM register.When I click the button "OEM register", it give 2 error messages.
    1. Specified Connection is not a valid Run time schema
    2. Please Make sure OEM Client installed locally or enter correct OMS domain domain in the configuration parameter.
    I know that some parameter should be set in preference dialog box but no idea how to set that.
    Can anyone help regarding this.
    Thanks

    created a project with following structure
    MyProject
    ----MySource (FlatFile)
    ----MyTarget
    Created a map between these 2 and named it "MyMapping".After successfully generating code for the map, "GenerationReults[succeed]" Dialog box opened.But Deploy and Run button are disabled so I tried clicking OEM Register button to get the following error message even after setting preference values.
    Please tell me how to make those buttons enabled.Is there another way.
    Error--
    Failed to register the jobs with OEM.: OEM Registration Failed. Please make sure you have OEM client installed locally, the Oracle Management Server is running, and you have entered correct connection information and OEM information under 'Preferences'.
    Incorrect domain entered or node not discovered. Please enter correct OMS domain name in the configuration parameter and make sure that the OMS is running.
    oracle.sysman.emSDK.client.omsClient.NoDomainException: singapore
    Job object failed to create, check to see if user has credentials.

  • Metadata created with OEM and OLAP2 views

    Why metadata created with OEM (v 9.2.0.1.0) aren't visible in OLAP2 views?
    Cubes are visible only in OLAP_CUBES, and OLAP1_CUBES views only.
    "Oracle9i Users Guide" says, that OLAP2 views shows metada created either with CWM2 and OEM, but i don't see the ones created with OEM.
    And second question - has that issue something to do with the problem that i don't see cubes with "cube viewer" (and any other OLAP API application like OracleBI Spreadsheet Add-In)? I got error message BIB-10701.
    I use Oracle 9.2.0.6.0 with OLAP option.
    Raf

    I know it is an old thread, but I thought I post the solution anyway ;-)
    I had the same problem and found that it is fixed in the July 2014 CU.

  • Export in Problem from oracle 8.1.6 to 8.1.7

    when i am trying to export schema with data from oracle 8.1.6 to 8.1.7 using the command
    exp uid/passwrd@servicename full=n file=filename log=logfilename, i am facing two errors:
    1. invalid column name ora 904 error
    2. no statements parses ora1003 error
    but when i am trying to export from 8.1.7 to save version it works perfectly
    Can any oracle guru help me plz??
    null

    I am having the same errors attempting an export of a 8.1.6 db
    schema from an 8.17 client PC. Anyone out there have a
    suggestion for a fix?
    when i am trying to export schema with data from oracle 8.1.6 to 8.1.7 using the command >exp uid/passwrd@servicename full=n
    file=filename log=logfilename, i am facing two errors:>1.
    invalid column name ora 904 error>2. no statements parses
    ora1003 error>but when i am trying to export from 8.1.7 to save
    version it works perfectly>Can any oracle guru help me plz??
    null

  • Export with consistent=y raise snapshot too old error.

    Hi,
    Oracle version:9204
    It raises
    EXP-00056: ORACLE error 1555 encountered
    ORA-01555: snapshot too old: rollback segment number 2 with name
    "_SYSSMU2$" too small
    when I do an export with consistent=y option.
    And I find below information in alert_orcl.log
    Wed Apr 20 07:50:01 2005
    SELECT /*NESTED_TABLE_GET_REFS*/ "XXX"."TABLENAME".* FROM
    "XXX"."TABLENAME"
    ORA-01555 caused by SQL statement below (Query Duration=1140060307
    sec, SCN: 0x0000.00442609):
    The undo parameters:
    undo_retention=10800(default value)
    undo_retention is larger than the seconds run export(only 1800
    seconds),so I think the default value is enough.
    undo_management=auto(default value)
    Maybe the rollback tablespace is too small(about 300M)? But I think oracle should increase the size of datafile in this mode.Is that right?
    undo_tablespace=undotbs1
    undo_suppress_errors=false
    I think I must miss something.
    Any suggestions will be very appreciated.
    Thanks.
    wy

    UNDO_RETENTION is a request, not a mandate. If your UNDO tablespace is too small, Oracle may have to discard UNDO segments before UNDO_RETENTION is reached.
    How much UNDO is your database generating every second?
    SELECT stat.undoblks * param.value / 1024 / 1024 / 10 / 60 undo_mb_per_sec
      FROM v$undostat  stat,
           v$parameter param
    WHERE param.name = 'db_block_size'Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Export with query problem

    Hello,
    I have to export three tables out of my database with a query. I started the export with following command (on a Windows testing machine).
    exp.exe userid=ccq/xxx@KDG file=C:\download\export\NEW.dmp tables= qem_message, qem_messagestatlog, qw_text query=””"where qem_message.messagebody > 739409 AND qem_message.pkey = qem_messagestatlog.pkey AND qem_message.messagebody = qw_text.qwkey" log=C:\download\export\NEW.log
    I have got the following error:
    . . Export of the table QEM_MESSAGE
    EXP-00056: ORACLE-error 904 found
    ORA-00904: Unknown columnname
    I think the problem is the query statement. All the columns are written right. Is there an error in the statement or is it impossible to execute such statement in an export?

    Hi,
    you have to use export one time at a time with query parameter
    consider
    SQL> host type d:\query.txt
    query="where emp.deptno = dept.deptno
           and emp.sal > 1000
           or dept.deptno = 40"
    SQL> host exp scott/tiger file=d:\tt.dmp tables=(EMP,DEPT) PARFILE=d:\query.txt
    Export: Release 10.1.0.2.0 - Production on Thu Feb 1 17:11:11 2007
    Copyright (c) 1982, 2004, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Produc
    tion
    With the Partitioning, OLAP and Data Mining options
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    About to export specified tables via Conventional Path ...
    . . exporting table                            EMP
    EXP-00056: ORACLE error 904 encountered
    ORA-00904: "DEPT"."DEPTNO": invalid identifier
    . . exporting table                           DEPT
    EXP-00056: ORACLE error 904 encountered
    ORA-00904: "EMP"."SAL": invalid identifier
    Export terminated successfully with warnings.
    SQL>regards
    Taj

  • Issue with .profile for oracle 9i and 10g

    Here I have six oracle 9i databases on one box. I am going to upgrade five of them to oracle 10g and want to keep one database RCAT in oracle 9i for one or two week.
    So, when I do upgrade I have to setup oracle home for 10g and also profile for oracle user for 10g (correct me if I m wrong). But now I want one database RCAT on oracle 9i. How can I take care of this.
    I mean how I will handle profile and all other thing for oracle 9i and 10g at the same time.
    Thanks,
    Vishal

    Install 10g under the same OS user as 9i, of course on a different Oracle Home. Then you configure your .profile consequently. Just as an example, this is my .bash_profile with 10g and 11g with the same oracle OS user :
    [oracle@linux5 ~]$ cat .bash_profile
    # .bash_profile
    # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
            . ~/.bashrc
    fi
    export EDITOR=vi
    export ORACLE_BASE=/home/oracle/base
    umask 022
    o10()
    {       export ORACLE_SID=db102
            export ORACLE_HOME=$ORACLE_BASE/OraHome10
            export LD_LIBRARY_PATH=$ORACLE_HOME/lib
            export PATH=$ORACLE_HOME/bin:/bin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/X11R6/bin
            export TNS_ADMIN=$ORACLE_BASE/OraHome11/network/admin
            export PS1='[\u@\h_10 \W]\$ '
    o11()
    {       export ORACLE_SID=db11
            export ORACLE_HOME=$ORACLE_BASE/OraHome11
            export LD_LIBRARY_PATH=$ORACLE_HOME/lib
            export PATH=$ORACLE_HOME/bin:/bin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/X11R6/bin
            export PS1='[\u@\h_11 \W]\$ '
    s()
    {       sqlplus / as sysdba
    asm()
    {       export ORACLE_SID=+ASM
    db10()
    {       export ORACLE_SID=db102
    db11()
    {       export ORACLE_SID=db11
    asm10()
    {       export ORACLE_SID=asm10
    [oracle@linux5 ~]$

  • Oracle 817 client not available in ODBC Data Source Administrator pick list...

    I have installed Oracle 817 client on a PC.
    I can see the server, I can see the instance.
    I can log into the instance using SQLPlus with no problem.
    The product I'm using requires an ODBC connection configured in the ODBC Data Source Administrator.
    When I try to configure it in the DSA, Oracle 8 is not in the list.
    HELP!

    I assume you have Windows on the client. The "Drivers" page of the ODBC_DSA should list all installed drivers. You require:
    name= Oracle ODBC Driver
    version= 8.01.07.00 (or something similar)
    company= Oracle Corporation DO NOT USE the Microsoft one.
    If this does not show, then either it was not included in the Oracle Client installation or you have not rebooted after the Oracle Client installation; the ODBC driver is not visible until rebooted.

Maybe you are looking for

  • Photo share crashes in Photoshop elements 9

    I recently installed photoshop elements 9.  I have been an elements user since version 3 and most recently was using version 7.  In version 9, when I select a photo in the organizer and then go to "Share" and select "Photo email" I get as far as sele

  • Lost receipt help!

    Bought a prepaid mobile phone three days ago and the device was not working at my home. I wanted to return the device but I cannot locate the receipt and paid in cash. I can provide the location time and date that the purchase was made but no one see

  • How to enter values for an Info-object Manually.

    Hi I have to enter certan values manually in the customised info-object which are not available in the BW at the moment. If I go via SE11 I am only getting change option. If I go via SM30 it says The maintenance dialog for ****** is incomplete or not

  • Search BAPI to cancel Prebooking

    Hi all, does anybody know a BAPI to cancel a Prebooking made with BAPI_PREBOOK_ATTENDANCE ? seems to be special.. Thanks

  • Does Labview RT 8.5 impose a limit on FAT32 partition / hard disk size?

    We will be using a PXI RT system (spec below) to collect, analyse and store a large amount of data (~30 to 40GB per experiment). We don't want to keep the Windows host PXI attached and so the RT PXI must be able to store all the data from an experime