Updating EIBO Barcode Values in SSMS
Updating EIBO Barcode Values in SSMS
This document defines the process and queries used to update locked Barcodes of Expired events in EIBO using SSMS.
Login to .204
Create a new query.
Copy and Paste the following Query.
DECLARE @TicketGroups TABLE(TicketGroupID int)
DECLARE @Production int = /*ProductionID*/ 123456 /*Here*/
INSERT INTO @TicketGroups
SELECT DISTINCT
tg.TicketGroupID
FROM TicketGroup tg
LEFT JOIN Ticket t
ON tg.TicketGroupID = t.TicketGroupID
WHERE
tg.ProductionID = @Production AND
t.OriginalBarcode IS NOT NULL AND
tg.ShareTypeID != 3
UPDATE Ticket
SET OriginalBarcode = NULL
WHERE TicketGroupID in (SELECT * FROM @TicketGroups)
DELETE FROM @TicketGroups
5. Run the Query
, multiple selections available,
Related content
Missing Barcodes
Missing Barcodes
More like this
Updating ProductionIDs in EiboxOffice
Updating ProductionIDs in EiboxOffice
More like this
eiBo Unhandled Exception
eiBo Unhandled Exception
Read with this
Can't Sign In (Error message "... is denied") EiBO
Can't Sign In (Error message "... is denied") EiBO
Read with this
dbo.SportingKansasCityPerformance
dbo.SportingKansasCityPerformance
More like this