sa_nchar_terms system procedure

Breaks an NCHAR string into terms and returns each term as a row along with its position.

Syntax
sa_nchar_terms( 'char-string' [, 'text-config-name' [, 'owner' ] ]  ]  
)
Arguments
  • char-string   The NCHAR string you are parsing.

  • text-config-name   The text configuration object to apply when processing the string. The default is 'default_nchar'.

  • owner   The owner of the specified text configuration object. The default is DBA.

Remarks

You can use this system procedure to find out how a string is interpreted when the settings for a text configuration object are applied. This can be helpful when you want to know what terms would be dropped during indexing or from a query string.

Permissions

None

Side effects

None

See also
Example

The syntax for this system procedure is similar to the sa_char_terms system procedure. See the Example section in sa_char_terms system procedure.