+49 6102 86801 50 info@dbaservices.de
ORA-00936 – missing expression

1.) Texte aus oerr unter Linux

00936, 00000, „missing expression“

// *Cause:

// *Action

2.) Erklärung

Diese Meldung wird angezeigt, wenn ein Teil der Syntax fehlt. Fehlen z.B. bei einem Select-Statement die Spaltennamen (bzw. * für alle Spalten), so wird diese Meldung angezeigt.

Beispiel:

select from kunden;

Fehlt die FROM-Clause wird ebenso die Meldung angezeigt.

3.) Lösungsvorschläge

1. Syntax prüfen – Spalten

Es ist zu prüfen, ob bei dem Select-Statement (oder bei einem anderen Statement) die Spaltennamen oder andere Bestandteile fehlen.

2. Syntax prüfen – FROM-Clause

Es ist zu prüfen, ob bei dem Select-Statement die FROM-Clause fehlt.

Haben Sie Fragen?

(erforderlich)
Dieses Feld dient zur Validierung und sollte nicht verändert werden.

NEUSTE BEITRÄGE

ORA-29278 – SMTP transient error: %s

1.) Texte aus oerr unter Linux29278, 00000, „SMTP transient error: %s“// *Cause: A SMTP transient error occurred.// *Action: Correct the error and retry the SMTP operation.2.) ErklärungMit dem Package UTL_SMTP wurde versucht, E-Mails aus der Datenbank heraus zu...

ORA-0165

a)    Texte aus oerr unter Linux 01653, 00000, „unable to extend table %s.%s by %s in tablespace %s“// *Cause:  Failed to allocate an extent of the required number of blocks for//          a table segment in the tablespace indicated.// *Action: Use ALTER TABLESPACE...

ORA-39070 Unable to open the log file

1.) Texte aus oerr unter Linux 39070, 00000, „Unable to open the log file.“// *Cause:  Errors were detecting while opening the log file.  Subsequent//          messages will detail the problems.// *Action: Fix the problems outlined in the secondary messages. 2.)...

ORA-01549 tablespace not empty, use INCLUDING CONTENTS option

1.) Texte aus oerr unter Linux 01549, 00000, „tablespace not empty, use INCLUDING CONTENTS option“// *Cause: Tried to drop a non-empty tablespace// *Action: To drop all the objects in the tablespace, use the INCLUDING//         CONTENTS option 2.) Erklärung Es wurde...