export method

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • dominant

    export method


    What are the steps to export/import a database?

    --
    Posted via http://dbforums.com
  • michael ngong

    #2
    Re: export method

    dominant <member32241@db forums.comwrote in message news:<3111791.1 058270236@dbfor ums.com>...
    The Export manual says that the execution of a script such catexp.sql is
    necessary. I own the 9.2.0.1 Enterprise edition Oracle server.
    >
    Should i run that script? If yes how is the appropriate syntax to run
    it?
    No need to run catexp?

    During the creation process of the database, catexp is run when
    catalog.sql is run .If a GUI is used catalog.sql is still run in the
    background.


    exp/imp help=y on the command line gives you the parameters you need
    to run an export...


    Oracle DOCS tahiti.oracle.c om or orafaq.com would have great
    resources

    HTH



    Michael Tubuo Ngong

    Comment

    • dominant

      #3
      Re: export method


      in terms of the imp i want to store the sql statements through the
      show=y parameter but i cannot do you know any idea?

      --
      Posted via http://dbforums.com

      Comment

      • LKBrwn_DBA

        #4
        Re: export method


        Try:

        imp <uid>/<pwfull=y file=expdat.dmp show=y log=outfile.txt

        and then edit outfile.txt

        --
        Posted via http://dbforums.com

        Comment

        • LKBrwn_DBA

          #5
          Re: export method


          Indexfile receives only the index creation statements, and normally is
          used to do importing with indexes=n option.

          --
          Posted via http://dbforums.com

          Comment

          • LKBrwn_DBA

            #6
            Re: export method


            Yes, with show=y the logfile will contain all ddl.
            Unfortunately the format leaves much to be desired.

            --
            Posted via http://dbforums.com

            Comment

            Working...