SlideShare a Scribd company logo
User Group Informix
France
New Environment and Dynamic Setting in IDS 12.10
yoram.benchetrit@fr.ibm.com
Jeudi 12 Septembre 2013
User Group Informix
France
Agenda
 Legacy Engine Environment and Setting
 New Environment Management
 New Onconfig Dynamic Setting
 New Sysadmin API
 Example
User Group Informix
France
Legacy Engine Environment and Setting
 Environment variable
– INFORMIXDIR, ONCONFIG, INFORMIXSERVER, INFORMIXSQLHOSTS, PATH
 ONCONFIG file
– Static setting
– Dynamic setting
• Onmode -wf / -wm
– Deprecated parameter
User Group Informix
France
New Server Environment Management
 Ability for DBA to start database server reading the environment to use
from a file
 Ability to run Informix utility/binary without having to set environment in
the shell before
 Ability for DBA to start database server from a remote machine without
creating specific environment files and „‟wrappers‟
 Set environment reading a file during binary execution using new -FILE
option
– -FILE=/path_to_file_that_contains_env
 The format of the file is #$NAME VALUE
 Onconfig file can be used to set environment variables
User Group Informix
France
New Server Environment Management (cont)
 Supported binaries:
– oninit, onstat, onmode,oncheck, ontape,onclean,onload, onlog, onunload,
onparams,onspaces
 Values in –FILE option take precedence over values that are set in
local shell environment
 INFORMIXDIR environment variable is set based on binary path.
– If INFORMIXDIR is not set in the environment or is not set from the
environment file then the PATH to the binary is used
– binary assumed to be in subdirectory of INFORMIXDIR
User Group Informix
France
New Server Environment Management (cont)
 Environment Variable can be embedeed in onconfig file
– Syntax:
PARAMETER_NAME $ENVIRONMENT_VAR # comments
 Example:
$ cat IDS1210FC1.env
#$ONLINELOG1 /usr2/support/chunks/IDS1210FC1/online1.log
In ONCONFIG:
MSGPATH $ONLINELOGINST1
$ oninit -FILE=IDS1210FC1.env
 Environment variable must be set for any program that read onconfig file:
– Oninit, oncheck, onbar, ontape, onlog and archecker utilities
User Group Informix
France
New Server Environment Management - Example
 Environment File:
$ cat IDS1210FC1.env
#$INFORMIXSERVER sar12101shm
#$INFORMIXSQLHOSTS /usr2/support/products/sqlhosts
#$ONCONFIG onconfig.saroumane
 PATH Setting
$ echo $PATH
/usr2/support/products/IDS1210FC1B4/bin:/usr/local/bin:/bin:/usr/bin
 Binary execution
$ oninit -FILE=IDS1210FC1.env
$ onstat -FILE=IDS1210FC1.env –
IBM Informix Dynamic Server Version 12.10.FC1 -- On-Line -- Up 00:00:19 -- 149788 Kbytes
$ onmode -FILE=IDS1210FC1.env -ky
$ onstat -FILE=IDS1210FC1.env -
shared memory not initialized for INFORMIXSERVER 'sar12101shm'
User Group Informix
France
New Onconfig Dynamic Setting
 Generalize dynamic tuning for all parameters
 Onconfig parameter cleanup
 New onstat -g cfg command to manage onconfig parameter
 New SQL admin API command for onconfig dynamic setting
 New SQL admin API command for onconfig parameter export and
import
– Configuration snapshot can be exported to a file
– Configuration file can be imported to a running server
 Avoid to shutdown IDS when changing a configuration parameter
 Long term goal is IDS self-tuning
User Group Informix
France
Onconfig Parameters Cleanup
 Deprecated Parameters Removed
AFF_NPROCS
AFF_SPROCBUFFERS
DRNODEJDKVERSION
LOG_BACKUP_MODELRU_MAX_DIRTY
LRU_MIN_DIRTYLRUPOLICY
LRUSNOAGE
NUMAIOVPSNUMCPUVPS
OPCACHEMAXOPTICAL_LIB_PATH
RA_THRESHOLDSPINCNT
STAGEBLOB
 An unknown parameter in your config file will now produce this
