2020 Nov 17 7:05 PM
Hello,
I successfully installed the NPL system, but I cannot deactivate ASE Audit
I followed the instructions below (from the concise guide):
su -l sybnpl
isql -Usapsa -X -SNPL
sp_configure 'auditing', 0
go
And then I get:
Msg 10331, Level 14, State 2:
Server 'NPL', Procedure 'sp_configure', Line 1310:
Permission denied, database master, owner dbo. You need the following
permission(s) to run this command: MANAGE SECURITY CONFIGURATION.
(return status = 1)
Questions :
1) how can i authorize sapsa the correct permission ?
2) should i use another user instead of sapsa ?
Thanks in advance,
Kr
Eric.
2020 Nov 17 7:30 PM
I solved it thanks to a blog (special thanks to maruskin)
The command below has to be launched with sapsso , not with sapsa
But when I launched the command with sapsso I received another error :
The current 'max memory' value '736443', is not sufficient to change the
parameter 'auditing' to '0'. 'max memory' should be greater than 'total logical
memory' '736621' required for the configuration.
So deactivating ASE audit has to be done in 2 steps:
1) with sapsa, extend memory:
isql -Usapsa -X -SNPL
sp_configure 'max
memory',740621
go
quit
2) and then with sapsso:
isql -Usapsso -X -SNPL
sp_configure 'auditing', 0
go
quit
It worked fine for me (without reboot between the 2 steps).
Thanks
2020 Dec 08 7:09 PM
Thanks, Eric. Can you please add a link to this blog post of Maruskin, since I am not familiar with it?
I will update the docu accordingly. Would be nice to link to the blog post - both for assistance, and attribution.
Thanks and best wishes,
Julie.