Log in

View Full Version : Help in rectifying my database


sdfaheem
03-20-2008, 10:14 PM
I recently shifted servers and uploaded the folder accordingly.
My database file is around 70 mb so i am using Bigdump to restore it.
But when i attempt to restore, i get an error message:
Error at the line 34: ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1;

Query: CREATE TABLE `photoplog_categories` (
`catid` int(10) unsigned NOT NULL auto_increment,
`title` varchar(255) NOT NULL default '',
`description` mediu-- Sending SELECT query...
mtext NOT NULL,
`displayorder` smallint(6) NOT NULL default '0',
`parentid` smallint(6) NOT NULL default '0',
`options` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`catid`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1;

MySQL: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'mediu-- Sending SELECT query... mtext NOT NULL, `displayorder` smallint(6) NOT' at line 4

I am really in a fix as i have no prior experience in handling this type of stuff(database)
Could anyone of you help me in rectifying my database or could provide me any alternative method of restoring the file on my new server?
I would be willing to provide you all the login details, only to a reputed member here.

King Kovifor
03-20-2008, 10:17 PM
The easiest way for you to rectify a photoplog problem would be requesting official support from their site or the hack's thread. But I believe the problem may lie in the description field. It may require quotes around 'mediu-- sending SELECT query...'

sdfaheem
03-20-2008, 10:28 PM
I tried delete the photoplog entries from the database and then i got this error: Error at the line 198: LOCK TABLES `vb_adv_modules` WRITE;

Query: --
`vb_adv_modules`
--
LOCK TABLES `vb_adv_modules` WRITE;

MySQL: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'vb_adv_modules` -- LOCK TABLES `vb_adv_modules` WRITE' at line 2

I know i have gone wrong somewhere as i do not even have the basic knowledge of how a database works.
Its very tiring you know, every time i need to wait till the 65 mb file uploads.
Even the guys at vb.com suggested me to contact photoplog, but do u think will it be of any effect?

Marco van Herwaarden
03-21-2008, 09:12 AM
`description` mediu-- Sending SELECT query...
mtext NOT NULL,
Seems more BigDump related as there is rogue text inserted in the query. This should have been:
`description` mediumtext NOT NULL,
I suggest you try an alternative method instead of BigDump or contact their support.

The only reliable method of backing up and restoring a database is with shell access via telnet or ssh. This is because backing up with a PHP script like that in the Admin CP or phpMyAdmin can result in PHP timeouts errors and an incomplete backup file. Please see the instructions here:

Backup:
http://www.vbulletin.com/docs/html/maintenance_ssh_backup

Restore:
http://www.vbulletin.com/docs/html/maintenance_ssh_restore

P.S. If you don't have shell access, some people have also reported success with these scripts:

MySQLDumper:
http://www.mysqldumper.de/en/index.php

MySQLHotxcopy:
http://www.vbulletin.com/forum/showthread.php?t=134821&highlight=mysqlhotcopy

Bigdump:
http://www.ozerov.de/bigdump.php

sdfaheem
03-21-2008, 09:55 AM
I do not know if i have SSH or Telnet access, though i have a reseller hosting account, i am just new to all this and lot worried.
I tried with Bigdump, but getting errors, thinking of trying mysqldumper.
Lets see how it goes

Thanks Marco