message during startup
– attn: Ignoring unknown or deprecated config parameter (%s)
User Group Informix
France
Dynamic Setting Parameter
 More Parameters can be modified on the fly
BAR_ACT_LOG
BAR_BSALIB_PATH
BAR_DEBUG
BAR_HISTORY
BAR_IXBAR_PATH
BAR_MAX_BACKUP
DS_POOLSIZE
DUMPCORE
PC_POOLSIZE
RAS_LLOG_SPEED
RAS_PLOG_SPEED
SDS_ENABLE
SDS_FLOW_CONTROL
SMX_PING_INTERVAL
SMX_PING_RETRY
STMT_CACHE
STMT_CACHE_HITS
etc...
User Group Informix
France
Onstat -g cfg
 Onstat –g cfg / onstat –g cfg <param>
– Displays the current value of all, or given parameter
 Onstat –g cfg full
– Display full info of parameter (defaut, onconfig and current value + message)
 onstat -g cfg tunable
– Displays full info for all dynamically tunable parameters
 onstat -g cfg diff
– Displays full info for all parameters whose current value differs from that of the config file
 onstat -g cfg msg
– Displays any error or warning messages associated with parameters
User Group Informix
France
Example: onstat -g cfg
 $ onstat -g cfg
IBM Informix Dynamic Server Version 12.10.FC1 -- On-Line – Up
02:41:38 -- 149788 Kbytes
Configuration Parameter List
name current Value
ROOTNAME rootdbs
ROOTPATH /work//rootchunk
ROOTOFFSET 0
ROOTSIZE 200000
MIRROR 1
MIRRORPATH
MIRROROFFSET 0
DBSERVERNAME mors
SERVERNUM 43
MSGPATH /work/online.log
...
User Group Informix
France
Example: onstat -g cfg full <parameter>
 $ onstat -g cfg full MSGPATH
Configuration Parameter Info
id name type maxlen units rsvd tunable
10 MSGPATH CHAR 257 * *
default : /dev/tty
onconfig: $ONLINELOG1
current : /usr2/support/chunks/IDS1210FC1/online1.log
Description:
Use the MSGPATH configuration parameter to specify the full
pathname of the message-log file. The database server writes
status messages and diagnostic messages to this file during
operation.
User Group Informix
France
new SQL admin API commands
 modify config [persistent]
– EXECUTE FUNCTION task("modify config", "LTAPEDEV", "/dev/null");
• Modify onconfig parameter in memory
– EXECUTE FUNCTION task("modify config persistent", "LTXHWM", "75");
• Modify onconfig parameter in memory and in onconfig file
 reset config [all]
– Reset command synchronizes parameter value in memory with parameter onconfig
value as shown by onstat -g cfg full.
– EXECUTE FUNCTION task("reset config", "LTAPEDEV");
– EXECUTE FUNCTION task("reset config all");
User Group Informix
France
SQLAdmin API Onconfig Dynamic Setting - Example
 > onstat -g cfg full LTXEHWM
IBM Informix Dynamic Server Version 12.10.FC1 -- On-Line -- Up 03:13:07 – 149788 Kbytes
Configuration Parameter Info
id name type maxlen units rsvd tunable
25 LTXEHWM INT4 12 % * *
min/max : 1,100
default : 80
onconfig: 80
current : 80
> execute function task("modify config", "LTXEHWM", "70");
> onstat -g cfg full LTXEHWM
IBM Informix Dynamic Server Version 12.10.FC1 -- On-Line -- Up 03:17:36 – 149788 Kbytes
Configuration Parameter Info
id name type maxlen units rsvd tunable
25 LTXEHWM INT4 12 % * *
min/max : 1,100
default : 80
onconfig: 80
current : 70
User Group Informix
France
Export and Import of Configuration Parameters
 Export Configuration Parameters
– onmode –we <filename>
– EXECUTE FUNCTION task(“export config”, “filename”);
– All parameters are exported
– Template used: $INFORMIXDIR/etc/onconfig.std
 Import Configuration Parameters
– onmode –wi <filename>
– EXECUTE FUNCTION task(“import config”, “filename”);
– Only tunable parameters in the file are modifed – Others are ignored
– Convenient way to modify mutiple parameters with one command
User Group Informix
France
Thank you!

More Related Content

PDF
Ugif 09 2013
PDF
Ugif 09 2013 psm
PPTX
First Look Webcast: OneCore Storage SDK 3.6 Roll-out and Walkthrough
PPT
Ipmi Server Management
PDF
Presentation comparing server io consolidation solution with i scsi, infini...
PDF
Openstack v4 0
PPTX
Presentation power vm virtualization without limits
PPTX
Presentation power vm common 2012
Ugif 09 2013
Ugif 09 2013 psm
First Look Webcast: OneCore Storage SDK 3.6 Roll-out and Walkthrough
Ipmi Server Management
Presentation comparing server io consolidation solution with i scsi, infini...
Openstack v4 0
Presentation power vm virtualization without limits
Presentation power vm common 2012

What's hot (20)

ODP
BIOS, Linux and Firmware Test Suite in-between
PPTX
Presentation power vm editions and power systems virtualization - basic
PDF
Future of Power: Aix in Future - Jan Kristian Nielsen
PPT
Aix The Future of UNIX
PDF
Webinar gravado: Programando Microcontroladores ARM da Microchip usando MPLAB...
PDF
UEFI presentation
PPT
Hp Industry Standard Solutions For Microsoft Windows Server (96dpi)
PPTX
PCIe Gen 3.0 Presentation @ 4th FPGA Camp
PDF
Paravirtualized File Systems
PPT
Optimize Your It Environment With An Hp Blade System Solution
PPTX
Emc vmax3 technical deep workshop
PPTX
M. Rafaat_EMC_Presentation
PDF
Fordele ved POWER7 og AIX, IBM Power Event
PDF
How to Use the OSGi Service Framework in Real-Life Projects - Kai Hackbath, P...
PPT
HP Bladesystem Overview September 2009
PDF
Cisco MDS Main Session EMC World 2015
PDF
IP PCIe
PDF
Analyst Perspective - Next Generation Storage Networking for Next Generation ...
BIOS, Linux and Firmware Test Suite in-between
Presentation power vm editions and power systems virtualization - basic
Future of Power: Aix in Future - Jan Kristian Nielsen
Aix The Future of UNIX
Webinar gravado: Programando Microcontroladores ARM da Microchip usando MPLAB...
UEFI presentation
Hp Industry Standard Solutions For Microsoft Windows Server (96dpi)
PCIe Gen 3.0 Presentation @ 4th FPGA Camp
Paravirtualized File Systems
Optimize Your It Environment With An Hp Blade System Solution
Emc vmax3 technical deep workshop
M. Rafaat_EMC_Presentation
Fordele ved POWER7 og AIX, IBM Power Event
How to Use the OSGi Service Framework in Real-Life Projects - Kai Hackbath, P...
HP Bladesystem Overview September 2009
Cisco MDS Main Session EMC World 2015
IP PCIe
Analyst Perspective - Next Generation Storage Networking for Next Generation ...
Ad

Similar to Ugif 09 2013 new environment and dynamic setting in ids 12.10 (20)

PDF
Informix User Group France - 30/11/2010 - Fonctionalités IDS 11.7
PDF
UGIF 12 2010 - features11.70
PDF
IBM Informix Online Training.pdf
PDF
Mac OS X Snow Leopard & Informix IDS 11.5 + PHP5
PPTX
Ibm informix online training in chennai
PDF
Security best practices for informix
PPT
dokumen.tips_aix-presentation.ppt
PPT
16aug06.ppt
PDF
Client install
PPT
informix Embeddability and Autonomics
PDF
What's new in informix v11.70
PDF
Ibm tivoli storage manager for linux administrator's reference 6.1
PDF
Ugif 04 2011 déployer informix
PDF
Improve speed and performance of informix 11.xx part 2
PDF
commands v2.3.1
PPTX
Opmanager Workshop - Middle East
PDF
Ugif 10 2012 ppt0000002
PPTX
MySQL Tech Tour 2015 - Manage & Tune
PPTX
Free OpManager training_ Part 2-server monitoring
PPT
Leveraging Open Source to Manage SAN Performance
Informix User Group France - 30/11/2010 - Fonctionalités IDS 11.7
UGIF 12 2010 - features11.70
IBM Informix Online Training.pdf
Mac OS X Snow Leopard & Informix IDS 11.5 + PHP5
Ibm informix online training in chennai
Security best practices for informix
dokumen.tips_aix-presentation.ppt
16aug06.ppt
Client install
informix Embeddability and Autonomics
What's new in informix v11.70
Ibm tivoli storage manager for linux administrator's reference 6.1
Ugif 04 2011 déployer informix
Improve speed and performance of informix 11.xx part 2
commands v2.3.1
Opmanager Workshop - Middle East
Ugif 10 2012 ppt0000002
MySQL Tech Tour 2015 - Manage & Tune
Free OpManager training_ Part 2-server monitoring
Leveraging Open Source to Manage SAN Performance
Ad

More from UGIF (20)

PDF
UGIF 09 2013 Fy13 q3, corporate presentation the inflection point in the ap...
PDF
Ugif 09 2013 open source - session tech
PDF
Ugif 09 2013 open source
PDF
Ugif 09 2013 friug 201309 axional web studio
PDF
Ugif 10 2012 ppt0000001
PDF
Ugif 10 2012 informix pssc-benchmark -l.revel_oct2012
PDF
Ugif 10 2012 beauty ofifmxdiskstructs ugif
PDF
Ugif 10 2012 lycia2 introduction in 45 minutes
PDF
Ugif 10 2012 genero ugif october 3, 2012 ibm france, français
PDF
Ugif 10 2012 iiug paris-business-update
PDF
Ugif 12 2011-smart meters-11102011
PDF
Ugif 12 2011-informix iwa
PDF
Ugif 12 2011-ibm cap-seine
PDF
Ugif 12 2011-france ug12142011-tech_ts
PDF
Ugif 12 2011-four js primer presentation - new graphic charter - short versio...
PDF
Ugif 12 2011-discover informix keynote 2012
PDF
Ugif 04 2011 storage prov-pot_march_2011
PDF
Ugif 04 2011 informix notonlypointofsales-fr-001
PDF
Ugif 04 2011 informix fug-paris
PDF
Ugif 04 2011 ibm informix genero offering v12
UGIF 09 2013 Fy13 q3, corporate presentation the inflection point in the ap...
Ugif 09 2013 open source - session tech
Ugif 09 2013 open source
Ugif 09 2013 friug 201309 axional web studio
Ugif 10 2012 ppt0000001
Ugif 10 2012 informix pssc-benchmark -l.revel_oct2012
Ugif 10 2012 beauty ofifmxdiskstructs ugif
Ugif 10 2012 lycia2 introduction in 45 minutes
Ugif 10 2012 genero ugif october 3, 2012 ibm france, français
Ugif 10 2012 iiug paris-business-update
Ugif 12 2011-smart meters-11102011
Ugif 12 2011-informix iwa
Ugif 12 2011-ibm cap-seine
Ugif 12 2011-france ug12142011-tech_ts
Ugif 12 2011-four js primer presentation - new graphic charter - short versio...
Ugif 12 2011-discover informix keynote 2012
Ugif 04 2011 storage prov-pot_march_2011
Ugif 04 2011 informix notonlypointofsales-fr-001
Ugif 04 2011 informix fug-paris
Ugif 04 2011 ibm informix genero offering v12

Recently uploaded (20)

PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Spectral efficient network and resource selection model in 5G networks
PPT
Teaching material agriculture food technology
PDF
Approach and Philosophy of On baking technology
PPTX
Cloud computing and distributed systems.
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Big Data Technologies - Introduction.pptx
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Understanding_Digital_Forensics_Presentation.pptx
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Spectral efficient network and resource selection model in 5G networks
Teaching material agriculture food technology
Approach and Philosophy of On baking technology
Cloud computing and distributed systems.
MIND Revenue Release Quarter 2 2025 Press Release
“AI and Expert System Decision Support & Business Intelligence Systems”
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Big Data Technologies - Introduction.pptx
Review of recent advances in non-invasive hemoglobin estimation
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
Per capita expenditure prediction using model stacking based on satellite ima...
NewMind AI Weekly Chronicles - August'25 Week I
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Digital-Transformation-Roadmap-for-Companies.pptx
How UI/UX Design Impacts User Retention in Mobile Apps.pdf

