Log in

View Full Version : I'd ask Chen this but it's waaaaaaaaay beyond HIM...


filburt1
06-11-2002, 09:59 PM
I have a demo board that I use to show off vB Lite. Every 12 hours or so, how can I have the board automatically reset itself? I mean:

1. Empty the entire db
2. Import the original, fresh install db from a .sql file

?

Mark Hensler
06-12-2002, 02:55 AM
I doubt it's beyond Chen.

Have a cron job fire off a shell script. Something like this...

#!/bin/sh

/path/to/mysql -uUser -pPassword -e "DELETE FROM table_name"
/path/to/mysql -uUser -pPassword -e "DELETE FROM table_name2"

/path/to/mysqlimport -uUser -pPassword database_name file_name.sql

Admin
06-12-2002, 05:11 AM
Or if you have root access, DROP DATABASE, CREATE DATABASE and load the file. :)

(umm, there IS a problem with [code]... argh)

Mark Hensler
06-12-2002, 08:38 PM
Ya, looks like its calling nl2br twice.

filburt1
06-12-2002, 09:33 PM
Coolness...since this is running on my own system I can just schedule a batch file to be run every 12 hours or something?

XyuRi
06-13-2002, 12:47 AM
Originally posted by filburt1
Coolness...since this is running on my own system I can just schedule a batch file to be run every 12 hours or something? that'd probably be the best option (thats probably yhr aproach I'd take)

filburt1
06-14-2002, 12:34 AM
This little batch file doesn't work:


@echo off
echo Resetting vB Lite Demo Board on localhost...
c:
cd \mysql\bin
mysql -uroot -e "DELETE FROM vblite"
mysqlimport -uroot vblite \vblite.sql
echo Reset complete

Output:

C:\>resvblite
Resetting vB Lite Demo Board on localhost...
ERROR 1046 at line 1: No Database Selected
mysqlimport: Error: Table 'vblite.vblite' doesn't exist, when using table: vblite
Reset complete

Mark Hensler
06-14-2002, 04:42 AM
I think I gave you the wrong syntax... sorry

mysql -uUser -pPassword -e "DELETE FROM table_name" database_name

Admin
06-14-2002, 08:25 AM
Or just put EVERYTHING in the vblite.sql file...
Start it with:
USE database_name;
Then proceed with the DELETE FROM queries, and then the import queries.