Cloudscape Properties,
Page 11 of 44


[top]
[prev]
[next]
Documentation Top
Global Index
Reference Manual
TOC Index
Grammar index
Developer's Guide
TOC Index
Tuning Cloudscape
TOC Index

cloudscape.database.fullAccessUsers

Function

One of the user authorization properties. Specifies a list of users to which full (read-write) access to a database is granted. The list consists of user names separated by commas. Do not put spaces after commas.

When set as a system property, specifies a list of users for which full access to all the databases in the system is granted.

See also cloudscape.database.readOnlyAccessUsers.

A malformed list of user names raises an exception. Do not specify a user both with this property and in cloudscape.database.readOnlyAccessUsers.

NOTE: User names, called authorization identifiers, follow the rules of SQL92Identifiers and can be delimited. Specifying a user name that does not follow these rules raises an exception.

For more information about user authorization, see “User Authorization” of the Cloudscape Developer’s Guide.

Syntax

-- database-level property
CALL PropertyInfo.setDatabaseProperty(
    'cloudscape.database.fullAccessUsers',
    'commaSeparatedlistOfUsers')

Example

-- database-level property
CALL PropertyInfo.setDatabaseProperty(
    'cloudscape.database.fullAccessUsers', 'dba,fred,peter')
--system-level property
cloudscape.database.fullAccessUsers=dba,fred,peter
-- publishing a database-wide property
CREATE PUBLICATION . . .
ADD TARGET DATABASE PROPERTY
cloudscape.database.fullAccessUsers=
    'dba,fred,peter'

Scope

database-wide (publishable)

system-wide

Dynamic or Static

Dynamic. Current connections are not affected, but all future connections are affected. For information about dynamic changes to properties, see “Dynamic or Static Changes to Properties”.

[top]
[prev]
[next]


Cloudscape Version 3.0
For technical support, go to: www.cloudscape.com and click Support.
Copyright © 1998 and 1999 Cloudscape, Inc. All rights reserved.