For fix :
- http://ftp.debian.org/debian jessie-backports/main amd64 Packages 404 Not Found [IP: 130.89.148.12 80]
On Debian 9 : comment jessie-backports in /etc/apt/sources.list.d/backports.list or in /etc/apt/sources.list
..010...010 | |
.01011.01100 | |
0110111101110 | |
1100110010101 | |
.11100101101 | |
...1110111 | |
.....010 | |
......1 |
For fix :
On Debian 9 : comment jessie-backports in /etc/apt/sources.list.d/backports.list or in /etc/apt/sources.list
SELECT guid, post_title, post_content | |
FROM `posts` | |
WHERE post_type = 'post' | |
AND post_content LIKE '%href%'; |
echo 'docker ps:'; | |
echo '- run:' $((`docker ps | wc -l` -1)); | |
echo '--all:' $((`docker ps -a | wc -l` -1)); | |
echo '--lastest:' ;\docker ps -l; |
Please run below sql code
SET @file = '/i/m/image.jpg';
START TRANSACTION;
DELETE FROM catalog_product_entity_media_gallery WHERE value = @file;
DELETE FROM catalog_product_entity_varchar WHERE value = @file;
COMMIT;
echo 'Docker ps:';\ | |
echo '- run:' $((`docker ps | wc -l` -1));\ | |
echo '--all:' $((`docker ps -a | wc -l`));\ | |
echo '--lastest:' ;\ | |
docker ps -l; |
mysql> desc tax_calculation;
+-------------------------+-------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------------------------+-------------+------+-----+---------+----------------+
| tax_calculation_id | int(11) | NO | PRI | NULL | auto_increment |
| tax_calculation_rate.tax_calculation_rate_id | int(11) | NO | MUL | NULL | |
| tax_calculation_rule.tax_calculation_rule_id | int(11) | NO | MUL | NULL | |
| tax_class.class_id (customer_tax_class_id) | smallint(6) | NO | MUL | NULL | |
| tax_class.class_id (product_tax_class_id) | smallint(6) | NO | MUL | NULL | |
Test CheckBox
- [ ]
checked
#!/bin/bash | |
#### | |
# Split MySQL dump SQL file into one file per table | |
# based on http://blog.tty.nl/2011/12/28/splitting-a-database-dump | |
#### | |
if [ $# -lt 1 ] ; then | |
echo "USAGE $0 DUMP_FILE [TABLE]" | |
exit |