You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 14, 2019. It is now read-only.
I run this query from \backend\mysql.pl
mysql> LOAD DATA LOCAL INFILE 'C:\release_name' INTO TABLE release_name1 FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '' LINES TERMINATED BY '\n' STARTING BY '';
and saw
Query OK, 790828 rows affected, 3 warnings (44.42 sec)
Records: 802086 Deleted: 0 Skipped: 11258 Warnings: 0
Why do so many records missing?
The text was updated successfully, but these errors were encountered:
The release_name table contains unique text names for releases not the releases themselves. For example the title "Greatest Hits" would be used by many releases but that only gets one record in the release_name table.
it's clear, because some releases are grouped into release_group. But in my case dont copied rows with non-unique field name
Why i have 11 258 missing records?
I run this query from \backend\mysql.pl
mysql> LOAD DATA LOCAL INFILE 'C:\release_name' INTO TABLE release_name1 FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '' LINES TERMINATED BY '\n' STARTING BY '';
and saw
Query OK, 790828 rows affected, 3 warnings (44.42 sec)
Records: 802086 Deleted: 0 Skipped: 11258 Warnings: 0
Why do so many records missing?
The text was updated successfully, but these errors were encountered: