Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Macro name changed from html to html-bobswift during server to cloud migration processing.

...

For Windows installations, you can speed up MySQL performance by adding the following parameter to the appropriate MySQL.ini file:
 

Panel
Html bobswift
<pre>
innodb_flush_log_at_trx_commit=0
</pre>

For more information about this parameter, see the MySQL documentation:

...

To check the current value for maximum open cursors, issue the following sql*plus utility command:

Panel
Html bobswift
<pre>
show parameter open_cursors
</pre>

A listing similar to the following will display:

Panel
Html bobswift
<pre>
SQL> show parameter open_cursors;

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
open_cursors                         integer     1000
</pre>


Setting a New Value for open_cursors

You can temporarily set the open_cursors value with the following SQL:

Panel
Html bobswift
<pre>
alter system set open_cursors=1000
</pre>

To make a permanent change, you must set the open_cursors value in the initialization parameters file.
 

Note
titleNote

If you do not set open_cursors to 1000, you could receive the following error message during large imports:
 

Panel
Html bobswift
<pre>
ORA-01000: maximum open cursors exceeded
</pre>


Character Sets

Universal Controller does not stipulate a requirement for the Oracle database character set; for multilingual support, you can use the default Unicode character set of AL32UTF8.

...