empire Geschrieben 19. Mai 2003 Teilen Geschrieben 19. Mai 2003 Hallo Wie lösche ich eine Warteschlangentabelle? Ich hab ein Nutzer den ich löschen will, nur er meckert das er Tabelle xy nicht löschen kann. Es ist eine Oracale 8.1.6 Datenbank. Hab es auch schon als sys Nutzer probiert, nichts geht. Habt ihr einen Tip. gruss Zitieren Link zu diesem Kommentar Auf anderen Seiten teilen Mehr Optionen zum Teilen...
Olli_Master Geschrieben 19. Mai 2003 Teilen Geschrieben 19. Mai 2003 Die Oracle-Dokumentation sagt (leider nur auf Englisch): Oracle8i Supplied PL/SQL Packages Reference Table 5-2 DBMS_AQADM Package Subprograms CREATE_QUEUE_TABLE Procedure Creates a queue table for messages of a pre-defined type. ALTER_QUEUE_TABLE Procedure Alters an existing queue table. DROP_QUEUE_TABLE Procedure Drops an existing queue table. ---------- DROP_QUEUE_TABLE Procedure This procedure drops an existing queue table. All the queues in a queue table must be stopped and dropped before the queue table can be dropped. You must do this explicitly unless the force option is used, in which case this done automatically. Syntax DBMS_AQADM.DROP_QUEUE_TABLE ( queue_table IN VARCHAR2, force IN BOOLEAN DEFAULT FALSE, auto_commit IN BOOLEAN DEFAULT TRUE); Parameters Table 5-5 DROP_QUEUE_TABLE Procedure Parameters Parameter Description queue_table Name of a queue table to be dropped. force FALSE: The operation does not succeed if there are any queues in the table. This is the default. TRUE: All queues in the table are stopped and dropped automatically. auto_commit TRUE: Causes the current transaction, if any, to commit before the DROP_QUEUE_TABLE operation is carried out. The DROP_QUEUE_TABLE operation becomes persistent when the call returns. This is the default. FALSE: The operation is part of the current transaction and becomes persistent only when the caller enters a commit. Caution: This parameter has been deprecated. ---- Ich hoffe das hilft. Zitieren Link zu diesem Kommentar Auf anderen Seiten teilen Mehr Optionen zum Teilen...
Empfohlene Beiträge
Dein Kommentar
Du kannst jetzt schreiben und Dich später registrieren. Wenn Du ein Konto hast, melde Dich jetzt an, um unter Deinem Benutzernamen zu schreiben.