SET FOREIGN_KEY_CHECKS=0;
drop table comments, users, zwischentabelle_1, ...;
SET FOREIGN_KEY_CHECKS=1;
Extra Info zu Mysql: ist ein DB System
SET FOREIGN_KEY_CHECKS=0;
drop table comments, users, zwischentabelle_1, ...;
SET FOREIGN_KEY_CHECKS=1;
Mysql-Backup-Alle-DBs-auf-USB.cmd
@echo off
c:\xampp\mysql\bin\mysql.exe -u root -s -N -e "SHOW DATABASES" | for /F "usebackq" %%D in (`findstr /V "information_schema performance_schema"`) do c:\xampp\mysql\bin\mysqldump.exe %%D -u root > f:\backups\%%D.sql
Mysql-Backup-Alle-DBs-auf-USB.vbs
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run chr(34) & "C:\Mysql-Backup-Alle-DBs-auf-USB.cmd" & Chr(34), 0
Set WshShell = Nothing
PDO unterstützt mehr als 10 DB-Drivers, Mysqli nur einen(MySQL).
PDO ist flexibler als Mysqli.
Mysqli ist bis 5% schneller.
PDO bietet mehr Sicherheit.
Ein einfaches Drupal 8 Website ist extrem langsam. Manche Unterseiten und Admin Bereich lassen sich manchmal in bis zu 90 Sekunden laden.
ALTER TABLE node ENGINE=MyISAM;
Gibt es Nachteile von MyISAM für Drupal 8?
Ist InnoDB eine Art Voraussetzung?
Ich habe große Tabelle mit mehr als 1 mio. Daten. Inserts dauern bei InnoDB 100-150 mal langsamer als MyISAM. Wie kann ich die Leistung von InnoDB verbessern.
Wenn man eine Query 10 mal wiederholen möchte, kann man so was verwenden:
Query 1:
DELIMITER $$
DROP PROCEDURE IF EXISTS mysql_loop_repeat_myprocedure1$$
CREATE PROCEDURE mysql_loop_repeat_myprocedure1()
BEGIN
DECLARE x INT;
SET x = 1;
REPEATINSERT INTO `users` ( `username` ) VALUES ( concat('BenutzerName', '-', (FLOOR(RAND() * 401) + 800)) );
Mysql Server startet nicht, bekomme diese Fehlermeldung:
/etc/init.d/mysql restart [....] Restarting mysql (via systemctl): mysql.serviceJob for mysql.service failed. See 'systemctl status mysql.service' and 'journalctl -xn' for details.
Was soll ich tun?
Alle Datanbanken und deren große auf der Festplatte möchte ich mit dieser Code auflisten lassen:
SELECT table_schema AS "Datenbank", SUM(data_length + index_length) / 1024 / 1024 AS "Size (in MB)"
Wenn ich prepare und execute mit $ _POST als Array verwende bekomme eine Fehlermeldung. Meine PHP-Code:
<?php
include("db.php");
Welche ist besser für Anwendungen mit PHP und MySQL? Ich bin Anfänger und verstehe nur, dass alte mysql_* nicht mehr gültig ist und viele Sicherheitslücken hat. Ich habe ein paar Artikel und Forumkommentare gelesen. Aber konnte bisher keine konkrete Antwort finden.
Neueste Kommentare
Same with Drush 13 + PHP 8.3 and my Solution
Same with Drush 13 + PHP 8.3
Error : Failed to install the required package 'RPM' by using AP
Initializing...
Error : Failed to install the required package 'RPM' by using APT. Please install it manually.
Exit
Solution:
Installieren & Aktivieren
So habe es installiert und dann mit Hilfe von Key/Code (über Website von Acronis Cyber Protect) aktiviert:
I have a view with a path…
I have a view with a path like
/my-content-export
to export entivies as JSON or CSV.admin_toolbar 3.5.2 is the…
admin_toolbar 3.5.2 is the reason. Patch coming ...
Tools & Settings >> Security…
Tools & Settings >> Security Policy :
Allow only secure FTPS connections
List config vaiables
/usr/sbin/mariadbd --help --verbose | grep "query.*size"
Restart MariaDB / MySQL
Commandline:
MariaDB Restart (after changes in /etc/mysql/db-performance.cnf)
After my changes in /etc/mysql/db-performance.cnf
Error: configure: error: no acceptable C compiler found in $PATH
Error: