How to export tables Like WA*

i want export table with name LIKE WA* all table starting with that name to be export how to do this is there any command? pls....

Check the documentation. It is clearly stated that you can use a wildcard while defining the tables to be included in the export.

Similar Messages

  • How to export tables from development server to production server

    HI,
    Any body plz let me know how to export tables from development server to production server. what are the user names and password i need to ask my manager to do that. what are the requirements i need to ask him.
    Plz reply me ASAP.
    Thanks in advance.

    hi buddy
    first of all you should let us know the environment of production and development servers
    database versions
    and you need to have userid which has privilege to export tables of other schema. userid(owner) of the tables you want to export.
    Traditional way
    export tables in development server and then ftp to production and then import
    in the above case you should have similar database structure(tablespace etc) to avoid errors...
    if there are few tables only , you can use dblink instead of export and import...

  • How to Export Table Data to a excel sheet using OPENROWSET

    Hi Team,
    I would like to Export table data to a excel sheet by using "OPENROWSET" command in SQL Server but I am getting the
    below error message
    Column name or number of supplied values does not match table definition.
    Please help me on how to export the table data to an excel sheet by using "OPENROWSET" in SQL Server

    I know this is old so I assume you've fixed this. However, for anyone else looking at this forum, I'd recommend using a union or a table join.
    Select a.1, a.2, a.3 from a <where clause>
    union
    Select b.1, b.2, b.3 from b <where clause>
    or
    use a type of join.
    If both table selects return the same number of columns but different data just reference them as a variable like fred, and Ted
    Select fred.1, fred.2, fred.3 from (Select a.1, a.2, a.3 from a) fred
    union
    Select Ted.1, Ted.2, Ted.3 from (Select b.1, b.2, b.3 from b) Ted
    or again some type of join of these two sets
    Select * from
    (Select a.1, a.2, a.3 from a) a
    INNER JOIN (Select b.1, b.2, b.3 from b) b ON b.1 = a.1
    This would give you 6 columns of data a1-3, and b1-3
    We don't know from your description what format your spreadsheet is in. These just give you the idea. Think of the sub-selects as a Table. It's just named "fred". Once your select holds all the data you need, then export the data to the spreadsheet. Use
    the horsepower of the database before trying to do a multple update of the same spreadsheet.
    Does this give you enough to fix what you were trying to do?   

  • How to export table data with coloring of cell according to value.

    Hi all,
    I am using jdeveloper 11.1.1.6
    i want to export table data with lot of formatting. like with coloring of cell according to value and so many.How to do that?

    Hi,
    like with coloring of cell according to value and so many.How to do that?
    Answer is, you can't
    Frank

  • How to export table data to excel in albpm

    Hi,
    we have an requirement to export table data to excel .
    we have to create an jsp in that jsp we have to have text fileds,we have to enter data to field after that we have to click on save once u click on save that data has to enter in below table and we should provide link to export that table data to excel.
    this is our totatl requirement.can u please suggest me how to do,i dont have any idea..
    Regards,
    Sharmila
    Edited by: user12171025 on Nov 5, 2009 8:44 PM

    Hi Daniel 
    Please have a look at below docs :-
    /people/subramanian.venkateswaran2/blog/2006/08/16/exporting-table-data-to-ms-excel-sheetenhanced-web-dynpro-binary-cache
    http://wiki.sdn.sap.com/wiki/display/WDJava/ExporttoExcel(WithoutthirdpartyAPIs)
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d01854fd-1579-2c10-63ad-dd62edca2381?quicklink=index&overridelayout=true
    Regards
    Arun Jaiswal

  • How to export table xml from ID CS4

    Hi,
    Could any one clarify my below doubts.
    I have an xml file for Table. The root tag <informaltable> of the table have the attributes id="xx" and float="0". This xml file is imported into the Indesign document without any problem.  But when I export the xml from Indesign, these attributes were not exported. Only the XML tag is exported.
    Could anyone tell how to export this table root tag with its attributes.
    Thanks,
    Gopal

    Apology for bu** in, but my general practice (or for that matter mentioned scripting manual) is that
    function ProcessProduct(){
        this.name = "ProcessElements";
        this.xpath = "//B/C"; 
    should be
    function ProcessProduct(){
        this.name = "ProcessProduct";
        this.xpath = "//B/C"; 
    name of the rule and matches theRuleName,but both of them seems to be working fine here.
    Defining correctly in ruleset does the trick
    var myRuleSet = new Array (new ProcessProduct);
    Does it not matter for having the same name or I am missing something.
    --PC

  • How to implement table like structure in MIDP?

    I am a starter of midp, and now need to implement something using MIDP 1.0.
    I would like to know can I have table like structure in MIDP, just like HTML; or I can only work with List/Form (one dimension display). I can't find related information at api doc come with wireless toolkits

    not really knowing what you want to acomplish I have this suggestion: check Mobile Information Device Profile (JSR-37) at http://www.jcp.org/aboutJava/communityprocess/final/jsr037/index.html . This might shed more light on applicable classes/methods/interfaces within MIDP 1.0.

  • Acrobat XI does not export tables like Acrobat X when "Save As" to MSWord

    I have some pdfs that clearly have tables in them. Acrobat X can save them to MSWord just fine. Acrobat XI does not.
    I've tried all combinations of the layout settings ("Retain Flowing Text"/"Retain Page Layout") and image settings (Include Images on/off) and MSWord versions (.doc/.docx) and none of them result in tables like what X does.
    Is there a way to make XI behave like X when saving as MSWord documents?

    Make sure you apply all updates to Acrobat 11.

  • How to export tables on different condition

    HI,
    i want to use export backup of my oracle 10g database, where i want to full export of some tables and some tables with
    "QUERY" parameter.so how can i make this script where some table are full exported and some based on condition.
    conditions defined in query paramter is diffrent for one table to another.
    so if is it possible how can i do this ?
    thanks

    Hi,
    Yes, this is possible. When you specify the query, you can do it 2 ways:
    query="where x=123"
    or
    query=scott.emp:"where x=123"
    The first will be applied to all tables, the second will be applied to only scott.emp. You can have many queries like the second, but only 1 like the first.
    expdp user/password query="where x=123" query=scott.emp:"where name like 'Dean%'" query=user5.table6:"where salary>100000"
    would apply
    "where name like 'Dean%" to scott.emp
    "where salary>100000" to user5.table6
    "where x=123" to all other tables since no table was specified.
    If you wanted all other table to use no query, then just make sure every query has a table name specified. They will be used for only those tables and all other tables won't use any query.
    Hope that helps
    Dean

  • How to export table contents in xml file format through SQL queries

    hi,
    i need to export the table data in to xml file format. i got it through the GUI what they given.
    i'm using Oracle 10g XE.
    but i need to send the table name from Java programs. so, how to call the export commands from programming languages through. is there any sql commands to export the table contents in xml format.
    and one more problem is i created each transaction in two tables. for example if we have a transaction 'sales' , that will be saved in db as
    sales1 table and sales2 table. here i maintained and ID field in sales1 as PK. and id as FK in sales2.
    i get the combined data with this query,
    select * from sales1 s1, sales2 s2 where s1.id=s2.id order by s1.id;
    it given all the records, but i'm getting two ID fields (one from each table). how to avoid this. here i dont know how many fields will be there in each table. that will be known at runtime only.
    the static information is sales1 have one ID field with PK and sales2 will have one ID filed with FK.
    i need ur valuable suggestions.
    regards
    pavan.

    You can use DBMS_XMLGEN.getXML('your Query') for generating data in tables to XML format and you can use DBMS_XMLGEN.SETROWSETTAG to change the parent element name other wise it will give rowset as well as DBMS_XMLGEN.SETROWTAG for row name.
    Check this otherwise XMLELEMENT and XMLFOREST function are also there to convert data in XML format.

  • How to Exclude table like %AUDIT% using the Datapump API

    Hello,
    I am trying to use the datapump API to import table across a database link excluding table with a name like %AUDIT%. I have it all working except the table execution. I am using Oracle 11.1.0.6.

    this works in my app
    in DB R11.2
    in job_mode = 'TABLE'
              dbms_datapump.metadata_filter (
              handle          =>     job_handle,
              name          =>     'NAME_EXPR',
              value          =>     'NOT IN (''TABLENAME_1'', ''TABLENAME_2'' , ''TABLE_NAME_3'' )'
    try this works for you
              dbms_datapump.metadata_filter (
              handle          =>     job_handle,
              name          =>     'NAME_EXPR',
              value      => 'NOT LIKE ''%AUDIT%'''
    Edited by: astramare on Jul 7, 2011 2:57 PM

  • How to export Tables along with Data and also Tables without data

    Hi All,
    I have a strange situation here. I have a 2 existing schema's under one database. Now the client wants to have 4 more schema's to incorporate the new branches of his company.
    I want to know whether is it possible for me to run an expdp command by which i can have the data from the mentioned tables and only table structure of the remaining along with remaining database objects (procedure,functions,triggers,views,sequences etc).
    Since there are some 32 Master tables, whose data i need to capture in db dump in order to run the batch under new schema and the remaining tables will be populated with data from the new branch employees hence the need is for table’s structure only.

    Hi,
    you should run two different import comand.
    The first import with only metadata, just to recreate the structure.
    With the second import you will import data only for the tables you need.
    I think this is the simplier solution.
    Acr

  • How to export in table mode if I need to export anotehr user's table

    Please let me know how to export table owned by another user if we dont have DBA priv.
    Can we do it in table mode of export. If yes, how to specify table mode in export?
    Pls give an example also.
    Thanks a lot.

    Tables in other user's schema can only be exported either by being a member of DBA role or EXP_FULL_DATABASE role. Table mode export is initiated by specifying TABLES parameter while running exp export utility.
    An example TABLES parameter could be like
    TABLES=(dept, mydata)
    to export dept and mydata tables.
    Message was edited by:
    thrilller

  • How can I export table and cell styles to use in another InDesign document?

    I've been looking…and looking but can't find out how to export table styles within InDesign CC. If there is a load table styles option within the panel, it stands to reason there should be an export. Any help would be appreciated, thanks.

    Frank,   John's solution is it.    But that also requires that you have those old files easily on hand to access.  Maybe even searching for them in the future, 3 months down the road, could be a pain.   You can always save a Library for that file and drag some of those styled elements into that library.   Save the library in a place that you will keep access to and readily pull assets from.   In the future doc open that library and drag the styled element into your new document and the styles are now in the new doc to reuse.   I have a library saved just for tables.

  • 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.

Maybe you are looking for

  • Regional and Language Settings for Window and BEX Style

    Hi All, When I change the Regional and Language Settings for Windows, Standards and Formats value to English (USA) the standard Style for BEX is active. For instance, input-ready cell is bordered with blue. But when I switch to Turkish this style is

  • Adobe InDesign CC Interactive PDFs

    Our inhouse design department has been using CC for about two weeks now. I'm trying to use the animation features in InDesign and then export the PDF with the animations working and then upload that PDF to our website. The PDF exports correctly and t

  • L_TO_CONFIRM error L3 854

    Hi Im facing lot of issues while confirming the TO using the FM L_TO_CONFIRM. My scenario is , the delivery quantity is 10 KG, I am doing an under picking using multi level Handling units. (9 KG). I have 3 level HU's, i.e., a pallet, inside that ther

  • Fullscreen Bug

    Hi There is a big bug with fullscreen Aps When, for example, the Mail Application runs in Fullscreen Mode and I open Firefox (for example) on the main desktop and switch to the fullscreen app while firefox is loading, Firefox will be opened on the sa

  • New mac pro slow converting raw files any help?

    hallo everybody, can someone help? my new mac pro 3.7 GHz Quad-Core Intel Xeon E5 / 32 GB 1867 MHz DDR3 is converting raw files in camera raw really too slowly, about twice the time took with an iMac 2,7 GHz. I tryed all graphic processor options on