views:

2399

answers:

2

I see Oracle procedures sometimes written with "AS", and sometimes with "IS" keyword.

CREATE OR REPLACE Procedure TESTUSER.KILLINSTANCE (INSTANCEID integer) **AS**
...

vs.

CREATE OR REPLACE Procedure TESTUSER.KILLINSTANCE (INSTANCEID integer) **IS**
...

Is there any difference between the two?


Edit: Apparently, there is no functional difference between the two, but some people follow a convention to use "AS" when the SP is part of a package and "IS" when it is not. Or the other way 'round. Meh.

+4  A: 

None whatsover. They are synonyms supplied to make your code more readable:

FUNCTION f IS ...

CREATE VIEW v AS SELECT ...

Tony Andrews
+5  A: 

One minor difference...

They are synonyms for packages and procedures, but not for cursors:

This works...

cursor test_cursor
is
select * from emp;

... but this doesn't:

cursor test_cursor
as
select * from emp;
Nick Pierpoint