Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qfq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
typo3
qfq
Commits
6372b339
Commit
6372b339
authored
1 year ago
by
Carsten Rose
Browse files
Options
Downloads
Patches
Plain Diff
Add hint use mysqldump with one row per record
parent
ecea3427
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!638
Merge Develop to B16343
,
!637
develop into F17086-Multiple-Forms-on-a-page
,
!626
New version v23.10.1
Pipeline
#10787
passed
1 year ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Documentation/GeneralTips.rst
+12
-4
12 additions, 4 deletions
Documentation/GeneralTips.rst
with
12 additions
and
4 deletions
Documentation/GeneralTips.rst
+
12
−
4
View file @
6372b339
...
...
@@ -301,13 +301,21 @@ Row size too large
* Details: https://mariadb.com/kb/en/troubleshooting-row-size-too-large-errors-with-innodb/
* Typically too many columns per table on an InnoDB Table.
* First try is to check (and to change) ROW_FORMAT::
* First try is to check (and to change) ROW_FORMAT:
:
:
ALTER TABLE tab ROW_FORMAT=DYNAMIC;
* Bad workaround for creating a wide table::
SET SESSION innodb_strict_mode=OFF;
CREATE TABLE ...
SET SESSION innodb_strict_mode=OFF;
CREATE TABLE ...
* Best is to change as much columns as neccessary from ``varchar()`` to ``tinytext`` / ``text``
SQL Dump with one record per line
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Sometimes it's helpful to have SQL dumps with each record on a single line::
msyqldump --skip-opt <DB-Name>
* Best is to change as much columns as neccessary from ``varchar()`` to ``tinytext`` / ``text``
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment