|
Re: EXP-00003: no storage definition found for segment(25, 19) [message #245881 is a reply to message #245862] |
Tue, 19 June 2007 02:53 |
aciolac
Messages: 242 Registered: February 2006
|
Senior Member |
|
|
see if Your datafile with file_id 25 are exists and are online. Try to make
select * from your_table.
Name of your_table You can find from the select
select name
from sys.obj$
where obj# in(
select obj#
from sys.tab$
where file#=25
and block#=19
)
this select are correct in the case if your table are not IOT and not partitioned.
|
|
|
|
|
|
|
|
|