LOGON_AUTH(SAF) [message #113673] |
Fri, 20 April 2001 10:28 |
Dean Saunders
Messages: 11 Registered: April 2001
|
Junior Member |
|
|
Where exactly do I code the SAF built-in interface LOGON_AUTH(SAF)for OSDI Oracle8i 8.1.7? I try to code it in the OSDI parmlib where you define the database services and net8 services but it doesn't work there.
Thanks
Dean Saunders
|
|
|
Re: LOGON_AUTH(SAF) [message #113675 is a reply to message #113673] |
Wed, 25 April 2001 04:06 |
paul mansfield
Messages: 35 Registered: January 2001
|
Member |
|
|
: Where exactly do I code the SAF built-in interface LOGON_AUTH(SAF)for OSDI Oracle8i 8.1.7? I try to code it in the OSDI parmlib where you define the database services and net8 services but it doesn't work there.
: Thanks
: Dean Saunders
Dean,
how are you? Hope you enjoyed the conference.
The parmlib member where you defined the database services points to another parmlib member via PARM e.g
DEFINE SERVICE ORAB PROCEDURE(ORAORAB) TYPE(ORA8) -
DESCRIPTION('ORACLE DB V8.1.7 ODSI ORAB TEST') - MAXAS(2) -
PARM('ORACLE.V8R1M7.PARMLIB(O8PARM)')
It's this parmlib member that you want.
SERVER_LOADMOD(ORACLE)
MAX_SESSIONS(2000)
INIT_ADR_SPACES(2)
INIT_STACK_SIZE(131K)
LOGON_AUTH(SAF)
SMF_STAT_RECNO(199)
TRACE_DSNAME(ORAW.TRACE.&ORASESST..T&LYYMMDD..T&LHHMMSS)
|
|
|
Re: LOGON_AUTH(SAF) [message #113676 is a reply to message #113675] |
Wed, 25 April 2001 06:12 |
Dean Saunders
Messages: 11 Registered: April 2001
|
Junior Member |
|
|
: : Where exactly do I code the SAF built-in interface LOGON_AUTH(SAF)for OSDI Oracle8i 8.1.7? I try to code it in the OSDI parmlib where you define the database services and net8 services but it doesn't work there.
: : Thanks
: : Dean Saunders
: Dean,
: how are you? Hope you enjoyed the conference.
: The parmlib member where you defined the database services points to another parmlib member via PARM e.g
: DEFINE SERVICE ORAB PROCEDURE(ORAORAB) TYPE(ORA8) -
: DESCRIPTION('ORACLE DB V8.1.7 ODSI ORAB TEST') - MAXAS(2) -
: PARM('ORACLE.V8R1M7.PARMLIB(O8PARM)')
: It's this parmlib member that you want.
: SERVER_LOADMOD(ORACLE)
: MAX_SESSIONS(2000)
: INIT_ADR_SPACES(2)
: INIT_STACK_SIZE(131K)
: LOGON_AUTH(SAF)
: SMF_STAT_RECNO(199)
: TRACE_DSNAME(ORAW.TRACE.&ORASESST..T&LYYMMDD..T&LHHMMSS)
Thank You Paul, You're a life saver. I get
quicker response from the MVS/SIG bullentin
board than I do from Oracle Metalink Support.
Dean Saunders
|
|
|