Question : How to insert multiple rows in a table in SQL Server 2000

In SQL Server 2000 I'm an getting an error while trying to insert multiple rows into a table called outboundtriggerevent_file in a database called Cabinet. The query and error are below, what am I doing wrong?
 
insert into dbo.outboundtriggerevent_file(OutboundTriggerEventID,OBTrigger,PendingSignature,EventTypeToSend,NewDocumentStatus,Record_Version)
(SELECT '7','delete','NULL','T11','NULL','1'
UNION
SELECT '4','edit','N','T08','LA','2'
UNION
SELECT '3','edit','Y','T08','AU','2'
UNION
SELECT '6','insert','NULL','T01','NULL','1'
UNION
SELECT '5','manual','NULL','T08','NULL','2'
UNION
SELECT '8','move','NULL','T07','NULL','1'
UNION
SELECT '2','sign','N','T04','LA','2'
UNION
SELECT '1','sign','Y','T04','AU','2')

Server: Msg 229, Level 14, State 5, Line 1
INSERT permission denied on object 'OutboundTriggerEvent_file', database 'cabinet', owner 'dbo'.

Answer : How to insert multiple rows in a table in SQL Server 2000

And Remove the Single quotes for all the integer values
For Fields: OutboundTriggerEventID and Record_Version
Execute the below query and let me know any error:

insert into dbo.outboundtriggerevent_file(OutboundTriggerEventID,OBTrigger,PendingSignature,EventTypeToSend,NewDocumentStatus,Record_Version)
(SELECT 7,'delete',null,'T11',null,1
UNION
SELECT 4,'edit','N','T08','LA',2
UNION
SELECT 3,'edit','Y','T08','AU',2
UNION
SELECT 6,'insert',null,'T01',null,1
UNION
SELECT 5,'manual',null,'T08',null,2
UNION
SELECT 8,'move',null,'T07',null,1
UNION
SELECT 2,'sign','N','T04','LA',2
UNION
SELECT 1,'sign','Y','T04','AU',2)
Random Solutions  
 
programming4us programming4us