我正在尝试将数据插入队列。存储过程 fire_event 将用于此目的。每当调用此存储过程时,它应该将该数据插入队列中。下面是将从存储过程传递的查询和变量。有人可以告诉我如何使用这个存储过程在 SQL Server 的队列中插入数据。我想通过将其直接插入队列来替换插入表 event_type 的操作。谢谢
BEGIN
INSERT event_type
VALUES (@p_message_id,@p_event_type,@p_classifier,
@p_event_time,@p_correlation_id,@p_person_id,@p_channel_id,
@p_source_address_id,@p_agent_user,
@p_agent_channel_id,@p_device_os,@p_device_os_version,
@p_device_manufacturer,@p_device_model,@p_product_id,
@p_event_source,@p_event_version,
@p_node_id,@p_user_agent_string,@p_event_data)
END