Skip Headers
Oracle® TimesTen In-Memory Database Reference
Release 11.2.1

Part Number E13069-03
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

ttXlaBookmarkCreate

Description

Creates the specified bookmark.

Required privilege

This procedure requires the XLA privilege.

Syntax

ttXlaBookmarkCreate('bookmark', 'replicated')

Parameters

ttXlaBookmarkCreate has the parameter:

Parameter Type Description
Parameter Type Description
bookmark TT_CHAR (31) NOT NULL The name of the bookmark to be created.
replicated BINARY(1) 0x00 or null (equivalent) for non-replicated bookmarks (default setting);

0x01 for replicated bookmarks.

If null, non-replicated bookmarks are used.


Result set

ttXlaBookmarkCreate returns no results.

Example

For non-replicated bookmark, execute the following:

Command > call ttXlaBookmarkCreate(mybookmark);

or

Command> call ttxlabookmarkcreate('mybkmk2',0x00);

For a replicated bookmark, execute the following:

Command > call ttXlaBookmarkCreate(mybookmark, 0x01);

For more details on XLA bookmarks, including replicated XLA bookmarks, see "About XLA bookmarks" in the Oracle TimesTen In-Memory Database C Developer's Guide.

See also


ttXlaSubscribe
ttXlaUnsubscribe
ttXlaBookmarkDelete