- Knowledge Base
- FIDO2/WebAuthn
-
General Support
-
Technical Guides
-
SurePassID Authentication Server
-
Authenticators ("Tokens")
-
Windows Logon Manager (WLM)
-
ADFS Adapter
-
SAML2 IdP
-
LDAP
-
Self Service Portal (SSP)
-
LDAP Gateway
-
FIDO2/WebAuthn
-
License Management
-
Third Party Integrations
-
Twilio
-
Announcements and Alerts
-
Office 365
-
SurePassID VLE
How to enable new table creation for the patch for our API (FIDO)server
You may get an error message when using the API server with the latest patch.
Use this SQL query to add needed permissions to allow the initial startup of the API server to create needed DB tables:
EXEC sp_addrolemember 'db_ddladmin', '{databaseUsername}'
In the above, put in the actual username that is being used to connect to the DB in the "{databaseUsername} section.
To remove the role assignment after the initial startup, use:
EXEC sp_droprolemember 'db_ddladmin', '{databaseUsername}'