Skip Headers
Oracle® Secure Enterprise Search Administration API Guide
11g Release 2 (11.2.1)

Part Number E17595-04
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
PDF · Mobi · ePub

export universal_type

Returns the XML description of an object.

See Also

export creatable_type

Syntax

export universal_type [--OUTPUT_FILE=output_file]

or

export universal_type [-o output_file]

Parameters

universal_type

A universal type, as described in "Universal Objects".

output_file

Name of a file in which the exported XML document is stored. You can specify a simple file name, a relative path, or a fully qualified path. When executing on multiple instances, the export command creates a separate file for each one and appends the host name and port number to the base name.

Example

This example displays an XML document for a crawlerSettings object:

SES>export crawlerSettings
 
<?xml version="1.0" encoding="UTF-8"?>
<search:config productVersion="11.2.1.0.0" xmlns:search="http://xmlns.oracle.com/search">
   <search:crawlerSettings>
      <search:numThreads>5</search:numThreads>
      <search:numProcessors>3</search:numProcessors>
      <search:crawlDepth haslimit="">
         <search:limit>2</search:limit>
      </search:crawlDepth>
      <search:languageDetection enabled=""/>
      <search:defaultLanguage>en</search:defaultLanguage>
      <search:crawlTimeout>30</search:crawlTimeout>
      <search:maxDocumentSize>10</search:maxDocumentSize>
      <search:defaultCharSet>8859_1</search:defaultCharSet>
      <search:cacheDirectory>
         /home/oracle/dbs/ses111/cache/
      </search:cacheDirectory>
      <search:preserveDocumentCache enabled=""/>
      <search:servicePipeline enabled="">
         <search:pipelineName>Default pipeline</search:pipelineName>
      </search:servicePipeline>
      <search:verboseLogging enabled=""/>
      <search:logDirectory>/home/oracle/dbs/ses111/log/</search:logDirectory>
      <search:logLanguage>en-US</search:logLanguage>
   </search:crawlerSettings>
</search:config>