069 / 58 80 436 10 info@dbaservices.de
ORA-02154 „a tablespace with the name ‚%s‘ is found“

a)    Texte aus oerr unter Linux
02154, 00000, „a tablespace with the name ‚%s‘ is found“
// *Cause:   An attempt to rename a tablespace to a new name failed because
//           the new name is already used by some other tablespace.
// *Action:  Retry with a different new name.

b) Erklärung
Dieser Fehler tritt auf, wenn beim Anlegen eines Tabelspaces ein bereits  vorhandener Tablespace Name verwendet wird.

c) Lösung
Überprüfen, welche tablespaces bereits existieren:
Select Name from v$tablespace.
Anhand der Ausgabe einen noch nicht verwendeten Tablespace Namen benutzen und das Statement erneut ausführen.

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