November 14, 2013 at 7:48 am
Hi Experts
Can anyone please guide me how to create destination dynamically as its from Quickbook Source table.In Quickbook i am having 150 tables,how to create table in SQL Server and import the data.
please guide me experts.
Thanks in advance.
--------------------------------------------------------
I am Learner -- SQL
November 17, 2013 at 5:44 am
Export the data from Quickbook (e.g. as formatted txt files) and use SSIS to read the folder and import the data.
If you don't want to use SSIS , you could read the content of the folder into a table using
EXEC Master.dbo.xp_DirTree 'yourpathhere',1,1
and fetch over each row to dynamically create the OPENROWSET statement.
As to my knowledge there's no direct connection available to connect to Quickbook.
December 4, 2013 at 10:48 am
at one point, built a .NET project that used the quickbooks connector from http://www.rssbus.com/;
with that, and some minor configuration in quickbooks to allow remote access, i was able to see all the "tables" that exist in the quickbooks database live, and then could query them, use LINQ to join them together, export them out to a SQL server database or to disk or anything i wanted to;
I used the 30 day trial as a proof of concept, and then the company i was consulting for bought a license to go with the application.
the one thing at the time, that i felt that was lacking, was the ability to read the relationship between an invoice detail line items that exist on an invoice, and where/how they were tied to items in the ledger; that was with the RSS 1.0 version, and it's several versions worth of improvements since then.
Lowell
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply