Easy data conversion tool - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T06:19:36Zhttp://stackoverflow.com/feeds/question/122838http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/122838/easy-data-conversion-tool0Easy data conversion toolPeter2008-09-23T18:29:29Z2008-09-23T22:13:31Z
<p>I often have data in Excel or text that I need to get into SqlServer. I can use ODBC to query the Excel file and I can parse the text file. What I want though is some tool that will just grab the data and put it into tables with little / no effort. Does anyone know of such a tool?</p>
http://stackoverflow.com/questions/122838/easy-data-conversion-tool/122866#1228661Answer by SaaS Developer for Easy data conversion toolSaaS Developer2008-09-23T18:34:13Z2008-09-23T18:34:13Z<p>If you are using Sql Server look at <a href="http://www.microsoft.com/sql/technologies/integration/default.mspx" rel="nofollow">Integration Services</a> (SSIS).</p>
http://stackoverflow.com/questions/122838/easy-data-conversion-tool/122869#1228690Answer by Mark Bessey for Easy data conversion toolMark Bessey2008-09-23T18:34:25Z2008-09-23T22:13:31Z<p>Seems like it'd be pretty easy to write a script that reads the text file, and converts it to "INSERT * into TABLE" Sql statements. I suspect this has already been done, but a simple implementation would be less than 100 lines of code in your favorite scripting language.</p>
<p>Hey, Google says SQLServer comes with such a tool, <a href="http://sqlserver2000.databases.aspfaq.com/how-do-i-load-text-or-csv-file-data-into-sql-server.html" rel="nofollow">BULK INSERT</a>:</p>
http://stackoverflow.com/questions/122838/easy-data-conversion-tool/122872#1228721Answer by Paul for Easy data conversion toolPaul2008-09-23T18:34:44Z2008-09-23T18:34:44Z<p>You can also take a look at <a href="http://www.parse-o-matic.com/" rel="nofollow">parse-o-matic</a></p>
http://stackoverflow.com/questions/122838/easy-data-conversion-tool/122873#1228730Answer by HLGEM for Easy data conversion toolHLGEM2008-09-23T18:35:02Z2008-09-23T18:35:02Z<p>Use DTS or SSIS depending on which version of SQL Server you have. There is an import wizard which can get you started, but data imports are rarely simple and usually involve some sort of data cleanup so that your incoming data is acceptable to the table where you intend to store it. Excel data, in my experience, is usually particularly bad inthis respect becasue it often isn't stored properly in Excel to begin with.</p>
http://stackoverflow.com/questions/122838/easy-data-conversion-tool/122908#1229080Answer by hectorsosajr for Easy data conversion toolhectorsosajr2008-09-23T18:39:41Z2008-09-23T18:39:41Z<p>I haven't seen commercial tools that do this. I create this kind of tools at work all the time, and the data validation is not trivial. This just makes sure that you don't have bad data making it into your database.</p>
<p>I found that for simple data conversion needs something like <a href="http://filehelpers.com/" rel="nofollow">FileHelpers</a> is pretty good. It still needs programming though. This framework is fairly easy to use, and somebody with a little bit of experience could bang something out for you.</p>
<p>On further thought, you can use the SQL Server <a href="http://msdn.microsoft.com/en-us/library/ms162802.aspx" rel="nofollow">bcp utility</a> to upload the contents of a text file. This is a command-line utility and has a lot of switches. I would suggest you experiment on a test table before you use this in a production table.</p>
<p>It's been a while since I used it, so I can't remember if you can directly use an Excel spreadsheet. Text files are always the easiest to deal with in any case.</p>
http://stackoverflow.com/questions/122838/easy-data-conversion-tool/123102#1231020Answer by Gordon Bell for Easy data conversion toolGordon Bell2008-09-23T19:08:03Z2008-09-23T19:08:03Z<p>Have you tried the <strong>SQL Server Import/Export Wizard</strong> ?</p>
<p>In SQL Server Management Studio, right-click your Database Name, and select <strong>Tasks</strong> menu, <strong>Import Data</strong>. For Data Source, select <strong>Microsoft Excel</strong>, browse to the <strong>.XLS</strong>...</p>