DBAsupport.com Forums - Powered by vBulletin
Results 1 to 6 of 6

Thread: exporting certain columns of a table

Threaded View

  1. #4
    Join Date
    Mar 2007
    Location
    Ft. Lauderdale, FL
    Posts
    3,555
    Quote Originally Posted by mahajanakhil198 View Post
    won't the QUERY parameter in expdp help?
    As far as I remember query parameter defines a predicate a.k.a. "where clause" so, if I'm correct this is not directly doable.

    What I would do is create an intermediate table then export that table like...

    create table MyIntTable
    as
    select list-of-desired-columns
    from MySourceTable;
    commit;

    Then export MyIntTable.
    Last edited by PAVB; 04-05-2010 at 04:08 PM. Reason: typo
    Pablo (Paul) Berzukov

    Author of Understanding Database Administration available at amazon and other bookstores.

    Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width