Re: import problem - newbie question

2003-03-28 Thread Darrell Landrum
LeRoy,

Even though you start your import as system, when the process starts to
import tables owned by (for example) 'appuser' it will switch to that
user.  What I'm thinking is that you should create the user in advance
of starting the import and give the user adequate tablespace quota.
I may be missing something on this and perhaps someone else will
correct if so, but this is what I would try if it were me.

Darrell


 [EMAIL PROTECTED] 03/28/03 11:03AM 
I am exporting data from production to test database.  I receive error
of 'no privledges on tablespace'.  I dropped the user from the test
box
and trying import full from the schema export I created.   Not sure
what
I am doing wrong.  I am running 8.1.7 on Unix.

imp system/* file=uwsa.dmp log=import.log full=y ignore=y

LeRoy


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net 
-- 
Author: LeRoy Kemnitz
  INET: [EMAIL PROTECTED] 

Fat City Network Services-- 858-538-5051 http://www.fatcity.com 
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Darrell Landrum
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Import Problem

2003-03-03 Thread Rachel Carmichael
now you know why I script everything and run it as a background job on
the database server itself. :) 

That I know of, there is no way to restart an import... unless you have
primary key or unique constraints on all objects and you are will to do
ignore=y so that you get constraint errors on every existing row but
do load all the remaining ones.

There isn't anything clean that I know of though. Sorry


--- Scott Canaan [EMAIL PROTECTED] wrote:
 I ran into a problem yesterday afternoon.  I had exported a
 production database, via a full database export, and ftp'd it to
 another
 machine to import it there and make that the new production machine. 
 It
 was a long import (about 8 hours) and about 2/3 through it, my
 network
 connection was dropped.  I was running it in a ssh shell.  When the
 connection disappeared, the import died.  Since I had to get the job
 done by morning, I chose to drop the database, rebuild it, then
 re-import.  That worked.
 What I am wondering is:  Is there a way to resume an import, once
 it
 has been interrupted?  I have been looking in metalink and on the net
 and haven't found anything that says how to do it.  I tried technet,
 but
 it was way too slow.  Any thoughts would be greatly appreciated.
 
 Thank you,
 
 --
 Scott Canaan ([EMAIL PROTECTED])
 (585) 475-7886
 Life is like a sewer, what you get out of it depends on what you put
 into it. - Tom Lehrer.
 
 
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.net
 -- 
 Author: Scott Canaan
   INET: [EMAIL PROTECTED]
 
 Fat City Network Services-- 858-538-5051 http://www.fatcity.com
 San Diego, California-- Mailing list and web hosting services
 -
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).
 


__
Do you Yahoo!?
Yahoo! Tax Center - forms, calculators, tips, more
http://taxes.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Rachel Carmichael
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Import Problem

2003-03-03 Thread Stephen Lee

There might be specific cases where you can, depending on constraints, etc.,
but in general, I don't think so.

Two approaches to keep it from being interrupted:

1.  sh -c nohup imp option1=xxx option2=xxx etc 

2.  echo imp option1=xxx option2=xxx | at now

You might want to add some output redirection on these.

And you might want to add some input redirection: for example the input file
has the username/password so you don't type it on the command line.

 -Original Message-
 What I am wondering is:  Is there a way to resume an 
 import, once it has been interrupted?
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Stephen Lee
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Import Problem

2003-03-03 Thread Jared . Still
Scott,

Try using screen.  It is a piece of software using virtual tty 's.

I began using it in 1994 to avoid just such problems.

It gives you some unique capabilities.  Start a process from
one client,  goto another client, detach and re-attach there.

eg.  start a job at home in a terminal window, goto work, and
attach the screen there.

And since it is running on the server itself, losing the network
connection, your PC crashing, etc, does not interrupt your job.

It is installed by default on some versions of Linux.

http://www.gnu.org/directory/GNU/screen.html

HTH

Jared






Scott Canaan [EMAIL PROTECTED]
Sent by: [EMAIL PROTECTED]
 03/03/2003 09:08 AM
 Please respond to ORACLE-L

 
To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED]
cc: 
Subject:Import Problem


I ran into a problem yesterday afternoon.  I had exported a
production database, via a full database export, and ftp'd it to another
machine to import it there and make that the new production machine.  It
was a long import (about 8 hours) and about 2/3 through it, my network
connection was dropped.  I was running it in a ssh shell.  When the
connection disappeared, the import died.  Since I had to get the job
done by morning, I chose to drop the database, rebuild it, then
re-import.  That worked.
What I am wondering is:  Is there a way to resume an import, once it
has been interrupted?  I have been looking in metalink and on the net
and haven't found anything that says how to do it.  I tried technet, but
it was way too slow.  Any thoughts would be greatly appreciated.

Thank you,

--
Scott Canaan ([EMAIL PROTECTED])
(585) 475-7886
Life is like a sewer, what you get out of it depends on what you put
into it. - Tom Lehrer.


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Scott Canaan
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Import Problem

2003-03-03 Thread Tim Gorman
FYI...

Even more useful than screen is vnc (www.tightvnc.com).  It has some of
the same capabilities as screen, but it works like X-windows.  Using VNC,
you can start an Oracle Installer session on your laptop, shut it down, go
home, and resume the session when you get where you are going.  It is a
complete life-saver for people who manage Oracle servers remotely, ever
since the char-mode Oracle Installer vanished.  For getting through DMZs and
firewalls, it works with SSH2 IP forwarding...

...amazing stuff!

- Original Message -
To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED]
Sent: Monday, March 03, 2003 2:14 PM


 Scott,

 Try using screen.  It is a piece of software using virtual tty 's.

 I began using it in 1994 to avoid just such problems.

 It gives you some unique capabilities.  Start a process from
 one client,  goto another client, detach and re-attach there.

 eg.  start a job at home in a terminal window, goto work, and
 attach the screen there.

 And since it is running on the server itself, losing the network
 connection, your PC crashing, etc, does not interrupt your job.

 It is installed by default on some versions of Linux.

 http://www.gnu.org/directory/GNU/screen.html

 HTH

 Jared






 Scott Canaan [EMAIL PROTECTED]
 Sent by: [EMAIL PROTECTED]
  03/03/2003 09:08 AM
  Please respond to ORACLE-L


 To: Multiple recipients of list ORACLE-L
[EMAIL PROTECTED]
 cc:
 Subject:Import Problem


 I ran into a problem yesterday afternoon.  I had exported a
 production database, via a full database export, and ftp'd it to another
 machine to import it there and make that the new production machine.  It
 was a long import (about 8 hours) and about 2/3 through it, my network
 connection was dropped.  I was running it in a ssh shell.  When the
 connection disappeared, the import died.  Since I had to get the job
 done by morning, I chose to drop the database, rebuild it, then
 re-import.  That worked.
 What I am wondering is:  Is there a way to resume an import, once it
 has been interrupted?  I have been looking in metalink and on the net
 and haven't found anything that says how to do it.  I tried technet, but
 it was way too slow.  Any thoughts would be greatly appreciated.

 Thank you,

 --
 Scott Canaan ([EMAIL PROTECTED])
 (585) 475-7886
 Life is like a sewer, what you get out of it depends on what you put
 into it. - Tom Lehrer.


 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.net
 --
 Author: Scott Canaan
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- 858-538-5051 http://www.fatcity.com
 San Diego, California-- Mailing list and web hosting services
 -
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).




 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.net
 --
 Author:
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- 858-538-5051 http://www.fatcity.com
 San Diego, California-- Mailing list and web hosting services
 -
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Tim Gorman
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Import Problem

2003-03-03 Thread Ron Thomas

If all you need is tty (character based), then screen should work.  If you need a full 
GUI
environment, then check out vnc.  I use this alot for those 5 hour Oracle Application 
Installs.

Ron Thomas
Hypercom, Inc
[EMAIL PROTECTED]
Each new user of a new system uncovers a new class of bugs. -- Kernighan


   
  
  [EMAIL PROTECTED]
  
  ys.com   To:   [EMAIL PROTECTED] 
   
  Sent by: cc: 
  
  [EMAIL PROTECTED] Subject:  Re: Import Problem   
   
   
  
   
  
  03/03/2003 02:14 
  
  PM   
  
  Please respond to
  
  ORACLE-L 
  
   
  
   
  




Scott,

Try using screen.  It is a piece of software using virtual tty 's.

I began using it in 1994 to avoid just such problems.

It gives you some unique capabilities.  Start a process from
one client,  goto another client, detach and re-attach there.

eg.  start a job at home in a terminal window, goto work, and
attach the screen there.

And since it is running on the server itself, losing the network
connection, your PC crashing, etc, does not interrupt your job.

It is installed by default on some versions of Linux.

http://www.gnu.org/directory/GNU/screen.html

HTH

Jared






Scott Canaan [EMAIL PROTECTED]
Sent by: [EMAIL PROTECTED]
 03/03/2003 09:08 AM
 Please respond to ORACLE-L


To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED]
cc:
Subject:Import Problem


I ran into a problem yesterday afternoon.  I had exported a
production database, via a full database export, and ftp'd it to another
machine to import it there and make that the new production machine.  It
was a long import (about 8 hours) and about 2/3 through it, my network
connection was dropped.  I was running it in a ssh shell.  When the
connection disappeared, the import died.  Since I had to get the job
done by morning, I chose to drop the database, rebuild it, then
re-import.  That worked.
What I am wondering is:  Is there a way to resume an import, once it
has been interrupted?  I have been looking in metalink and on the net
and haven't found anything that says how to do it.  I tried technet, but
it was way too slow.  Any thoughts would be greatly appreciated.

Thank you,

--
Scott Canaan ([EMAIL PROTECTED])
(585) 475-7886
Life is like a sewer, what you get out of it depends on what you put
into it. - Tom Lehrer.


--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Scott Canaan
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author:
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list

RE: Import Problem

2003-03-03 Thread Richard Ji
For GUI, you can use VNC.  Or screen utility.  Both are
freely avaible.

Or script it and nohup the job on Unix.

Richard Ji

-Original Message-
Sent: Monday, March 03, 2003 9:09 AM
To: Multiple recipients of list ORACLE-L


I ran into a problem yesterday afternoon.  I had exported a
production database, via a full database export, and ftp'd it to another
machine to import it there and make that the new production machine.  It
was a long import (about 8 hours) and about 2/3 through it, my network
connection was dropped.  I was running it in a ssh shell.  When the
connection disappeared, the import died.  Since I had to get the job
done by morning, I chose to drop the database, rebuild it, then
re-import.  That worked.
What I am wondering is:  Is there a way to resume an import, once it
has been interrupted?  I have been looking in metalink and on the net
and haven't found anything that says how to do it.  I tried technet, but
it was way too slow.  Any thoughts would be greatly appreciated.

Thank you,

--
Scott Canaan ([EMAIL PROTECTED])
(585) 475-7886
Life is like a sewer, what you get out of it depends on what you put
into it. - Tom Lehrer.


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Scott Canaan
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Richard Ji
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Import Problem

2001-12-31 Thread orantdba

Hi Ken,

At first blush it doesn't look like the user kenneth owns any objects,


Were there particular users that owned the objects before?

If you want everything imported you could add full=yes and remove the
tables=* from your imp.dat.

Hope this helps,
John

[EMAIL PROTECTED] wrote:

I have created the .bmp file for import to my DB.  All I want to do is
import that data.  Here is the imp script:

file=h:\kjanusz\sqlldr\log\nic13.dmp
log=h:\kjanusz\sqlldr\log\nic13imp.log
commit=N
ignore=Y
analyze=N
indexes=N
constraints=N
grants=N
rows=Y
destroy=N
tables=(*)  

And here is the error I am getting:

C:\imp kenneth/kenjanzz@nic13 parfile='h:\kjanusz\sqlldr\ctl\nic13imp.dat'

Import: Release 8.1.7.0.0 - Production on Mon Dec 31 14:43:07 2001

(c) Copyright 2000 Oracle Corporation.  All rights reserved.


Connected to: Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
With the Partitioning option
JServer Release 8.1.7.0.0 - Production

Export file created by EXPORT:V08.01.07 via conventional path
import done in WE8ISO8859P1 character set and WE8ISO8859P1 NCHAR character
set
. importing KENNETH's objects into KENNETH
Import terminated successfully without warnings.

Yet when I select on the tables there is no data in them!  Any idea what the
problem is?  I haven't used Import before so I am new at this.  The Export
ran just fine.

Thanks, and have a Happy New Year,

Ken



-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: orantdba
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Import Problem

2001-12-31 Thread Mohammad Rafiq

Remove tables=(*) from your parfile or list all tables like
tables=tableA,tableb etc...


Reply-To: [EMAIL PROTECTED]
To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED]
Date: Mon, 31 Dec 2001 12:45:18 -0800

I have created the .bmp file for import to my DB.  All I want to do is
import that data.  Here is the imp script:

file=h:\kjanusz\sqlldr\log\nic13.dmp
log=h:\kjanusz\sqlldr\log\nic13imp.log
commit=N
ignore=Y
analyze=N
indexes=N
constraints=N
grants=N
rows=Y
destroy=N
tables=(*)

And here is the error I am getting:

C:\imp kenneth/kenjanzz@nic13 parfile='h:\kjanusz\sqlldr\ctl\nic13imp.dat'

Import: Release 8.1.7.0.0 - Production on Mon Dec 31 14:43:07 2001

(c) Copyright 2000 Oracle Corporation.  All rights reserved.


Connected to: Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
With the Partitioning option
JServer Release 8.1.7.0.0 - Production

Export file created by EXPORT:V08.01.07 via conventional path
import done in WE8ISO8859P1 character set and WE8ISO8859P1 NCHAR character
set
. importing KENNETH's objects into KENNETH
Import terminated successfully without warnings.

Yet when I select on the tables there is no data in them!  Any idea what the
problem is?  I haven't used Import before so I am new at this.  The Export
ran just fine.

Thanks, and have a Happy New Year,

Ken
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Ken Janusz
   INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


_
Chat with friends online, try MSN Messenger: http://messenger.msn.com

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Mohammad Rafiq
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).