Easy data conversion tool - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:19:36Z http://stackoverflow.com/feeds/question/122838 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/122838/easy-data-conversion-tool 0 Easy data conversion tool Peter 2008-09-23T18:29:29Z 2008-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#122866 1 Answer by SaaS Developer for Easy data conversion tool SaaS Developer 2008-09-23T18:34:13Z 2008-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#122869 0 Answer by Mark Bessey for Easy data conversion tool Mark Bessey 2008-09-23T18:34:25Z 2008-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#122872 1 Answer by Paul for Easy data conversion tool Paul 2008-09-23T18:34:44Z 2008-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#122873 0 Answer by HLGEM for Easy data conversion tool HLGEM 2008-09-23T18:35:02Z 2008-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#122908 0 Answer by hectorsosajr for Easy data conversion tool hectorsosajr 2008-09-23T18:39:41Z 2008-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#123102 0 Answer by Gordon Bell for Easy data conversion tool Gordon Bell 2008-09-23T19:08:03Z 2008-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>