Hi y'all, First, forgive my amateur ways in PHP. Second, I know SQL only by proxy (MySQL). Any way, working on a project for my boss, and didn't realize I didn't have a SQL server (I thought I did because I can do queries via PHP and they work, but I now figure it's because I set up ODBC in XP's Admin - so not a full blown SQL server), so I couldn't get what I wanted done via a command prompt. Any way, fell back on PHP (how wonderful it truly is) and decided to write a text file with SQL queries that would be read and run by PHP. Surprise, it works! Figured I'd post it here, though, so you guys could tell me how to make less offensive to an O.S. Thank for any help. =) Rob *************************** <?php $conn=odbc_connect('DB_Name','',''); if (!$conn) {exit("Connection Failed: " . $conn);} $content = file('change.txt'); $numLines = count($content); for ($i = 0; $i < $numLines; $i++) { $line = trim($content[$i]); $ts=odbc_exec($conn,$line); odbc_close($conn); } ?> change.txt contents: UPDATE Inventory SET LocalSKU='01234' WHERE LocalSKU='01234-b' UPDATE Inventory SET LocalSKU='01235' WHERE LocalSKU='01235-b' etc.