Query regarding External tables

DECLARE
FileIn UTL_FILE.FILE_TYPE;
v_sql VARCHAR2 (1000);
BEGIN
FileIn := UTL_FILE.FOPEN ('DIR_TEMP', 'test_file_out.txt', 'R');
IF UTL_FILE.IS_OPEN(FileIn) THEN
LOOP
BEGIN
UTL_FILE.GET_LINE (FileIn, v_sql);
dbms_output.put_line(v_sql);
EXCEPTION
WHEN NO_DATA_FOUND THEN
EXIT;
END;
END LOOP;
END IF;
UTL_FILE.FCLOSE (FileIn);
END;
above mentioned is the procedure to read from a flat file.
I would like to know the procedure to load flat file data into table using external tables:
i have tried using this code but it displays errors:
CREATE TABLE EXT_EMP
( EMPNO NUMBER(4), ENAME VARCHAR2(10), JOB VARCHAR2(9),
MGR NUMBER(4), HIREDATE DATE, SAL NUMBER(7,2), COMM NUMBER(7,2), DEPTNO NUMBER(2))
ORGANIZATION EXTERNAL (
TYPE ORACLE_LOADER
DEFAULT DIRECTORY DIR_TEMP
ACCESS PARAMETERS(
RECORDS DELIMETED BY newline
FIELDS TERMINATED BY ','
MISSING FIELD VALUES ARE NULL(COMM NUMBER(7,2))
LOCATION ('test_file_out.txt')
PARALLEL
REJECT LIMIT UNLIMITED;
db: Oracle 11g , OS: windows vista

the query works fine as table is created.
but:
select * from ext_emp;
o/p: no rows.
ext.bad :
7369,SMITH,CLERK,7902,17-DEC-80,800,,20
7499,ALLEN,SALESMAN,7698,20-FEB-81,1600,300,30
7521,WARD,SALESMAN,7698,22-FEB-81,1250,500,30
7566,JONES,MANAGER,7839,02-APR-81,2975,,20
7654,MARTIN,SALESMAN,7698,28-SEP-81,1250,1400,30
7698,BLAKE,MANAGER,7839,01-MAY-81,2850,,30
7782,CLARK,MANAGER,7839,09-JUN-81,2450,,10
7788,SCOTT,ANALYST,7566,19-APR-87,3000,,20
7839,KING,PRESIDENT,,17-NOV-81,5000,,10
7844,TURNER,SALESMAN,7698,08-SEP-81,1500,0,30
7876,ADAMS,CLERK,7788,23-MAY-87,1100,,20
7900,JAMES,CLERK,7698,03-DEC-81,950,,30
7902,FORD,ANALYST,7566,03-DEC-81,3000,,20
7934,MILLER,CLERK,7782,23-JAN-82,1300,,10
ext.log:
LOG file opened at 04/01/09 02:13:13
Field Definitions for table EXT_EMP
Record format DELIMITED BY NEWLINE
Data in file has same endianness as the platform
Rows with all null fields are accepted
Fields in Data Source:
EMPNO Integer (4)
Record position (+0, +4)
Terminated by ","
Trim whitespace same as SQL Loader
ENAME CHAR (255)
Terminated by ","
Trim whitespace same as SQL Loader
JOB CHAR (255)
Terminated by ","
Trim whitespace same as SQL Loader
MGR Integer (4)
Record position (+0, +4)
Terminated by ","
Trim whitespace same as SQL Loader
HIREDATE CHAR (9)
Date datatype DATE, date mask DD-MON-YY
Terminated by ","
Trim whitespace same as SQL Loader
SAL Integer (4)
Record position (+0, +4)
Terminated by ","
Trim whitespace same as SQL Loader
COMM Integer (4)
Record position (+0, +4)
Terminated by ","
Trim whitespace same as SQL Loader
DEPTNO Integer (4)
Record position (+0, +4)
Terminated by ","
Trim whitespace same as SQL Loader
error processing column HIREDATE in row 1 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
error processing column HIREDATE in row 2 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
error processing column HIREDATE in row 3 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
error processing column HIREDATE in row 4 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
error processing column HIREDATE in row 5 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
error processing column HIREDATE in row 6 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
error processing column HIREDATE in row 7 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
error processing column HIREDATE in row 8 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
error processing column HIREDATE in row 9 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
error processing column HIREDATE in row 10 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
error processing column HIREDATE in row 11 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
error processing column HIREDATE in row 12 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
error processing column HIREDATE in row 13 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
error processing column HIREDATE in row 14 for datafile c:\temp\test_file_out.txt
ORA-01858: a non-numeric character was found where a numeric was expected
" I tried changing hiredate "dd-mm-yy" to hiredate "dd-mon-yy" but there is no difference.

Similar Messages

  • OIM - query regarding child tables

    Hi All
    I have a query regarding child tables. For example, when a user is removed from an AD group, his corresponding entry from the AD groups child table will be deleted. I want to know whether it is deleted of marked as deleted. Can I get the information later on that the user was removed from which AD group?
    Please help.
    Thanks

    You will have to enable the audit level = Resource Form and perform the additional tasks to track the process form data changes. This will track all modifications to the forms.
    -Kevin

  • Error while querying the external tables in 9i

    i am working on a project on Oracle 9iR2 on Linux AS 3.0, i am in urgent need to port my data in text files for using in the DB
    I have created an external table using the following script. While executing a query it gives the following error. Pls Hlp
    create table ap_info_ex
         (ser_no number(7),
         no_of_sps number(1),
         hpy_liq_mm number(2),
         rmp_rnk_cd number(1),
         ir number(3),
         dps_flg varchar2(1))
    organization external
    (type oracle_loader
         default directory aps_jul
         access parameters (records delimited by newline
                        fields terminated by ","
                        (sno char,
                        no_sps char,
                        hpy_mm char,
                        rmp_rnk char,
                        ir char,
                        dpsflg char))
    location ('info.txt'));
    Table has been created successfully
    but when i execute a query say
    select * from ap_info_ex;
    THIS IS THE ERROR MESSAGE I AM GETTING
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04063: unable to open log file AP_INFO_EX_6151.log
    OS error Permission denied
    ORA-06512: at "SYS.ORACLE_LOADER", line 14
    ORA-06512: at line 1
    hope you would help me. i am greateful for that.

    Arun,
    Here are the things you could do.
    1. You may want to specify a logfile in your access parameters using the command 'logfile'.
    For example,
    logfile 'info.log'. You could create the file in advance and provide appropriate permissions to the operating system user(In unix, I use the commands 'touch' and 'chmod').
    2. You could specify the command
    'NOLOGFILE' in your access parameters.
    3. Provide permissions for the user to create files in the folder associated with the directory object 'aps_jul'.

  • URGENT : Regarding External Table

    Hi,
    We have some external tables in our production environment. In unix level we have two users 1) ORACLE (Primary Group DBA, Secondary group RELEASE)
    2) PROD (Primary Group RELEASE).
    Now the log file directory of external table owned by PROD user and RELEASE group.
    What minimum priviledges is reqire in unix level, so that ORACLE user can create log files for external tables there.
    I have tried with 775, but it is trrowing the follwoing error :
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04063: unable to open log file log_flow.log
    OS error Permission denied
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    ORA-06512: at line 1
    Can any one suggest ASAP.
    One more Issue I have facing with external tables. The follwoing select "select * from dba_directories" showing all the directories I have created (data,log,reject,error), but "select * from dba_external_locations" showing only the data file locations not showing the error,log and reject location, and when the DATABASE is bounced due to some other reason the DDL of external table get changed (error,log and reject file location was not there). Can any one suggest any work around.
    Any body can call me up in any one of the following nos.
    Ph(O) : (+44)1173024701
    Ph(M) : (+44)7772341689
    Thanks & Regards,
    Koushik Chandra

    Hi,
    Have you try to create a file manually with oracle user ito this log directory ?
    Have you check the good directory ?
    dba_external_locations It describes the locations (data sources) of all external tables in the database.
    Nicolas.
    PS : you know, today is saturday, and in most of countries, saturday is the week-end - in other word not working -, since this forum is based on volunteers, you can wait some time an answer, if you have. If it's very urgent, contact your oracle support service.

  • How to query an external table?

    hi,
    Can anyone help me, I created an external table but I cannot query the table... I encountered the error SQL Error: ORA-29913: error in executing ODCIEXTTABLEOPEN callout...
    Attached my SQL for your reference:
    CREATE OR REPLACE DIRECTORY dat_dir AS 'pos_file';
    CREATE OR REPLACE DIRECTORY log_dir AS '//10.101.21.175/pos_file/Log';
    CREATE OR REPLACE DIRECTORY bad_dir AS '//10.101.21.175/pos_file/Bad';
    CREATE TABLE revext (person VARCHAR2(20),
    rev_jan NUMBER(4),
    rev_feb NUMBER(4),
    rev_mar NUMBER(4),
    rev_apr NUMBER(4),
    rev_mai NUMBER(4),
    rev_jun NUMBER(4),
    rev_jul NUMBER(4),
    rev_aug NUMBER(4),
    rev_sep NUMBER(4),
    rev_oct NUMBER(4),
    rev_nov NUMBER(4),
    rev_dez NUMBER(4))
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY dat_dir
    ACCESS PARAMETERS
    records delimited by newline
    fields terminated by ','
    ( person,
    rev_jan,
    rev_feb,
    rev_mar,
    rev_apr,
    rev_mai,
    rev_jun,
    rev_jul,
    rev_aug,
    rev_sep,
    rev_oct,
    rev_nov,
    rev_dez
    LOCATION ('revext.dat')
    Thank you,
    Dexter

    Hi! Thanks for your immediate response...
    Here's the complete error when I tried to query the created external table.
    Error starting at line 48 in command:
    select * FROM revext
    Error report:
    SQL Error: ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    error opening file pos_file/REVEXT_18225.log
    29913. 00000 - "error in executing %s callout"
    *Cause:    The execution of the specified callout caused an error.
    *Action:   Examine the error messages take appropriate action.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Regarding external table error

    Hi,
    I have created a csv file using excel as source, then I creaed a flat file module and imported the source.
    Next I have created a external table for that file.
    By using ssh I copied my source file (.csv file) to the server location ( By drag and drop method)
    In the server it shows the file name as Income Source.csv file.
    I deployed the external table.
    When I am trying to opening the table it shows the message like
    file not found in that location.
    When I view the generated SQL of external table
    in that query : the location the file name as Income_Source not Income Sourcce.csv ( I am thinking this might be the problem)
    Please give me the suggestions.
    Thanks,
    Venkat

    user642615 wrote:
    Hi,
    I have created a csv file using excel as source, then I creaed a flat file module and imported the source.
    Next I have created a external table for that file.
    By using ssh I copied my source file (.csv file) to the server location ( By drag and drop method)
    In the server it shows the file name as Income Source.csv file.
    I deployed the external table.
    When I am trying to opening the table it shows the message like
    file not found in that location.
    When I view the generated SQL of external table
    in that query : the location the file name as Income_Source not Income Sourcce.csv ( I am thinking this might be the problem)
    Please give me the suggestions.
    Thanks,
    VenkatFile name should be exactly same as the filename in the directory.
    Its a good practise to use filename as one string or have some char such as " _" to seperate two strings rather than have space such as INCOME SOURCE
    i presume you have given permissions on the directory for owb to read the file.
    Edited by: Darthvader-647181 on Mar 31, 2009 2:42 AM

  • Slight oversight in the Concepts guide regarding external tables

    Taking a look at the section in the Concepts guide on external tables
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14220/schema.htm#sthref777
    The line "External tables are read only; therefore, no DML operations are possible" is not strictly correct in 10.2, since you can insert into ORACLE_DATAPUMP external tables as the document goes on to discuss: "Oracle also provides the ORACLE_DATAPUMP type, which lets you unload data (that is, read data from a table in the database and insert it into an external table) and then reload it into an Oracle database." I assume the read only restriction is mentioned here because it was true in 9i and did not get corrected when Oracle introduced the ORACLE_DATAPUMP option in 10g.
    Justin

    Hello again. Development replies that the documentation is technically correct. We do not allow DML operations (insert, update, delete, merge) on external tables. For ORACLE_DATAPUMP, we do allow a "CREATE EXTERNAL TABLE ... AS SELECT ..." operation, but, this is DDL, not DML. This operation just populates the external table with data initially. No DML operations are allowed to modify the data, and indexes cannot be created on an external table.
    If you agree that this is the case, then I'll get the documentation clarified along these lines. If you have experience (test cases) that contradict this, please let me know, and I'll follow up further.
    Regards,
    Diana

  • Query regarding Partition table Explain plan

    Hello,
    We are amidst a tuning activity, wherein a large table has been partitioned for better administration. During testing, I was analyzing the explain plans for long running sql's and found a piece that I was unable to understand. The PSTART and PSTOP columns show ROWID as its value, which in normal partition pruning scenario be the Partition number or the KEY. I tried to look around for this issue but did not get enough information. Can anybody help me of what it means? Also, if there is a good explanation of the same, it will be extremely helpful.
    The snippet from explain plan looks like:
    | Id  | Operation                                | Name                          | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     | Pstart| Pstop |
    7 |        TABLE ACCESS BY GLOBAL INDEX ROWID| XXXXXXXXXXXXXXXXXXXX             | 43874 |  9083K|       |  1386   (1)| 00:00:17 | ROWID | ROWID |
    On another similar query it looks like:
    | Id  | Operation                             | Name                         | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     | Pstart| Pstop |
    |   6 |     TABLE ACCESS BY GLOBAL INDEX ROWID| XXXXXXXXXXXXXX               | 22455 |  4648K|       |   456   (1)| 00:00:06 |     9 |     9 |
    I have another query with regards to the Partition tables. Does it, require/benefit if, the Indexes to be in partitioned mode? I tried to read about it but did not get a conclusive evidence. I am trying to test it and post here the outcome, but if anybody has experience of working with it, it would be great to have some advice.
    Oracle Version:- 10.2.0.4
    Regards,
    Purvesh.

    Hi Purvesh.
    Great explanation and example on this this topic...
    Ask Tom "explain plan on range-partitioned table"
    Hope this help.

  • Query regarding Standard table vs Z-table in SAP about deletion of data?

    Dear Experts,
    Can we delete the data form the standard table in SAP. If yes than will it ask for the request to make them effective itself, because when we delete the data from any ztable, it will not ask for the request to make them effective at the produstion server ?  If possible plz update me with yr elaborate and detailed concerneds.
    Regards,
    Akg

    Sorry to intervene here Dhina but that is just halfways correct.
    If delivery class NOT = C then it is NOT a customizing table and therefore you wont get any transport request updating or deleting data from it.
    But if it is a customizing table then you got to look for the recording routine. You can see this by viewing your table in SE11, then using the menu like following:
    utilities->table maintainance generator.
    Then look at the info in the bottowm frame. if "standard recording routine" is tagged, then you get a transport request.
    If the other option is tagged you wont get it. What again means you can customize this table directly in the system where you need those entries.
    why is that?
    well assume there is a customizing for e.G. materials, depending on materialnumber. If that table would have a standard recording routine you would need ALL your materials in your development system which would be quite unusual.
    Edited by: Florian Kemmer on Jun 9, 2011 2:00 PM
    some typos corrected, left some for sure

  • Query regarding HRP table updation in EHP4

    Hello Experts,
    Recently we have upgraded our system to EHP4 and we have done data migration of the E-Recruitment to Career Profile (eg. data migration from HRP9301 to HRP7402 infotype).
    The infotype HRP7402 has a field called TABNR at the last and there is an include provided where we have included 2 more essential fields.
    But when i am updating the HRP7402 (internal table has the correct data), this TABNR (length 32) is getting filled in the infotype automatically which is fine but it is having leading spaces because of which the remaining 5 characters are being moved the other 2 fields (the fields which are included in the include provided) after this field.
    The same TABNR is getting populated perfectly in other infotypes where it is the last field and there are no additonal enhancements done in the standard include provided.
    Please let me know on how can i resolve this problem of leading spaces which are automatically getting added up.  And I am not clear on where this TABNR is getting filled up in the FM. The following is the code snippet....
            CALL FUNCTION 'RH_INSERT_INFTY'
              EXPORTING
                fcode               = 'INSE'
                vtask               = 'D'
                order_flg           = 'X'
                commit_flg          = 'X'
                authy               = 'X'
                repid               = sy-repid
                form                = 'FILL_DATA'
              TABLES
                innnn               = it_p7402
    FORM fill_data TABLES ct_tabinfty_tab
      USING ct_infty TYPE any
            ct_tabix TYPE any.
      CLEAR ct_tabinfty_tab. REFRESH ct_tabinfty_tab.
      ct_tabinfty_tab = ' '.
      APPEND ct_tabinfty_tab.
    ENDFORM.  
    Thanks
    Raj Kishore

    Sorry to intervene here Dhina but that is just halfways correct.
    If delivery class NOT = C then it is NOT a customizing table and therefore you wont get any transport request updating or deleting data from it.
    But if it is a customizing table then you got to look for the recording routine. You can see this by viewing your table in SE11, then using the menu like following:
    utilities->table maintainance generator.
    Then look at the info in the bottowm frame. if "standard recording routine" is tagged, then you get a transport request.
    If the other option is tagged you wont get it. What again means you can customize this table directly in the system where you need those entries.
    why is that?
    well assume there is a customizing for e.G. materials, depending on materialnumber. If that table would have a standard recording routine you would need ALL your materials in your development system which would be quite unusual.
    Edited by: Florian Kemmer on Jun 9, 2011 2:00 PM
    some typos corrected, left some for sure

  • Query regarding external catalog in internet sales

    hi......
    can i make b2b webshop external catalog specific .....that means for first webshop i will use one external catalog url... for second i will use different external catalog url......is that scenario possible??

    Hi Eddhie,
    Product catalog is part of standard CRM deployment atleast for CRM 4 and CRM 5. Your BASIS person should be able to install along with standard CRM deployment. You don't need any additional BP. Can you eloborate more on your requirement, so that I should be able to clarify?
    Cheers,
    PK
    Message was edited by: Paul Kondaveeti

  • DATE fields and LOG files  in context with external tables

    I am facing two problems when dealing with the external tables feature in Oracle 9i.
    I created an External Table with some fileds with the DATE data type . There were no issues during the creation part. But when i query the table, the DATE fields are not properly selected though the data is there in the files. Is there any ideas to deal with this ?
    My next question is regarding the log files. The contents in the log file seems to be growing when querying the external tables. Is there a way to control this behaviour?
    Suggestions / Advices on the above two issues are welcome.
    Thanks
    Lakshminarayanan

    Hi
    If you have date datatypes than:
    select
    greatest(TABCASER1.CASERRECIEVEDDATE, EVCASERS.FINALEVDATES, EVCASERS.PUBLICATIONDATE, EVCASERS.PUBLICATIONDATE, TABCASER.COMPAREACCEPDATE)
    from TABCASER, TABCASER1, EVCASERS
    where ...-- join and other conditions
    1. greatest is good enough
    2. to_date creates date dataype from string with the format of format string ('mm/dd/yyyy')
    3. decode(a, b, c, d) is a function: if a = b than return c else d. NULL means that there is no data in the cell of the table.
    6. to format the date for display use to_char function with format modell as in the to_date function.
    Ott Karesz
    http://www.trendo-kft.hu

  • External tables (Urgent)

    I can not use External tables as it has restriction of 1000 columns...My File has more then 3000 fields
    So I am Using Multiple tables.But the way sql loader control file is written , For one record in Datafile it creates 1 record in one table but multiple records in other table...So there one to many relationship in two tables...
    So I don't know how to use external tables if Its NOT 1-1 realtion ship....
    and it is 1-Many relationship
    Example
    Flat File Structure
    LAST FIRST AGE SKILL-1 SKILL-2 SKILL-3 SKILL-4 SKILL-5 --Upto 3000 Fields
    JOHN INTERPID 23 COMPUTER MECHANICAL CHEMICAL ELECTRICAL CIVIL
    SMITH GREAT 31 ELECTRINICS MECHANICAL CIVIL CHEMICAL
    ......Upto 200,000 records
    Table1_DEMOGRAPHIC
    LAST_NAME FIRST_NAME AGE
    JOHN INTERPID 23
    SMITH GREAT 31
    Table2
    LAST_NAME FIRST_NAME SKILL
    JOHN INTERPID COMPUTER
    JOHN INTERPID MECHANICAL
    JOHN INTERPID CHEMICAL
    JOHN INTERPID ELECTRICAL
    JOHN INTERPID CIVIL
    SMITH GREAT ELECTRINICS
    SMITH GREAT MECHANICAL
    SMITH GREAT CIVIL
    SMITH GREAT CHEMICAL

    That's what I mean: use 3 different external tables that read the file. And then use SQL to query the external tables within your pl/sql procedure
    So if you're file looks like:
    NR, column1, column2, ...., column1001, column1002, ... column2001, column1002,...
    , where NR is a column that uniquely identifies the row, you would have an external table to read
    NR, column1, column2,..., column999
    And one that would read
    NR, column1000, column1001,..., column1999
    And one that would read
    NR, column2000, column2001,..., column2999
    etc.
    Then you could join those tables using plain SQL based on the NR column and process it in a PL/Sql procedure.
    Regards,
    Martien

  • Prblem white handle files using External tables

    Hi,
    I Created an external table to handle files.
    Its working fine.
    But it is rejecting the records, where the fnal column in a record contains no (null) value.
    The data is as follows.
    empno|name|positon
    184|abc|supervisor
    185|xyz|
    186|efg|clerk
    I have given '\n' as row delimiter. and '|' as field delimiter.
    For the above data I am getting only the 1st and 3rd records only.
    External tables are not accepting the 2nd re4cord.
    In the log file it is specifying the error as "KUP-04023: field start is after end of record".
    Could anyone please give me some idea to solve this problem.
    Thank you,
    Regards,
    Gowtham Sen.

    Hi Michaels,
    I have one more doubt.
    After I added the clause "MISSING FIELD VALUES ARE NULL", its working fine.
    Case 1:
    The data is as follows.
    empno|name|positon
    184|abc|supervisor
    185|xyz|
    186|efg|clerk
    Now I am getting the data while query the external table as follows
    empno name position
    184 abc supervisor
    185 xyz <null>
    186 efg clerk
    Case 2:
    But there is a case that the data my come in the following way.
    empno|name|positon
    184|abc|supervisor
    185|xyz|
    186|efg|clerk
    18
    187
    For this data I am getting the data if I query external table as follows.
    empno name position
    184 abc supervisor
    185 xyz <null>
    186 efg clerk
    18 <null> <null>
    187 <null> <null>
    Here I would like to result the last records because, the records violated the formating. But its not doing as I expected.
    Do I need to add any other clauses.
    Thanks in advance,
    Thank you,
    Regards,
    Gowtham Sen

  • EXTERNAL TABLE PARALLEL (DEGREE DEFAULT)

    Ask you if in external table the clause SKIP 1 used with PARALLEL (DEGREE 4)
    skip the first record for each session in parallel . Where i could set the the parallel parameter ?
    Thanks

    Default value have a sense during insertion. Since you cannot insert into an external table (with some Slight oversight in the Concepts guide regarding external tables with datapump table), what will the target to have such feature ?
    Nicolas.

Maybe you are looking for

  • Safari / browser problems, wont open random webpages

    I am having problems with all of my browsers opening random websites.  All was working fine until one day Safari simply refused to open a few random sites. I thought it was a provider glitch, but they said it's not and besides I have no trouble openi

  • Need to de-activate Actual cost component split

    Hi All, I need to de-activate Actual cost component split in the test client. It has been activated by my testing associate by mistake. Please let me know the do and donts if anyone has done this de-activation before. I could not find any relevent OS

  • Should we Use cache seeding iBots to pre-cache the reports ?

    Hi Everyone, We have requirement from client to improve the performance of some reports.We have a very old RPD and it is really huge so we don't want to do much on database side for performance tuning. Will it be a good idea to use cache seeding iBot

  • Syncing iphone 3 to ios5

    have the old version of iphone, can you update the software so that it is ios5?

  • How to write midp1.0 bluetooth application using wtk2.1

    There is no JSR 82 facility in WTK2.1 is there any addon for wtk2.1 for bluetooth midp1.0 app. so that i can create application with bluetooth APIs. is it possible without installing any higher version?