This article is for upgrading from the QwickAccess Server (QAS) to Lynx server and you need to import the username/badge associations from the QAS database into the Lynx database.
Requirements:
- Users must have access to the QAS SQL database.
- The new Lynx database must already be created.
Steps:
-
Open SQL Server Management Studio (SSMS) or similar utility that allows you to connect to and run SQL queries.
-
Connect to both the old QAS database and the new Lynx database.
-
Select the Lynx database.
-
Create a new query.
-
Use the following query to import the records from the QAS database into the Lynx database:
INSERT INTO [Lynx].[dbo].[ProxCardUsers] (BitCount, IsDisabled, CardID, LogOnTo, PIN, TimeStampUtc, Username) SELECT BitCount, 0, SerialNumber, LogOnTo, PIN, TimeStamp, Username FROM [QADB].[dbo].[ProxCards]- Note: Update "QADB" on the final line with the name of your QwickAccess database.
-
Run the query.
