CLI cookbook: provisioning a VDB from a Timeflow bookmark
This topic describes how to create a Timeflow bookmark and use it to provision a single instance Oracle VDB using the Delphix Engine command-line interface.
You can create Timeflow bookmarks to give a semantically meaningful name to a Timeflow point (scn, location or timestamp within a Timeflow). You can then use the bookmarks you created to execute the following database operations:
-
Provision
-
Refresh
-
Export
-
Test file mappings
-
VDB Rewind
Prerequisites
You will need the following information:
-
The name of the Timeflow bookmark you want to create
-
The name of the VDB you want to create
-
The group in which to create the VDB
-
The Oracle database name
-
The Oracle database unique name
-
The Oracle database instance number
-
The Oracle database instance name
-
The source dSource or VDB from which you wish to provision
-
The SCN, or timestamp of the point you want to provision from. You can run these commands to get the list of snapshots or Timeflow ranges:
Copysnapshot list database=dexample
timeflow "dexample" timeflowRanges; commit -
The base mountpoint on the target server where VDB data should be mounted
-
The source repository (oracle install) in which to create the VDB. These can be listed with the
/repository list
command.
Creating the Timeflow bookmark
-
Execute the
timeflow bookmark create
command.Copydelphix> timeflow bookmark create
-
Set the Timeflow point to be Oracle Timeflow point.
Copydelphix timeflow bookmark create *> set timeflowPoint.type=OracleTimeflowPoint
-
Set the Timeflow point Timeflow and location
Copydelphix timeflow bookmark create *> set timeflowPoint.timeflow=dexample/default
delphix timeflow bookmark create *> set timeflowPoint.location=1945519455791 -
Set the name of the Timeflow bookmark
Copydelphix timeflow bookmark create *> set name=myTimeFlowBookmark
-
Commit the result
Copydelphix timeflow bookmark create *> commit
TIMEFLOW_BOOKMARK-1 -
Display the list of Timeflow bookmarks
Copydelphix> timeflow bookmark ls
Objects
NAME TAG TIMEFLOW
myTimeFlowBookmark - dexample/default
Operations
create
Provisioning from a Timeflow bookmark
-
Execute the
database provision
command.Copydelphix> database provision
-
Set
defaults
and provide container (VDB or dSource) that you will be provisioning fromCopydelphix database provision > defaults
delphix database provision defaults > set container=<VDB or dSource>delphix database provision defaults > commit -
Set the timeflowPointParameters type to be TimeflowBookmark.
Copydelphix database provision *> set timeflowPointParameters.type=TimeflowPointBookmark
-
Set the Timeflow bookmark.
Copydatabase provision *> set timeflowPointParameters.bookmark=myTimeFlowBookmark
-
Set the name and group for the new VDB.
Copydelphix database provision *> set container.name=vexample
delphix database provision *> set container.group="Untitled" -
Set the base mountpoint
Copydelphix database provision *> set source.mountBase=/mnt
-
Set the source config type to be single instance Oracle, and set the database name and database unique name.
Copydelphix database provision *> set sourceConfig.type=OracleSIConfig
delphix database provision *> set sourceConfig.databaseName=vexample
delphix database provision *> set sourceConfig.uniqueName=vexample123 -
Set the instance name and number.
Copydelphix database provision *> edit sourceConfig.instance
delphix database provision sourceConfig.instance *> set instanceNumber=1
delphix database provision sourceConfig.instance *> set instanceName=vexample
delphix database provision sourceConfig.instance *> back -
Set the target repository.
Copydelphix database provision *> set sourceConfig.repository=env/'/opt/oracle'
-
Commit the result.
Copydelphix database provision *> commit