A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  special characters  sybase-tech-blog


Category: ASE: Functions: Security Functions

show_sec_services()

The security function show_sec_services() returns the active security services for the current session.

Syntax of the Security Function show_sec_services()

    show_sec_services()
    
All defined security services can be retrieved from the system table syssecmechs using a simple query.

    select * from master..syssecmechs

Example for the Security Function show_sec_services()

    select show_sec_services()
go
-----
NULL

If there is no actice security service in the current session, NULL is returned.

See also:

ASE T-SQL - Aggregate Functions,
get_appcontext(),
is_sec_service_on(),
list_appcontext(),
rm_appcontext(),
Security Functions,
set_appcontext().