Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

oracle compile schema

-- Compiles all objects of a schema
BEGIN
	-- compile_all: true compiles all, false compiles invalid objects only
	DBMS_UTILITY.compile_schema(schema => 'My_SCHEMA', compile_all => true);
END;
 
PREVIOUS NEXT
Tagged: #oracle #compile #schema
ADD COMMENT
Topic
Name
8+1 =