Export tables, sequence, and package question

Hi all,
I've export table like: exp username/password file=export.dmp log=export.log tables=A statistics=none.
The export statement above just export only the table "A" structure not the table "A" data. So, how can I move all the data from table "A" to table "B".
How do I export the sequence, and package and its data also?
Thank you very much
Kevin

Can you create a DBlink in order to do the insert into B select * from A.
Also, you can use the SQL*Plus Copy command.
Here are some links for COPY command:
<br>Copying Data
<br>copy command
<br>copy command vs sql*loader
<br><br>
Here is a link for moving code:
<br>exporting packages,function etc. from one user to another.

Similar Messages

  • Unicode export:Table-splitting and package splitting

    Hi SAP experts,
    I know there are lot of forums related to this topic, but I have some new questions and hence posting a new thread.
    We are in the process of doing unicode conversion in our landscape(CRM 7.0 system based on NW 7.01) and we are running on AIX 6.1 and DB2 9.5. The database size is around 1.5 TB and hence, we want to go in for optimization for export and import in order to reduce the downtime.As a part of the process, we have tried to do table-splitting and parallel export-import to reduce the downtime.
    However, we are having some doubts whether this table-splitting has actually worked in our scenario,as the export has exeucted for nearly 28 hours.
    The steps followed by us :
    1.) Doing the export preparation using SAPINST
    2.) Doing table splitting preparation, by creating a table input file having entries in the format <tablename>%<No.of splits>.Also, we have used the latest R3ta file and the dbdb6slib.o(belonging to version 7.20 even though our system is on 7.01) using SAPINST.
    3.) Starting with the export using SAPINST.
    some observations and questions:
    1.) After completion of tablesplitting preparation, there were .WHR files that were generated for each of the tables in DATA directory of export location. However, how many .WHR files should be created and on what basis are they created?
    2.) I will take an example of a table PRCD_CLUST(cluster table) in our environment, which we had split. We had 29 *.WHR files that were created for this particular table. The number of splits given for this table was 36 and the table size is around 72 GB.Also, we noticed that the first 28 .WHR files for this table, had lots of records but the last 29th .WHR file, had only 1 record. But we also noticed that, the packages/splits for the 1st 28 splits were created quite fast but the last one,29th one took a long time(serveral hours) to get completed.Also,lots of packages were generated(around 56) of size 1 GB each for this 29th split. Also, there was only one R3load which was running for this 29th split, and was generating packages one by one.
    3.) Also,Our question here is that is there any thumb rule for deciding on the number of splits for a table.Also, during the export, are there any things that need to be specified, while giving the inputs when we use table splitting,in the screen?
    4.) Also, what exactly is the difference between table-splitting and package-splitting? Are they both effective together?
    If you have any questions and or need any clarifications and further inputs, please let me know.
    It would be great, if we could get any insights on this whole procedure, as we know a lot of things are taken care by SAPINST itself in the background, but we just want to be certain that we have done the right thing and this is the way it should work.
    Regards,
    Santosh Bhat

    Hi,
    First of all please ignore my very first response ... i have accidentally posted a response to some other thread...sorry for that 
    Now coming you your questions...
    > 1.) Can package splitting and table-splitting be used together? If yes or no, what exactly is the procedure to be followed. As I observed that, the packages also have entries of the tables that we decided to split. So, does package splitting or table-splitting override the other, and only one of the two can be effective at a time?
    Package splitting and table splitting works together, because both serve a different purpose
    My way of doing is ...
    When i do package split i choose packageLimit 1000 and also split out the tables (which i selected for table split)  into seperate package (one package per table). I do it because that helps me to track those table.
    Once the above is done i follow it up with the R3ta and wheresplitter for those tables.
    Followed by manual migration monitor to do export/import , as mentioned in the previous reply above you need to ensure you sequenced you package properly ... large tables are exported first , use sections in the package list file , etc
    > 2.) If you are well versed with table splitting procedure, could you describe maybe in brief the exact procedure?
    Well i would say run R3ta (it will create multiple select queries) followed by wheresplitter (which will just split each of the select into multiple WHR files)  ...  
    Best would go thought some document on table spliting and let me know if you have specific query. Dont miss the role of hints file.
    > 3.) Also, I have mentioned about the version of R3ta and library file in my original post. Is this likely to be an issue?Also, is there a thumb rule to decide on the no.of splits for a table.
    Rule is use executable of the kernel version supported by your system version. I am not well versed with 7.01 and 7.2 support ... to give you an example i should not use 700 R3ta on 640 system , although it works.
    >1.) After completion of tablesplitting preparation, there were .WHR files that were generated for each of the tables in DATA directory of export location. However, how many .WHR files should be created and on what basis are they created?
    If you ask for 10 split .... you will get 10 splits or in some case 11 also, the reason might be the field it is using to split the table (the where clause). But not 100% sure about it.
    > 2) I will take an example of a table PRCD_CLUST(cluster table) in our environment, which we had split. We had 29 *.WHR files that were created for this particular table. The number of splits given for this table was 36 and the table size is around 72 GB.Also, we noticed that the first 28 .WHR files for this table, had lots of records but the last 29th .WHR file, had only 1 record. But we also noticed that, the packages/splits for the 1st 28 splits were created quite fast but the last one,29th one took a long time(serveral hours) to get completed.Also,lots of packages were generated(around 56) of size 1 GB each for this 29th plit. Also, there was only one R3load which was running for this 29th split, and was generating packages one by one.
    Not sure why you got 29 split when you asked for 36, one reason might be the field (key) used for split didn't have more than 28 unique records. I dont know how is PRCD_CLUST  split , you need to check the hints file for "key". One example can be suppose my table is split using company code, i have 10 company codes so even if i ask for 20 splits i will get only 10 splits (WHR's).
    Yes the 29th file will always have less records, if you open the 29th WHR you will see that it has the "greater than clause". The 1st and the last WHR file has the "less than" and "greater than" clause , kind of a safety which allows you to prepare for the split even before you have downtime has started. This 2 WHR's ensures  that no record gets missed, though you might have prepared your WHR files week before the actual migration.
    > 3) Also,Our question here is that is there any thumb rule for deciding on the number of splits for a table.Also, during the export, are there any things that need to be specified, while giving the inputs when we use table splitting,in the screen?
    Not aware any thumb rule. First iteration you might choose something like 10 for 50 GB , 20 for 100 GB. If any of the tables overshoots the window. They you can give a try by  increase or decrease the number of splits for the table. For me couple of times the total export/import  time have improved by reducing the splits of some tables (i suppose i was oversplitting those tables).
    Regards,
    Neel
    Edited by: Neelabha Banerjee on Nov 30, 2011 11:12 PM

  • Exp/imp procedures, functions and packages question

    Hi
    I've a 9i R2 version Oracle database. I would like to export procedures, functions and packages from a schema. How do I do that?
    Is there any script or command lines can provide?
    Thanks

    Hello user12259190.
    You can do an export of the user itself, excluding table data as inH:\>exp
    Export: Release 10.2.0.1.0 - Production on Tue Dec 22 11:22:52 2009
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Username: db_user@db_sid
    Password:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, Data Mining and Real Application Testing options
    Enter array fetch buffer size: 4096 >
    Export file: EXPDAT.DMP >
    (2)U(sers), or (3)T(ables): (2)U > 2
    Export grants (yes/no): yes > no
    Export table data (yes/no): yes > no
    Compress extents (yes/no): yes > no
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    server uses UTF8 character set (possible charset conversion)
    Note: table data (rows) will not be exported
    Note: grants on tables/views/sequences/roles will not be exported
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user DB_USER
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user DB_USER
    About to export DB_USER's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    . about to export DB_USER's tables via Conventional Path ...
    . . exporting table  TABLE_NAMEs
    EXP-00091: Exporting questionable statistics.
    . exporting synonyms
    . exporting views
    . exporting stored procedures
    . exporting operators
    . exporting referential integrity constraints
    . exporting triggers
    . exporting indextypes
    . exporting bitmap, functional and extensible indexes
    . exporting posttables actions
    . exporting materialized views
    . exporting snapshot logs
    . exporting job queues
    . exporting refresh groups and children
    . exporting dimensions
    . exporting post-schema procedural objects and actions
    . exporting statistics
    Export terminated successfully with warnings.Unfortunately, you can't export just the objects you want to unless they are tables.
    Using import (imp) you can list the content of your packages, procedures, functions, views, etc. and perhaps that will give you what you need.
    Another choice would be to useSELECT * FROM user_source ORDER BY 2, 1, 3;to list the code.
    Hope this helps,
    Luke

  • Re: Best options for exporting a sequence and making a DVD

    I using iPad 2.

    "Re: Best options for exporting a sequence and making a DVD" and "I'm using iPad 2" and "My phone number is not verified!" don't seem to be entirely related. Can you please restate your question?

  • Best options for exporting a sequence and making a DVD

    Hello,
    I have a sequence that is 79 minutes long with the following properties:
    Vid Rate - 29.97 fps
    Frame Size - 1440 x 1080
    Compressor - Apple Int. Codec
    Pixel Aspect - HD (1440x1080)
    This project began with the intention of being a short video, which is my background, and I can usually deal with exporting issues for short videos. However, it is no longer a small project. This was unexpected, and I frequently find myself in over my head. I am at the point where I need to give small theaters copies to view for consideration for a real screening, and would like to ask the folks here some questions:
    How would you export this sequence for viewing on a DVD? Export through QuickTime Movie (not conversion)? Wouldn't that make a file too large to create a DVD with iDVD? DVD is only SD, yes? How is that (watching on a DVD) taken care of, if at a later time I would want a DVD of this sequence to be in the best quality possible?
    This is a lot of questions, and I hope not too vague. Thank you for your time, and thanks in advance for any help.

    Hi
    My notes on this
    FCE/P to iDVD
    Several things
    • How to go from FCE/P to iDVD
    • Free space on Start-up hard disk
    • Encoding
    • Brand and type of DVDs used
    • Burn speed set
    • iDVD BUG
    • Chapters
    How to go from FCE/P to iDVD I do
    • Disable Screen and Energy saver
    • IMPORTANT --> FIRST in FinalCut - Mix Down Audio under Sequence Menu / Render Only / Mix-down
    • Export out as a QuickTime .mov file
    • Select with Mark - Chapter Mark
    • Not as Self-Contained (not important but saves time and space)
    • NO QUICKTIME CONVERSION (IMPORTANT)
    This QT.mov file I import into iDVD from within iDVD.
    Free space on Start-up hard disk
    I set a minimum of 25GB (for Mac OS and iDVDs temp files)
    Encoding
    • I use Pro Quality encoding
    Brand and type of DVDs used
    • I use Verbatim
    • I use DVD-R (plays on more even older DVD-players)
    Burn speed set
    • I set down this to x4 (or x1)
    iDVD BUG
    • One can not go back to movie-project for any alterations and then go back to
    the iDVD project. It will notice and ask You to either Up-date or Cancel. Neither
    of them will work.
    Medicine - Start a brand new iDVD project.
    Use of Chapters
    • I only use a to z and 0 to 9 in naming them. NO other symbol/letter !
    • NO Chapter-mark at very beginning - iDVD NEEDS TO set this by it self
    • No Chapter marks in or within two seconds from a transition
    (Way around this last one - Export movie as QT full quality and NO Chapter marks
    Import this into a new Movie-project and now You are free to set C-Ms where You want
    them except at very beginning - still)
    Material used to build movie
    • video - I use streamingDV (or convert all other to this e.g. .mp4, .avi, .wmv etc)
    • audio - I use .aiff 16-bit 48kHz or from Audio-CD (44.1kHz) - no .mp3 or direct from iTunes
    • photos - I use .jpg - no .bmp etc
    If problems:
    Trash iDVD pref. file and run Repair Permissions - and have a re-try.
    from post ??
    May not be relevant, but I had the same problem with iDVD, where burned DVDs showed a green screen. It was cured by quitting Quicksilver and Quickeys as well as disabling sleep and screen-saving
    Yours Bengt W

  • Export tables, sequences, types

    I was wondering how i could do an export of just tables,indexes, sequences, and types.
    10g

    Hi,
    You can use INLCUDE option while export usinf datapump.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_export.htm
    regards
    Jafar

  • AS EXPORT TABLES, PROCEDURES, AND TRIGGERS MORE?

    Hi,
    I've finished my application on Oracle XE, and make the export of Workspace, the Scheme, then
    and export tables, procedures, triggers, etc, from Oracle XE to install on another computer?
    I appreciate your partnership and Attention ...
    Reynel Salazar Martinez ...

    por la parte de utilidades se genera la opcion
    ddl...
    y listo

  • Oracle jdbc creating a table, sequence and trigger

    I'm trying to create a table with a sequence and with a trigger for that sequence. When I do this within Oracle Express edition I have the following SQL statements. Which DO run correctly inside Oracle Express using the same user I log in with JDBC.
    CREATE table "TEST" (
    "ID" NUMBER(10) NOT NULL,
    "NAME" VARCHAR2(20),
    constraint "TEST_PK" primary key ("ID")
    CREATE sequence "TEST_SEQ"
    CREATE trigger "BI_TEST"
    before insert on "TEST"
    for each row
    begin
    if :NEW."ID" is null then
    select "TEST_SEQ".nextval into :NEW."ID" from dual;
    end if;
    end;
    So now what I do is put each of these into a List of Strings and execute 1 by one like this:
    List<String> commands = new ArrayList<String>(4);
    commands.add("Create table ...");
    commands.add("Create sequence ...");
    commands.add("Create trigger...");
    st = con.createStatement();
    for (String command : commands) {
    st.execute(command);
    etc...
    But I get an error with the trigger statement. "Error with Oracle command: ORA-00942: table or view does not exist"
    It seems to me that Oracle has not yet seen the new table at this point. or maybe my user can create tables but not triggers? If that's the case why did it work in the express application itself?
    TIA

    SproketBoy wrote:
    But I get an error with the trigger statement. "Error with Oracle command: ORA-00942: table or view does not exist"Keep in mind: Oracle is not lying to you.
    >
    It seems to me that Oracle has not yet seen the new table at this point. or maybe my user can create tables but not triggers? If that's the case why did it work in the express application itself?No, DDL commands cause an explicit commit. As soon as you invoke them, the change is permanent. If it was a rights problem, you'd get a different ORA error stating that, it won't silently fail.
    Lets not assume it is anything difficult, perhaps there is simply a typo in a name somewhere?

  • Exporting a sequence and getting an Error file too big message

    I have tried to export a sequence using Quicktime conversion. It is a two minute clip and I keep getting an "Error, File too big" message. Does anyone know what can be happening?

    What exactly are you exporting to? Settings, codec, data rate? What drive are you exporting to? How is it formatted?

  • Exporting Targa Sequence and Alpha Channel

    I have a couple of targa sequence containing graphics that I need to export. One has an opaque arrow which rolls out over the film underneath. The second has solid text which will be laid over the arrow as it animates. I have run the image sequences in Quicktime, the arrow sequence comes out as a block of black and the solid text comes out against a black background instead of an alpha channel and I can't seem to manipulate them. I have FCP 6 which i thought had Quick Time Pro to handle alpha channels. What am I doing wrong, can anyone help?

    hi,
    what exactly are you doing?
    why are you exporting from quicktime? why dont you import the image sequence directly into motion/fcp? Not saying you;re wrong, just wondering that 's all.
    Have you got the export settings correct. Not many codecs support alpha channels. Your best bet is Animation set to Millions of colours +. the + is the alpha channel.
    However motion or fcp should be able to read the image files just fine.
    adam

  • Export Table Output and Print Output differing

    I am trying to:-
    export a table to excel.
    print the table data.
    The output of the export and print are differing,the print does not capture the commandlink. The segment that I am using is :-
    <af:group>
    <af:commandToolbarButton text="Export" immediate="true"
    shortDesc="Export All Rows" icon="/images/table.png">
    <af:exportCollectionActionListener type="excelHTML" exportedId="t2"
    filename="export-tasks.xls" title="Export"
    exportedRows="all"/>
    </af:commandToolbarButton>
    <af:commandToolbarButton text="Print" shortDesc="Print" icon="/images/print.png">
    <af:showPrintablePageBehavior/>
    </af:commandToolbarButton>
    </af:group>
    I tried including rendered="#{adfFacesContext.outputMode eq 'printable'}" in the af:outputText for rows & columns in the table,however, as a result the data in the Tableitself was displayed incorectly.
    I got to know about rendered from the following thread Regarding printing a command link using <af:showPrintablePageBehavior>

    I've also exported the document to IDML - and I've unzipped that folder. I've read the information for the colour - there's only 1 reference to Rubine Red and that's giving the same percentages as the InDesign file.
    I don't know where the 2nd shade of pink is coming from.
    But I suspect that it's from the print driver itself.
    Also - just occured to me, I lost my PDF settings a while ago, InDesign crashed and the PDF defaults were missing - I dowloaded a copy of a set from someone on these forums through a google search.
    But I no longer have PDF x4 export option - where can I retrieve these.
    How can I restore the original PDF settings for InDesign?

  • General Apex single standalone installation and packaging question

    Hello,
    Our goal is to create an light weight packaged application and provide to any customers who wants to install and use the tool.
    Can an application with database be built on Apex and created as packaged installable, instead of hosting in any Application , middle and database server. A kind of quick, cost effective and light weight installation? If yes, can you point me to the link or share some examples.
    Thanks,

    997006 wrote:
    Hello,
    Our goal is to create an light weight packaged application and provide to any customers who wants to install and use the tool.
    Can an application with database be built on Apex and created as packaged installable, instead of hosting in any Application , middle and database server. A kind of quick, cost effective and light weight installation? If yes, can you point me to the link or share some examples.
    Thanks,If I understood correctly, you want to build some thing like desktop applications that run on OS directly.
    If that's the case, then I don't think it's possible! APEX run on top of Oracle DB. So users have to first install Oracle DB & then they haveto configure APEX, next they have to use APEX workspace to install your packaged application. I can't think all these setps can be done by non-technical user.
    Regards,
    Hari

  • Spry Table, Accordian, and Flash question

    Is it possible to build a spry table that automatically
    updates a spry accordian with different flash files? i.e. have a
    table that listed four flash videos and when the table link was
    clicked that flash video would appear in the accordian? Choose
    another link in the table and then that flash video would appear in
    the accordian. etc I know you can link jpg's and accomplish this
    but I would love to do the same thing with some flv filles. Anyone
    know if that is possible and how to write the link in the xml file?
    thanks
    Kilgore

    All Active content on a page will always rise to the top, so
    to speak,
    including Flash, certain form elements, Java applets, and
    Active X controls.
    This means that each of these will poke through layers. There
    is not a good
    cross-browser/platform reliable way to solve this issue, but
    if you can be
    confident in your visitors using IE 5+ or NN6+, then you can
    use the Flash
    wmode parameter (however, Safari does not support this
    properly!).
    Adobe articles:
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_15523
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14201
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "snikos" <[email protected]> wrote in
    message
    news:fm8594$4l8$[email protected]..
    > hello
    > i have a table with 2 rows and 1 column , in the fisrt
    row i have a spry
    > popup
    > menu and at second one a flash clip.
    > the problem is that the popup menu goes under the flash
    content when you
    > put
    > the mouse over it, what can i do to fix that problem?
    >
    > thanks
    > sorry for my english!
    >

  • InDesign CS6 ePub Export : Tables with header and footer in HTML

    Hey there,
    does anyone know, whether InDesign CS6 also exports Table Headers and footers correctly into the XHTML-File of the ePub.
    What I mean, is whether the elements <thead> and <tfoot> are created?
    Or is it only possible to steer this via the CSS-Classnames which can be given in the tableformats?
    Generally I think it would be better if the user had the chance to map other exporttags to its elements than just p, em, strong, h1-h6.
    it would be useful to also put in other elements by hand.
    Best regrads.

    Magnolee2 wrote:
    does anyone know, whether InDesign CS6 also exports Table Headers and footers correctly into the XHTML-File of the ePub.
    What I mean, is whether the elements <thead> and <tfoot> are created?
    By "also", do you mean the behavior is changed with respect to CS5/CS5.5? In those, thead and tfoot are created correctly. (Although, quite disconcerting, in the order "thead / tfoot / tbody". ePub renderers based on Webkit display them correctly nevertheless, but others do not. An extremely annoying free interpretation of the W3C rules.)

  • Exporting at Sequences settings... Changes aspect ratio.

    I'm preparing some 16:9 DV footage for a Multi-Clip edit. So I'm Exporting a few sequences to my HD to re-import as a clip, at that point they are in sync for Muli Clip.
    When I Export and deselsect 'make self contained movie', it comes back into FCP at Full Screen. I really want to use this option to save a ton of HD space. If I export and check 'make self contained movie', it re-imports at the correct Wide Screen aspect ration. How can I not make a self contained movie and maintain aspect ratio? I've had this problem since I bought FCP and gone through all the updates.
    When I Export a Movie, I'm simply going to Export>QuitimeMovie (use sequence settings).
    Thanks for your time.
    -Monty

    I don't know where else to access that checkbox besides Sequence Settings, there it has been checked since the project started.
    Well my Multi Clip training only goes as far as Lynda.com's coverage. My original clips that I capture were from two different cameras that didn't share the same time code or start time. Also, both camera started and stopped many times individually and lastly I had an external audio source to fly in. So to my thinking at the moment, I had to sort the video and audio clips into 1 sequence per camera so they all share the same start/stop time and duration. At this point since Multi-Clip doesn't edit Sequences, only clips, I export the sequences and re-import them as clips. If you feel like explaining an easier way, I'm all ears, thank you.
    Message was edited by: TheMonty

Maybe you are looking for

  • Can't see manual after download. Says get Acrobat. Have Adobe. Shop says $449! Just want to read an iphone 4 manual

    Can't see manual after downloading several times from Apple. Somewhere else says have to get Acrobat to read. Have Adobe. Acrobat on Apple site is over $400! All I want to do is read an iphone 4 manual.

  • FF-6 is not working for Bank statement View

    Hi SAP Friends, Could you please tell me how we need  to print the bank statement in FF_6, I have given then application type as 0001 and i have given the all the house bank and statement number and date, But i am not getting any statement in FF_6. I

  • Don't know how to play a flash file

    I downloaded a .FLV file, but Windows isn't associating that file with Flash. When I click it I get asked which file to open it with. I checked and I have Flash 10.x on my system. I don't know where on my system flash is located. I looked in the C:\P

  • Need File Manager

    I need a file manager for my Nokia Lumia 720. Is there any app to explore my sd card or phone memory?????

  • BEx Analyzer - Edit Variables via VBA

    Hi all, I need to set the BEx variable values via VBA to change a selection for an input ready query. Is there a way to do that? Thanks a lot. Best regards, Christian.