This is a discussion on dumping data from database within the SQL Server forums, part of the Microsoft SQL Server category; --> Hi I need to dump data from database in to *.sql file. I try it using DUMP DATABASE but ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi I need to dump data from database in to *.sql file. I try it using DUMP DATABASE but it not work that I need it. So, how can I dump data from database in to *.sql file and then run it using: osql -E -i nameOfDumpedDatabase.sql Thanks for help, greetings, gregory |
| |||
| "rozrabiak" <brak@maila.pl> wrote in message news:c6r83b$5ra$1@news.onet.pl... > Hi > I need to dump data from database in to *.sql file. I try it using DUMP > DATABASE but it not work that I need it. > > So, how can I dump data from database in to *.sql file and then run it > using: osql -E -i nameOfDumpedDatabase.sql > > > Thanks for help, greetings, gregory You can use bcp.exe or DTS to export data to a file and load it again, or if you prefer INSERT statements then see here: http://vyaskn.tripod.com/code.htm#inserts If you want everything (objects and data), then BACKUP and RESTORE is often the easiest way. Simon |
| |||
| rozrabiak (brak@maila.pl) writes: > I need to dump data from database in to *.sql file. I try it using DUMP > DATABASE but it not work that I need it. > > So, how can I dump data from database in to *.sql file and then run it > using: osql -E -i nameOfDumpedDatabase.sql In Enterprise Manager, find the database, right-click, select All Tasks, and in that submenu you find scripting options. -- Erland Sommarskog, SQL Server MVP, sommar@algonet.se Books Online for SQL Server SP3 at http://www.microsoft.com/sql/techinf...2000/books.asp |
| |||
| Erland Sommarskog <sommar@algonet.se> wrote in message news:<Xns94DAF1247AB58Yazorman@127.0.0.1>... > rozrabiak (brak@maila.pl) writes: > > I need to dump data from database in to *.sql file. I try it using DUMP > > DATABASE but it not work that I need it. > > > > So, how can I dump data from database in to *.sql file and then run it > > using: osql -E -i nameOfDumpedDatabase.sql > > In Enterprise Manager, find the database, right-click, select All Tasks, > and in that submenu you find scripting options. There is a Java program called Super*SQL which will unload any tables you have into an ASCII file that you can then run or load into a different database. For more information visit www.sqlmagic.com. |
| ||||
| rozrabiak <brak@maila.pl> wrote in message news:<c6r83b$5ra$1@news.onet.pl>... > Hi > I need to dump data from database in to *.sql file. I try it using DUMP > DATABASE but it not work that I need it. Hi, you could also look at this article which describes a Java utility to dump both data and schema information to an SQL file. http://isocra.com/articles/article.php?id=java_db_dump We wrote it because we needed to synchronize two remote SQLServer databases as well as a MySQL development database. In fact it's pretty easy to integrate it into a JSP to give the same sort of dumping functionality as phpMyAdmin but for SQLServer. |