Skip to content

Instantly share code, notes, and snippets.

@sintret
Last active August 1, 2023 03:39
Show Gist options
  • Save sintret/e75ab36c78dbe8efda1afba37e5a3798 to your computer and use it in GitHub Desktop.
Save sintret/e75ab36c78dbe8efda1afba37e5a3798 to your computer and use it in GitHub Desktop.
# 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
@sintret
Copy link
Author

sintret commented Aug 1, 2023

ERROR 1118 (42000) at line 3997: Row size too large (> 8126). Changing some columns to TEXT or BLOB may help. In current row format, BLOB prefix of 0 bytes is stored inline.

@sintret
Copy link
Author

sintret commented Aug 1, 2023

CREATE TABLE salary_label (
id INT(11) NOT NULL AUTO_INCREMENT,
companyId INT(11) NOT NULL,
regularIncomeCompanyTaxId TINYINT(1) DEFAULT NULL,
irregularIncomeCompanyTaxId TINYINT(1) DEFAULT NULL,
typeTax VARCHAR(10) DEFAULT NULL,
noIdTax DOUBLE DEFAULT 20,
basicOT VARCHAR(200) DEFAULT NULL,
parameters TEXT DEFAULT NULL,
jamsostekParameter VARCHAR(255) DEFAULT NULL,
bpjsParameter VARCHAR(255) DEFAULT NULL,
basicSalary VARCHAR(50) DEFAULT 'Basic Salary',
basicSalaryRegular TINYINT(2) DEFAULT NULL COMMENT 'reguler 1 , irregular \n0',
basicSalaryCode VARCHAR(10) DEFAULT NULL,
basicSalaryTaxId TINYINT(1) DEFAULT 1,
jkkDeduction VARCHAR(100) DEFAULT NULL,
jkkDeductionRegular TINYINT(1) DEFAULT NULL,
jkkDeductionCode VARCHAR(50) DEFAULT NULL,
jkkDeductionTaxId TINYINT(1) DEFAULT NULL,
jkmDeduction VARCHAR(100) DEFAULT NULL,
jkmDeductionRegular TINYINT(1) DEFAULT NULL,
jkmDeductionCode VARCHAR(50) DEFAULT NULL,
jkmDeductionTaxId TINYINT(1) DEFAULT NULL,
jhtDeduction VARCHAR(100) DEFAULT NULL,
jhtDeductionRegular TINYINT(1) DEFAULT NULL,
jhtDeductionCode VARCHAR(50) DEFAULT NULL,
jhtDeductionTaxId TINYINT(1) DEFAULT NULL,
jpkDeduction VARCHAR(255) DEFAULT NULL,
jpkDeductionRegular TINYINT(1) DEFAULT NULL,
jpkDeductionCode VARCHAR(50) DEFAULT NULL,
jpkDeductionTaxId TINYINT(1) DEFAULT NULL,
jkkAllowance VARCHAR(255) DEFAULT NULL,
jkkAllowanceRegular TINYINT(1) DEFAULT NULL,
jkkAllowanceCode VARCHAR(50) DEFAULT NULL,
jkkAllowanceTaxId TINYINT(1) DEFAULT NULL,
jkmAllowance VARCHAR(255) DEFAULT NULL,
jkmAllowanceRegular TINYINT(1) DEFAULT NULL,
jkmAllowanceCode VARCHAR(50) DEFAULT NULL,
jkmAllowanceTaxId TINYINT(1) DEFAULT NULL,
jhtAllowance VARCHAR(255) DEFAULT NULL,
jhtAllowanceRegular TINYINT(1) DEFAULT NULL,
jhtAllowanceCode VARCHAR(50) DEFAULT NULL,
jhtAllowanceTaxId TINYINT(1) DEFAULT NULL,
jpkAllowance VARCHAR(255) DEFAULT NULL,
jpkAllowanceRegular TINYINT(1) DEFAULT NULL,
jpkAllowanceCode VARCHAR(50) DEFAULT NULL,
jpkAllowanceTaxId TINYINT(1) DEFAULT NULL,
grossIncomeCode VARCHAR(20) DEFAULT NULL,
grossIncome VARCHAR(255) DEFAULT NULL,
nonEmployeeIncome VARCHAR(255) DEFAULT NULL,
nonEmployeeIncomeCode VARCHAR(25) DEFAULT NULL,
nonEmployeeIncomeId TINYINT(1) DEFAULT NULL,
severanceCode VARCHAR(20) DEFAULT NULL,
severance VARCHAR(255) DEFAULT NULL,
overtime VARCHAR(50) DEFAULT NULL,
overtimeRegular TINYINT(2) DEFAULT NULL,
overtimeCode VARCHAR(10) DEFAULT NULL,
overtimeTaxId TINYINT(1) DEFAULT 1,
allowance1 VARCHAR(50) DEFAULT NULL,
allowance1Regular TINYINT(2) DEFAULT NULL,
allowance1Code VARCHAR(10) DEFAULT NULL,
allowance1TaxId TINYINT(1) DEFAULT 1,
allowance2 VARCHAR(50) DEFAULT NULL,
allowance2Regular TINYINT(2) DEFAULT NULL,
allowance2Code VARCHAR(10) DEFAULT NULL,
allowance2TaxId TINYINT(1) DEFAULT 1,
allowance3 VARCHAR(50) DEFAULT NULL,
allowance3Regular TINYINT(2) DEFAULT NULL,
allowance3Code VARCHAR(10) DEFAULT NULL,
allowance3TaxId TINYINT(1) DEFAULT 1,
allowance4 VARCHAR(50) DEFAULT NULL,
allowance4Regular TINYINT(2) DEFAULT NULL,
allowance4Code VARCHAR(10) DEFAULT NULL,
allowance4TaxId TINYINT(1) DEFAULT 1,
allowance5 VARCHAR(50) DEFAULT NULL,
allowance5Regular TINYINT(2) DEFAULT NULL,
allowance5Code VARCHAR(10) DEFAULT NULL,
allowance5TaxId TINYINT(1) DEFAULT 1,
allowance6 VARCHAR(50) DEFAULT NULL,
allowance6Regular TINYINT(2) DEFAULT NULL,
allowance6Code VARCHAR(10) DEFAULT NULL,
allowance6TaxId TINYINT(1) DEFAULT 1,
allowance7 VARCHAR(50) DEFAULT NULL,
allowance7Regular TINYINT(2) DEFAULT NULL,
allowance7Code VARCHAR(10) DEFAULT NULL,
allowance7TaxId TINYINT(1) DEFAULT 1,
allowance8 VARCHAR(50) DEFAULT NULL,
allowance8Regular TINYINT(2) DEFAULT NULL,
allowance8Code VARCHAR(10) DEFAULT NULL,
allowance8TaxId TINYINT(1) DEFAULT 1,
allowance9 VARCHAR(50) DEFAULT NULL,
allowance9Regular TINYINT(2) DEFAULT NULL,
allowance9Code VARCHAR(10) DEFAULT NULL,
allowance9TaxId TINYINT(1) DEFAULT 1,
allowance10 VARCHAR(50) DEFAULT NULL,
allowance10Regular TINYINT(2) DEFAULT NULL,
allowance10Code VARCHAR(10) DEFAULT NULL,
allowance10TaxId TINYINT(1) DEFAULT 1,
allowance11 VARCHAR(50) DEFAULT NULL,
allowance11Regular TINYINT(1) DEFAULT NULL,
allowance11Code VARCHAR(10) DEFAULT NULL,
allowance11TaxId TINYINT(1) DEFAULT 1,
allowance12 VARCHAR(50) DEFAULT NULL,
allowance12Regular TINYINT(1) DEFAULT NULL,
allowance12Code VARCHAR(10) DEFAULT NULL,
allowance12TaxId TINYINT(1) DEFAULT 1,
allowance13 VARCHAR(50) DEFAULT NULL,
allowance13Regular TINYINT(1) DEFAULT NULL,
allowance13Code VARCHAR(10) DEFAULT NULL,
allowance13TaxId TINYINT(1) DEFAULT 1,
allowance14 VARCHAR(50) DEFAULT NULL,
allowance14Regular TINYINT(1) DEFAULT NULL,
allowance14Code VARCHAR(10) DEFAULT NULL,
allowance14TaxId TINYINT(1) DEFAULT 1,
allowance15 VARCHAR(50) DEFAULT NULL,
allowance15Regular TINYINT(1) DEFAULT NULL,
allowance15Code VARCHAR(10) DEFAULT NULL,
allowance15TaxId TINYINT(1) DEFAULT 1,
allowance16 VARCHAR(50) DEFAULT NULL,
allowance16Regular TINYINT(1) DEFAULT NULL,
allowance16Code VARCHAR(10) DEFAULT NULL,
allowance16TaxId TINYINT(1) DEFAULT 1,
allowance17 VARCHAR(50) DEFAULT NULL,
allowance17Regular TINYINT(1) DEFAULT NULL,
allowance17Code VARCHAR(10) DEFAULT NULL,
allowance17TaxId TINYINT(1) DEFAULT 1,
allowance18 VARCHAR(50) DEFAULT NULL,
allowance18Regular TINYINT(1) DEFAULT NULL,
allowance18Code VARCHAR(10) DEFAULT NULL,
allowance18TaxId TINYINT(1) DEFAULT 1,
allowance19 VARCHAR(50) DEFAULT NULL,
allowance19Regular TINYINT(1) DEFAULT NULL,
allowance19Code VARCHAR(10) DEFAULT NULL,
allowance19TaxId TINYINT(1) DEFAULT 1,
allowance20 VARCHAR(50) DEFAULT NULL,
allowance20Regular TINYINT(1) DEFAULT NULL,
allowance20Code VARCHAR(10) DEFAULT NULL,
allowance20TaxId TINYINT(1) DEFAULT 1,
allowance21 VARCHAR(50) DEFAULT NULL,
allowance21Regular TINYINT(1) DEFAULT NULL,
allowance21Code VARCHAR(10) DEFAULT NULL,
allowance21TaxId TINYINT(1) DEFAULT 1,
allowance22 VARCHAR(50) DEFAULT NULL,
allowance22Regular TINYINT(1) DEFAULT NULL,
allowance22Code VARCHAR(10) DEFAULT NULL,
allowance22TaxId TINYINT(1) DEFAULT 1,
allowance23 VARCHAR(50) DEFAULT NULL,
allowance23Regular TINYINT(1) DEFAULT NULL,
allowance23Code VARCHAR(10) DEFAULT NULL,
allowance23TaxId TINYINT(1) DEFAULT 1,
allowance24 VARCHAR(50) DEFAULT NULL,
allowance24Regular TINYINT(1) DEFAULT NULL,
allowance24Code VARCHAR(10) DEFAULT NULL,
allowance24TaxId TINYINT(1) DEFAULT 1,
allowance25 VARCHAR(50) DEFAULT NULL,
allowance25Regular TINYINT(1) DEFAULT NULL,
allowance25Code VARCHAR(10) DEFAULT NULL,
allowance25TaxId TINYINT(1) DEFAULT 1,
allowance26 VARCHAR(50) DEFAULT NULL,
allowance26Regular TINYINT(1) DEFAULT NULL,
allowance26Code VARCHAR(10) DEFAULT NULL,
allowance26TaxId TINYINT(1) DEFAULT 1,
allowance27 VARCHAR(50) DEFAULT NULL,
allowance27Regular TINYINT(1) DEFAULT NULL,
allowance27Code VARCHAR(10) DEFAULT NULL,
allowance27TaxId TINYINT(1) DEFAULT 1,
allowance28 VARCHAR(50) DEFAULT NULL,
allowance28Regular TINYINT(1) DEFAULT NULL,
allowance28Code VARCHAR(10) DEFAULT NULL,
allowance28TaxId TINYINT(1) DEFAULT 1,
allowance29 VARCHAR(50) DEFAULT NULL,
allowance29Regular TINYINT(1) DEFAULT NULL,
allowance29Code VARCHAR(10) DEFAULT NULL,
allowance29TaxId TINYINT(1) DEFAULT 1,
allowance30 VARCHAR(50) DEFAULT NULL,
allowance30Regular TINYINT(1) DEFAULT NULL,
allowance30Code VARCHAR(10) DEFAULT NULL,
allowance30TaxId TINYINT(1) DEFAULT 1,
allowance31 VARCHAR(50) DEFAULT NULL,
allowance31Regular TINYINT(1) DEFAULT 1,
allowance31Code VARCHAR(10) DEFAULT NULL,
allowance31TaxId TINYINT(1) DEFAULT NULL,
allowance32 VARCHAR(50) DEFAULT NULL,
allowance32Regular TINYINT(1) DEFAULT 1,
allowance32Code VARCHAR(10) DEFAULT NULL,
allowance32TaxId TINYINT(1) DEFAULT NULL,
allowance33 VARCHAR(50) DEFAULT NULL,
allowance33Regular TINYINT(1) DEFAULT 1,
allowance33Code VARCHAR(10) DEFAULT NULL,
allowance33TaxId TINYINT(1) DEFAULT NULL,
allowance34 VARCHAR(50) DEFAULT NULL,
allowance34Regular TINYINT(1) DEFAULT 1,
allowance34Code VARCHAR(10) DEFAULT NULL,
allowance34TaxId TINYINT(1) DEFAULT NULL,
allowance35 VARCHAR(50) DEFAULT NULL,
allowance35Regular TINYINT(1) DEFAULT 1,
allowance35Code VARCHAR(10) DEFAULT NULL,
allowance35TaxId TINYINT(1) DEFAULT NULL,
allowance36 VARCHAR(50) DEFAULT NULL,
allowance36Regular TINYINT(1) DEFAULT 1,
allowance36Code VARCHAR(10) DEFAULT NULL,
allowance36TaxId TINYINT(1) DEFAULT NULL,
allowance37 VARCHAR(50) DEFAULT NULL,
allowance37Regular TINYINT(1) DEFAULT 1,
allowance37Code VARCHAR(10) DEFAULT NULL,
allowance37TaxId TINYINT(1) DEFAULT NULL,
allowance38 VARCHAR(50) DEFAULT NULL,
allowance38Regular TINYINT(1) DEFAULT 1,
allowance38Code VARCHAR(10) DEFAULT NULL,
allowance38TaxId TINYINT(1) DEFAULT NULL,
allowance39 VARCHAR(50) DEFAULT NULL,
allowance39Regular TINYINT(1) DEFAULT 1,
allowance39Code VARCHAR(10) DEFAULT NULL,
allowance39TaxId TINYINT(1) DEFAULT NULL,
allowance40 VARCHAR(50) DEFAULT NULL,
allowance40Regular TINYINT(1) DEFAULT 1,
allowance40Code VARCHAR(10) DEFAULT NULL,
allowance40TaxId TINYINT(1) DEFAULT NULL,
allowance41 VARCHAR(50) DEFAULT NULL,
allowance41Regular TINYINT(1) DEFAULT 1,
allowance41Code VARCHAR(10) DEFAULT NULL,
allowance41TaxId TINYINT(1) DEFAULT NULL,
allowance42 VARCHAR(50) DEFAULT NULL,
allowance42Regular TINYINT(1) DEFAULT 1,
allowance42Code VARCHAR(10) DEFAULT NULL,
allowance42TaxId TINYINT(1) DEFAULT NULL,
allowance43 VARCHAR(50) DEFAULT NULL,
allowance43Regular TINYINT(1) DEFAULT 1,
allowance43Code VARCHAR(10) DEFAULT NULL,
allowance43TaxId TINYINT(1) DEFAULT NULL,
allowance44 VARCHAR(50) DEFAULT NULL,
allowance44Regular TINYINT(1) DEFAULT 1,
allowance44Code VARCHAR(10) DEFAULT NULL,
allowance44TaxId TINYINT(1) DEFAULT NULL,
allowance45 VARCHAR(50) DEFAULT NULL,
allowance45Regular TINYINT(1) DEFAULT 1,
allowance45Code VARCHAR(10) DEFAULT NULL,
allowance45TaxId TINYINT(1) DEFAULT NULL,
allowance46 VARCHAR(50) DEFAULT NULL,
allowance46Regular TINYINT(1) DEFAULT 1,
allowance46Code VARCHAR(10) DEFAULT NULL,
allowance46TaxId TINYINT(1) DEFAULT NULL,
allowance47 VARCHAR(50) DEFAULT NULL,
allowance47Regular TINYINT(1) DEFAULT 1,
allowance47Code VARCHAR(10) DEFAULT NULL,
allowance47TaxId TINYINT(1) DEFAULT NULL,
allowance48 VARCHAR(50) DEFAULT NULL,
allowance48Regular TINYINT(1) DEFAULT 1,
allowance48Code VARCHAR(10) DEFAULT NULL,
allowance48TaxId TINYINT(1) DEFAULT NULL,
allowance49 VARCHAR(50) DEFAULT NULL,
allowance49Regular TINYINT(1) DEFAULT 1,
allowance49Code VARCHAR(10) DEFAULT NULL,
allowance49TaxId TINYINT(1) DEFAULT NULL,
allowance50 VARCHAR(50) DEFAULT NULL,
allowance50Regular TINYINT(1) DEFAULT 1,
allowance50Code VARCHAR(10) DEFAULT NULL,
allowance50TaxId TINYINT(1) DEFAULT NULL,
allowance51 VARCHAR(50) DEFAULT NULL,
allowance51Regular TINYINT(1) DEFAULT NULL,
allowance51Code VARCHAR(10) DEFAULT NULL,
allowance51TaxId TINYINT(1) DEFAULT NULL,
allowance52 VARCHAR(50) DEFAULT NULL,
allowance52Regular TINYINT(1) DEFAULT NULL,
allowance52Code VARCHAR(10) DEFAULT NULL,
allowance52TaxId TINYINT(1) DEFAULT NULL,
allowance53 VARCHAR(50) DEFAULT NULL,
allowance53Regular TINYINT(1) DEFAULT NULL,
allowance53Code VARCHAR(10) DEFAULT NULL,
allowance53TaxId TINYINT(1) DEFAULT NULL,
allowance54 VARCHAR(50) DEFAULT NULL,
allowance54Regular TINYINT(1) DEFAULT NULL,
allowance54Code VARCHAR(10) DEFAULT NULL,
allowance54TaxId TINYINT(1) DEFAULT NULL,
allowance55 VARCHAR(50) DEFAULT NULL,
allowance55Regular TINYINT(1) DEFAULT NULL,
allowance55Code VARCHAR(10) DEFAULT NULL,
allowance55TaxId TINYINT(1) DEFAULT NULL,
allowance56 VARCHAR(50) DEFAULT NULL,
allowance56Regular TINYINT(1) DEFAULT NULL,
allowance56Code VARCHAR(10) DEFAULT NULL,
allowance56TaxId TINYINT(1) DEFAULT NULL,
allowance57 VARCHAR(50) DEFAULT NULL,
allowance57Regular TINYINT(1) DEFAULT NULL,
allowance57Code VARCHAR(10) DEFAULT NULL,
allowance57TaxId TINYINT(1) DEFAULT NULL,
allowance58 VARCHAR(50) DEFAULT NULL,
allowance58Regular TINYINT(1) DEFAULT NULL,
allowance58Code VARCHAR(10) DEFAULT NULL,
allowance58TaxId TINYINT(1) DEFAULT NULL,
allowance59 VARCHAR(50) DEFAULT NULL,
allowance59Regular TINYINT(1) DEFAULT NULL,
allowance59Code VARCHAR(10) DEFAULT NULL,
allowance59TaxId TINYINT(1) DEFAULT NULL,
allowance60 VARCHAR(50) DEFAULT NULL,
allowance60Regular TINYINT(1) DEFAULT NULL,
allowance60Code VARCHAR(10) DEFAULT NULL,
allowance60TaxId TINYINT(1) DEFAULT NULL,
deduction1 VARCHAR(50) DEFAULT NULL,
deduction1Regular TINYINT(1) DEFAULT NULL,
deduction1Code VARCHAR(10) DEFAULT NULL,
deduction1TaxId TINYINT(1) DEFAULT 1,
deduction2 VARCHAR(50) DEFAULT NULL,
deduction2Regular TINYINT(1) DEFAULT NULL,
deduction2Code VARCHAR(10) DEFAULT NULL,
deduction2TaxId TINYINT(1) DEFAULT 1,
deduction3 VARCHAR(50) DEFAULT NULL,
deduction3Regular TINYINT(1) DEFAULT NULL,
deduction3Code VARCHAR(10) DEFAULT NULL,
deduction3TaxId TINYINT(1) DEFAULT 1,
deduction4 VARCHAR(50) DEFAULT NULL,
deduction4Regular TINYINT(1) DEFAULT NULL,
deduction4Code VARCHAR(10) DEFAULT NULL,
deduction4TaxId TINYINT(1) DEFAULT 1,
deduction5 VARCHAR(50) DEFAULT NULL,
deduction5Regular TINYINT(1) DEFAULT NULL,
deduction5Code VARCHAR(10) DEFAULT NULL,
deduction5TaxId TINYINT(1) DEFAULT 1,
deduction6 VARCHAR(50) DEFAULT NULL,
deduction6Regular TINYINT(1) DEFAULT NULL,
deduction6Code VARCHAR(10) DEFAULT NULL,
deduction6TaxId TINYINT(1) DEFAULT 1,
deduction7 VARCHAR(50) DEFAULT NULL,
deduction7Regular TINYINT(1) DEFAULT NULL,
deduction7Code VARCHAR(10) DEFAULT NULL,
deduction7TaxId TINYINT(1) DEFAULT 1,
deduction8 VARCHAR(50) DEFAULT NULL,
deduction8Regular TINYINT(1) DEFAULT NULL,
deduction8Code VARCHAR(10) DEFAULT NULL,
deduction8TaxId TINYINT(1) DEFAULT 1,
deduction9 VARCHAR(50) DEFAULT NULL,
deduction9Regular TINYINT(1) DEFAULT NULL,
deduction9Code VARCHAR(10) DEFAULT NULL,
deduction9TaxId TINYINT(1) DEFAULT 1,
deduction10 VARCHAR(50) DEFAULT NULL,
deduction10Regular TINYINT(1) DEFAULT NULL,
deduction10Code VARCHAR(10) DEFAULT NULL,
deduction10TaxId TINYINT(1) DEFAULT 1,
deduction11 VARCHAR(50) DEFAULT NULL,
deduction11Regular TINYINT(1) DEFAULT NULL,
deduction11Code VARCHAR(10) DEFAULT NULL,
deduction11TaxId TINYINT(1) DEFAULT 1,
deduction12 VARCHAR(50) DEFAULT NULL,
deduction12Regular TINYINT(1) DEFAULT NULL,
deduction12Code VARCHAR(10) DEFAULT NULL,
deduction12TaxId TINYINT(1) DEFAULT 1,
deduction13 VARCHAR(50) DEFAULT NULL,
deduction13Regular TINYINT(1) DEFAULT NULL,
deduction13Code VARCHAR(10) DEFAULT NULL,
deduction13TaxId TINYINT(1) DEFAULT 1,
deduction14 VARCHAR(50) DEFAULT NULL,
deduction14Regular TINYINT(1) DEFAULT NULL,
deduction14Code VARCHAR(10) DEFAULT NULL,
deduction14TaxId TINYINT(1) DEFAULT 1,
deduction15 VARCHAR(50) DEFAULT NULL,
deduction15Regular TINYINT(1) DEFAULT NULL,
deduction15Code VARCHAR(10) DEFAULT NULL,
deduction15TaxId TINYINT(1) DEFAULT 1,
deduction16 VARCHAR(50) DEFAULT NULL,
deduction16Regular TINYINT(1) DEFAULT NULL,
deduction16Code VARCHAR(10) DEFAULT NULL,
deduction16TaxId TINYINT(1) DEFAULT 1,
deduction17 VARCHAR(50) DEFAULT NULL,
deduction17Regular TINYINT(1) DEFAULT NULL,
deduction17Code VARCHAR(10) DEFAULT NULL,
deduction17TaxId TINYINT(1) DEFAULT 1,
deduction18 VARCHAR(50) DEFAULT NULL,
deduction18Regular TINYINT(1) DEFAULT NULL,
deduction18Code VARCHAR(10) DEFAULT NULL,
deduction18TaxId TINYINT(1) DEFAULT 1,
deduction19 VARCHAR(50) DEFAULT NULL,
deduction19Regular TINYINT(1) DEFAULT NULL,
deduction19Code VARCHAR(10) DEFAULT NULL,
deduction19TaxId TINYINT(1) DEFAULT 1,
deduction20 VARCHAR(50) DEFAULT NULL,
deduction20Regular TINYINT(1) DEFAULT NULL,
deduction20Code VARCHAR(10) DEFAULT NULL,
deduction20TaxId TINYINT(1) DEFAULT 1,
deduction21 VARCHAR(50) DEFAULT NULL,
deduction21Regular TINYINT(1) DEFAULT NULL,
deduction21Code VARCHAR(10) DEFAULT NULL,
deduction21TaxId TINYINT(1) DEFAULT 1,
deduction22 VARCHAR(50) DEFAULT NULL,
deduction22Regular TINYINT(1) DEFAULT NULL,
deduction22Code VARCHAR(10) DEFAULT NULL,
deduction22TaxId TINYINT(1) DEFAULT 1,
deduction23 VARCHAR(50) DEFAULT NULL,
deduction23Regular TINYINT(1) DEFAULT NULL,
deduction23Code VARCHAR(10) DEFAULT NULL,
deduction23TaxId TINYINT(1) DEFAULT 1,
deduction24 VARCHAR(50) DEFAULT NULL,
deduction24Regular TINYINT(1) DEFAULT NULL,
deduction24Code VARCHAR(10) DEFAULT NULL,
deduction24TaxId TINYINT(1) DEFAULT 1,
deduction25 VARCHAR(50) DEFAULT NULL,
deduction25Regular TINYINT(1) DEFAULT NULL,
deduction25Code VARCHAR(10) DEFAULT NULL,
deduction25TaxId TINYINT(1) DEFAULT 1,
deduction26 VARCHAR(50) DEFAULT NULL,
deduction26Regular TINYINT(1) DEFAULT NULL,
deduction26Code VARCHAR(10) DEFAULT NULL,
deduction26TaxId TINYINT(1) DEFAULT 1,
deduction27 VARCHAR(50) DEFAULT NULL,
deduction27Regular TINYINT(1) DEFAULT NULL,
deduction27Code VARCHAR(10) DEFAULT NULL,
deduction27TaxId TINYINT(1) DEFAULT 1,
deduction28 VARCHAR(50) DEFAULT NULL,
deduction28Regular TINYINT(1) DEFAULT NULL,
deduction28Code VARCHAR(10) DEFAULT NULL,
deduction28TaxId TINYINT(1) DEFAULT 1,
deduction29 VARCHAR(50) DEFAULT NULL,
deduction29Regular TINYINT(1) DEFAULT NULL,
deduction29Code VARCHAR(10) DEFAULT NULL,
deduction29TaxId TINYINT(1) DEFAULT 1,
deduction30 VARCHAR(50) DEFAULT NULL,
deduction30Regular TINYINT(1) DEFAULT NULL,
deduction30Code VARCHAR(10) DEFAULT NULL,
deduction30TaxId TINYINT(1) DEFAULT 1,
deduction31 VARCHAR(50) DEFAULT NULL,
deduction31Regular TINYINT(1) DEFAULT 1,
deduction31Code VARCHAR(10) DEFAULT NULL,
deduction31TaxId TINYINT(1) DEFAULT NULL,
deduction32 VARCHAR(50) DEFAULT NULL,
deduction32Regular TINYINT(1) DEFAULT 1,
deduction32Code VARCHAR(10) DEFAULT NULL,
deduction32TaxId TINYINT(1) DEFAULT NULL,
deduction33 VARCHAR(50) DEFAULT NULL,
deduction33Regular TINYINT(1) DEFAULT 1,
deduction33Code VARCHAR(10) DEFAULT NULL,
deduction33TaxId TINYINT(1) DEFAULT NULL,
deduction34 VARCHAR(50) DEFAULT NULL,
deduction34Regular TINYINT(1) DEFAULT 1,
deduction34Code VARCHAR(10) DEFAULT NULL,
deduction34TaxId TINYINT(1) DEFAULT NULL,
deduction35 VARCHAR(50) DEFAULT NULL,
deduction35Regular TINYINT(1) DEFAULT 1,
deduction35Code VARCHAR(10) DEFAULT NULL,
deduction35TaxId TINYINT(1) DEFAULT NULL,
deduction36 VARCHAR(50) DEFAULT NULL,
deduction36Regular TINYINT(1) DEFAULT 1,
deduction36Code VARCHAR(10) DEFAULT NULL,
deduction36TaxId TINYINT(1) DEFAULT NULL,
deduction37 VARCHAR(50) DEFAULT NULL,
deduction37Regular TINYINT(1) DEFAULT 1,
deduction37Code VARCHAR(10) DEFAULT NULL,
deduction37TaxId TINYINT(1) DEFAULT NULL,
deduction38 VARCHAR(50) DEFAULT NULL,
deduction38Regular TINYINT(1) DEFAULT 1,
deduction38Code VARCHAR(10) DEFAULT NULL,
deduction38TaxId TINYINT(1) DEFAULT NULL,
deduction39 VARCHAR(50) DEFAULT NULL,
deduction39Regular TINYINT(1) DEFAULT 1,
deduction39Code VARCHAR(10) DEFAULT NULL,
deduction39TaxId TINYINT(1) DEFAULT NULL,
deduction40 VARCHAR(50) DEFAULT NULL,
deduction40Regular TINYINT(1) DEFAULT 1,
deduction40Code VARCHAR(10) DEFAULT NULL,
deduction40TaxId TINYINT(1) DEFAULT NULL,
deduction41 VARCHAR(50) DEFAULT NULL,
deduction41Regular TINYINT(1) DEFAULT 1,
deduction41Code VARCHAR(10) DEFAULT NULL,
deduction41TaxId TINYINT(1) DEFAULT NULL,
deduction42 VARCHAR(50) DEFAULT NULL,
deduction42Regular TINYINT(1) DEFAULT 1,
deduction42Code VARCHAR(10) DEFAULT NULL,
deduction42TaxId TINYINT(1) DEFAULT NULL,
deduction43 VARCHAR(50) DEFAULT NULL,
deduction43Regular TINYINT(1) DEFAULT 1,
deduction43Code VARCHAR(10) DEFAULT NULL,
deduction43TaxId TINYINT(1) DEFAULT NULL,
deduction44 VARCHAR(50) DEFAULT NULL,
deduction44Regular TINYINT(1) DEFAULT 1,
deduction44Code VARCHAR(10) DEFAULT NULL,
deduction44TaxId TINYINT(1) DEFAULT NULL,
deduction45 VARCHAR(50) DEFAULT NULL,
deduction45Regular TINYINT(1) DEFAULT 1,
deduction45Code VARCHAR(10) DEFAULT NULL,
deduction45TaxId TINYINT(1) DEFAULT NULL,
deduction46 VARCHAR(50) DEFAULT NULL,
deduction46Regular TINYINT(1) DEFAULT 1,
deduction46Code VARCHAR(10) DEFAULT NULL,
deduction46TaxId TINYINT(1) DEFAULT NULL,
deduction47 VARCHAR(50) DEFAULT NULL,
deduction47Regular TINYINT(1) DEFAULT 1,
deduction47Code VARCHAR(10) DEFAULT NULL,
deduction47TaxId TINYINT(1) DEFAULT NULL,
deduction48 VARCHAR(50) DEFAULT NULL,
deduction48Regular TINYINT(1) DEFAULT 1,
deduction48Code VARCHAR(10) DEFAULT NULL,
deduction48TaxId TINYINT(1) DEFAULT NULL,
deduction49 VARCHAR(50) DEFAULT NULL,
deduction49Regular TINYINT(1) DEFAULT 1,
deduction49Code VARCHAR(10) DEFAULT NULL,
deduction49TaxId TINYINT(1) DEFAULT NULL,
deduction50 VARCHAR(50) DEFAULT NULL,
deduction50Regular TINYINT(1) DEFAULT 1,
deduction50Code VARCHAR(10) DEFAULT NULL,
deduction50TaxId TINYINT(1) DEFAULT NULL,
severance1 VARCHAR(50) DEFAULT NULL,
severance1Code VARCHAR(10) DEFAULT NULL,
severance1TaxId TINYINT(1) DEFAULT NULL,
severance2 VARCHAR(50) DEFAULT NULL,
severance2Code VARCHAR(10) DEFAULT NULL,
severance2TaxId TINYINT(1) DEFAULT NULL,
severance3 VARCHAR(50) DEFAULT NULL,
severance3Code VARCHAR(10) DEFAULT NULL,
severance3TaxId TINYINT(1) DEFAULT NULL,
severance4 VARCHAR(50) DEFAULT NULL,
severance4Code VARCHAR(10) DEFAULT NULL,
severance4TaxId TINYINT(1) DEFAULT NULL,
severance5 VARCHAR(50) DEFAULT NULL,
severance5Code VARCHAR(10) DEFAULT NULL,
severance5TaxId TINYINT(1) DEFAULT NULL,
severance6 VARCHAR(50) DEFAULT NULL,
severance6Code VARCHAR(10) DEFAULT NULL,
severance6TaxId TINYINT(1) DEFAULT NULL,
severance7 VARCHAR(50) DEFAULT NULL,
severance7Code VARCHAR(10) DEFAULT NULL,
severance7TaxId TINYINT(1) DEFAULT NULL,
severance8 VARCHAR(50) DEFAULT NULL,
severance8Code VARCHAR(10) DEFAULT NULL,
severance8TaxId TINYINT(1) DEFAULT NULL,
severance9 VARCHAR(50) DEFAULT NULL,
severance9Code VARCHAR(10) DEFAULT NULL,
severance9TaxId TINYINT(1) DEFAULT NULL,
severance10 VARCHAR(50) DEFAULT NULL,
severance10Code VARCHAR(10) DEFAULT NULL,
severance10TaxId TINYINT(1) DEFAULT NULL,
loan1 VARCHAR(50) DEFAULT NULL,
loan1Code VARCHAR(10) DEFAULT NULL,
loan1FormulaId TINYINT(1) DEFAULT NULL,
loan2 VARCHAR(50) DEFAULT NULL,
loan2Code VARCHAR(10) DEFAULT NULL,
loan2FormulaId TINYINT(1) DEFAULT NULL,
loan3 VARCHAR(50) DEFAULT NULL,
loan3Code VARCHAR(10) DEFAULT NULL,
loan3FormulaId TINYINT(1) DEFAULT NULL,
loan4 VARCHAR(50) DEFAULT NULL,
loan4Code VARCHAR(10) DEFAULT NULL,
loan4FormulaId TINYINT(1) DEFAULT NULL,
loan5 VARCHAR(50) DEFAULT NULL,
loan5Code VARCHAR(10) DEFAULT NULL,
loan5FormulaId TINYINT(1) DEFAULT NULL,
loan6 VARCHAR(50) DEFAULT NULL,
loan6Code VARCHAR(10) DEFAULT NULL,
loan6FormulaId TINYINT(1) DEFAULT NULL,
loan7 VARCHAR(50) DEFAULT NULL,
loan7Code VARCHAR(10) DEFAULT NULL,
loan7FormulaId TINYINT(1) DEFAULT NULL,
loan8 VARCHAR(50) DEFAULT NULL,
loan8Code VARCHAR(10) DEFAULT NULL,
loan8FormulaId TINYINT(1) DEFAULT NULL,
loan9 VARCHAR(50) DEFAULT NULL,
loan9Code VARCHAR(10) DEFAULT NULL,
loan9FormulaId TINYINT(1) DEFAULT NULL,
loan10 VARCHAR(50) DEFAULT NULL,
loan10Code VARCHAR(10) DEFAULT NULL,
loan10FormulaId TINYINT(1) DEFAULT NULL,
loan11 VARCHAR(50) DEFAULT NULL,
loan11Code VARCHAR(10) DEFAULT NULL,
loan11FormulaId TINYINT(1) DEFAULT NULL,
loan12 VARCHAR(50) DEFAULT NULL,
loan12Code VARCHAR(10) DEFAULT NULL,
loan12FormulaId TINYINT(1) DEFAULT NULL,
loan13 VARCHAR(50) DEFAULT NULL,
loan13Code VARCHAR(10) DEFAULT NULL,
loan13FormulaId TINYINT(1) DEFAULT NULL,
loan14 VARCHAR(50) DEFAULT NULL,
loan14Code VARCHAR(10) DEFAULT NULL,
loan14FormulaId TINYINT(1) DEFAULT NULL,
loan15 VARCHAR(50) DEFAULT NULL,
loan15Code VARCHAR(10) DEFAULT NULL,
loan15FormulaId TINYINT(1) DEFAULT NULL,
loan16 VARCHAR(50) DEFAULT NULL,
loan16Code VARCHAR(10) DEFAULT NULL,
loan16FormulaId TINYINT(1) DEFAULT NULL,
loan17 VARCHAR(50) DEFAULT NULL,
loan17Code VARCHAR(10) DEFAULT NULL,
loan17FormulaId TINYINT(1) DEFAULT NULL,
loan18 VARCHAR(50) DEFAULT NULL,
loan18Code VARCHAR(10) DEFAULT NULL,
loan18FormulaId TINYINT(1) DEFAULT NULL,
loan19 VARCHAR(50) DEFAULT NULL,
loan19Code VARCHAR(10) DEFAULT NULL,
loan19FormulaId TINYINT(1) DEFAULT NULL,
loan20 VARCHAR(50) DEFAULT NULL,
loan20Code VARCHAR(10) DEFAULT NULL,
loan20FormulaId TINYINT(1) DEFAULT NULL,
benefits LONGBLOB DEFAULT NULL,
jhtEmployerNatura TINYINT(1) DEFAULT 0,
gross VARCHAR(10) DEFAULT 'Gross',
nett VARCHAR(10) DEFAULT 'Nett',
jhtEmployerCode VARCHAR(50) DEFAULT NULL,
jhtEmployer VARCHAR(100) DEFAULT NULL,
jhtEmployerTaxId TINYINT(1) DEFAULT NULL,
jhtEmployerRegular TINYINT(1) NOT NULL DEFAULT 1,
jhtEmployerDeduction VARCHAR(100) DEFAULT NULL,
jhtEmployerDeductionTaxId TINYINT(1) DEFAULT NULL,
jhtEmployerDeductionRegular TINYINT(1) NOT NULL DEFAULT 1,
jhtEmployerDeductionCode VARCHAR(10) DEFAULT NULL,
taxAllowanceCode VARCHAR(100) DEFAULT NULL,
totalGrossCode VARCHAR(100) DEFAULT NULL,
totalNetPayCode VARCHAR(100) DEFAULT NULL,
employeeTotalTaxCode VARCHAR(100) DEFAULT NULL,
companyTotalTaxCode VARCHAR(100) DEFAULT NULL,
severanceTotalTaxCode VARCHAR(100) DEFAULT NULL,
totalTaxCode VARCHAR(100) DEFAULT NULL,
totalGrossTaxableCode VARCHAR(100) DEFAULT NULL,
totalGrossSeveranceCode VARCHAR(100) DEFAULT NULL,
taxAllowance VARCHAR(255) DEFAULT NULL,
totalGross VARCHAR(255) DEFAULT NULL,
totalNetPay VARCHAR(255) DEFAULT NULL,
employeeTotalTax VARCHAR(255) DEFAULT NULL,
companyTotalTax VARCHAR(255) DEFAULT NULL,
severanceTotalTax VARCHAR(255) DEFAULT NULL,
totalTax VARCHAR(255) DEFAULT NULL,
totalGrossTaxable VARCHAR(255) DEFAULT NULL,
totalGrossSeverance VARCHAR(255) DEFAULT NULL,
medicalParam TEXT DEFAULT NULL,
pensiunParam TEXT DEFAULT NULL,
jsonGL TEXT DEFAULT NULL,
jsonGLDescription TEXT DEFAULT NULL,
variables LONGTEXT DEFAULT NULL,
createDate DATETIME DEFAULT NULL,
createBy INT(11) DEFAULT NULL,
updateDate TIMESTAMP NULL DEFAULT NULL,
updateBy INT(11) DEFAULT NULL,
PRIMARY KEY (id)
) ENGINE=INNODB ROW_FORMAT=DYNAMIC

@sintret
Copy link
Author

sintret commented Aug 1, 2023

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