Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

#ADDQUERY

This command executes a query in a certain langauge and is equal to Commands

...

Code Block
#CONFIG isSecurityAware true

 


#DEFINE

This command is used to define variables to reuse certain values. See also at Variables how to use a defined variable or at #IFDEF to see how to use defined variables within if-statements.

...

Code Block
languagejavascript
themeEclipse
linenumberstrue
/// query sharing off
#DOQUERYSHARING false
/// query sharing on
#DOQUERYSHARING true

 


#DOREWRITE

This command switches the rewriting (tries to optimize a query plan by switching, deleting, splitting or merging operators without changing the query's semantics) on or off.

...

Code Block
languagejavascript
themeEclipse
linenumberstrue
/// query rewrite off
#DOREWRITE false
/// query rewrite on
#DOREWRITE true

...


#DROPALLQUERIES

This command drops all installed queries. It does not remove andy sources or sinks, but you can use Commands or Commands for this.

...

Code Block
languagejavascript
themeEclipse
linenumberstrue
#LOGIN System manager

 


#LOGOUT

Logs the current used user out

...

Code Block
languagejavascript
themeEclipse
linenumberstrue
#QNAME Query1

#QPARAM

Some special processing could require query specific processing.This command can be used to set these parameters as key value pairs.

Code Block
#QPARAM key1 value1
#QPARAM key2 value2
#QPARAM key3 value3

#QPRIORITY

Set the priority of the next following query

...

Code Block
languagejavascript
themeEclipse
linenumberstrue
#RELOADFROMLOG

...


#RUNQUERY

This command installs a query and starts it immediately. See Commands for parameters, examples and details.

...

Code Block
languagejavascript
themeEclipse
linenumberstrue
#SLEEP 2000

...


#STARTQUERIES

This command starts all installed queries that are not running at the moment.

...

Code Block
languagejavascript
themeEclipse
linenumberstrue
#STARTQUERIES

...


#STARTSCHEDULER

This command starts the scheduling.Notice that the scheduling strongly influences the processing and should be carefully used. The scheduler is running by default. You can stop it by using Commands

...

Code Block
languagejavascript
themeEclipse
linenumberstrue
#STARTSCHEDULER

...


#STOPSCHEDULER

This command stops the scheduling.Notice that the scheduling strongly influences the processing and should be carefully used. The scheduler is running by default. You can start it by using Commands

...

Code Block
languagejavascript
themeEclipse
linenumberstrue
#STOPSCHEDULER

...


#TRANSCFG

This command sets the transformation configuration for following commands. The transformation configuration defines how a query is transformed into an executable plan. The transformation configuration that was set is used until another configuration is explicitly set.

...