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

Home -> Community -> Usenet -> c.d.o.server -> Re: any ideas on why this pice of code dosnt work??

Re: any ideas on why this pice of code dosnt work??

From: Sybrand Bakker <postbus_at_sybrandb.demon.nl>
Date: Tue, 08 Aug 2006 19:14:58 +0200
Message-ID: <nihhd2tlib1vmlip1u2aae0h0uvff57hls@4ax.com>


On 8 Aug 2006 09:47:39 -0700, "Vinay Bhushan" <bhushanvinay_at_gmail.com> wrote:

>DECLARE
> v_userTabColumns INT;
>BEGIN
>
> SELECT COUNT(*) INTO v_userTabColumns
> FROM USER_TAB_COLUMNS
> WHERE TABLE_NAME ='T'
> AND COLUMN_NAME ='ABCD';
>
> IF v_userTabColumns >0 THEN
> DBMS_OUTPUT.PUT_LINE ('<<ABCD>><<T>> already Exists');
> ELSE
> ALTER TABLE T ADD (ABCD VARCHAR2(50));
> DBMS_OUTPUT.PUT_LINE ('New column <<ABCD>> for <<t>>
>created.');
> END IF;
>
>END;
I responded to this in comp.databases.oracle.misc

PLEASE do not cross- and/or multipost as most people responding here monitor all groups.

--
Sybrand Bakker, Senior Oracle DBA
Received on Tue Aug 08 2006 - 12:14:58 CDT

Original text of this message

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