Ik probeer een database te importeren in phpmyadmin
Wie o wie kan mij helpen.
Ik probeer een database te importeren in phpmyadmin.
Alleen krijg ik een foutmelding te zien. Ik heb de Tebels al leeg gemaakt.
Hoe maak ik de SQL-query/-query's uit op database Leeg?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Fout
SQL-query: Kopiren
--
-- Database: `freewe1q_root`
--
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `animate_any_settings`
--
CREATE TABLE `animate_any_settings` (
`aid` int(10) UNSIGNED NOT NULL COMMENT 'The primary identifier for a animate table.',
`parent` varchar(100) NOT NULL DEFAULT '' COMMENT 'Parent class entry',
`identifier` text NOT NULL COMMENT 'JSON data of identifier and animation'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for nodes.'
MySQL meldt:
#1050 - Tabel 'animate_any_settings' bestaat al
SQL-query: Kopiren
--
-- Database: `freewe1q_root`
--
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `animate_any_settings`
--
CREATE TABLE `animate_any_settings` (
`aid` int(10) UNSIGNED NOT NULL COMMENT 'The primary identifier for a animate table.',
`parent` varchar(100) NOT NULL DEFAULT '' COMMENT 'Parent class entry',
`identifier` text NOT NULL COMMENT 'JSON data of identifier and animation'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for nodes.'
MySQL meldt:
#1050 - Tabel 'animate_any_settings' bestaat al
Dat die leeg is, maakt niet dat het dan opeens geen tabel meer is.
Dus verwijder die tabel, en probeer opnieuw.
Gewijzigd op 06/02/2021 12:37:26 door - Ariën -
Is dat in phpadmin niet zo??
Gewijzigd op 06/02/2021 14:39:21 door John D
De melding is Inderdaad duidelijk. Alleen als ik alles verwijder kan ik weer op nieuw beginnen .
De data. komt van een andere website af. Die ik wil importeren.
Normaal gesproken overschrijft die zulke dingen. Maar dat gebeurt niet.
@ Adoptive Solution.
De php code werkt helaas ook niet.
Als ik dit uitvoer krijg ik regels van foutmelding te zien.
@John D.
Op de command line weet ik niet zo precies hoe zoiets moet.
Ik werk op een wampserver
Gewijzigd op 09/02/2021 16:23:45 door Martijn -
Een structuur aanmaken is 'a piece of cake'.
Verder laat Adoptive Solution een SQL-code zien, geen PHP-code. Dus ik denk dat je hier mee ergens wat fout doet.
Gewijzigd op 08/02/2021 16:21:48 door - Ariën -
Het is SQL.
Als ik onderstaande SQL uitvoer en opnieuw doe, wordt de table aangemaakt
Code (php)
1
2
3
4
5
6
2
3
4
5
6
DROP TABLE IF EXISTS `animate_any_settings`;
CREATE TABLE `animate_any_settings` (
`aid` int(10) UNSIGNED NOT NULL COMMENT 'The primary identifier for a animate table.',
`parent` varchar(100) NOT NULL DEFAULT '' COMMENT 'Parent class entry',
`identifier` text NOT NULL COMMENT 'JSON data of identifier and animation'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for nodes.';
CREATE TABLE `animate_any_settings` (
`aid` int(10) UNSIGNED NOT NULL COMMENT 'The primary identifier for a animate table.',
`parent` varchar(100) NOT NULL DEFAULT '' COMMENT 'Parent class entry',
`identifier` text NOT NULL COMMENT 'JSON data of identifier and animation'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='The base table for nodes.';
En nogmaals geprobeerd en het is gelukt. Bedankt voor de hulp:-)