069 / 58 80 436 10 info@dbaservices.de
ORA-01438 – value larger than specified precision allowed for this column

1.) Texte aus oerr unter Linux

01438, 00000, „value larger than specified precision allowed for this column“

// *Cause: When inserting or updating records, a numeric value was entered

//         that exceeded the precision defined for the column.

// *Action: Enter a value that complies with the numeric column’s precision,

//         or use the MODIFY option with the ALTER TABLE command to expand

//         the precision.

2.) Erklärung

Diese Meldung wird angezeigt, wenn ein numerischer Wert in ein numerisches Feld mit insert oder update eingefügt werden soll, dessen Definition (Länge bzw. Nachkommastellen) dies nicht zulässt. Das Feld wurde zu kurz angelegt bzw. die Zahl, welche eingefügt werden soll, ist zu lang.

3.) Lösungsvorschläge

1.  Vergrößerung des Feldes

Die Länge des Feldes ist zu vergrößern oder aber die Nachkommastellen sind zu erhöhen.

2. Anpassung der Eingabedaten

Die Eingabedaten sind bei dieser Lösung anzupassen. Die Zahl wird verkleinert, bzw. die Nachkommastellen werden abgeschnitten.

Haben Sie Fragen?

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

NEUSTE BEITRÄGE

DBVisit Single Instance Standby for RAC

A few months ago I got the exciting task to create a single instance standby for a RAC. Honestly,I was skeptical about whether it would run properly. Additionaly, the single instance should be usingfilesystem, while the Real Application Clusters is using ASM. Except...

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...

ORA-06550 – line %s, column %s:\n%s

1.) Texte aus oerr unter Linux 06550, 00000, „line %s, column %s:\n%s“ // *Cause: Usually a PL/SQL compilation error. // *Action:… 2.) Erklärung Es wurde versucht, einen invalid Block oder PL/SQL-Code auszuführen. Dabei ist ein Fehler bei der Kompilierung aufgetreten....

ORA-06502 – PL/SQL: numeric or value error%s

1.) Texte aus oerr unter Linux 06502, 00000, „PL/SQL: numeric or value error%s“ // *Cause: An arithmetic, numeric, string, conversion, or constraint error //        occurred. For example, this error occurs if an attempt is made to //         assign the value NULL to a...