PL/SQL "SQL Command not properly ended" error - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T09:27:50Zhttp://stackoverflow.com/feeds/question/872266http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/872266/pl-sql-sql-command-not-properly-ended-error0PL/SQL "SQL Command not properly ended" errorETD2009-05-16T11:47:33Z2009-05-18T05:54:10Z
<p>I am currently working on developing some SQL scripts in PL/SQL Developer and I am getting an "SQL Command not properly ended" error that I am unsure how to solve. </p>
<p>The code I am using looks something like this</p>
<pre><code>CREATE TABLE temp_table as
SELECT * FROM table_x
INSERT INTO temp_table
SELECT * FROM table_y
</code></pre>
<p>If I execute the two pieces (create table and the insert) as separate pieces everything runs fine, i.e. select each code block and execute. However if I try to execute everything, select all code and execute, I get an error saying that "SQL Command not properly ended". </p>
<p>I don't mind dealing with this when I am dealing with very small tables but when I have a significant number of operations I need to execute sequentially and when each operation takes a long time to run I would like to be to execute the code and walk away. </p>
<p>Adding a semicolon raises a new error which is an "invalid character" error. </p>
<p>This is the code that raises the invalid character error. </p>
<pre><code>CREATE TABLE temp_table as
SELECT * FROM table_x where x > 1;
INSERT INTO temp_table
(
SELECT * FROM table_y where x > 1;
)
</code></pre>
http://stackoverflow.com/questions/872266/pl-sql-sql-command-not-properly-ended-error/872270#8722707Answer by Greg Ogle for PL/SQL "SQL Command not properly ended" errorGreg Ogle2009-05-16T11:49:57Z2009-05-16T11:49:57Z<p>Put a semicolon at the end of each statement.</p>
http://stackoverflow.com/questions/872266/pl-sql-sql-command-not-properly-ended-error/874068#8740682Answer by Walter Mitty for PL/SQL "SQL Command not properly ended" errorWalter Mitty2009-05-17T07:13:24Z2009-05-17T07:13:24Z<p>Try this:</p>
<pre><code>CREATE TABLE temp_table as
SELECT * FROM table_x;
INSERT INTO temp_table
SELECT * FROM table_y;
</code></pre>
<p>I think the parentheses were messing you up.</p>
http://stackoverflow.com/questions/872266/pl-sql-sql-command-not-properly-ended-error/874560#8745600Answer by Jordi Cabot for PL/SQL "SQL Command not properly ended" errorJordi Cabot2009-05-17T12:53:33Z2009-05-17T12:53:33Z<p>The parenthesis can be used to specify the columns on which you want to insert the data as in:</p>
<p>INSERT INTO temp_table ( col1,col2,...coln) SELECT ...</p>
<p>You get an error because instead of a list of columns, the parser finds a select expression between parenthesis</p>
http://stackoverflow.com/questions/872266/pl-sql-sql-command-not-properly-ended-error/876418#8764180Answer by Jeffrey Kemp for PL/SQL "SQL Command not properly ended" errorJeffrey Kemp2009-05-18T05:54:10Z2009-05-18T05:54:10Z<p>If you're running the script in one step in PL/SQL Developer, you may need to convert it to a "SQL*Plus" script - i.e. the semicolons are required to delimit the statement, then the / (forward slash) is required to run the statement, e.g.:</p>
<pre><code>CREATE TABLE temp_table as
SELECT * FROM table_x where x > 1;
/
INSERT INTO temp_table
SELECT * FROM table_y where x > 1;
/
</code></pre>