In sql, will an insert performance differ based on how many records are in the table? i know that the update statement might differ but what about inserts?
for example would the insert statement in a table with 10 million records be the same as an insert statement in another table with the same schema but 1k records?
/*my schema*/
[id] [int] NOT NULL,
[type] [nvarchar](20) NOT NULL,
[relatedP] [int] NULL,
[relatedC] [int] NULL,
[eventdate] [DateTime] NOT NULL
/*no triggers and inserts as simple as*/
INSERT INTO myTable (id,type,relatedP,relatedC,eventdate) VALUES (@id,@type,@relatedP,@RelatedC,@date)