Last active
August 1, 2023 03:39
-
-
Save sintret/e75ab36c78dbe8efda1afba37e5a3798 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Example MariaDB config file for large systems. | |
| # | |
| # This is for a large system with memory = 512M where the system runs mainly | |
| # MariaDB. | |
| # | |
| # MariaDB programs look for option files in a set of | |
| # locations which depend on the deployment platform. | |
| # You can copy this option file to one of those | |
| # locations. For information about these locations, do: | |
| # 'my_print_defaults --help' and see what is printed under | |
| # Default options are read from the following files in the given order: | |
| # More information at: http://dev.mysql.com/doc/mysql/en/option-files.html | |
| # | |
| # In this file, you can use all long options that a program supports. | |
| # If you want to know which options a program supports, run the program | |
| # with the "--help" option. | |
| # The following options will be passed to all MariaDB clients | |
| [client] | |
| #password = your_password | |
| port = 3306 | |
| socket = /tmp/mysql.sock | |
| # Here follows entries for some specific programs | |
| # The MariaDB server | |
| [mysqld] | |
| datadir=C:/Program Files/MariaDB 10.10/data | |
| port=3306 | |
| key_buffer_size = 512M | |
| max_allowed_packet = 1M | |
| table_open_cache = 256 | |
| sort_buffer_size = 1M | |
| read_buffer_size = 1M | |
| read_rnd_buffer_size = 4M | |
| myisam_sort_buffer_size = 64M | |
| thread_cache_size = 8 | |
| query_cache_size= 16M | |
| log-bin=mysql-bin | |
| binlog_format=mixed | |
| server-id = 1 | |
| innodb_buffer_pool_size = 4096M | |
| # Set .._log_file_size to 25 % of buffer pool size | |
| innodb_log_file_size = 1024M | |
| innodb_log_buffer_size = 128M | |
| innodb_flush_log_at_trx_commit = 1 | |
| innodb_lock_wait_timeout = 50 | |
| innodb_page_size=64k | |
| [client] | |
| port=3306 | |
| plugin-dir=C:\Program Files\MariaDB 10.10/lib/plugin | |
| [mariadb] | |
| log_error=mariadb.err |
Solution ...
[mysqld]
datadir=C:/Program Files/MariaDB 11.0/data
port=3306
innodb_buffer_pool_size=2033M
max_allowed_packet = 256M
innodb_log_file_size = 512M
innodb_strict_mode = 0
[client]
port=3306
plugin-dir=C:\Program Files\MariaDB 11.0/lib/plugin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
CREATE TABLE
salary_label(idINT(11) NOT NULL AUTO_INCREMENT,companyIdINT(11) NOT NULL,regularIncomeCompanyTaxIdTINYINT(1) DEFAULT NULL,irregularIncomeCompanyTaxIdTINYINT(1) DEFAULT NULL,typeTaxVARCHAR(10) DEFAULT NULL,noIdTaxDOUBLE DEFAULT 20,basicOTVARCHAR(200) DEFAULT NULL,parametersTEXT DEFAULT NULL,jamsostekParameterVARCHAR(255) DEFAULT NULL,bpjsParameterVARCHAR(255) DEFAULT NULL,basicSalaryVARCHAR(50) DEFAULT 'Basic Salary',basicSalaryRegularTINYINT(2) DEFAULT NULL COMMENT 'reguler 1 , irregular \n0',basicSalaryCodeVARCHAR(10) DEFAULT NULL,basicSalaryTaxIdTINYINT(1) DEFAULT 1,jkkDeductionVARCHAR(100) DEFAULT NULL,jkkDeductionRegularTINYINT(1) DEFAULT NULL,jkkDeductionCodeVARCHAR(50) DEFAULT NULL,jkkDeductionTaxIdTINYINT(1) DEFAULT NULL,jkmDeductionVARCHAR(100) DEFAULT NULL,jkmDeductionRegularTINYINT(1) DEFAULT NULL,jkmDeductionCodeVARCHAR(50) DEFAULT NULL,jkmDeductionTaxIdTINYINT(1) DEFAULT NULL,jhtDeductionVARCHAR(100) DEFAULT NULL,jhtDeductionRegularTINYINT(1) DEFAULT NULL,jhtDeductionCodeVARCHAR(50) DEFAULT NULL,jhtDeductionTaxIdTINYINT(1) DEFAULT NULL,jpkDeductionVARCHAR(255) DEFAULT NULL,jpkDeductionRegularTINYINT(1) DEFAULT NULL,jpkDeductionCodeVARCHAR(50) DEFAULT NULL,jpkDeductionTaxIdTINYINT(1) DEFAULT NULL,jkkAllowanceVARCHAR(255) DEFAULT NULL,jkkAllowanceRegularTINYINT(1) DEFAULT NULL,jkkAllowanceCodeVARCHAR(50) DEFAULT NULL,jkkAllowanceTaxIdTINYINT(1) DEFAULT NULL,jkmAllowanceVARCHAR(255) DEFAULT NULL,jkmAllowanceRegularTINYINT(1) DEFAULT NULL,jkmAllowanceCodeVARCHAR(50) DEFAULT NULL,jkmAllowanceTaxIdTINYINT(1) DEFAULT NULL,jhtAllowanceVARCHAR(255) DEFAULT NULL,jhtAllowanceRegularTINYINT(1) DEFAULT NULL,jhtAllowanceCodeVARCHAR(50) DEFAULT NULL,jhtAllowanceTaxIdTINYINT(1) DEFAULT NULL,jpkAllowanceVARCHAR(255) DEFAULT NULL,jpkAllowanceRegularTINYINT(1) DEFAULT NULL,jpkAllowanceCodeVARCHAR(50) DEFAULT NULL,jpkAllowanceTaxIdTINYINT(1) DEFAULT NULL,grossIncomeCodeVARCHAR(20) DEFAULT NULL,grossIncomeVARCHAR(255) DEFAULT NULL,nonEmployeeIncomeVARCHAR(255) DEFAULT NULL,nonEmployeeIncomeCodeVARCHAR(25) DEFAULT NULL,nonEmployeeIncomeIdTINYINT(1) DEFAULT NULL,severanceCodeVARCHAR(20) DEFAULT NULL,severanceVARCHAR(255) DEFAULT NULL,overtimeVARCHAR(50) DEFAULT NULL,overtimeRegularTINYINT(2) DEFAULT NULL,overtimeCodeVARCHAR(10) DEFAULT NULL,overtimeTaxIdTINYINT(1) DEFAULT 1,allowance1VARCHAR(50) DEFAULT NULL,allowance1RegularTINYINT(2) DEFAULT NULL,allowance1CodeVARCHAR(10) DEFAULT NULL,allowance1TaxIdTINYINT(1) DEFAULT 1,allowance2VARCHAR(50) DEFAULT NULL,allowance2RegularTINYINT(2) DEFAULT NULL,allowance2CodeVARCHAR(10) DEFAULT NULL,allowance2TaxIdTINYINT(1) DEFAULT 1,allowance3VARCHAR(50) DEFAULT NULL,allowance3RegularTINYINT(2) DEFAULT NULL,allowance3CodeVARCHAR(10) DEFAULT NULL,allowance3TaxIdTINYINT(1) DEFAULT 1,allowance4VARCHAR(50) DEFAULT NULL,allowance4RegularTINYINT(2) DEFAULT NULL,allowance4CodeVARCHAR(10) DEFAULT NULL,allowance4TaxIdTINYINT(1) DEFAULT 1,allowance5VARCHAR(50) DEFAULT NULL,allowance5RegularTINYINT(2) DEFAULT NULL,allowance5CodeVARCHAR(10) DEFAULT NULL,allowance5TaxIdTINYINT(1) DEFAULT 1,allowance6VARCHAR(50) DEFAULT NULL,allowance6RegularTINYINT(2) DEFAULT NULL,allowance6CodeVARCHAR(10) DEFAULT NULL,allowance6TaxIdTINYINT(1) DEFAULT 1,allowance7VARCHAR(50) DEFAULT NULL,allowance7RegularTINYINT(2) DEFAULT NULL,allowance7CodeVARCHAR(10) DEFAULT NULL,allowance7TaxIdTINYINT(1) DEFAULT 1,allowance8VARCHAR(50) DEFAULT NULL,allowance8RegularTINYINT(2) DEFAULT NULL,allowance8CodeVARCHAR(10) DEFAULT NULL,allowance8TaxIdTINYINT(1) DEFAULT 1,allowance9VARCHAR(50) DEFAULT NULL,allowance9RegularTINYINT(2) DEFAULT NULL,allowance9CodeVARCHAR(10) DEFAULT NULL,allowance9TaxIdTINYINT(1) DEFAULT 1,allowance10VARCHAR(50) DEFAULT NULL,allowance10RegularTINYINT(2) DEFAULT NULL,allowance10CodeVARCHAR(10) DEFAULT NULL,allowance10TaxIdTINYINT(1) DEFAULT 1,allowance11VARCHAR(50) DEFAULT NULL,allowance11RegularTINYINT(1) DEFAULT NULL,allowance11CodeVARCHAR(10) DEFAULT NULL,allowance11TaxIdTINYINT(1) DEFAULT 1,allowance12VARCHAR(50) DEFAULT NULL,allowance12RegularTINYINT(1) DEFAULT NULL,allowance12CodeVARCHAR(10) DEFAULT NULL,allowance12TaxIdTINYINT(1) DEFAULT 1,allowance13VARCHAR(50) DEFAULT NULL,allowance13RegularTINYINT(1) DEFAULT NULL,allowance13CodeVARCHAR(10) DEFAULT NULL,allowance13TaxIdTINYINT(1) DEFAULT 1,allowance14VARCHAR(50) DEFAULT NULL,allowance14RegularTINYINT(1) DEFAULT NULL,allowance14CodeVARCHAR(10) DEFAULT NULL,allowance14TaxIdTINYINT(1) DEFAULT 1,allowance15VARCHAR(50) DEFAULT NULL,allowance15RegularTINYINT(1) DEFAULT NULL,allowance15CodeVARCHAR(10) DEFAULT NULL,allowance15TaxIdTINYINT(1) DEFAULT 1,allowance16VARCHAR(50) DEFAULT NULL,allowance16RegularTINYINT(1) DEFAULT NULL,allowance16CodeVARCHAR(10) DEFAULT NULL,allowance16TaxIdTINYINT(1) DEFAULT 1,allowance17VARCHAR(50) DEFAULT NULL,allowance17RegularTINYINT(1) DEFAULT NULL,allowance17CodeVARCHAR(10) DEFAULT NULL,allowance17TaxIdTINYINT(1) DEFAULT 1,allowance18VARCHAR(50) DEFAULT NULL,allowance18RegularTINYINT(1) DEFAULT NULL,allowance18CodeVARCHAR(10) DEFAULT NULL,allowance18TaxIdTINYINT(1) DEFAULT 1,allowance19VARCHAR(50) DEFAULT NULL,allowance19RegularTINYINT(1) DEFAULT NULL,allowance19CodeVARCHAR(10) DEFAULT NULL,allowance19TaxIdTINYINT(1) DEFAULT 1,allowance20VARCHAR(50) DEFAULT NULL,allowance20RegularTINYINT(1) DEFAULT NULL,allowance20CodeVARCHAR(10) DEFAULT NULL,allowance20TaxIdTINYINT(1) DEFAULT 1,allowance21VARCHAR(50) DEFAULT NULL,allowance21RegularTINYINT(1) DEFAULT NULL,allowance21CodeVARCHAR(10) DEFAULT NULL,allowance21TaxIdTINYINT(1) DEFAULT 1,allowance22VARCHAR(50) DEFAULT NULL,allowance22RegularTINYINT(1) DEFAULT NULL,allowance22CodeVARCHAR(10) DEFAULT NULL,allowance22TaxIdTINYINT(1) DEFAULT 1,allowance23VARCHAR(50) DEFAULT NULL,allowance23RegularTINYINT(1) DEFAULT NULL,allowance23CodeVARCHAR(10) DEFAULT NULL,allowance23TaxIdTINYINT(1) DEFAULT 1,allowance24VARCHAR(50) DEFAULT NULL,allowance24RegularTINYINT(1) DEFAULT NULL,allowance24CodeVARCHAR(10) DEFAULT NULL,allowance24TaxIdTINYINT(1) DEFAULT 1,allowance25VARCHAR(50) DEFAULT NULL,allowance25RegularTINYINT(1) DEFAULT NULL,allowance25CodeVARCHAR(10) DEFAULT NULL,allowance25TaxIdTINYINT(1) DEFAULT 1,allowance26VARCHAR(50) DEFAULT NULL,allowance26RegularTINYINT(1) DEFAULT NULL,allowance26CodeVARCHAR(10) DEFAULT NULL,allowance26TaxIdTINYINT(1) DEFAULT 1,allowance27VARCHAR(50) DEFAULT NULL,allowance27RegularTINYINT(1) DEFAULT NULL,allowance27CodeVARCHAR(10) DEFAULT NULL,allowance27TaxIdTINYINT(1) DEFAULT 1,allowance28VARCHAR(50) DEFAULT NULL,allowance28RegularTINYINT(1) DEFAULT NULL,allowance28CodeVARCHAR(10) DEFAULT NULL,allowance28TaxIdTINYINT(1) DEFAULT 1,allowance29VARCHAR(50) DEFAULT NULL,allowance29RegularTINYINT(1) DEFAULT NULL,allowance29CodeVARCHAR(10) DEFAULT NULL,allowance29TaxIdTINYINT(1) DEFAULT 1,allowance30VARCHAR(50) DEFAULT NULL,allowance30RegularTINYINT(1) DEFAULT NULL,allowance30CodeVARCHAR(10) DEFAULT NULL,allowance30TaxIdTINYINT(1) DEFAULT 1,allowance31VARCHAR(50) DEFAULT NULL,allowance31RegularTINYINT(1) DEFAULT 1,allowance31CodeVARCHAR(10) DEFAULT NULL,allowance31TaxIdTINYINT(1) DEFAULT NULL,allowance32VARCHAR(50) DEFAULT NULL,allowance32RegularTINYINT(1) DEFAULT 1,allowance32CodeVARCHAR(10) DEFAULT NULL,allowance32TaxIdTINYINT(1) DEFAULT NULL,allowance33VARCHAR(50) DEFAULT NULL,allowance33RegularTINYINT(1) DEFAULT 1,allowance33CodeVARCHAR(10) DEFAULT NULL,allowance33TaxIdTINYINT(1) DEFAULT NULL,allowance34VARCHAR(50) DEFAULT NULL,allowance34RegularTINYINT(1) DEFAULT 1,allowance34CodeVARCHAR(10) DEFAULT NULL,allowance34TaxIdTINYINT(1) DEFAULT NULL,allowance35VARCHAR(50) DEFAULT NULL,allowance35RegularTINYINT(1) DEFAULT 1,allowance35CodeVARCHAR(10) DEFAULT NULL,allowance35TaxIdTINYINT(1) DEFAULT NULL,allowance36VARCHAR(50) DEFAULT NULL,allowance36RegularTINYINT(1) DEFAULT 1,allowance36CodeVARCHAR(10) DEFAULT NULL,allowance36TaxIdTINYINT(1) DEFAULT NULL,allowance37VARCHAR(50) DEFAULT NULL,allowance37RegularTINYINT(1) DEFAULT 1,allowance37CodeVARCHAR(10) DEFAULT NULL,allowance37TaxIdTINYINT(1) DEFAULT NULL,allowance38VARCHAR(50) DEFAULT NULL,allowance38RegularTINYINT(1) DEFAULT 1,allowance38CodeVARCHAR(10) DEFAULT NULL,allowance38TaxIdTINYINT(1) DEFAULT NULL,allowance39VARCHAR(50) DEFAULT NULL,allowance39RegularTINYINT(1) DEFAULT 1,allowance39CodeVARCHAR(10) DEFAULT NULL,allowance39TaxIdTINYINT(1) DEFAULT NULL,allowance40VARCHAR(50) DEFAULT NULL,allowance40RegularTINYINT(1) DEFAULT 1,allowance40CodeVARCHAR(10) DEFAULT NULL,allowance40TaxIdTINYINT(1) DEFAULT NULL,allowance41VARCHAR(50) DEFAULT NULL,allowance41RegularTINYINT(1) DEFAULT 1,allowance41CodeVARCHAR(10) DEFAULT NULL,allowance41TaxIdTINYINT(1) DEFAULT NULL,allowance42VARCHAR(50) DEFAULT NULL,allowance42RegularTINYINT(1) DEFAULT 1,allowance42CodeVARCHAR(10) DEFAULT NULL,allowance42TaxIdTINYINT(1) DEFAULT NULL,allowance43VARCHAR(50) DEFAULT NULL,allowance43RegularTINYINT(1) DEFAULT 1,allowance43CodeVARCHAR(10) DEFAULT NULL,allowance43TaxIdTINYINT(1) DEFAULT NULL,allowance44VARCHAR(50) DEFAULT NULL,allowance44RegularTINYINT(1) DEFAULT 1,allowance44CodeVARCHAR(10) DEFAULT NULL,allowance44TaxIdTINYINT(1) DEFAULT NULL,allowance45VARCHAR(50) DEFAULT NULL,allowance45RegularTINYINT(1) DEFAULT 1,allowance45CodeVARCHAR(10) DEFAULT NULL,allowance45TaxIdTINYINT(1) DEFAULT NULL,allowance46VARCHAR(50) DEFAULT NULL,allowance46RegularTINYINT(1) DEFAULT 1,allowance46CodeVARCHAR(10) DEFAULT NULL,allowance46TaxIdTINYINT(1) DEFAULT NULL,allowance47VARCHAR(50) DEFAULT NULL,allowance47RegularTINYINT(1) DEFAULT 1,allowance47CodeVARCHAR(10) DEFAULT NULL,allowance47TaxIdTINYINT(1) DEFAULT NULL,allowance48VARCHAR(50) DEFAULT NULL,allowance48RegularTINYINT(1) DEFAULT 1,allowance48CodeVARCHAR(10) DEFAULT NULL,allowance48TaxIdTINYINT(1) DEFAULT NULL,allowance49VARCHAR(50) DEFAULT NULL,allowance49RegularTINYINT(1) DEFAULT 1,allowance49CodeVARCHAR(10) DEFAULT NULL,allowance49TaxIdTINYINT(1) DEFAULT NULL,allowance50VARCHAR(50) DEFAULT NULL,allowance50RegularTINYINT(1) DEFAULT 1,allowance50CodeVARCHAR(10) DEFAULT NULL,allowance50TaxIdTINYINT(1) DEFAULT NULL,allowance51VARCHAR(50) DEFAULT NULL,allowance51RegularTINYINT(1) DEFAULT NULL,allowance51CodeVARCHAR(10) DEFAULT NULL,allowance51TaxIdTINYINT(1) DEFAULT NULL,allowance52VARCHAR(50) DEFAULT NULL,allowance52RegularTINYINT(1) DEFAULT NULL,allowance52CodeVARCHAR(10) DEFAULT NULL,allowance52TaxIdTINYINT(1) DEFAULT NULL,allowance53VARCHAR(50) DEFAULT NULL,allowance53RegularTINYINT(1) DEFAULT NULL,allowance53CodeVARCHAR(10) DEFAULT NULL,allowance53TaxIdTINYINT(1) DEFAULT NULL,allowance54VARCHAR(50) DEFAULT NULL,allowance54RegularTINYINT(1) DEFAULT NULL,allowance54CodeVARCHAR(10) DEFAULT NULL,allowance54TaxIdTINYINT(1) DEFAULT NULL,allowance55VARCHAR(50) DEFAULT NULL,allowance55RegularTINYINT(1) DEFAULT NULL,allowance55CodeVARCHAR(10) DEFAULT NULL,allowance55TaxIdTINYINT(1) DEFAULT NULL,allowance56VARCHAR(50) DEFAULT NULL,allowance56RegularTINYINT(1) DEFAULT NULL,allowance56CodeVARCHAR(10) DEFAULT NULL,allowance56TaxIdTINYINT(1) DEFAULT NULL,allowance57VARCHAR(50) DEFAULT NULL,allowance57RegularTINYINT(1) DEFAULT NULL,allowance57CodeVARCHAR(10) DEFAULT NULL,allowance57TaxIdTINYINT(1) DEFAULT NULL,allowance58VARCHAR(50) DEFAULT NULL,allowance58RegularTINYINT(1) DEFAULT NULL,allowance58CodeVARCHAR(10) DEFAULT NULL,allowance58TaxIdTINYINT(1) DEFAULT NULL,allowance59VARCHAR(50) DEFAULT NULL,allowance59RegularTINYINT(1) DEFAULT NULL,allowance59CodeVARCHAR(10) DEFAULT NULL,allowance59TaxIdTINYINT(1) DEFAULT NULL,allowance60VARCHAR(50) DEFAULT NULL,allowance60RegularTINYINT(1) DEFAULT NULL,allowance60CodeVARCHAR(10) DEFAULT NULL,allowance60TaxIdTINYINT(1) DEFAULT NULL,deduction1VARCHAR(50) DEFAULT NULL,deduction1RegularTINYINT(1) DEFAULT NULL,deduction1CodeVARCHAR(10) DEFAULT NULL,deduction1TaxIdTINYINT(1) DEFAULT 1,deduction2VARCHAR(50) DEFAULT NULL,deduction2RegularTINYINT(1) DEFAULT NULL,deduction2CodeVARCHAR(10) DEFAULT NULL,deduction2TaxIdTINYINT(1) DEFAULT 1,deduction3VARCHAR(50) DEFAULT NULL,deduction3RegularTINYINT(1) DEFAULT NULL,deduction3CodeVARCHAR(10) DEFAULT NULL,deduction3TaxIdTINYINT(1) DEFAULT 1,deduction4VARCHAR(50) DEFAULT NULL,deduction4RegularTINYINT(1) DEFAULT NULL,deduction4CodeVARCHAR(10) DEFAULT NULL,deduction4TaxIdTINYINT(1) DEFAULT 1,deduction5VARCHAR(50) DEFAULT NULL,deduction5RegularTINYINT(1) DEFAULT NULL,deduction5CodeVARCHAR(10) DEFAULT NULL,deduction5TaxIdTINYINT(1) DEFAULT 1,deduction6VARCHAR(50) DEFAULT NULL,deduction6RegularTINYINT(1) DEFAULT NULL,deduction6CodeVARCHAR(10) DEFAULT NULL,deduction6TaxIdTINYINT(1) DEFAULT 1,deduction7VARCHAR(50) DEFAULT NULL,deduction7RegularTINYINT(1) DEFAULT NULL,deduction7CodeVARCHAR(10) DEFAULT NULL,deduction7TaxIdTINYINT(1) DEFAULT 1,deduction8VARCHAR(50) DEFAULT NULL,deduction8RegularTINYINT(1) DEFAULT NULL,deduction8CodeVARCHAR(10) DEFAULT NULL,deduction8TaxIdTINYINT(1) DEFAULT 1,deduction9VARCHAR(50) DEFAULT NULL,deduction9RegularTINYINT(1) DEFAULT NULL,deduction9CodeVARCHAR(10) DEFAULT NULL,deduction9TaxIdTINYINT(1) DEFAULT 1,deduction10VARCHAR(50) DEFAULT NULL,deduction10RegularTINYINT(1) DEFAULT NULL,deduction10CodeVARCHAR(10) DEFAULT NULL,deduction10TaxIdTINYINT(1) DEFAULT 1,deduction11VARCHAR(50) DEFAULT NULL,deduction11RegularTINYINT(1) DEFAULT NULL,deduction11CodeVARCHAR(10) DEFAULT NULL,deduction11TaxIdTINYINT(1) DEFAULT 1,deduction12VARCHAR(50) DEFAULT NULL,deduction12RegularTINYINT(1) DEFAULT NULL,deduction12CodeVARCHAR(10) DEFAULT NULL,deduction12TaxIdTINYINT(1) DEFAULT 1,deduction13VARCHAR(50) DEFAULT NULL,deduction13RegularTINYINT(1) DEFAULT NULL,deduction13CodeVARCHAR(10) DEFAULT NULL,deduction13TaxIdTINYINT(1) DEFAULT 1,deduction14VARCHAR(50) DEFAULT NULL,deduction14RegularTINYINT(1) DEFAULT NULL,deduction14CodeVARCHAR(10) DEFAULT NULL,deduction14TaxIdTINYINT(1) DEFAULT 1,deduction15VARCHAR(50) DEFAULT NULL,deduction15RegularTINYINT(1) DEFAULT NULL,deduction15CodeVARCHAR(10) DEFAULT NULL,deduction15TaxIdTINYINT(1) DEFAULT 1,deduction16VARCHAR(50) DEFAULT NULL,deduction16RegularTINYINT(1) DEFAULT NULL,deduction16CodeVARCHAR(10) DEFAULT NULL,deduction16TaxIdTINYINT(1) DEFAULT 1,deduction17VARCHAR(50) DEFAULT NULL,deduction17RegularTINYINT(1) DEFAULT NULL,deduction17CodeVARCHAR(10) DEFAULT NULL,deduction17TaxIdTINYINT(1) DEFAULT 1,deduction18VARCHAR(50) DEFAULT NULL,deduction18RegularTINYINT(1) DEFAULT NULL,deduction18CodeVARCHAR(10) DEFAULT NULL,deduction18TaxIdTINYINT(1) DEFAULT 1,deduction19VARCHAR(50) DEFAULT NULL,deduction19RegularTINYINT(1) DEFAULT NULL,deduction19CodeVARCHAR(10) DEFAULT NULL,deduction19TaxIdTINYINT(1) DEFAULT 1,deduction20VARCHAR(50) DEFAULT NULL,deduction20RegularTINYINT(1) DEFAULT NULL,deduction20CodeVARCHAR(10) DEFAULT NULL,deduction20TaxIdTINYINT(1) DEFAULT 1,deduction21VARCHAR(50) DEFAULT NULL,deduction21RegularTINYINT(1) DEFAULT NULL,deduction21CodeVARCHAR(10) DEFAULT NULL,deduction21TaxIdTINYINT(1) DEFAULT 1,deduction22VARCHAR(50) DEFAULT NULL,deduction22RegularTINYINT(1) DEFAULT NULL,deduction22CodeVARCHAR(10) DEFAULT NULL,deduction22TaxIdTINYINT(1) DEFAULT 1,deduction23VARCHAR(50) DEFAULT NULL,deduction23RegularTINYINT(1) DEFAULT NULL,deduction23CodeVARCHAR(10) DEFAULT NULL,deduction23TaxIdTINYINT(1) DEFAULT 1,deduction24VARCHAR(50) DEFAULT NULL,deduction24RegularTINYINT(1) DEFAULT NULL,deduction24CodeVARCHAR(10) DEFAULT NULL,deduction24TaxIdTINYINT(1) DEFAULT 1,deduction25VARCHAR(50) DEFAULT NULL,deduction25RegularTINYINT(1) DEFAULT NULL,deduction25CodeVARCHAR(10) DEFAULT NULL,deduction25TaxIdTINYINT(1) DEFAULT 1,deduction26VARCHAR(50) DEFAULT NULL,deduction26RegularTINYINT(1) DEFAULT NULL,deduction26CodeVARCHAR(10) DEFAULT NULL,deduction26TaxIdTINYINT(1) DEFAULT 1,deduction27VARCHAR(50) DEFAULT NULL,deduction27RegularTINYINT(1) DEFAULT NULL,deduction27CodeVARCHAR(10) DEFAULT NULL,deduction27TaxIdTINYINT(1) DEFAULT 1,deduction28VARCHAR(50) DEFAULT NULL,deduction28RegularTINYINT(1) DEFAULT NULL,deduction28CodeVARCHAR(10) DEFAULT NULL,deduction28TaxIdTINYINT(1) DEFAULT 1,deduction29VARCHAR(50) DEFAULT NULL,deduction29RegularTINYINT(1) DEFAULT NULL,deduction29CodeVARCHAR(10) DEFAULT NULL,deduction29TaxIdTINYINT(1) DEFAULT 1,deduction30VARCHAR(50) DEFAULT NULL,deduction30RegularTINYINT(1) DEFAULT NULL,deduction30CodeVARCHAR(10) DEFAULT NULL,deduction30TaxIdTINYINT(1) DEFAULT 1,deduction31VARCHAR(50) DEFAULT NULL,deduction31RegularTINYINT(1) DEFAULT 1,deduction31CodeVARCHAR(10) DEFAULT NULL,deduction31TaxIdTINYINT(1) DEFAULT NULL,deduction32VARCHAR(50) DEFAULT NULL,deduction32RegularTINYINT(1) DEFAULT 1,deduction32CodeVARCHAR(10) DEFAULT NULL,deduction32TaxIdTINYINT(1) DEFAULT NULL,deduction33VARCHAR(50) DEFAULT NULL,deduction33RegularTINYINT(1) DEFAULT 1,deduction33CodeVARCHAR(10) DEFAULT NULL,deduction33TaxIdTINYINT(1) DEFAULT NULL,deduction34VARCHAR(50) DEFAULT NULL,deduction34RegularTINYINT(1) DEFAULT 1,deduction34CodeVARCHAR(10) DEFAULT NULL,deduction34TaxIdTINYINT(1) DEFAULT NULL,deduction35VARCHAR(50) DEFAULT NULL,deduction35RegularTINYINT(1) DEFAULT 1,deduction35CodeVARCHAR(10) DEFAULT NULL,deduction35TaxIdTINYINT(1) DEFAULT NULL,deduction36VARCHAR(50) DEFAULT NULL,deduction36RegularTINYINT(1) DEFAULT 1,deduction36CodeVARCHAR(10) DEFAULT NULL,deduction36TaxIdTINYINT(1) DEFAULT NULL,deduction37VARCHAR(50) DEFAULT NULL,deduction37RegularTINYINT(1) DEFAULT 1,deduction37CodeVARCHAR(10) DEFAULT NULL,deduction37TaxIdTINYINT(1) DEFAULT NULL,deduction38VARCHAR(50) DEFAULT NULL,deduction38RegularTINYINT(1) DEFAULT 1,deduction38CodeVARCHAR(10) DEFAULT NULL,deduction38TaxIdTINYINT(1) DEFAULT NULL,deduction39VARCHAR(50) DEFAULT NULL,deduction39RegularTINYINT(1) DEFAULT 1,deduction39CodeVARCHAR(10) DEFAULT NULL,deduction39TaxIdTINYINT(1) DEFAULT NULL,deduction40VARCHAR(50) DEFAULT NULL,deduction40RegularTINYINT(1) DEFAULT 1,deduction40CodeVARCHAR(10) DEFAULT NULL,deduction40TaxIdTINYINT(1) DEFAULT NULL,deduction41VARCHAR(50) DEFAULT NULL,deduction41RegularTINYINT(1) DEFAULT 1,deduction41CodeVARCHAR(10) DEFAULT NULL,deduction41TaxIdTINYINT(1) DEFAULT NULL,deduction42VARCHAR(50) DEFAULT NULL,deduction42RegularTINYINT(1) DEFAULT 1,deduction42CodeVARCHAR(10) DEFAULT NULL,deduction42TaxIdTINYINT(1) DEFAULT NULL,deduction43VARCHAR(50) DEFAULT NULL,deduction43RegularTINYINT(1) DEFAULT 1,deduction43CodeVARCHAR(10) DEFAULT NULL,deduction43TaxIdTINYINT(1) DEFAULT NULL,deduction44VARCHAR(50) DEFAULT NULL,deduction44RegularTINYINT(1) DEFAULT 1,deduction44CodeVARCHAR(10) DEFAULT NULL,deduction44TaxIdTINYINT(1) DEFAULT NULL,deduction45VARCHAR(50) DEFAULT NULL,deduction45RegularTINYINT(1) DEFAULT 1,deduction45CodeVARCHAR(10) DEFAULT NULL,deduction45TaxIdTINYINT(1) DEFAULT NULL,deduction46VARCHAR(50) DEFAULT NULL,deduction46RegularTINYINT(1) DEFAULT 1,deduction46CodeVARCHAR(10) DEFAULT NULL,deduction46TaxIdTINYINT(1) DEFAULT NULL,deduction47VARCHAR(50) DEFAULT NULL,deduction47RegularTINYINT(1) DEFAULT 1,deduction47CodeVARCHAR(10) DEFAULT NULL,deduction47TaxIdTINYINT(1) DEFAULT NULL,deduction48VARCHAR(50) DEFAULT NULL,deduction48RegularTINYINT(1) DEFAULT 1,deduction48CodeVARCHAR(10) DEFAULT NULL,deduction48TaxIdTINYINT(1) DEFAULT NULL,deduction49VARCHAR(50) DEFAULT NULL,deduction49RegularTINYINT(1) DEFAULT 1,deduction49CodeVARCHAR(10) DEFAULT NULL,deduction49TaxIdTINYINT(1) DEFAULT NULL,deduction50VARCHAR(50) DEFAULT NULL,deduction50RegularTINYINT(1) DEFAULT 1,deduction50CodeVARCHAR(10) DEFAULT NULL,deduction50TaxIdTINYINT(1) DEFAULT NULL,severance1VARCHAR(50) DEFAULT NULL,severance1CodeVARCHAR(10) DEFAULT NULL,severance1TaxIdTINYINT(1) DEFAULT NULL,severance2VARCHAR(50) DEFAULT NULL,severance2CodeVARCHAR(10) DEFAULT NULL,severance2TaxIdTINYINT(1) DEFAULT NULL,severance3VARCHAR(50) DEFAULT NULL,severance3CodeVARCHAR(10) DEFAULT NULL,severance3TaxIdTINYINT(1) DEFAULT NULL,severance4VARCHAR(50) DEFAULT NULL,severance4CodeVARCHAR(10) DEFAULT NULL,severance4TaxIdTINYINT(1) DEFAULT NULL,severance5VARCHAR(50) DEFAULT NULL,severance5CodeVARCHAR(10) DEFAULT NULL,severance5TaxIdTINYINT(1) DEFAULT NULL,severance6VARCHAR(50) DEFAULT NULL,severance6CodeVARCHAR(10) DEFAULT NULL,severance6TaxIdTINYINT(1) DEFAULT NULL,severance7VARCHAR(50) DEFAULT NULL,severance7CodeVARCHAR(10) DEFAULT NULL,severance7TaxIdTINYINT(1) DEFAULT NULL,severance8VARCHAR(50) DEFAULT NULL,severance8CodeVARCHAR(10) DEFAULT NULL,severance8TaxIdTINYINT(1) DEFAULT NULL,severance9VARCHAR(50) DEFAULT NULL,severance9CodeVARCHAR(10) DEFAULT NULL,severance9TaxIdTINYINT(1) DEFAULT NULL,severance10VARCHAR(50) DEFAULT NULL,severance10CodeVARCHAR(10) DEFAULT NULL,severance10TaxIdTINYINT(1) DEFAULT NULL,loan1VARCHAR(50) DEFAULT NULL,loan1CodeVARCHAR(10) DEFAULT NULL,loan1FormulaIdTINYINT(1) DEFAULT NULL,loan2VARCHAR(50) DEFAULT NULL,loan2CodeVARCHAR(10) DEFAULT NULL,loan2FormulaIdTINYINT(1) DEFAULT NULL,loan3VARCHAR(50) DEFAULT NULL,loan3CodeVARCHAR(10) DEFAULT NULL,loan3FormulaIdTINYINT(1) DEFAULT NULL,loan4VARCHAR(50) DEFAULT NULL,loan4CodeVARCHAR(10) DEFAULT NULL,loan4FormulaIdTINYINT(1) DEFAULT NULL,loan5VARCHAR(50) DEFAULT NULL,loan5CodeVARCHAR(10) DEFAULT NULL,loan5FormulaIdTINYINT(1) DEFAULT NULL,loan6VARCHAR(50) DEFAULT NULL,loan6CodeVARCHAR(10) DEFAULT NULL,loan6FormulaIdTINYINT(1) DEFAULT NULL,loan7VARCHAR(50) DEFAULT NULL,loan7CodeVARCHAR(10) DEFAULT NULL,loan7FormulaIdTINYINT(1) DEFAULT NULL,loan8VARCHAR(50) DEFAULT NULL,loan8CodeVARCHAR(10) DEFAULT NULL,loan8FormulaIdTINYINT(1) DEFAULT NULL,loan9VARCHAR(50) DEFAULT NULL,loan9CodeVARCHAR(10) DEFAULT NULL,loan9FormulaIdTINYINT(1) DEFAULT NULL,loan10VARCHAR(50) DEFAULT NULL,loan10CodeVARCHAR(10) DEFAULT NULL,loan10FormulaIdTINYINT(1) DEFAULT NULL,loan11VARCHAR(50) DEFAULT NULL,loan11CodeVARCHAR(10) DEFAULT NULL,loan11FormulaIdTINYINT(1) DEFAULT NULL,loan12VARCHAR(50) DEFAULT NULL,loan12CodeVARCHAR(10) DEFAULT NULL,loan12FormulaIdTINYINT(1) DEFAULT NULL,loan13VARCHAR(50) DEFAULT NULL,loan13CodeVARCHAR(10) DEFAULT NULL,loan13FormulaIdTINYINT(1) DEFAULT NULL,loan14VARCHAR(50) DEFAULT NULL,loan14CodeVARCHAR(10) DEFAULT NULL,loan14FormulaIdTINYINT(1) DEFAULT NULL,loan15VARCHAR(50) DEFAULT NULL,loan15CodeVARCHAR(10) DEFAULT NULL,loan15FormulaIdTINYINT(1) DEFAULT NULL,loan16VARCHAR(50) DEFAULT NULL,loan16CodeVARCHAR(10) DEFAULT NULL,loan16FormulaIdTINYINT(1) DEFAULT NULL,loan17VARCHAR(50) DEFAULT NULL,loan17CodeVARCHAR(10) DEFAULT NULL,loan17FormulaIdTINYINT(1) DEFAULT NULL,loan18VARCHAR(50) DEFAULT NULL,loan18CodeVARCHAR(10) DEFAULT NULL,loan18FormulaIdTINYINT(1) DEFAULT NULL,loan19VARCHAR(50) DEFAULT NULL,loan19CodeVARCHAR(10) DEFAULT NULL,loan19FormulaIdTINYINT(1) DEFAULT NULL,loan20VARCHAR(50) DEFAULT NULL,loan20CodeVARCHAR(10) DEFAULT NULL,loan20FormulaIdTINYINT(1) DEFAULT NULL,benefitsLONGBLOB DEFAULT NULL,jhtEmployerNaturaTINYINT(1) DEFAULT 0,grossVARCHAR(10) DEFAULT 'Gross',nettVARCHAR(10) DEFAULT 'Nett',jhtEmployerCodeVARCHAR(50) DEFAULT NULL,jhtEmployerVARCHAR(100) DEFAULT NULL,jhtEmployerTaxIdTINYINT(1) DEFAULT NULL,jhtEmployerRegularTINYINT(1) NOT NULL DEFAULT 1,jhtEmployerDeductionVARCHAR(100) DEFAULT NULL,jhtEmployerDeductionTaxIdTINYINT(1) DEFAULT NULL,jhtEmployerDeductionRegularTINYINT(1) NOT NULL DEFAULT 1,jhtEmployerDeductionCodeVARCHAR(10) DEFAULT NULL,taxAllowanceCodeVARCHAR(100) DEFAULT NULL,totalGrossCodeVARCHAR(100) DEFAULT NULL,totalNetPayCodeVARCHAR(100) DEFAULT NULL,employeeTotalTaxCodeVARCHAR(100) DEFAULT NULL,companyTotalTaxCodeVARCHAR(100) DEFAULT NULL,severanceTotalTaxCodeVARCHAR(100) DEFAULT NULL,totalTaxCodeVARCHAR(100) DEFAULT NULL,totalGrossTaxableCodeVARCHAR(100) DEFAULT NULL,totalGrossSeveranceCodeVARCHAR(100) DEFAULT NULL,taxAllowanceVARCHAR(255) DEFAULT NULL,totalGrossVARCHAR(255) DEFAULT NULL,totalNetPayVARCHAR(255) DEFAULT NULL,employeeTotalTaxVARCHAR(255) DEFAULT NULL,companyTotalTaxVARCHAR(255) DEFAULT NULL,severanceTotalTaxVARCHAR(255) DEFAULT NULL,totalTaxVARCHAR(255) DEFAULT NULL,totalGrossTaxableVARCHAR(255) DEFAULT NULL,totalGrossSeveranceVARCHAR(255) DEFAULT NULL,medicalParamTEXT DEFAULT NULL,pensiunParamTEXT DEFAULT NULL,jsonGLTEXT DEFAULT NULL,jsonGLDescriptionTEXT DEFAULT NULL,variablesLONGTEXT DEFAULT NULL,createDateDATETIME DEFAULT NULL,createByINT(11) DEFAULT NULL,updateDateTIMESTAMP NULL DEFAULT NULL,updateByINT(11) DEFAULT NULL,PRIMARY KEY (
id)) ENGINE=INNODB ROW_FORMAT=DYNAMIC