Import and error ora-12203

Hi,
I got this error ora-12203 (TNS:unable to connect to destination) when I was importing a table into my own schema. I don't know whether the error is related with import. My question is: when performing import, can other user login into the database?
Thanks,
Richard

Hi Richard,
The database will you to logon irrespective of what other work you are doing with whatever tool you are using. The Exceptions are :-
If the refered schema comes under certain restriction of the assigned profile.
If the database is running in RESTRICTED mode and you are not having accessibilty during this peiod.
As for your error in the import statement, check the connection you are using in the import statement.
I'm personally using import at least 10 times a week and usually come across these errors. These errors are all human errors and not bugs in the program.
Bye,
Piyush.

Similar Messages

  • Intermittent of error "ORA-12203: TNS:unable to connect to destination"

    Hi,
    One of my application (run 24 hours each day) face intermittent of error "ORA-12203: TNS:unable to connect to destination", any one face the same issue ? any solution for this ? The error may occur weekly, some time monthly, occur randomly.
    My Oracle is 8i. Application and 8i run on different SUN machines.
    Checked with my network engr and db admin, network traffic was not congested and db was not overloaded at the time of this error. CPU and memory also not overloaded.
    regards,
    johnvun98

    This error generally occurs when you listener at server is not working properly or at client you sqlnet.ora,tnsnames.ora (if using local names) file is not configured properly check both the files

  • ERROR ORA-12203: TNS: unable to connect to destination

    Hello All,
    I have installed Oracle 8i and forms 6i on my computer running on Windows NT 4.0 with service pack 4.0. The order of my installation was Oracle 8i and then Forms 6i. I have also used Net8 Easy Config to configure the tnsnames.ora file. I tested the connection on the Net8 Easy Config wizzard and I got the connection successful message. However I still get the ERROR ORA-12203: TNS: unable to connect to destination message when I tried to connect from forms 6i.
    I have below my tnsnames.ora file:
    # C:\FORMS6I\NET80\ADMIN\TNSNAMES.ORA Configuration File:C:\forms6i\net80\admin\tnsnames.ora
    # Generated by Oracle Net8 Assistant
    LISTENER1 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = austin)(PORT = 1521))
    (CONNECT_DATA = (SID = SUN))
    Rep60_AUSTIN-Forms6i,Rep60_AUSTIN-Forms6i.world=(ADDRESS=(PROTOCOL=tcp)(HOST=AUSTIN)(PORT=1949))
    I have created database objects, but forms will not connect. What else should do?
    Thanks for your anticipated response.

    Hi
    Your oracle database and forms are installed on different oracle home so when you configurate your sql net that time you are configurating only your oracle database. So for form you must be having different oracle home. you cand change thid from start/oracle inatallation products/home selecter. so change our home and run the form. and if still having problem than check for tnsnames.ora file you must be having two files and both must be having right configuration.
    thanks

  • Why i receive errors: "The procedure entry point longjmp could not be found in the dynamic link lib. orauts.dll" and "Error ORA-12560"

    Hello,
    "C:\app\xps\product\11.2.0\dbhome_1"  where is my installation of database oracle enterprise 11g; I use Windows 7 Pro.
    I have in System PATH : C:\app\xps\product\11.2.0\dbhome_1\bin
    I have in HKEY_LOCAL_MACHINE > SOFTWARE > ORACLE > SYSMAN > OracleDBConsoleorcl : "ORACLE_HOME" value "C:\app\xps\product\11.2.0\dbhome_1"
    When i execute "sqlplus / as sysdba" command, i receive error: "The procedure entry point longjmp could not be found in the dynamic link lib. orauts.dll" and "Error ORA-12560"
    If i execute
    set ORACLE_HOME=C:\app\xps\product\11.2.0\dbhome_1
    C:\>set PATH=%ORACLE_HOME%\bin;%PATH%
    sqlplus "/ as sysdba"
    I don't receive Error.
    Why?

    You don't mention which specific version of the operating system that you are using - Windows XP, Vista, or 7 and whether you're using a 32-bit or 64-bit version.
    FWIW, kernell32.dll is a Windows system-level module, so it's possible that you have some corruption in your Windows installation which is preventing FM from launching.
    Also, 2Gb of RAM is a bit lean for FM.

  • Import Export Error (ORA-06502)

    All,
    We are trying to migrate the code from windows 2000 HTMLDB 1.5.0.00.33 to solaris 9 HTMLDB 1.5.0.00.33 by using the export/import function. After migration, one report went wrong with the following message.
    report error:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    The tables definition are identical and there's no data in the production table. When we try to reduce the query length from 3000 to 2500 characters, the error message disappears on production.
    Is there any HTMLDB global variable controls the maximum length of the report "region source"?
    Any response would be appreciate.
    Thanks,
    Tony
    ===========================================
    PS: Here's our query:
    select
    x.supreq_id,
    DECODE(x.pk, null, 'Add new record:', ''||'<img src="#IMAGE_PREFIX#edit.gif" border="0" alt="Edit Icon">') edit,
    x.pk,
    x.request,
    x.subject,
    x.severity,
    x.priority,
    x.status,
    x.request_type,
    x.response,
    x.username,
    x.created_date,
    x.note,
    x.cks
    from (
    select
    htmldb_item.hidden(1,supreq_id) supreq_id,
    supreq_id edit,
    supreq_id pk,
    htmldb_item.text(3, request,'','','onFocus="javascript:window.status=this.value" onBlur="javascript:window.status=''Done''"') request,
    htmldb_item.select_list_from_lov(4,subject,'REQUEST_SUBJECT','','NO') subject,
    htmldb_item.select_list(5, severity, '3,2,1', 'style="width:40px"','NO') severity,
    htmldb_item.select_list_from_lov(6,priority,'REQUEST_PRIORITY','','NO') priority,
    htmldb_item.select_list_from_lov(7,status,'REQUEST_STATUS','','NO') status,
    htmldb_item.select_list_from_lov(8, request_type, 'SUPPORT_REQUEST_TYPE','', 'NO') request_type,
    htmldb_item.text(9, response,'','','onFocus=javascript:window.status=this.value;') response,
    htmldb_item.select_list_from_lov(10, username, 'USER_EMPLOYEE', 'style="width:100px"','NO') username,
    htmldb_item.date_popup(11, rownum,created_date, 'mm/dd/yyyy', 8) created_date,
    htmldb_item.text(12, note,'','','onFocus=javascript:window.status=this.value;') note,
    htmldb_item.md5_checksum(request, subject, severity, priority, status, request_type, response, username, created_date,note) cks
    from
    art_sup_requests
    where
    (:P319_PRIORITY IS NULL OR :P319_PRIORITY ='%' OR
    INSTR(UPPER(ART_SUP_REQUESTS.PRIORITY),UPPER(:P319_PRIORITY)) > 0)
    AND
    (:P319_SEVERITY IS NULL OR :P319_SEVERITY ='%' OR
    INSTR(UPPER(ART_SUP_REQUESTS.SEVERITY),UPPER(:P319_SEVERITY)) > 0)
    AND
    (:P319_SUBJECT IS NULL OR :P319_SUBJECT ='%' OR
    INSTR(UPPER(ART_SUP_REQUESTS.SUBJECT),UPPER(:P319_SUBJECT)) > 0)
    AND (:P319_CREATED_DATE IS NULL OR
    TRUNC(ART_SUP_REQUESTS.CREATED_DATE)=TO_DATE(:P319_CREATED_DATE,'MM/DD/YYYY'))
    AND (:P319_REQUEST_TYPE IS NULL OR :P319_REQUEST_TYPE ='%' OR
    INSTR(UPPER(ART_SUP_REQUESTS.REQUEST_TYPE),UPPER(:P319_REQUEST_TYPE)) > 0)
    AND (:P319_REQUEST IS NULL OR
    INSTR(UPPER(ART_SUP_REQUESTS.REQUEST),UPPER(:P319_REQUEST)) > 0)
    AND (:P319_USERNAME IS NULL OR :P319_USERNAME ='%' OR
    INSTR(UPPER(ART_SUP_REQUESTS.USERNAME),UPPER(:P319_USERNAME)) > 0)
    AND (:P319_ID IS NULL OR ART_SUP_REQUESTS.SUPREQ_ID = :P319_ID)
    union all
    select
    htmldb_item.hidden(1,null) supreq_id,
    null edit,
    null pk,
    htmldb_item.text(3, null) request,
    htmldb_item.select_list_from_lov(4,null,'REQUEST_SUBJECT','','NO') subject,
    htmldb_item.select_list(5, null, '3,2,1', 'style="width:40px"','NO') severity,
    htmldb_item.select_list_from_lov(6,null,'REQUEST_PRIORITY','','NO') priority,
    htmldb_item.select_list_from_lov(7,null,'REQUEST_STATUS','','NO') status,
    htmldb_item.select_list_from_lov(8, null, 'SUPPORT_REQUEST_TYPE','', 'NO') request_type,
    htmldb_item.text(9, null) response,
    htmldb_item.select_list_from_lov(10, null,
    'USER_EMPLOYEE','style="width:100px"','NO') username,
    htmldb_item.date_popup(11, null, sysdate,'mm/dd/yyyy', 8) created_date,
    htmldb_item.text(12, null) note,
    htmldb_item.md5_checksum(null,null, null, null, null, null, null, null, null, null) cks
    from dual) x

    Scott,
    Thanks for the response. We've applied HTMLDB version 1.5.1.00.12 on both develop and production servers yesterday but the ORA-06502 error still persist. We've also tried to use package and "pl/sql return sql" instead of a long sql query but received the same result.
    The solaris instance is using "Western European ISO-8859-1" as the file character set and the windows is using "Western European Windows 1252". Is there any easy way to change the DAD character set on the production box?
    Thanks,
    Tony

  • Report connection error ORA-12203 : TNS : unable to connect to destination

    hi
    when in open report and go to query builder then show me this error
    REP-0501 : Unable to connect to the specified database.
    ORA-12203 : TNS : unable to connect to destination
    how i connect report and form with oracle8i which two file in copy into developer folder
    please give he solution
    thanking your

    $ oerr ora 12203
    12203, 00000, "TNS:unable to connect to destination"
    // *Cause: Invalid address specified or destination is not listening.
    // This error can also occur because of underlying network or network
    // transport problems.
    // *Action: Verify that the net service name you entered was correct.
    // Verify that the ADDRESS portion of the connect descriptor which
    // corresponds to the net service name is correct.  Ensure that the
    // destination process (for example the listener) is running at the
    // remote node.
    $In Developer Home check that TNS alias in tnsnames.ora has no errors. Are you able to connect from Sql*Plus from Developer Home, using same alias ?
    Also check that the listener is running on DB machine.
    how i connect report and form with oracle8i which two file in copy into developer folder What does it mean exactly ?

  • Report connting error  (ORA-12203: TNS: unable to connect to destination)

    hi;
    when i open report and connect with oracle then not accept my id and password
    and show this error
    REP-0501 : Unable to connect to the specified database.
    ORA-12203: TNS: unable to connect to destination
    how i connect oracle with report and form which files i copy in developer folder
    please give me solution
    thanking you

    Hi!
    Does this happen when you are on another machine? Maybe there is a firewall present?
    When you are on the machine itself, can you connect?
    cu
    Andreas

  • Connectin error ORA-12203: TNS: unable to connect to destination

    hi;
    when i open report and connect with oracle then not accept my id and password
    and show this error
    REP-0501 : Unable to connect to the specified database.
    ORA-12203: TNS: unable to connect to destination
    how i connect oracle with report and form which files i copy in developer folder
    please give me solution
    thanking you

    You have to enter the database you want to connect to in the tnsnames.ora file.

  • During Table Import got error ORA-12805: parallel query server died unexpectedly

    Hi,
    I tried to import a single table of size 51 GB which normally imported in 5 hours but last time I got following error after 1.5 hours
    ORA-31693: Table data object "SCHEMA"."TABLE_NAME" failed to load/unload and is being skipped due to error:
    ORA-12805: parallel query server died unexpectedly.
    From the "Alert log" file I found the error is
    ORA-00603: ORACLE server session terminated by fatal error
    ORA-24557: error 1114 encountered while handling error 1114; exiting server process
    ORA-01114: IO error writing block to file 622 (block # 373725)
    ORA-27063: number of bytes read/written is incorrect
    IBM AIX RISC System/6000 Error: 28: No space left on device
    Additional information: -1
    Additional information: 253952
    I checked all the table spaces have more then 100GB free space. No idea why this happened.
    Some mount points of the machine is 100% in used where the table spaces created but in table spaces auto extend is off on every data file and each data file have free space.
    Anyone have idea how to resolve this issue.

    Hi,
    Which filesystem is file 622 in - it's quite a lrge numbered file - is it a tempfile or do you really have that many datafiles?
    Regards,
    Harry
    http://dbaharrison.blogspot.com

  • 10g Installation and Error : ORA-12514 : Listerner cant recog. service requ

    Hi,
    I installed 10g, and trying to start sql plus. I entered
    username: orcl
    password: my own password
    host string: name of my computer
    I am getting the error: ORA-12514: TNS: Listener does not currently know of service orequested in connect descriptor.
    I started the services and tried again but same problem.
    I also tried system and sysman as username, w/o a password and included my computer name, but still facing the same problem.
    Any thing else I should do besides uninstalling and reinstalling ?
    Thanks

    Where did the user name orcl come from? It certainly is not going to be there unless you logged in with a DBA account and created it: Did you?
    So back to basics ... what version of Oracle did you install? 10g is a marketing label not a version number. It is likely something between 10.1.0.2 and 10.2.0.4.
    Second how did you install the database? With the Oracle Universal Installer or with a script? Were there any error messages?
    Have you checked the installation log?
    Has it ever worked in the past and is now broken or has it never worked?
    Is the listener running? How did you check?
    When you say "I started the service" you are in what operating system and you started what service and how?
    My guess, and it is only a wild guess given how little information you provided, is that there is an issue in your listener.ora and/or tnsnames.ora files: Post them along with the value you are entering as "Host" when you try to log in.
    Again just a guess ... the user name should be SYSTEM, the password whatever you entered, and the Host "orcl."

  • SQL   Loader and Error ORA-01847/ORA-01839

    Hi,
    While using the direct loading in SQL-LOADER when we get the ORA-01847/ORA-01839 all the other records are getting errorred out. It goes fine with the conventional loading.
    Should I use some parameters or anything to make sure that all the other records are not rejected when we get the ORA-01847/ORA-01839 error while going with the DIRECT loading.
    Thanks
    Jibin

    In internet I found this short message:
    “AL32UTF8 is a multi-byte characterset,that means some characters are stored in more than 1 character, that's true for these special characters.
    If you have same table definitions in both databases you likely face error ORA-12899.
    This metalink note discusses this problem, it's also applicable to sqlloader:
    Import reports "ORA-12899: Value too large for column" when using BYTE semantic
    Doc ID: Note:563893.1”
    By metalink, I can see the Note linked to a one Oracle Internal Bug for Oracle 11g.....
    I'm waiting you suggestion... thanks very much in advance.
    Regards.
    Giovanni

  • National Language Support and Error ORA-01858

    Hi,
    I have a problem using NLS.
    When I use NLS for Italian,I become the error ORA-01858 -->
    "a non-numeric character was found where a numeric was
    expected".
    But with the same query I use for NLS_Italian,it works with
    NLS_German and NLS_English.
    I use this date-formats "DD.Month YYYY" , "DD.MM.YYYY", "DD.MM"
    For example:
    Select to_char(sd.Datum,'DD.Month YYYY') Datum ,
    sd.FONDSVERMOEGEN, sd.AKTIEN, sd.KASSE, sd.RENTEN,sd.FUTURES,
    sd.WERTPAPIERE, sd.IMMOBILIEN,
    sd.KUPON, sd.DURCHSCHNITT_RENDITE, sd.DURCHSCHNITT_RL from
    Strukturdaten sd,fondsdaten_allgemein fd
    where sd.match=fd.match and sd.match=amfcomm .
    Can somebody help me??

    Can you tell us what the value of sd.Datum is in the queries?

  • Nationnal Language Support and Error ORA-01858

    Hi,
    I have a problem using NLS.
    When I use NLS for Italian,I become the error ORA-01858 -->
    "a non-numeric character was found where a numeric was expected".
    But with the same query I use for NLS_Italian,it works with
    NLS_German and NLS_English.
    I use this date-formats "DD.Month YYYY" , "DD.MM.YYYY", "DD.MM"
    For example:
    Select to_char(sd.Datum,'DD.Month YYYY') Datum ,
    sd.FONDSVERMOEGEN, sd.AKTIEN, sd.KASSE, sd.RENTEN,sd.FUTURES,
    sd.WERTPAPIERE, sd.IMMOBILIEN,
    sd.KUPON, sd.DURCHSCHNITT_RENDITE, sd.DURCHSCHNITT_RL from
    Strukturdaten sd,fondsdaten_allgemein fd
    where sd.match=fd.match and sd.match=amfcomm .
    Can somebody help me??

    Can you tell us what the value of sd.Datum is in the queries?

  • Portal Import/Export errors ORA-01653

    When doing a security export after a few attempts we are getting the following error
    ORA-01653: unable to extend table PORTAL30.WWUTL_SEC_TX_PERSON$ by 2362205 in tablespace PORTAL
    Details below
    We referred the note related to ORA-01653 on metalink Note:151994.1 and tried the approaches mentioned but nothing seems to fix it.
    Is there an isssue with the way the Portal scripts clean up the transport tables.
    We are using pORTAL V 3.0.9.8.1 WITH 8.1.7 release of database
    Connected to:
    Oracle8i Enterprise Edition Release 8.1.7.1.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.1.0 - Production
    Extracting Security Data to transport tables...
    Activity Log:
    Clearing any existing security data from transport tables
    Truncating table WWUTL_SEC_TX_GROUP$
    Truncating table WWUTL_SEC_TX_MEMBER$
    Truncating table WWUTL_SEC_TX_SYS_PRIV$
    Truncating table WWUTL_SEC_TX_PERSON$
    Truncating table WWUTL_SEC_TRANSPORT_TABLE$
    Begin extracting security data of Portal
    Extracting Security Data...
    Global Privilege export flag set to: on... (ON = export global privilege, OFF =
    do not export global privilege)
    ...Extracting Users...
    WWUTL_API_SecurityTransport.ExtractPerson: ORA-01653: unable to exte
    nd table PORTAL30.WWUTL_SEC_TX_PERSON$ by 2362205 in tablespace PORTAL
    Disconnected from Oracle8i Enterprise Edition Release 8.1.7.1.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.1.0 - Production
    Export of Security Data Complete

    This seems to be purely a database related issue. You need to extend the tablespace PORTAL to solve the problem. Please contact your DBA for this.

  • Portal security import/export errors ORA-01653

    When doing a security export after a few attempts we are getting the following error
    ORA-01653: unable to extend table PORTAL30.WWUTL_SEC_TX_PERSON$ by 2362205 in tablespace PORTAL
    Details below
    We referred the note related to ORA-01653 on metalink Note:151994.1 and tried the approaches mentioned but nothing seems to fix it.
    Is there an isssue with the way the Portal scripts clean up the transport tables.
    We are using pORTAL V 3.0.9.8.1 WITH 8.1.7 release of database
    Connected to:
    Oracle8i Enterprise Edition Release 8.1.7.1.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.1.0 - Production
    Extracting Security Data to transport tables...
    Activity Log:
    Clearing any existing security data from transport tables
    Truncating table WWUTL_SEC_TX_GROUP$
    Truncating table WWUTL_SEC_TX_MEMBER$
    Truncating table WWUTL_SEC_TX_SYS_PRIV$
    Truncating table WWUTL_SEC_TX_PERSON$
    Truncating table WWUTL_SEC_TRANSPORT_TABLE$
    Begin extracting security data of Portal
    Extracting Security Data...
    Global Privilege export flag set to: on... (ON = export global privilege, OFF =
    do not export global privilege)
    ...Extracting Users...
    WWUTL_API_SecurityTransport.ExtractPerson: ORA-01653: unable to exte
    nd table PORTAL30.WWUTL_SEC_TX_PERSON$ by 2362205 in tablespace PORTAL
    Disconnected from Oracle8i Enterprise Edition Release 8.1.7.1.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.1.0 - Production
    Export of Security Data Complete

    Sudip,
    Ravi is the authority in this area. I understand he is already working with you on this issue.
    Thanks,
    PE

Maybe you are looking for

  • Capital Excise Invoice with Import PO

    Dear All, I came acorss with 1 strange thing in case of Excise invoice capture against capital Import purchase order. The excise transaction type is GRPO & sub transaction type is IP. If u post the excise invoice with GRPO for capital import PO then

  • Music vanishes all the time from iPod touch using the iTunes App...

    Hi I am often not near a computer and prefer to purchase music for my iPod Touch from the iTunes app on the Touch itself. This has worked fine for many months. I believe my iPod is a 3rd gen. However lately I suddently noticed that some music purchas

  • SQ01/SQ02

    Hi all, can someone can give a details on how exactly to crean an query, i have tried but get a little consfused, a step by step instructions would be helpful. regards

  • How do I find my previously posted questions?

    Try to find my posted questions in forum.  Please help

  • Shift on row up

    Hi, How to shift one row up in obiee reports or rpd level thnaks