Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Import Data and store them in a # tablespace

Re: Import Data and store them in a # tablespace

From: M Bouloussa <mb_at_asterop.com>
Date: 23 Apr 2004 07:09:39 -0700
Message-ID: <ab03d38.0404230609.17bab839@posting.google.com>


Ed Stevens <nospam_at_noway.nohow> wrote in message news:<880g80hn8kp3g0a8g8npgdbfvb4f8j2n27_at_4ax.com>...
> On 22 Apr 2004 09:40:28 -0700, mb_at_asterop.com (M Bouloussa) wrote:
>
> >Please, I need some help
> >
> >Scenari
> >
> >1)
> >Create tablespace MY_TABLESPACE_1
> >datafile 'MY_TABLESPACE_1.dbf'
> >size 1M autoextend
> >on next 1M maxsize unlimited
> >2)
> >create user SOMEUSER identified by SOMEPWD
> >default tablespace MY_TABLESPACE_1
> >temporary tablespace temp
> >quota unlimited on MY_TABLESPACE_1
> >3)
> >grant connect to SOMEUSER
> >
> >
> >Then I connect as user SOMEUSER/SOMEPWD and I create some tables
> >These tables are stored in the default tablespace (MY_TABLESPACE_1)
> >
> >
> >Now I have an oracle dump and I want to import all the data of this
> >dump to my user SOMEUSER but not in the default tablespace
> >(MY_TABLESPACE_1): I want to store these "new" data in the tablespace
> >MY_TABLESPACE_2
> >
> >
> >How can I do that ?
> >
> >Thank you for the help
> >
> >MB
>
> Oracle version????
>
> What do you mean by 'an Oracle dump'? Do you mean a .dmp file created
> by exp? If so, why not just
>
> ALTER USER someuser
> DEFAULT TABLESPACE my_tablespace_2;
>
> then run your import with the TO_USER option. When complete, set your
> default TS back to my_tablespace_1.
>
> Of course, this assumes the tables you are importing have different
> names than any of the existing tables. If this assumption is
> incorrect, then you need to re-think the real problem you're trying to
> solve.

This method is works fine.
Thank you for your help

MB Received on Fri Apr 23 2004 - 09:09:39 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US