SQL Error [933] [42000]: ORA-00933: SQL command not properly ended

5.8k Views Asked by At

I have a problem with some SQL queries in Oracle and I don't understand why, maybe you could help me.

When I try to call two simple queries, one after another, I constantly receive this error:

ORA-00933: SQL command not properly ended

When I said two simple queries, I mean, for example (of course, the tables were already created, I am not trying to drop not exist tables):

DROP TABLE Table1;
DROP TABLE Table2;

But if I run the queries individually, it works, does anyone know why? I can't see why they are not properly ended.

Thank you so much!

2

There are 2 best solutions below

0
On BEST ANSWER

Littlefoot got it right.Click third button on left pane or keyboard short cut is ALT+X

enter image description here

0
On

If you are running the command in an application other than SQL Dev, you will easily get the error: "ORA-00933: SQL command not properly ended", my advice is to remove the ";" for the code to work properly, Below is an example

private void ExcuteOracleCommand(string[] sqlFiles, OracleTransaction transaction, List<string> commands)
    {
        try
        {
            using (transaction = connection.BeginTransaction())
            {
                if (dbManager.GetState() == ConnectionState.Open)
                {
                    foreach (string file in sqlFiles)
                    {
                        string fileName = Path.GetFileName(file);
                        string sqlScript = File.ReadAllText(file);

                        try
                        {
                            using (OracleCommand command = connection.CreateCommand())
                            {
                                command.CommandType = CommandType.Text;
                                command.Transaction = transaction;
                                commands = SplitString(sqlScript);
                                
                                if (commands.Count < 1)
                                {
                                    Utils.ReturnStatus("File: " + fileName + " execute failed", " No valid data", tb_stt);
                                }
                                else
                                {
                                    foreach (string commandText in commands)
                                    {
                                        command.CommandText = commandText.Trim().Replace(";", "");

                                        try
                                        {
                                            command.ExecuteNonQuery();
                                        }
                                        catch (OracleException ex)
                                        {
                                            Utils.ReturnStatus("File: " + fileName + " execute fail", ex.Message, tb_stt);
                                            transaction.Rollback();
                                            return;
                                        }
                                    }

                                    Utils.ReturnStatus("Transaction committed. File: " + fileName + " executed successfully", "", tb_stt);
                                } 
                            }
                        }
                        catch (OracleException ex)
                        {
                            string errorMessage = $"Oracle error occurred: {ex.Message}\nStackTrace: {ex.StackTrace}";
                            Utils.ReturnStatus("File: " + fileName + " execute failed", errorMessage, tb_stt);
                        }
                        catch (Exception ex)
                        {
                            Utils.ReturnStatus("File: " + fileName + " execute failed", ex.Message, tb_stt);
                        }
                    }

                    transaction.Commit();
                }
            }
        }
        catch (Exception ex)
        {
            Utils.ReturnStatus("Error occurred", ex.Message, tb_stt);
        }
        finally
        {
            transaction?.Dispose();
            dbManager.CloseConnection();
        }
    }

here, I have removed ";" for it to work, otherwise it will make the same error as you, even though it is syntactically correct