help required Oracle export command

Hello gurus

I need to export data from table MBE under certain conditions as below

SELECT MBE.*
OF MBE,.
MSI
WHERE MBE.ID = MSI.ID
AND MSI.NAME = 'MOS '.

How can I achieve this?

exp username/password@schemaname.
tables = MBE query =------"WHERE EXISTS\ (SELECT NULL FROM MSI WHERE MSI.ID = \ MBE.ID AND MSI.NAME = 'MOS' \) \) \' file = MV.dmp log = exp.log

will it work?

Please answer

s

I have a table simple import/export api writern using DBMS_DATAPUMP. I hope this helps.

create or replace procedure export_table
(
     pOwner          in     varchar2,
     pTableName     in     varchar2,
     pDirectory     in     varchar2,
     pFilterStr     in     varchar2
)
is
     lDPJobName     varchar2(100);
     lFileName     varchar2(100);
     lJobState     varchar2(50)     := 'EXECUTING';
     lHandle          number;
     lStatus          ku$_Status1010;
begin
     lDPJobName := 'TABLE_EXPORT_' || to_char(sysdate, 'YYYYMMDDHH24MISS');
     lFileName  := upper(pTableName) || '_' || to_char(sysdate, 'YYYYMMDDHH24MISS');

     lHandle := dbms_datapump.open('EXPORT', 'TABLE', job_name => lDPJobName);

     dbms_datapump.add_file          (handle => lHandle, filename => lFileName, directory => pDirectory, filetype => dbms_datapump.ku$_file_type_dump_file);
     dbms_datapump.add_file          (handle => lHandle, filename => lFileName, directory => pDirectory, filetype => dbms_datapump.ku$_file_type_log_file);

     dbms_datapump.set_parameter     (handle => lHandle, name => 'KEEP_MASTER',     value => 0);
     dbms_datapump.set_parameter     (handle => lHandle, name => 'INCLUDE_METADATA', value => 1);
     dbms_datapump.metadata_filter     (handle => lHandle, name => 'SCHEMA_EXPR',     value => '= ''' || upper(trim(pOwner)) || '''');
     dbms_datapump.metadata_filter     (handle => lHandle, name => 'NAME_EXPR',     value => '= ''' || upper(trim(pTableName)) || '''');
     dbms_datapump.data_filter     (handle => lHandle, name => 'SUBQUERY',          value => pFilterStr, table_name => pTableName, schema_name => pOwner);

     dbms_datapump.start_job          (handle => lHandle);
     dbms_datapump.wait_for_job     (handle => lHandle, job_state => lJobState);

     if trim(upper(lJobState)) = 'STOPPED' then
          raise_application_error(-20001, 'Job returned status as STOPPED');
     else
          dbms_datapump.detach(handle => lHandle);
     end if;

     lHandle := null;
end;
/
show err
create or replace procedure import_table
(
       pDirName      in  varchar2
     , pDmpFileName  in     varchar2
)
is
     lHandle          integer;
     lDPJobName     VARCHAR2(100);
     lJobState     varchar2(50)     := 'EXECUTING';
begin
     lDPJobName := 'TABLE_EXPORT_' || to_char(sysdate, 'YYYYMMDDHH24MISS');

     lHandle := dbms_datapump.open(operation => 'IMPORT', job_mode => 'TABLE', remote_link => '', job_name => lDPJobName);

     dbms_datapump.add_file          (handle => lHandle, filename => pDmpFileName, directory => pDirName, filetype => dbms_datapump.ku$_file_type_dump_file);
     dbms_datapump.add_file          (handle => lHandle, filename => pDmpFileName || '_IMP', directory => pDirName, filetype => dbms_datapump.ku$_file_type_log_file);
     dbms_datapump.set_parameter     (handle => lHandle, name => 'TABLE_EXISTS_ACTION', value => 'APPEND');
     dbms_datapump.start_job          (handle => lHandle);

     if trim(upper(lJobState)) = 'STOPPED' then
          raise_application_error(-20001, 'Job returned status as STOPPED');
     else
          dbms_datapump.detach(handle => lHandle);
     end if;

     lHandle := null;
end;
/
show err

His executed like this. For example, I use a TEMP table.

SQL> create table temp as select * from all_objects
  2  /

Table created.

SQL> begin
  2    export_table
  3    (
  4      'KARTHICK',
  5      'TEMP',
  6      'DP_KAR_DIR',
  7      'WHERE OBJECT_NAME IN (SELECT OBJECT_NAME FROM ALL_OBJECTS WHERE OWNER = ''KARTHICK'')'
  8    );
  9  end;
 10  /

PL/SQL procedure successfully completed.

SQL> drop table temp purge;

Table dropped.

SQL> begin
  2    import_table
  3    (
  4        'DP_KAR_DIR'
  5      , 'TEMP_20140502034806.dmp'
  6    );
  7  end;
  8  /

PL/SQL procedure successfully completed.

SQL> select count(*) from temp;

  COUNT(*)
----------
    200302

Here are the details of the journal

Export log...

arttvt04% cat TEMP_20140502034806.log
Starting "KARTHICK"."TABLE_EXPORT_20140502034806":
Estimate in progress using BLOCKS method...
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 23 MB
Processing object type TABLE_EXPORT/TABLE/TABLE
. . exported "KARTHICK"."TEMP"                             18.41 MB  200302 rows
Master table "KARTHICK"."TABLE_EXPORT_20140502034806" successfully loaded/unloaded
******************************************************************************
Dump file set for KARTHICK.TABLE_EXPORT_20140502034806 is:
  /home/arbor/karthick/TEMP_20140502034806.dmp
Job "KARTHICK"."TABLE_EXPORT_20140502034806" successfully completed at 03:48:16

Import log...

arttvt04% cat TEMP_20140502034806.dmp_IMP
Master table "KARTHICK"."TABLE_EXPORT_20140502034956" successfully loaded/unloaded
Starting "KARTHICK"."TABLE_EXPORT_20140502034956":
Processing object type TABLE_EXPORT/TABLE/TABLE
Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
. . imported "KARTHICK"."TEMP"                             18.41 MB  200302 rows
Job "KARTHICK"."TABLE_EXPORT_20140502034956" successfully completed at 03:50:00
arttvt04%

Tags: Database

Similar Questions

  • help required oracle functions

    Hai
     select  99.9899 from dual
    after comma, I want only 2 digits

    I want 99.99 SHOULD BE MY ANSWER

    pls
    I used ceil and floor
    It does not work


    so help

    S

    Hi there trunc function is appropriate because in round and ceil of function return
    rounded value which is 99.99
    That is to say

    SELECT ROUND(99.9899,2) FROM dual;
    99.99
    SELECT ceil(99.9899) FROM dual;
    100
    SELECT floor(99.9899) FROM dual;
    99
    

    but the trunk
    Returns n truncated at the decimal place m, where m and n are digital representations. If m is omitted, truncate to 0 places. If m is negative, truncates (zero fact) m digits left of the decimal separator.

    select trunc(99.9899,2) from dual;
    99.98
    

    concerning
    Hitesh

    Published by: Hitesh Nirkhey on February 17, 2011 13:16

  • The schemas are required to export an APEX application and the EE DDL to itself and XE

    Source DB - Oracle 11 g 2 EA

    Target DB - Oracle 11 GR 2, 11 2 Oracle XE GR SE

    O/S - RHEL 6.5

    Application - APEX 4.2.2

    Must give up an APEX application and the underlying DDL associated with a database Oracle EE an Oracle SE and XE database.

    Patterns are required to export to accomplish this approach?

    Is there one method other than export patterns which would be preferably?  (for example export tablespaces).

    You should not deal with apex tablespace or schema APEX_040X00.

    Just follow these steps:

    (1) ensure that the APEX version is the same or higher in the target schema, upgrade if need be

    (2) discover patterns of the application (NOT APEX_XX) pump and export data those and import them into the target schema.

    (3) in the target database, create a different workspace and the link with the schemas imported analysis

    (4) export enforcement APEX of source database in the target database.

    If you expand the app, better to talk to the one who did it. Make sure that the Images, CSS, JavaScript files are added as objects of support and those that are then exported (to step 4).

    Basically don't worry about APEX_O40X00 scheme, as long as your Apex versions match, it will be the same and will be automatically filled with metadata in the application import and export performance.

  • delete version information for help on oracle applications or disable oracle applications in the R12.1.1 Help menu

    Hello

    For security reasons, I need to delete version information for help on oracle applications or disable oracle applications in the R12.1.1 Help menu

    Thank you

    Hatem

    Hello

    I don't think you can limit the form 'a way'.

    You get less detail so profile ' FND: Diagnostics ' is set on no.

    Kind regards

    Bashar

  • Someone help with the export of a book cover of three pages on a single page for CreateSpace?

    Hello

    Can someone help me to export a book cover of three pages in PDF single page InDesign? It has exported to PDF in three separate pages, probably because I created my document in the form of three pages originally .indd. I tried to load the PDF for CreateSpace but he rejects it as he wants as a page.

    I really hope this is easily fixed as I can't bear the thought of go everywhere.

    I would be very grateful for a quick answer because I'm going on vacation in 48 hours...

    Thank you

    Sean

    PS - Thanks to Peter Spier for answering a previous question a few weeks; For some reason, I couldn't answer (say thank you). 'No available actions' was the message, or something in that sense.

    Is it set up as a page three in the ID? If so, check the double option during export.

  • Help required to query the fields of the shuttle to Table?

    Hi Experts,

    My needs:

    1. According to the Ship Date query field, the item number should display in the console on the left.
    2. Select some amendments point shuttle from left to right shuttle and press the button.
    3. the article selected our and these details must display in the table.

    Design:

    1 created as query field (entry of Message text) shipping Date.
    2 Shuttle, Shuttle flight beginning and footer (second query button).
    3. the table that contains the article, Description, quantity, and manufacturing details no.

    Question:

    I created a shuttle, the creeping shuttle and the flight of footer, here I mentioned the VO attribute and discovers for the first query that takes place in shipping date and displays the item No.

    By default (without question) the extension numbers is the display in the shuttle leading.

    How to use the fields in the query of the shuttle. Its not that allows you to query the selected fields.

    Help required:

    I need to ship date, then the element of the request should appear in the console of leak, then I need to move some element not in the shuttle leading and click on the second button of the query.

    All required according to the shipping date and the amendments point values (Selected in the shuttle leading) must display in the table.

    Thank you
    Corinne Bertrand

    Pass this date and form a condition, and re-run the LEADVO

    Anne Marie

  • Oracle E-Business Suite 11.5.10 at 11.5.10.2 upgrade - DBA HELP REQUIRED

    I hope someone can help me... I spent the days so far but the same questions!

    I'm setting up a VISION E-Business Suite 11i instance to use for training of users.

    I managed to install and get running 11.5.10 on SUSE 9 and have no problem running this.

    However, I am trying to update this to 11.5.10.2 by applying the Cumulative Update (CU2) fix (u3460000.drv).

    I have followed all the previous steps in Metalink (316366.1) note and applied the fixes 4318672, 4229931 and 4297568 according to the instructions.

    All the results of Autoconfig in this context returned a status [PAST] and I was then able to proceed.

    I then used AutoPatch apply u3460000.drv, but at a certain point, the script displays:

    Failed: File LoadMap.class worker 1 product ecx ECX username.
    Failed: File worker LoadMap.class 2 product as username ECX ecx

    ATTENTION: All workers have failed or are pending:

    Failed: File LoadMap.class worker 1.
    Failed: File LoadMap.class worker 2.

    I checked the logs, the adwork001.log, the adwork002.lo worker and can see that they are evidence of an error:

    Message: No ECX_VERSION is stored in the database.
    SQLState: null
    Error code: 0

    I copied the last lines of the log file adwork and also adpatch file of newspaper at the bottom of this thread.

    I tried to use adctrl to restart failed workers and also the hidden option 8 to ignore this process and these two steps failed.

    I don't see anything about this error on Metalink or Oracle Forums.

    The ADWORK001 log output

    Copyright (c) 2002 Oracle Corporation
    Redwood Shores, California, USA

    Java AD

    Version 11.5.0

    NOTE: You can use this utility to custom development
    unless you have written permission of Oracle Corporation.
    Time what worker has accomplished the task: Monday, April 16, 2012 12:01:25

    Assessment of the symbolic arguments

    Is the evaluation of the symbolic arguments.
    Time when the worker started employment: Monday, April 16, 2012 12:01:25
    Start of file time is: Monday, April 16, 2012 12:01:25

    adjava-ms128m-mx256m - nojit oracle.apps.ecx.loader.LoadMap & un_apps & pw_apps & jdbc_db_addr & fullpath_igf_patch/115/xml/US_IGF_GR_PELL_OUT.xgm

    Product file information...

    Reading the information from the file language and territory

    Reading of the language of applUS.txt information
    Temporarily reset CLASSPATH for:
    /d01/oracle/visappl/ad/11.5.0/java/adjri.zip:/d01/oracle/viscomn/util/java/1.4/j2sdk1.4.2_04/lib/tools.jar:/d01/oracle/viscomn/util/java/1.4/j2sdk1.4.2_04/lib/dt.jar:/d01/oracle/viscomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/charsets.jar:/d01/oracle/viscomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/rt.jar:/d01/oracle/viscomn/java/appsborg2.zip:/d01/oracle/visora/8.0.6/forms60/java:/d01/oracle/viscomn/java

    Call for d01/oracle/viscomn/util/java/1.4/j2sdk1.4.2_04/bin/java...
    Process generated 8976
    String (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=EBIZ11I.johndomain) (PORT = 1521)) (CONNECT_DATA =(SERVICE_NAME=VIS))) of database connection
    Name of user APPS
    Connection...
    connected.
    Stmt SQL: select text of WF_RESOURCES, whose name =? and type =? and the language = userenv ('LANG')
    No ECX_VERSION stored in the database.
    Could not get ECX_VERSION to database

    SQLException taken

    Message: No ECX_VERSION is stored in the database.
    SQLState: null
    Error code: 0

    Cound card will not be charged, SQLException occurred.
    Exception in thread "main" java.sql.SQLException: No. ECX_VERSION stored in the database.
    at oracle.apps.ecx.loader.CoreDbServices.getEcxVersionFromDb(CoreDbServices.java:491)
    at oracle.apps.ecx.loader.Events.initEvents(Events.java:76)
    at oracle.apps.ecx.loader.LoadMap.main (LoadMap.java:85)

    Java AD Run command is completed.

    Output ADPATCH

    There are now 3645 jobs remaining (current phase = A80):
    1 running 87 ready to run and wait 3557.

    Assigned: file worker LoadMap.class as username ECX ecx 2 product.

    Time is: Monday, April 16, 2012 12:57:44

    Failed: File worker LoadMap.class as username ECX ecx 2 product.

    Time is: Monday, April 16, 2012 12:57:46

    Failed: File LoadMap.class worker 1 product ecx ECX username.

    Time is: Monday, April 16, 2012 12:57:46
    ATTENTION: All workers have failed or are pending:

    Failed: File LoadMap.class worker 1.
    Failed: File LoadMap.class worker 2.

    ATTENTION: Fix the worker failed above the Manager to continue.

    The time now is: Monday, April 16, 2012 12:57:46

    It would be amazing if someone could help me with this problem!

    Thanks in advance...

    Please see these documents.

    Failed: File LoadMap.class with "No. ECX_VERSION stored in the database" [314170.1 ID]
    Adpatch fails when loading a map: no ECX_VERSION stored in the database [412445.1 ID]
    ADPATCH fails: task error LoadMap.class: "No ECX_VERSION stored in the database" [293861.1 ID]
    Loading Itgtrade.Ldt fail [317031.1 ID]

    Thank you
    Hussein

  • maximum-paths command help required in BGP

    HII...

    I use cisco WS-C3750X - 48P switch in the branch with link two different ISP and apply in config. I want to balance traffic going out with two Internet service providers. I have configured "paths of maximum 2" command in BGP.

    router bgp 65005
    The log-neighbor BGP-changes
    neighbour 10.75.112.77 distance - as 4755
    neighbour 192.168.179.69 distance - 9583
    maximum-paths 2
    maximum-paths ibgp 2
    !
    ipv4 address family
    neighbor 10.75.112.77 activate
    neighbor 10.75.112.77 - prefix to-ISP list on
    neighbor 192.168.179.69 activate
    neighbor 192.168.179.69 - prefix to-ISP list on
    maximum-paths 2
    maximum-paths ibgp 2
    No Auto-resume
    no synchronization
    10.32.60.0 netmask 255.255.255.0
    10.32.138.0 netmask 255.255.255.0
    network mask 10.45.24.0 255.255.255.192
    10.46.185.42 netmask 255.255.255.255
    output-address-family

    We receive in BGP table two paths for each mention of destination below

    Switch ip bgp 10.34.14.0 #sh
    10.34.14.0/24, version 187 BGP routing table entry
    Paths: (2 available, best #1, table by default-IP-Routing-Table)
    MPIO: eBGP iBGP
    Not announced in any position
    9583 65505
    192.168.179.69 (1.7.0.131) 192.168.179.69
    Origin, IGP, localpref 100, valid, externally, better
    4755 65088
    10.75.112.77 (192.168.197.46) 10.75.112.77
    Origin, IGP, localpref 100, valid, external
    Switch #.

    But in the routing table always shows only best path. need two routes in SIDES to balance the load. pls help

    Switch # sh ip route 10.34.14.0
    Routing for 10.34.14.0/24 entry
    Known through 'bgp 65005', 20, 0 distance metric
    Tag 9583, external type
    192.168.179.69 was last updated 13:36:23 ago
    Routing descriptor blocks:
    * 192.168.179.69, of 192.168.179.69, 13:36:23 ago
    Path metric is 0, number of shares of traffic 1
    AS hops 2
    Tag route 9583

    Switch #.

    Disclaimer

    The author of this announcement offers the information in this publication without compensation and with the understanding of the reader that there is no implicit or explicit adequacy or adaptation to any purpose. Information provided is for information purposes only and should not be interpreted as making the professional advice of any kind. Use information from this announcement is only at risk of the reader.

    RESPONSIBILITY

    Any author will be responsible for any wha2tsoever of damage and interest (including, without limitation, damages for loss of use, data or profits) arising out of the use or inability to use the information in the view even if author has been advised of the possibility of such damages.

    Poster

    2 maximum paths is only part of what you need.  You must also use the secret/hidden command: bgp bestpath as path multipath-relax

  • help required on where in APEX SQL command

    Hi all!

    Someone knows how to use a url as a variable with the command reference WHERE?
    I have this url: http://10.10.10.2/apex/f?p=116:20:6597653175650651:NO:P20_TEST_N3:1 and I would like to have the: 1 or all the rest (depending on the user's selection) at the end of the url as a variable of the order WHERE in the P20_TEST_N3 of my application page.

    Thanks in advance for your answer!

    Hello

    Is it possible that you create a sample to apex.oracle.com so I can see?

    Kind regards
    Jari

  • I need help with a question command line syntax

    I got 3 issues that need to be entered in command line / syntax.
    I had no training in command line and need help for that setting in the command line syntax.
    (The IP address is a fact).
    This will be done also on a PC that requires elevated permissions. So if a programmer can zip through it in no time it would be much appreciated. Perhaps one without high and an example with.

    1 setting up daily ping test to a server with the IP 10.254.254.1 which will be composed of 1 000 ICMP echoes.
    2. establish daily ping tests to a server with the same IP address which will consist of one hundred 1 500 bytes ICMP packets.
    3 configure these run every day and are output to a text file.

    Hi Matt,

    Your question of Windows is more complex than what is generally answered in the Microsoft Answers forums. Appropriate in the TechNet forums.

    Please post your question in the Windows 7 IT Pro: http://social.technet.microsoft.com/Forums/en/category/w7itpro/

    Thank you.

  • help, soul cc exports all of a sudden all the clips instead of the entire sequence

    Help, SOUL cc suddenly exports all the clips from my timeline without a valid reason when choosing the command "queue".  I am able to export a video at a time when I choose 'export '.  When I type "tail" is as he tries to export all the clips in the project - very strange.  I rebooted several times without success.

    Cc of the body

    Cc of the soul

    A lot of PC RAM etc.

    Windows 10

    Hi Lisa Ellen Segal.

    Mark In/Out before export. Make sure that the Source range is set for the sequence of input/output in the export settings dialog box, as well. That should help him.

    Thank you
    Kevin

  • Some need help... export data of virtual machines

    Hay there!

    I am trying to export CSV data from my VC and I'm stuck at halfway.

    What I need is a CSV file with these headings: 'VM_Name', 'VM_Datastore', 'VM_NIC0_MAC', 'VM_NIC1_MAC '.

    All virtual machines are in the same cluster and whose name contains the pattern "* \(*\)". (all virtual machines with a vCD name extension).

    So far I managed to not get the names in the output, and I'm having a difficult time for the rest of the information on.

    That's what I did:

    Get-Cluster 'QA ' | Get - vm | Select-String - Pattern "\(*\)" | Select-Object line | Export-Csv C:\Export.csv

    As you can see, this is far from even coming close to what I need, so any help would be appreciated...

    Get-Cluster 'QA ' | Get - vm | Select-String - Pattern "\(*\)" | Select-Object line | Export-Csv C:\Export.csv

    You can use a clause Where the filter on the virtual machines that you want, and then a Select to retrieve the required properties.

    Try like this

    Get-Cluster "QA" | Get-VM | Where {$_.Name -match "\(*\)"} |Select Name,  @{N="Datastore";E={(Get-View $_.DatastoreIdList | %{$_.Name}) -Join ','}},  @{N="MAC0";E={$_.NetworkAdapters[0].MacAddress}},  @{N="MAC1";E={$_.NetworkAdapters[1].MacAddress}}
    
  • Need help with oracle query

    Hello

    I have a customer as requirement below

    We have the table header and contains data such as

    ID, custname, socket

    101, raju, 514

    102, ratna, 12

    103, rakesh, 16

    104, joseph, 129

    and we mappingtable like below as

    sampval, socket

    244094,512

    244095,2

    244096,4

    244097,8

    244098,16

    244102,128

    244103,1

    If header.mapvalue is 514 analysis then it out on the mappingtable basis to be exported for a value of 244094. 244095.

    Header.mapvalue is 12 parsing it out based on mappingtable to be exported for a value of 244096. 244097 and so on...

    Could you please help me how to get the functionality in a database query.

    Thanks in advance

    Try to query below and let me know

    SELECT id,

    custName,

    HT.mapvalue,

    req_val

    From ht header_tbl,

    (SELECT SAMPVAL,

    socket,

    CITY,

    SUMVAL,

    REQ_VAL

    Of

    (SELECT SAMPVAL,

    socket,

    CITY,

    SUMVAL,

    REQ_VAL,

    ROW_NUMBER() over (ORDER BY lvl SUMVAL PARTITION) rn

    Of

    (SELECT sampval,

    socket,

    City,

    LEVEL lvl,

    CASE

    WHEN ((= LEVEL 2)

    AND (socket = socket connect_by_root))

    THEN socket

    ANOTHER socket + connect_by_root socket

    END as sumval,

    CASE

    WHEN ((= LEVEL 2)

    AND (socket = socket connect_by_root))

    THEN TO_CHAR (sampval)

    Of OTHER TO_CHAR (CONNECT_BY_ROOT sampval

    ||'|'

    || sampval)

    END AS req_val

    A mapping

    CONNECT BY LEVEL<=>

    )

    WHERE the lvl = 2

    )

    WHERE rn = 1

    ) qry_rslt

    WHERE ht.mapvalue = qry_rslt.sumval;

    An alternative with xmlagg, you can use this query to achieve your requirement

    SELECT id, custname, RTRIM (xmlagg (xmlelement(e,mp.sampval||'|')). Extract ('//Text ()'),'| ') req_val

    From header_tbl, mapping mp ht

    WHERE mp.mapvalue = BITAND (mp.mapvalue, ht.mapvalue)

    GROUP BY id, custname;

  • help required on table transpose

    DATA IN THE TABLE:

    ST IC OC         

    I have 18 2

    20 4 K

    10 1 L

    where ST, IC and OC are names of columns and I want data from the table format below. Please help,

    I K L         

    IC 18 20 10

    OC       2    4      1

    Hello

    Visit these pages to learn how to rotate the data:

    http://forums.Oracle.com/forums/thread.jspa?MessageID=4347279�

    http://forums.Oracle.com/forums/thread.jspa?MessageID=3662005

    If you don't know not set an upper limit for the number of columns in the result, swing requires dynamic SQL and I recommend you rather use String aggregation , where the output is a column of the great string, format to watch as separate columns.

    If you get stuck, post your best attempt, as well as some examples of data (CREATE TABLE and only relevant columns, INSERT statements) and the desired results from these data.

    Always say what version of Oracle you are using (for example, 11.2.0.2.0).

    See the forum FAQ https://forums.oracle.com/message/9362002#9362002

  • HELP required on forming the matrix of data using PL/SQL

    Hi all

    I'm new on this thread and need your help in this regard.

    I have a requirement for the construction of a matrix of 5000 X 5000 using PL/SQL. My original data tables have 5000 lines each and I need to make a correlation analysis using these data and need to store in a physical table, and not in memory. This feat feasible the simple use of PL/SQL? I understand that Oracle DB has a limit of 1000 columns (but not sure) and so I would like to know if there is a workaround for this kind of scenario. If not, what are the other alternative methods to achieve this feat? Do I need to use any 3rd party tools to do this? A quick response from experts is highly appreciated.

    Thanking you in advance all the gurus.

    Rgds

    SAI

    1006089 wrote:

    I have a requirement for the construction of a matrix of 5000 X 5000 using PL/SQL.

    Possible. But this will require a large part of the memory. As PL/SQL is a language server side, this means the server's memory. That means server potential resource problems.

    And that the server environment is a multiprocessu multi-user environment, it also means potentially several copies of this code of matrix running multiple processes, each putting a request very heavy on the resources of the server. Is no longer a matter of potential server resources, but a guarantee... (exactly the same problem if you use app server architecture and Java or .net)

    You have to ask what is the cracking of data, server-side language? The answer is SQL. No PL/SQL. SQL runs rings around PL/SQL, Java, C/C++ and other languages when it comes to complex, fast and scalable, processing of large volumes of data.

    So you ask yourself why use PL/SQL? With his expensive server memory footprint? SQL and not SQL tables that are designed to deal with massive data effectively and efficiently?

Maybe you are looking for

  • Satellite A500 - is there a way to disable Hyper-Threading technology (HTT) technology?

    Is there a way to disable Hyper-Threading technology (HTT) technology?It's really bothering me with some applications...I can't find it in the bios... 1.5... He was in the bios earlier?... Is there a way to roll back... It is even possible... Post ed

  • Did you come out ssh and now cannot use ssh - this had to happen one day

    Pro2 OS6 v 6.4.0 SSH I logged in ssh [email protected] No files were open, but before I "exit" the session that the unit did a stop/delayed. I had completely lost track of time. Now, I can't ssh in. I've disabled the ssh, rebooted, activated the ssh a

  • EA6500 gigabit lan speed

    I have an Ea6500 and for the life of me I can't get my router to allow speeds of gbp... What can I do? Yes, I l NICs do giga and are activated Thanks in advance

  • Question about the Installation of the OS Windows8

    Mr President. I bought a Sony laptop with a windows 7 OS later I upgraded to a widows 8 with a purchase online purchase of the bone now when I did a format my laptop I can't able to install the Windows 8 operating system since the software I made a p

  • Libraries and photo gallery

    When has it become necessary to put pictures a "library" until I'm able to edit their? ".  I have Win7.  Have always had my pix on an external hard drive.  I used to be able to just open the drive, open the photo with Win Live Photo Gallery, and make