.sql Import in Datenbank (250mb)
.sql Import in Datenbank (250mb)
Schönen Guten Tag
Ich möchte einen DatenbankBackup von 250mb in eine Datenbank importieren...
das problem ist der limit ist 3mb da will ich ja auch nichts dran rütteln...
Ich möchte wissen wie man per Shell per localhost eine Datei die schon auf dem Server liegt in eine Datenbank importieren kann. Ich benutze ein Linux Debian System mit Confixx...
Ich würde mich sehr bedanken wenn mir jemand helfen könnte :roll:
Mit freundlichen Grüssen aus Luxemburg
Kanios
Ich möchte einen DatenbankBackup von 250mb in eine Datenbank importieren...
das problem ist der limit ist 3mb da will ich ja auch nichts dran rütteln...
Ich möchte wissen wie man per Shell per localhost eine Datei die schon auf dem Server liegt in eine Datenbank importieren kann. Ich benutze ein Linux Debian System mit Confixx...
Ich würde mich sehr bedanken wenn mir jemand helfen könnte :roll:
Mit freundlichen Grüssen aus Luxemburg
Kanios
Re: .sql Import in Datenbank (250mb)
mysql -uuser -ppass db < file.sql
Re: .sql Import in Datenbank (250mb)
1.
mysql -uroot -pPASSWORT dbusr_web8_2 < mangos.sql
Fehler:
ERROR 1049 (42000): Unknown database 'dbusr_web8_2'
2.
mysql -uroot -pPASSWORT db usr_web8_2 < mangos.sql
Fehler:
Es erscheint eine Helpoberfläche
3.
mysql -uroot -pPASSWORT -Dusr_web8_2 < mangos.sql
Fehler:
ERROR at line 3: Failed to open file 'Host: localhost', error: 2
4.
mysql -uroot -pPASSWORT -D usr_web8_2 < mangos.sql
ERROR at line 3: Failed to open file 'Host: localhost', error: 2
Ich glaub es gibt Probleme beim öffnen von der Datei :roll: :roll: :roll:
mysql -uroot -pPASSWORT dbusr_web8_2 < mangos.sql
Fehler:
ERROR 1049 (42000): Unknown database 'dbusr_web8_2'
2.
mysql -uroot -pPASSWORT db usr_web8_2 < mangos.sql
Fehler:
Es erscheint eine Helpoberfläche
3.
mysql -uroot -pPASSWORT -Dusr_web8_2 < mangos.sql
Fehler:
ERROR at line 3: Failed to open file 'Host: localhost', error: 2
4.
mysql -uroot -pPASSWORT -D usr_web8_2 < mangos.sql
ERROR at line 3: Failed to open file 'Host: localhost', error: 2
Ich glaub es gibt Probleme beim öffnen von der Datei :roll: :roll: :roll:
Re: .sql Import in Datenbank (250mb)
Code: Select all
mysql -uroot -p usr_web8_2 < mangos.sql
Re: .sql Import in Datenbank (250mb)
mysql -uroot -p usr_web8_2 < mangos.sql
Enter password:xxxxxx
ERROR at line 3: Failed to open file 'Host: localhost', error: 2
Ich glaub es liegt jez nicht mehr am Befehl sondern er kann die datei niht importieren ... ich bin wirklich ratlos kann mir einer sage wie ich das beheben soll brauche die Datenbank schon jez gleich in den nexten Tagen...
Enter password:xxxxxx
ERROR at line 3: Failed to open file 'Host: localhost', error: 2
Ich glaub es liegt jez nicht mehr am Befehl sondern er kann die datei niht importieren ... ich bin wirklich ratlos kann mir einer sage wie ich das beheben soll brauche die Datenbank schon jez gleich in den nexten Tagen...
Re: .sql Import in Datenbank (250mb)
Wie fängt denn der Dump an und wie ist der erzeugt worden?
flo.
flo.
Re: .sql Import in Datenbank (250mb)
ok danke ist jez egal ich habs jez einfach über php gemacht
das ding heisst bigdump also per ssh gings nicht bei mir also für die nachwelt
nutzt bigdump
das ding heisst bigdump also per ssh gings nicht bei mir also für die nachwelt
nutzt bigdump
Re: .sql Import in Datenbank (250mb)
Für das nächste Mal:
Code: Select all
sed 's/^#/-- /g' -i dbdump.sql
mysql -uDBuser -pDBpass DBname < dbdump.sql
PayPal.Me/JoeUser ● FreeBSD Remote Installation
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Re: .sql Import in Datenbank (250mb)
<OT>
Haben wir einen Bashing-Smiley?
</OT>
Haben wir einen Bashing-Smiley?
</OT>
Re: .sql Import in Datenbank (250mb)
<OT>
[-(
</OT>
[-(
</OT>
PayPal.Me/JoeUser ● FreeBSD Remote Installation
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
Wings for Life ● Wings for Life World Run
„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.