Ugif 09 2013 new environment and dynamic setting in ids 12.10

  • 1. User Group Informix France New Environment and Dynamic Setting in IDS 12.10 yoram.benchetrit@fr.ibm.com Jeudi 12 Septembre 2013
  • 2. User Group Informix France Agenda  Legacy Engine Environment and Setting  New Environment Management  New Onconfig Dynamic Setting  New Sysadmin API  Example
  • 3. User Group Informix France Legacy Engine Environment and Setting  Environment variable – INFORMIXDIR, ONCONFIG, INFORMIXSERVER, INFORMIXSQLHOSTS, PATH  ONCONFIG file – Static setting – Dynamic setting • Onmode -wf / -wm – Deprecated parameter
  • 4. User Group Informix France New Server Environment Management  Ability for DBA to start database server reading the environment to use from a file  Ability to run Informix utility/binary without having to set environment in the shell before  Ability for DBA to start database server from a remote machine without creating specific environment files and „‟wrappers‟  Set environment reading a file during binary execution using new -FILE option – -FILE=/path_to_file_that_contains_env  The format of the file is #$NAME VALUE  Onconfig file can be used to set environment variables
  • 5. User Group Informix France New Server Environment Management (cont)  Supported binaries: – oninit, onstat, onmode,oncheck, ontape,onclean,onload, onlog, onunload, onparams,onspaces  Values in –FILE option take precedence over values that are set in local shell environment  INFORMIXDIR environment variable is set based on binary path. – If INFORMIXDIR is not set in the environment or is not set from the environment file then the PATH to the binary is used – binary assumed to be in subdirectory of INFORMIXDIR
  • 6. User Group Informix France New Server Environment Management (cont)  Environment Variable can be embedeed in onconfig file – Syntax: PARAMETER_NAME $ENVIRONMENT_VAR # comments  Example: $ cat IDS1210FC1.env #$ONLINELOG1 /usr2/support/chunks/IDS1210FC1/online1.log In ONCONFIG: MSGPATH $ONLINELOGINST1 $ oninit -FILE=IDS1210FC1.env  Environment variable must be set for any program that read onconfig file: – Oninit, oncheck, onbar, ontape, onlog and archecker utilities
  • 7. User Group Informix France New Server Environment Management - Example  Environment File: $ cat IDS1210FC1.env #$INFORMIXSERVER sar12101shm #$INFORMIXSQLHOSTS /usr2/support/products/sqlhosts #$ONCONFIG onconfig.saroumane  PATH Setting $ echo $PATH /usr2/support/products/IDS1210FC1B4/bin:/usr/local/bin:/bin:/usr/bin  Binary execution $ oninit -FILE=IDS1210FC1.env $ onstat -FILE=IDS1210FC1.env – IBM Informix Dynamic Server Version 12.10.FC1 -- On-Line -- Up 00:00:19 -- 149788 Kbytes $ onmode -FILE=IDS1210FC1.env -ky $ onstat -FILE=IDS1210FC1.env - shared memory not initialized for INFORMIXSERVER 'sar12101shm'
  • 8. User Group Informix France New Onconfig Dynamic Setting  Generalize dynamic tuning for all parameters  Onconfig parameter cleanup  New onstat -g cfg command to manage onconfig parameter  New SQL admin API command for onconfig dynamic setting  New SQL admin API command for onconfig parameter export and import – Configuration snapshot can be exported to a file – Configuration file can be imported to a running server  Avoid to shutdown IDS when changing a configuration parameter  Long term goal is IDS self-tuning
  • 9. User Group Informix France Onconfig Parameters Cleanup  Deprecated Parameters Removed AFF_NPROCS AFF_SPROCBUFFERS DRNODEJDKVERSION LOG_BACKUP_MODELRU_MAX_DIRTY LRU_MIN_DIRTYLRUPOLICY LRUSNOAGE NUMAIOVPSNUMCPUVPS OPCACHEMAXOPTICAL_LIB_PATH RA_THRESHOLDSPINCNT STAGEBLOB  An unknown parameter in your config file will now produce this message during startup – attn: Ignoring unknown or deprecated config parameter (%s)
  • 10. User Group Informix France Dynamic Setting Parameter  More Parameters can be modified on the fly BAR_ACT_LOG BAR_BSALIB_PATH BAR_DEBUG BAR_HISTORY BAR_IXBAR_PATH BAR_MAX_BACKUP DS_POOLSIZE DUMPCORE PC_POOLSIZE RAS_LLOG_SPEED RAS_PLOG_SPEED SDS_ENABLE SDS_FLOW_CONTROL SMX_PING_INTERVAL SMX_PING_RETRY STMT_CACHE STMT_CACHE_HITS etc...
  • 11. User Group Informix France Onstat -g cfg  Onstat –g cfg / onstat –g cfg <param> – Displays the current value of all, or given parameter  Onstat –g cfg full – Display full info of parameter (defaut, onconfig and current value + message)  onstat -g cfg tunable – Displays full info for all dynamically tunable parameters  onstat -g cfg diff – Displays full info for all parameters whose current value differs from that of the config file  onstat -g cfg msg – Displays any error or warning messages associated with parameters
  • 12. User Group Informix France Example: onstat -g cfg  $ onstat -g cfg IBM Informix Dynamic Server Version 12.10.FC1 -- On-Line – Up 02:41:38 -- 149788 Kbytes Configuration Parameter List name current Value ROOTNAME rootdbs ROOTPATH /work//rootchunk ROOTOFFSET 0 ROOTSIZE 200000 MIRROR 1 MIRRORPATH MIRROROFFSET 0 DBSERVERNAME mors SERVERNUM 43 MSGPATH /work/online.log ...
  • 13. User Group Informix France Example: onstat -g cfg full <parameter>  $ onstat -g cfg full MSGPATH Configuration Parameter Info id name type maxlen units rsvd tunable 10 MSGPATH CHAR 257 * * default : /dev/tty onconfig: $ONLINELOG1 current : /usr2/support/chunks/IDS1210FC1/online1.log Description: Use the MSGPATH configuration parameter to specify the full pathname of the message-log file. The database server writes status messages and diagnostic messages to this file during operation.
  • 14. User Group Informix France new SQL admin API commands  modify config [persistent] – EXECUTE FUNCTION task("modify config", "LTAPEDEV", "/dev/null"); • Modify onconfig parameter in memory – EXECUTE FUNCTION task("modify config persistent", "LTXHWM", "75"); • Modify onconfig parameter in memory and in onconfig file  reset config [all] – Reset command synchronizes parameter value in memory with parameter onconfig value as shown by onstat -g cfg full. – EXECUTE FUNCTION task("reset config", "LTAPEDEV"); – EXECUTE FUNCTION task("reset config all");
  • 15. User Group Informix France SQLAdmin API Onconfig Dynamic Setting - Example  > onstat -g cfg full LTXEHWM IBM Informix Dynamic Server Version 12.10.FC1 -- On-Line -- Up 03:13:07 – 149788 Kbytes Configuration Parameter Info id name type maxlen units rsvd tunable 25 LTXEHWM INT4 12 % * * min/max : 1,100 default : 80 onconfig: 80 current : 80 > execute function task("modify config", "LTXEHWM", "70"); > onstat -g cfg full LTXEHWM IBM Informix Dynamic Server Version 12.10.FC1 -- On-Line -- Up 03:17:36 – 149788 Kbytes Configuration Parameter Info id name type maxlen units rsvd tunable 25 LTXEHWM INT4 12 % * * min/max : 1,100 default : 80 onconfig: 80 current : 70
  • 16. User Group Informix France Export and Import of Configuration Parameters  Export Configuration Parameters – onmode –we <filename> – EXECUTE FUNCTION task(“export config”, “filename”); – All parameters are exported – Template used: $INFORMIXDIR/etc/onconfig.std  Import Configuration Parameters – onmode –wi <filename> – EXECUTE FUNCTION task(“import config”, “filename”); – Only tunable parameters in the file are modifed – Others are ignored – Convenient way to modify mutiple parameters with one command