Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Conditional Table Creation

Re: Conditional Table Creation

From: Jerry Gitomer <jgitomer_at_p3.net>
Date: 1997/09/27
Message-ID: <342C8A7B.5C0@p3.net>#1/1

To conditionally create tables in Oracle use PL/SQL. Based on the example you use you will have no trouble picking up the syntax of PL/SQL. Jerry

mbarbieri_at_atrco.com wrote:
>
> In Transact SQL, I can conditionally create tables using the following
> script:
>
> if object_id('footable') is null
> create table footable ( a int, b int null )
> else
> alter table footable add b int null
> go
>
> Is there any way in Oracle to use conditional statements to perform
> different actions under different circumstances?
>
> Mark Barbieri
> mbarbieri_at_atrco.com
>
> -------------------==== Posted via Deja News ====-----------------------
> http://www.dejanews.com/ Search, Read, Post to Usenet
Received on Sat Sep 27 1997 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US