Imp Command to import a single table

Dear All:
i want to import a single table from my backup and want to preserve all the existing indexes using IMP command.
UserID : NEW_USER
PWD: qwert1

imp system/password@tstdhk fromuser=syslog touser=newuser tables=logs200712 rows=y file=/u06/import_exp/syslog_logs200712_080217.dmp commit=Y grants=N statistics=NONE ignore=Y log=/u06/import_exp/logs_part_jan.log
Regards
Asif Kabir

Similar Messages

  • IMP-00028: partial import of previous table rolled back

    Dear all,
    I have oracle 8i installed on windows server 2000. I have a valid export file (ful database). when am trying to import, am getting the error :
    IMP-00009: abnormal end of export file
    IMP-00028: partial import of previous table rolled back: 9464 rows rolled back
    Import terminated successfully with warnings.
    But, the export file is a valid one as the same script is used to take export daily. the log file of export shows the export is completed successfully with out any warnings.
    Have anyone faced this problem before ?.. I tried importing into 9i DB and getting the same error ?
    Please guide
    Kai

    Thanks Anantha,
    Very norma script :
    exp userid=system/password file=dmpfile.dmp log=dmplog.log full=Y
    tried schema level export as well as full database export
    imp userid=system/password file=dmpfile.dmp log=schemaimp.log fromuser=username touser=username
    imp userid=system/password file=dmpfile.dmp log=schemaimp.log full=Y
    Thanks
    Kai

  • Imp is not importing zero rows tables

    Hi....
    I have successfully exported the schema......
    But while importing into another DB, it is not importing zero row tables.....
    Why it is happening like that.....is there any specific reason for that......
    Plz help.....urgent....
    Thanks in advance.

    Hi
    export is fine...in the log file it is showing all the zero row tables being exported
    but while importing .....in the log it is missing the 5 zero row tables....
    any way....
    exp system/password file=/home/oracle/export_backups_manual/schema_backup_09_05_2011.dmp owner=schema_name log=/home/oracle/export_backups_manual/schema_backup_09_05_2011.log
    imp system/password file=/home/oracle/schema_backup_09_05_2011.dmp fromuser=schema_from touser=schema_to log=/home/oracle/schema_backup_09_05_2011.imp.log
    Thanks

  • How to import a single table?

    Simple question: I have done an export some weeks ago of a table.
    exp user/pass@database file=c:\table001.dmp log=table001.log tables=TABLE001 rows=yes indexes=no
    Now I want to recover only this table, what is the command to do it?
    imp user/pass@database file=c:\table001.dmp??
    Will the data contained in table001 be deleted and then oracle will insert the data of my dmp file?
    Will it just add it to the content with possible PK violations?
    If the table has been droped do I have to recreate it again before doing the import?

    Will the data contained in table001 be deleted and
    then oracle will insert the data of my dmp file?No, import will not drop table nor delete records. It will fail if table exists, unless import with IGNORE=Y.
    Will it just add it to the content with possible PK
    violations?Yes, if there's PK constraint voilation you will find error in logfile. import will disregards the record.
    If the table has been droped do I have to recreate it
    again before doing the import?No, you don't have to recreate it.

  • How to restore a single table from a DP Export from a different schema?

    Environment:
    Oracle 11.2.0.3 EE on Solaris
    I was looking at the documentation on DP Import trying to find the correct syntax to import a single table from a DP Export of a different schema.
    So, I want to load table USER1.TABLE1 into USER2.TABLE1 from a DP Export.
    Looking at the REMAP_TABLE options:
    REMAP_TABLE=[schema.]old_tablename[.partition]:new_tablename
    OR
    REMAP_TABLE=[schema.]old_tablename[:partition]:new_tablenameI can't see where to specify the target schema name. The examples had the new table name residing in the same schema with just a new name.
    I looked at the REMAP_SCHEMA but the docs say that will import the entire schema into the new schema and I only want one (1) table.
    Any suggestions are most welcome!
    -gary

    I thought I tried that combination and it seemed to me that the REMAP_SCHEMA somehow over-rode the TABLES= parameter >and started loading all the objects.If it does fail (and it should not) then please post the details here and I will try to see what is happening.
    Let me get back into the sandbox and try it again. I admit I was in a bit of a hurry when I did it the first time.We are all in a hurry, no worries. If it fails, please post the details and the log file.
    Does it make any sense that one parameter would override another?No, this should never happen. We have tons of checks to make sure the job can't have multiple meanings. For example, you can't say
    full=y schemas=foo --- Which do you want, a full export or a list of schema exports, etc.
    Your suggestion was the first thing I thought would work.This should work. If not, please post the log file with the command and the results.
    Dean
    Thanks again for the help and stay tuned for my new attempt.
    -gary

  • Export single table in maxdb 7.4 and import table into maxdb 7.7

    Hello Guru
    Need your help as follows
    how to export single table from 32 Bit MAXDB 7.4 and import same table into another MAXDB 7.7 X64 bit.
    Thanks and Regards
    A P Rao

    Hello,
    the Database Studio Loader features are only available for MaxDB version > 7.5.
    Please have a look at the Loader documentation "Export table" and "Import table" command.
    http://maxdb.sap.com/doc/7_7/14/a08027b665485f8e09eca0c336171d/content.htm
    http://maxdb.sap.com/doc/7_7/24/ff7c8db8ae46f69a5ed3ec7e4c4db6/content.htm
    Best Regards
      Wolfgang

  • Export Import single table...

    Gurus...
    I am working on this single table which needs to be exported from prod and import into test.
    As I understand I need to follow below steps:
    1. Test - export table abc dump as backup
    2. Prod - Export single table abc
    3. Test - Drop table abc cascade constraints
    4. Test - Import abc into test
    Export par file:
    Directory= dbpump
    dumpfile= expdp_abc.dmp
    logfile= expdp_abc.log
    content= all
    tables=user.abc
    exclude=statistics,object_grant, tablespace_quota
    flashback_time= systimestamp
    Import par file:
    Directory= dbpump
    dumpfile= expdp_abc.dmp
    logfile= impdp_abc.log
    content= all
    tables=user.abc
    table_exist_action=replace
    transform=segment_attributes:N
    my doubts:
    1. Is my process flow correct?
    2. Export & Import file correct? or missing parameters?
    3. What happens to all objects connected to the table, will that also imported?
    4. Do I need to lock user during this process?
    5. Any script to check whether all objects connected to table does exist in test after import?

    Hi,
    Process for table export & import.
    +1. Create database directory in test as well as production:-+
    --> create or replace directory directory_name as 'physical_path';
    --> grant acsess on that directory to user.
    +2. Backp table in test environment (in case if you need old data in your test env):-+
    --> Create table BKP_table_name as select * from table_name; (table_name u want to import)
    +3. Take Export backup in Production database:-+
    --> expdp dumpfile=file_name.dmp logfile=file_name.log directory=directory_name tables=Owner.table_name
    +4. On test server do the following actvity:-+
    a. Just check for dependencies on that table using DBA_DEPENDENCIES.
    b. Truncate table which u want to import
    c. import table-
    impdp dumpfile=file_name.dmp tables=owner.table_name logfile=file_name_imp.log directory=directory_name table_exists_action=APPEND
    d. Just check for dependencies on that table using DBA_DEPENDENCIES.
    And also you can use table_exists_action=replace
    This will also import all depedent objects to the table..
    Regards,
    Edited by: XBOX on Dec 14, 2012 10:15 PM

  • Export / import  exp / imp commands Oracle 10gXE on Ubuntu

    I have Oracle 10gXE installed on Linux 2.6.32-28-generic #55-Ubuntu, and I need soe help on how to export / import the base with exp / imp commands. The commands seems to be installed on */usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin* directory but I cannot execute them.
    The error message I got =
    No command 'exp' found, did you mean:
    Command 'xep' from package 'pvm-examples' (universe)
    Command 'ex' from package 'vim' (main)
    Command 'ex' from package 'nvi' (universe)
    Command 'ex' from package 'vim-nox' (universe)
    Command 'ex' from package 'vim-gnome' (main)
    Command 'ex' from package 'vim-tiny' (main)
    Command 'ex' from package 'vim-gtk' (universe)
    Command 'axp' from package 'axp' (universe)
    Command 'expr' from package 'coreutils' (main)
    Command 'expn' from package 'sendmail-base' (universe)
    Command 'epp' from package 'e16' (universe)
    exp: command not found
    Is there something I have to do ?

    Hi,
    You have not set environment variables correctly.
    http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25144/toc.htm#BABDGCHH
    And of course that sciprt have small hickup, so see
    http://ubuntuforums.org/showpost.php?p=7838671&postcount=4
    Regards,
    Jari

  • FlatFile import with multiple formats to single table

    I need to import a Flatfile which can have varying number of columns eg row1 7 x cols, row2 15 x columns, row3 12 x columns.
    The file needs to be added to a single table.
    Any thoughts on best way to approach this. 

    What version of SSIS are you using? If you're using 2012 or later, you can most likely do this in the data flow without scripting.
    You'll configure your flat file source with the maximum number of columns you'll expect in any data row, and each column's data type would need to be configured to accommodate the largest/widest value expected in any row for that column. In SSIS 2012 or
    2014, the flat file source will interpret any missing columns as NULLs. Then just load the output of the flat file source to your destination table with the appropriate mappings. Any missing values will be NULL.
    The behavior was different in SSIS 2005 and 2008. If you had fewer than expected columns in any row, the flat file source would continue to read data from the file until it got all of the columns it expected - even if that meant reading data from the next
    line of text. For those versions, scripting the source was the easier solution.
    Tim Mitchell | TimMitchell.net | @tim_mitchell

  • Importing master repositrory using imp command

    Hi,
    I am trying to import the master repository using the imp command.It prompts for a username/password.I give the master repository schema name and password.Then it asks for the input file.
    Import file: EXPDAT.DMP >
    Please tell me whether the (exported)repistory folder/zip file should be in a specific directory.

    Thanks BarisYildirim & 000000
    I checked all things as you mentioned above guys, Is anything else I need to do.

  • Oracle 11g imp erroneously tries to recreate existing tables with CLOBs?

    I have a shell script for loading database dumps from both Datapump and the older exp/imp.
    Often when loading dumps, I need to rename the schema owner and tablespace names (which is handled by REMAP_SCHEMA and REMAP_TABLESPACE in Datapump).
    However I have a whole bunch of dumps created with exp at this point and not that many Datapump dumps yet. As such the old style dumps are handled by the shell script in this way:
    1) A first pass imp is run using INDEXFILE to generate a file with the SQL to create tables and indexes. Options also include FROMUSER and TOUSER.
    2) A series of sed command edit the SQL file to change the tablespace names (which are schema owner specific in our case).
    3) The editted SQL file is run with sqlplus to create the tables and indexes.
    4) A second pass imp is run to load the table rows as well as triggers, stored procedures, views, etc. Options include FROMUSER, TOUSER, COMMIT=Y, IGNORE=Y, BUFFER, STATISTICS=NONE, CONSTRAINTS=N
    This shell script has been working great for loading exp dump files into Oracle 9 and Oracle 10 databases, but now that I'm trying to load these dumps into Oracle 11, it fails.
    The problem is in step 4, the imp program is trying to create some of the tables that already were created with sqlplus in step 2. The problematic tables all seem to have CLOB columns in them. The table creation fails because it tries to use the tablespace names from the dump file, which do not exist in the destination database. And when the table creation fails, imp then decides not to load the rows for those table.
    This seems like a bug in the Oracle 11 imp program. I don't understand why it thinks it needs to recreate tables that already exist when those tables have CLOB columns. Is there something different about CLOB columns in Oracle 11 that I should know about that might be confusing imp into thinking that it needs to create tables when they already exist? Maybe I need to do something to those tables in SQL so that imp does not think it needs to recreate them?
    I know that the tables with the CLOBs were created correctly because I was trying to find some way to workaround this. For step 4, I tried using DATA_ONLY=Y, in which case imp does not try to create the tables and just loads the table rows. Of course using DATA_ONLY, I don't get a lot of other things like triggers, view and stored procedures. I started to try to get around that by doing 3 passes with imp, so that I could pick up the missing pieces by using an imp pass with ROWS=N, but strangely that has the same problem of trying to recreate the existing tables.

    The only solution I've found so far as a workaround is rather convoluted.
    1. I took an export using datapump's expdp of SCHEMA1 (in 10g it will skip the table with the xmltype).
    2. I imported the data to my empty schema (SCHEMA2) using impdp. To avoid the error that the type already exists with another OID, I used the TRANSFORM=oid:n parameter e.g.
    impdp user/pwd dumpfile=noxmltable.dmp logfile=importallbutxmltable.log remap_schema=SCHEMA1:SCHEMA2 TRANSFORM=oid:n directory=MYDUMPDIR
    3. I then manually created my xmltype table in the SCHEMA2 and did a select into to load it (make sure you have the select privileges to do so):
    INSERT INTO SCHEMA2.XMLTABLE2 SELECT * FROM SCHEMA1.XMLTABLE1;
    4. I am still taking an export with exp of the xmltable as well even though I'm not sure I can do anything with it.
    Thanks!
    Edited by: stacyz on Jul 28, 2009 9:49 AM

  • Export and import of an table data

    Hi All,
    I have a situation where i need to append/import  the production table ( X )  data to test table ( X ) which has some data already in it and should not be lost  during the operation. The record count is around 6 million .
    Any expert suggestion or tips with export and import command is highly appriciable.
    Thanks in advance .

    if you are using
    IMPDP --- use table_exist_action=append
    IMP -- ignore=y
    Lets say
    impdp username/pwd directory=<directory_name> dumpfile=<dumpfile_name> tables=X table_exist_action=APPEND.
    This will append the data to existing table

  • Import / Export Specific tables from DB

    Hi,
    I am trying to export all 'AD_' tables from my database from another database with their constraints.
    I tried a command just for export one table from my cmd :
    "exp adempiere/adempiere@simext15:1521/compiere2 file=emp.dmp tables=(AD_ACCESSLOG)"
    it export fine but when try to import this file from using command
    "imp adempiere/adempiere@simext15:1521/compiere2 file=emp.dmp fromuser=adempiere touser=adempiere tables=(AD_ACCESSLOG)"
    it gives me so many errors:
    Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Export file created by EXPORT:V11.01.00 via conventional path
    import done in WE8MSWIN1252 character set and UTF8 NCHAR character set
    . importing ADEMPIERE's objects into ADEMPIERE
    . . importing table "AD_ACCESSLOG" 0 rows imported
    IMP-00015: following statement failed because the object already exists:
    "CREATE UNIQUE INDEX "AD_ACCESSLOG_KEY" ON "AD_ACCESSLOG" ("AD_ACCESSLOG_ID""
    " ) PCTFREE 10 INITRANS 2 MAXTRANS 255 STORAGE(INITIAL 65536 FREELISTS 1 FR"
    "EELIST GROUPS 1 BUFFER_POOL DEFAULT) LOGGING"
    IMP-00017: following statement failed with ORACLE error 2264:
    "ALTER TABLE "AD_ACCESSLOG" ADD CONSTRAINT "AD_ACCESSLOG_KEY" PRIMARY KEY ("
    ""AD_ACCESSLOG_ID") USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 STORAGE(I"
    "NITIAL 65536 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "
    ""USERS" LOGGING ENABLE "
    IMP-00003: ORACLE error 2264 encountered
    ORA-02264: name already used by an existing constraint
    IMP-00017: following statement failed with ORACLE error 2264:
    "ALTER TABLE "AD_ACCESSLOG" ADD CONSTRAINT "ADTABLE_ADACCESLOG" FOREIGN KEY "
    "("AD_TABLE_ID") REFERENCES "AD_TABLE" ("AD_TABLE_ID") ENABLE NOVALIDATE"
    IMP-00003: ORACLE error 2264 encountered
    ORA-02264: name already used by an existing constraint
    IMP-00017: following statement failed with ORACLE error 2264:
    "ALTER TABLE "AD_ACCESSLOG" ADD CONSTRAINT "ADCOLUMN_ADACCESSLOG" FOREIGN KE"
    "Y ("AD_COLUMN_ID") REFERENCES "AD_COLUMN" ("AD_COLUMN_ID") ON DELETE CASCAD"
    "E ENABLE NOVALIDATE"
    IMP-00003: ORACLE error 2264 encountered
    ORA-02264: name already used by an existing constraint
    About to enable constraints...
    IMP-00017: following statement failed with ORACLE error 2430:
    "ALTER TABLE "AD_ACCESSLOG" ENABLE CONSTRAINT "ADTABLE_ADACCESLOG""
    IMP-00017: following statement failed with ORACLE error 2430:
    "ALTER TABLE "AD_ACCESSLOG" ENABLE CONSTRAINT "ADCOLUMN_ADACCESSLOG""
    Import terminated successfully with warnings.
    I tried a lot for this I just want to export and restore all 338 tables related to Application Dictionary from one database to another database with their constraints and data.
    I tried also using datalink but it only copy the structure and data but not the constraints, I want all three should be copy in to another database.
    I know their is dependency on a table to another table but i don't know exactly it..
    tried it onces again i am able to do export and import tables but only primary key related to every table gets restore neither Unique key nor Foreign key , please help me out from this i can export and import with full table with data and its all constraints.
    Please help me out from this problem, waiting for your valuable suggestions.
    Regards,
    Manu

    ORA-02264: name already used by an existing constraint
    The constraint is already exists with the same name. So drop that before issuing the import command.
    And ,
    1. Check if all tables get imported
    2. If all tables get imported then create the constraints manually
    3. If tables do not get imported then import tables manually by specifying their name in imp statement
    Thanks

  • Imp command

    i want to import a dmp file which contains 3 tables to a user named "test", i opened a cmd window and i wrote “imp” then i specified the file path, but when i connect to that user i can not find the tables that were exported in the dmp file although at the cmd window there were not any error or warning while executing the imp command, any help??

    Is the import log file contents generated ...as expected...???
    I mean specific export file imported to specific db user... according to the log file....????
    Are there any errors....????
    Sim

  • Imp command and some warnings....

    C:\temp>imp userid=system file=FIERROSXY.DMP log=imp.log fromuser=UFIERROS touser=UFIERROS
    Connected to: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Export file created by EXPORT:V10.01.00 via conventional path
    Warning: the objects were exported by UFIERROS, not by you
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    . importing UFIERROS's objects into UFIERROS
    . . importing table "AUTORIZA" 0 rows imported
    . . importing table "BANCOS" 0 rows imported
    . . importing table "CG_FORM_HELP" 0 rows imported
    . . importing table "CG_REF_CODES" 0 rows imported
    . . importing table "CIERRES" 0 rows imported
    . . importing table "CIERRES_DETALLES" 0 rows imported
    . . importing table "CLASIFICACIONES_GANADOS" 0 rows imported
    . . importing table "CONDUENIOS" 0 rows imported
    . . importing table "CORTES" 0 rows imported
    . . importing table "CORTES_DETALLES" 0 rows imported
    . . importing table "CORTES_INSTRUMENTOS" 0 rows imported
    . . importing table "CUENTAS_CONTABLES" 0 rows imported
    . . importing table "DOA_PICTUREDEMO" 0 rows imported
    . . importing table "EMISORAS" 0 rows imported
    . . importing table "FIERROS" 91324 rows imported
    . . importing table "FIERROS_CLAS" 0 rows imported
    . . importing table "FIERROS_IMAGEN" 103181 rows imported
    IMP-00017: following statement failed with ORACLE error 959:
    "CREATE TABLE "FIERROS_IMAGEN_BLOB" ("FIERROS_ID" NUMBER(7, 0), "IMAGEN" BLO"
    "B, "ESTATUS" VARCHAR2(1)) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 ST"
    "ORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABL"
    "ESPACE "DESA_DAT" LOGGING NOCOMPRESS LOB ("IMAGEN") STORE AS (TABLESPACE ""
    "DESA_DAT" ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10 NOCACHE STORAGE(I"
    "NITIAL 65536 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT))"
    IMP-00003: ORACLE error 959 encountered
    ORA-00959: tablespace 'DESA_DAT' does not exist
    . . importing table "FIRMAS" 8952 rows imported
    . . importing table "FIRMAS_CONDUENIOS" 0 rows imported
    . . importing table "FI_CARACTER" 0 rows imported
    . . importing table "FI_DIBUJO" 0 rows imported
    . . importing table "FI_PRUEBA" 0 rows imported
    . . importing table "FI_SIMBOLO" 0 rows imported
    . . importing table "FOLIOS" 0 rows imported
    . . importing table "GANADOS_ESPECIES" 0 rows imported
    . . importing table "GANADOS_FIERROS" 0 rows imported
    . . importing table "GANADO_PROPOSITOS" 0 rows imported
    . . importing table "GANADO_RAZAS" 0 rows imported
    . . importing table "GANADO_TIPOS" 20 rows imported
    . . importing table "INFRAESTRUCTURAS" 0 rows imported
    . . importing table "LOTE_FOLIOS" 0 rows imported
    . . importing table "MEDIOS_TRANSPORTE" 7 rows imported
    . . importing table "MOVIMIENTOS_FIERROS" 344326 rows imported
    . . importing table "MOVIMIENTOS_PAGOS" 0 rows imported
    . . importing table "MUNICIPIOS" 70 rows imported
    . . importing table "NIST" 0 rows imported
    . . importing table "OPERACIONES_CAJAS" 0 rows imported
    . . importing table "OPERACIONES_MOVIMIENTOS" 0 rows imported
    . . importing table "PARAMETROS_SISTEMA" 0 rows imported
    . . importing table "PASE_DETALLE" 0 rows imported
    . . importing table "PASE_MAESTRO" 0 rows imported
    . . importing table "SANIDAD_DETALLE" 0 rows imported
    . . importing table "TARIFA_GANADO" 0 rows imported
    . . importing table "TCERTORIG" 20 rows imported
    . . importing table "TIPOS_INFRAESTRUCTURAS" 0 rows imported
    . . importing table "TIPOS_INSTRS_PAGOS" 0 rows imported
    . . importing table "TIPOS_MOVIMIENTO" 15 rows imported
    . . importing table "TIPOS_SANIDAD" 0 rows imported
    . . importing table "TIPOS_SOLICITUDES" 0 rows imported
    . . importing table "TIPO_GANADO" 33 rows imported
    . . importing table "TIPO_SOLICITUD" 0 rows imported
    . . importing table "USUARIOS" 0 rows imported
    About to enable constraints...
    Import terminated successfully with warnings.
    some questions about:
    (First i use oracle XE on windows and the file FIERROSXY.DMP are exported from Oracle 10g)
    1) need create before the tablespace DESA_DAT ? if yes, where create? i know these command:
    create tablespace DESA_DAT datafile 'C:\oracle\product\10.1.0\oradata\FIERROS\DESA_DAT.DBF' size 16M autoextend on next 16M maxsize 1024M segment space man agement auto extent management local;
    if you see i need specify the path.... if i havent the database FIERROS i havent a path... right?
    if not, wich commands need for create the table space?
    2) for rerun the command first i need drop the user Fierros, then recreate it, grant some privileges, to user... and then rerun the command right?
    3) anyway get warnings, the data is imported???
    thanks

    some questions about:
    (First i use oracle XE on windows and the file
    FIERROSXY.DMP are exported from Oracle 10g)
    1) need create before the tablespace DESA_DAT ? if
    yes, where create? i know these command:
    create tablespace DESA_DAT datafile
    'C:\oracle\product\10.1.0\oradata\FIERROS\DESA_DAT.DBF
    ' size 16M autoextend on next 16M maxsize 1024M
    segment space man agement auto extent management
    local;
    if you see i need specify the path.... if i havent
    the database FIERROS i havent a path... right?
    if not, wich commands need for create the table
    space?
    2) for rerun the command first i need drop the user
    Fierros, then recreate it, grant some privileges, to
    user... and then rerun the command right?
    3) anyway get warnings, the data is imported???
    thanks1) No tablespace don't have to exist before import. However with one exception that is you have LOB data type in your table.
    You need to precreate the tablespace
    or precreate the table with LOB type in different tablespace.
    2) You only need to import the table that failed, in your case, FIERROS_IMAGEN_BLOB
    3) Yes, except the table report error, other tables are ok

Maybe you are looking for

  • Trial wont work because of old one

    I used a 30 day trial for Photoshop a couple months back, now when I try to use it with Cloud it tells me that my trial is over, what do u do?

  • No more data to read from socket_ RCU error

    database connected in sqldeveloper No more data to read from socket Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521))) STATUS of the LISTENER Alias LISTENER Version TNSLSNR for 32-bit Windows: Version 11.2.0.1.0 - Prod ction Start

  • Since I disabled features in the people widget, I cannot access gmail

    I was so annoyed at the people widget covering up my emails that I disabled all the features IN it instead of the whole widget (which I have since learned how to do) and now I cannot access gmail with firefox. I can with internet explorer though, but

  • Trying to set console resolution to 1440x900 at startup

    Hi, I've got an NVIDIA Quadro FX 1500M and I'd like to set my console resolution to 1440x900. For starters, X works just fine. Everything goes great. But when I boot into the console, I can't set a resolution any higher than 1024x768 which, on this l

  • Cfwindow - undefined variable

    Hello~ I am working with cfwindow for the first time, and I am running into a strange error. This is how my page is set up: cp_html.cfm - defines a lot of functions, etc., then calls cp_html_template.cfm cp_html_template.cfm - calls cfwindow code if