I have ORACLE 8i running on Linux and NT. <br><br>I try to create a procedure including CREATE TABLE or CREATE INDEX statemants, they always fail, but the same CREATE TABLE or CREATE INDEX statements are running fine outside of the procedure or BEGIN...END.<br><br>Following is my sample code. It doesn't work.<br>CREATE PROCEDURE CreateTiesTable<br>IS<br>begin<br>CREATE TABLE TiesTable_New (<br> ID NUMBER(10),<br> TieStateID NUMBER(4) <br>);<br>END CreateTiesTable ;<br><br>So how can I create a table or index in a procedure? Does ORACLE support this?<br><br>Thanks very much your help in advance!<br><br>Mary<br>