Hello,
i'm trying to make a security copy of my database using mydac but i can't. I tried to use the client mysqldump but it works in sheel, not as a SQL command ( if i'm not wrong ), so how can i do it using SQL statements? Is it possible? THank you.
P.D.: I'm working in Windows XP environment.
Do Security Copy
Yeah, but i have MyDAC standard so i don't have this component...
I think the best easy solution is to use those sentences:
I think the best easy solution is to use those sentences:
Code: Select all
SELECT * INTO OUTFILE 'file_name' FROM tbl_name.
LOAD DATA INFILE 'file_name' REPLACE ...