Home | Previous Page | Next Page   MQ DataBlade Module > MQ DataBlade Functions > MQCreateVtiRead() > 3 3 3

Example

3

Create a table called VtiReadTest using 3the default service name and policy name: 3

3
begin;
3EXECUTE FUNCTION MQCreateVtiRead('VtiReadTest');
3commit;
3

Insert a message into the queue: 3

3
INSERT INTO VtiReadTest(msg) values ('QMessage');
3

Read a message from the queue: 3

3
select * from VtiReadTest;
Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]