chachiksin
New Member
Recently I inherited a new ASP web application that merely allows customers to pay their outstanding invoices online. The application was poorly designed and did not have a payment history table. The entire payments table was deleted by the web service that transports the payment records to the accounting system of record.I just created a simple trigger on the Payments table that simply copies the data from the Payments table into a Payment_Log table. Initially, the trigger just did a select * on inserted to copy the data. However, I just modified the trigger to insert the date of the payment into the Payment_Log table since one of our customers is having some issues that I need to debug. The new trigger is below. My question is that I have noticed that with this new version of the trigger, the rows are being inserted into the middle of the table (i.e. not at the end). Can someone explain why this is happening?\[code\]ALTER trigger [dbo].[PaymentHistory] on [dbo].[Payments]for insert asDeclare @InvoiceNo nvarchar(255), @CustomerName nvarchar(255), @PaymentAmount float, @PaymentRefNumber nvarchar(255), @BulkPaid bit, @PaymentType nvarchar(255), @PaymentDate datetimeSelect @InvoiceNo = InvoiceNo, @CustomerName = CustomerName, @PaymentAmount = PaymentAmount, @PaymentRefNumber = PaymentRefNumber, @BulkPaid = BulkPaid, @PaymentType = PaymentTypefrom insertedSet @PaymentDate = GETDATE()Insert into Payment_Log values (@InvoiceNo, @CustomerName, @PaymentAmount, @PaymentRefNumber, @BulkPaid, @PaymentType, @PaymentDate)\[/code\]Below is a screenshot of SQL Server Management Studio that shows the rows being inserted into the middle of the table data. Thanks in advance for the help guys.
