i have series of sql commands in a text file. how do i execute these commands in mysql prompt? is there any way to execute them without cut/paste routine?
mysql -u your_login -p database_name < text_file.sql
on the prompt,
mysql> . filename
Thank u guys!