1 05/27/86 del_scope, ds
2
3 Syntax: ds table_name1 permit_ops1 prevent_ops1 ... table_nameN
4 permit_opsN prevent_opsN
5
6
7 Syntax as an active request: ds table_name1 permit_ops1 prevent_ops1
8 ...table_nameN permit_opsN prevent_opsN
9
10
11 Function: deletes all or a portion of the scope of access
12 declared by a previous set_scope. As an active request returns
13 true if the scope could be deleted, false if it couldn't.
14
15
16 Arguments:
17 table_nameI
18 the name of a non-temporary table for which all or a portion
19 of the scope is to be deleted. If table_name1 is a *, then no
20 other arguments should be specified, and all of the current
21 access scope is deleted.
22 permit_opsI
23 string of currently permitted operation codes to be deleted
24 for table_nameI.
25 prevent_opsI
26 string of currently prevented operation codes to be deleted
27 for table_nameI.
28
29
30 Notes:
31 Operation codes are: "r" retrieve, "m" modify, "d" delete,
32 "s" store, and "n" null.