Deleting tables via a SP
From: Robert Vabo <robert.vabo_at_gecko.no>
Date: Fri, 25 Aug 2000 12:31:44 GMT
Message-ID: <QGtp5.10129$541.1954386_at_juliett.dax.net>
Date: Fri, 25 Aug 2000 12:31:44 GMT
Message-ID: <QGtp5.10129$541.1954386_at_juliett.dax.net>
[Quoted] I want to use a stored procedure to delete a lot ov tables one table at a time.
[Quoted] In VB I wrote a component that returns a recordset containing the tables. I [Quoted] want to loop that rs, get tablenames (do some checks) and then call a sp to [Quoted] drop/delete the tables.
CREATE PROCEDURE spDelTempTables ( TableName IN varchar2 )
AS
BEGIN
DROP TABLE + TableName;
END;
Any help to get out there ??
-- Regards Robert Vabo Application developer Gecko Informasjonssystemer AS www.gecko.no robert.vabo_at_gecko.noReceived on Fri Aug 25 2000 - 14:31:44 CEST