Viewing 4 posts - 1 through 5 (of 5 total)
Andy/jpipes
Thanks for your help guys but have FINALLY figured this one out - the problem lay in the select scope identity.
Nasty, nasty bug that lay in our code for years...
July 24, 2003 at 5:08 am
This is the stored procedure that inserts the new entry into tableA
CREATE PROCEDURE [dbo].[mmap_sp_Insert_OutgoingMessages]
@inp_SendDateTime AS DATETIME = NULL,
@inp_Sender AS NVARCHAR(30) = NULL,
@inp_MessageText AS NTEXT = NULL,
@inp_Status AS INTEGER = NULL,
@inp_DateTimeSent...
July 23, 2003 at 3:58 am
Hi, the table is as in the first message 🙂
primary key is identity field MessageId, no other index. only getting 4-6 successful inserts to the table per minute, thought...
July 22, 2003 at 7:35 am
Only TableB has added indexes.
Primary key of TableA is the identity field MessageID, primark key of tableB is the identity field ID.
What would you suggest Andy/anybody?
July 22, 2003 at 2:13 am
Viewing 4 posts - 1 through 5 (of 5 total)