ALTER MAPPING
-Beispiele
ALTER MAPPING FROM_RT
USING PLUGIN SRP IN "rt"
FROM USER U1 TO USER U3;
ALTER MAPPING
-BeispieleALTER MAPPING FROM_RT
USING PLUGIN SRP IN "rt"
FROM USER U1 TO USER U3;
CREATE OR ALTER MAPPING
Erstellen eines neuen oder Ändern eines bestehenden Mappings eines Sicherheitsobjekts
DSQL
CREATE OR ALTER [GLOBAL] MAPPING name USING { PLUGIN plugin_name [IN database] | ANY PLUGIN [IN database | SERVERWIDE] | MAPPING [IN database] | '*' [IN database] } FROM {ANY type | type from_name} TO {USER | ROLE} [to_name]
Einzelheiten zu den Optionen finden Sie unter [fblangref40-security-mapping-create-de].
Die Anweisung CREATE OR ALTER MAPPING
erstellt eine neue oder modifiziert eine vorhandene Zuordnung.
Important
|
Globale und lokale Mappings gleichen Namens sind unterschiedliche Objekte. |
CREATE OR ALTER MAPPING
-BeispieleCREATE OR ALTER MAPPING FROM_RT
USING PLUGIN SRP IN "rt"
FROM USER U1 TO USER U4;
DROP MAPPING
Löschen (Entfernen) einer Zuordnung eines Sicherheitsobjekts
DSQL
DROP [GLOBAL] MAPPING name
Parameter | Beschreibung |
---|---|
name |
Name der Zuordnung |
Die DROP MAPPING
-Anweisung entfernt ein vorhandenes Mapping.Wenn GLOBAL
angegeben ist, wird eine globale Zuordnung entfernt.
Important
|
Globale und lokale Mappings gleichen Namens sind unterschiedliche Objekte. |
Die DROP MAPPING
-Anweisung kann ausgeführt werden durch:
Der Datenbankbesitzer – wenn die Zuordnung lokal ist
DROP MAPPING
-BeispieleDROP MAPPING FROM_RT;