How can we help you today? How can we help you today?
jsreynolds1
Using 6.5.0.243, SQL 2012, latest SP/CU. The apply qualifying names chooses the wrong table. Look at the where clause after SQL Prompt applies changes... it should still be using table, precheckout. PREVIOUS: IF @ErrCount = 0 BEGIN INSERT INTO Checkout (CheckoutDate, EmpStoreNum, EmpLastName, EmpFirstName, EmpPersonID, EmpPosition, StoreNum, Period, TransferredTips, NonCashTips, GiftCards, Checks, CashDue, TipsharePaid, FoodSales, TotalReceipts, ServiceCharge, TipshareSalesPercent, LogonID ) SELECT CheckoutDate, EmpStoreNum, EmpLastName, EmpFirstName, EmpPersonID, EmpPosition, StoreNum, Period, TransferredTips, NonCashTips, GiftCards, Checks, CashDue, TipsharePaid, FoodSales, TotalReceipts, ServiceCharge, TipshareSalesPercent, LogonID FROM preCheckout WHERE StoreNum = @StoreNum AND CheckoutDate = @Date AND Period = @Period; SET @ErrCount = @@ERROR; END; AFTER QUALIFY OBJECT NAMES: IF @ErrCount = 0 BEGIN INSERT INTO Checkout (CheckoutDate, EmpStoreNum, EmpLastName, EmpFirstName, EmpPersonID, EmpPosition, StoreNum, Period, TransferredTips, NonCashTips, GiftCards, Checks, CashDue, TipsharePaid, FoodSales, TotalReceipts, ServiceCharge, TipshareSalesPercent, LogonID ) SELECT preCheckout.CheckoutDate, preCheckout.EmpStoreNum, preCheckout.EmpLastName, preCheckout.EmpFirstName, preCheckout.EmpPersonID, preCheckout.EmpPosition, preCheckout.StoreNum, preCheckout.Period, preCheckout.TransferredTips, preCheckout.NonCashTips, preCheckout.GiftCards, preCheckout.Checks, preCheckout.CashDue, preCheckout.TipsharePaid, preCheckout.FoodSales, preCheckout.TotalReceipts, preCheckout.ServiceCharge, preCheckout.TipshareSalesPercent, preCheckout.LogonID FROM preCheckout WHERE Checkout.StoreNum = @StoreNum AND Checkout.CheckoutDate = @Date AND Checkout.Period = @Period; SET @ErrCount = @@ERROR; END; / comments
Using 6.5.0.243, SQL 2012, latest SP/CU. The apply qualifying names chooses the wrong table. Look at the where clause after SQL Prompt applies changes... it should still be using table, precheckout...
0 votes
Aaron, Here are two screenshots of the latest Avast software scan log (real-time protection) which was preventing me from installing. Hopefully this might help? Picture1 Picture2 / comments
Aaron, Here are two screenshots of the latest Avast software scan log (real-time protection) which was preventing me from installing. Hopefully this might help?Picture1Picture2
0 votes
I can confirm that running repair on the aforementioned items seems to do the trick. Something fouled up my installation from the last SQL Toolbelt upgrade I performed. Now back to normal. / comments
I can confirm that running repair on the aforementioned items seems to do the trick. Something fouled up my installation from the last SQL Toolbelt upgrade I performed. Now back to normal.
0 votes