DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: Oracle conversion to quickbooks

  1. #1
    Join Date
    Oct 2008
    Posts
    1

    Oracle conversion to quickbooks

    Does anyone know if there is a solution to transfer data from oracle 8i to quickbooks 8.0?

  2. #2
    Join Date
    Nov 2000
    Location
    Pittsburgh, PA
    Posts
    4,166
    You certainly can transfer the data. Figure out what format Quickbooks wants, and create a query that will produce the correct output. So the following query would help you if you need comma delimited with double quotes.

    Code:
    SET ECHO OFF
    SET PAGESIZE 0
    SET FEEDBACK OFF
    SPOOL c:\quickbooks.csv
    SELECT '"'||col1||'","'||col2||'","'||col3||'"'
      FROM table1
    WHERE col=666;
    spool off;

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width