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

Thread: Exporting Tables That Begins With A Particular Letter

  1. #1
    Join Date
    Apr 2003
    Posts
    353

    Exporting Tables That Begins With A Particular Letter

    WE WANT EXPORT TABLES THAT START WITH A PARTICULAR LETTER.
    THAT IS WE WANT TO GIVE CONDITION AT THE TIME OF EXPORT LIKE TABLES = 'P%'
    IS IT POSSIBLE..

  2. #2
    Join Date
    Jan 2001
    Posts
    2,828
    Hi

    Nope

    what you can do is this

    select ''''|| table_name ||''''||',' from user_tables
    where table_name like 'P%'


    then copy paste the output to the tables parameter in export parameter file..

    regards
    Hrishy
    Last edited by hrishy; 02-18-2004 at 05:44 AM.

  3. #3
    Join Date
    Apr 2003
    Posts
    353
    I got it

    exp user/password file=d:\x.dmp tables=a%

    it worked..in 9i. this option is not there in 8.

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