PL/SQL "SQL Command not properly ended" error - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:27:50Z http://stackoverflow.com/feeds/question/872266 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/872266/pl-sql-sql-command-not-properly-ended-error 0 PL/SQL "SQL Command not properly ended" error ETD 2009-05-16T11:47:33Z 2009-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 &gt; 1; INSERT INTO temp_table ( SELECT * FROM table_y where x &gt; 1; ) </code></pre> http://stackoverflow.com/questions/872266/pl-sql-sql-command-not-properly-ended-error/872270#872270 7 Answer by Greg Ogle for PL/SQL "SQL Command not properly ended" error Greg Ogle 2009-05-16T11:49:57Z 2009-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#874068 2 Answer by Walter Mitty for PL/SQL "SQL Command not properly ended" error Walter Mitty 2009-05-17T07:13:24Z 2009-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#874560 0 Answer by Jordi Cabot for PL/SQL "SQL Command not properly ended" error Jordi Cabot 2009-05-17T12:53:33Z 2009-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#876418 0 Answer by Jeffrey Kemp for PL/SQL "SQL Command not properly ended" error Jeffrey Kemp 2009-05-18T05:54:10Z 2009-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 &gt; 1; / INSERT INTO temp_table SELECT * FROM table_y where x &gt; 1; / </code></pre>