My PC with dedicated server goes into blue screen. After PC restart, i can't start dedicated server. It's crashed. Plz help to fix it.
Last log's before starting crash:
^/* use this code wnen items.ID field close to its upper limit
^
^start transaction;
^
^select (i1.id + 1) as free_id
^from items as i1
^left join items as i2 on (i1.id + 1) = i2.id
^where i2.id is null
^limit 1
^into itemID
^for update;
^
^use itemID for insert below
^*/
^
^INSERT INTO items(`ContainerID`, `ObjectTypeID`, `Quality`, `Quantity`, `Durability`, `CreatedDurability`)
^^VALUES(ContainerID, ItemTypeID, Quality, Quantity, Durability, CreatedDurability);
^SET itemID = LAST_INSERT_ID();
^if( LENGTH(IFNULL(pFeatureText, '')) > 0) then
^^SET customTextID =f_insertCustomText( pFeatureText);