Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


EXP-00097: Object type "string"."string" is not in a valid
state, type will not be exported

Answers were Sorted based on User's Feedback



EXP-00097: Object type "string"."string" is not in a valid state, type will not..

Answer / guest

Cause: The object type's status is invalid which may be
caused by a dependant type's modification (or removal)
without cascading the change.

Action: The type must be recompiled using ALTER TYPE COMPILE.

Please add more information about this Error

Is This Answer Correct ?    3 Yes 0 No

EXP-00097: Object type "string"."string" is not in a valid state, type will not..

Answer / mayur vora

1. Run following query:

select
'ALTER ' || OBJECT_TYPE || ' ' ||
OWNER || '.' || OBJECT_NAME || ' COMPILE;'
from
dba_objects
where
status = 'INVALID'
and
object_type in ('PACKAGE','FUNCTION','PROCEDURE','TABLE')



2. Now follow below block.

declare
cursor myCursor is select object_type, object_name
from SYS.USER_OBJECTS where status = 'INVALID'
order by 1, 2;
sqlString varchar2(100);
begin
for r1 in myCursor loop
begin
if r1.object_type = 'PACKAGE BODY' then
sqlString := 'alter PACKAGE '||r1.object_name||'
compile BODY';
elsif r1.object_type = 'TYPE BODY' then
sqlString := 'alter TYPE '||r1.object_name||'
compile BODY';
else
sqlString := 'alter '||r1.object_type||'
'||r1.object_name||' compile';
end if;
execute immediate sqlString;
dbms_output.put_line(r1.object_type||'
'||r1.object_name||' compiled successfully');
exception
when OTHERS then
dbms_output.put_line(SQLERRM||' on '||sqlString);
end;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle Errors Interview Questions

ORA-16711: the resource guard index is out of bounds

1 Answers  


TNS-01178: Trace Level is 0. Trace file/directory unchanged

1 Answers  


LPX-00112: element "~S" has multiple ID attributes

1 Answers  


ORA-13704: Invalid value "string" specified for parameter "string".

1 Answers  


ORA-06754: TLI Driver: unable to get local host address

1 Answers  


ORA-36648: (XSDUNION09) Concat dimension workspace object is already defined as UNIQUE.

1 Answers  


ORA-12730: invalid equivalence class in regular expression

1 Answers  


ORA-12911: permanent tablespace cannot be temporary tablespace

1 Answers  


ORA-02795: Request list is empty

1 Answers  


TNS-01057: Program name: string

1 Answers  


TNS-00144: PUMP_CONNECTIONS value in INTCHG.ORA is too large.

1 Answers  


TNS-00116: Pump failed during initial bequeath

1 Answers  


Categories