Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: As or Is
On Fri, 10 Nov 2000, Mohan, Ross wrote:
> Jared!!
>
> How incredibly irresponsible of you to post such a script on the list!
>
> Don't you know there are newbie's here that don't realize that if you
> translate
> your script into a munitions-creation program and run it, somebody could get
> hurt?
>
> Oh My God!
>
Don't try this at home kids.
Jared
>
> On Thu, 9 Nov 2000, Ajay K wrote:
>
> > Hi Oracle Pundits ,
> > a very basic question ,
> > what is difference in , create or replace procedure xyz AS ..
> > and create or replace procedure xyz IS ..
> > how does AS or IS affects .
> >
>
> The only difference I am aware of is that each word is spelled
> differently. This can be proven with the following korn shell script:
>
>
> ------------------------------------
>
> #!/usr/bin/ksh
>
> for word in Is as
> do
> expr='echo $(echo $( echo ${word} | tr "[A-Z]" "[a-z]" | sed -e
> "s/^.*\([ia]s\).*$/\1/" 2>/dev/null ) | sum)'
> eval $expr
> done
>
> ------------------------------------
Received on Mon Nov 13 2000 - 10:07:02 CST