<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Transfer data from SAP to SQL server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931542#M941322</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried with DB multiconnect as mentioned before? If yes, what issues are you facing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Jan Stallkamp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Jul 2008 08:59:36 GMT</pubDate>
    <dc:creator>JanStallkamp</dc:creator>
    <dc:date>2008-07-23T08:59:36Z</dc:date>
    <item>
      <title>Transfer data from SAP to SQL server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931534#M941314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAP Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to transfer data from SAP and pass it on to SQL server. Basically no middleware should be involved and data should be dumped instantly into SQL database. In other words, I will write a program to pull data and call a function(probably RFC and what ever mechanism) to instantly dump data in SQL database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I havent come across this requirement before, need your help in identifying various means of transfering data. Appreciate your replies as soon as possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vamsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 17:06:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931534#M941314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T17:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer data from SAP to SQL server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931535#M941315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of using a RFC you can use native SQL commands. Follow an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: exc_ref    TYPE REF TO cx_sy_native_sql_error, 
      error_text TYPE string. 

TRY. 
    EXEC SQL. 
      INSERT INTO scarr 
                  (MANDT, CARRID, CARRNAME, CURRCODE, URL) 
        VALUES ('000', 'FF', 'Funny Flyers', 'EUR', 
                'http://www.ff.com'); 
      INSERT INTO scarr 
                 (MANDT, CARRID, CARRNAME, CURRCODE, URL) 
        VALUES ('000', 'EF', 'Easy Flyers', 'EUR', 
                'http://www.ef.com'); 
    ENDEXEC. 
  CATCH cx_sy_native_sql_error INTO exc_ref. 
    error_text = exc_ref-&amp;gt;get_text( ). 
    MESSAGE error_text TYPE 'I'. 
ENDTRY. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 17:26:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931535#M941315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T17:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer data from SAP to SQL server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931536#M941316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I need to transfer data to a different SQL server database(there are tables on this server where I need to dump data pulled from SAP tables). But your command show that you are trying to insert data into SAP itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vamsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 17:33:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931536#M941316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T17:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer data from SAP to SQL server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931537#M941317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeah, that's what I was wondering. the example looks like it's trying to insert data into SAP tables directly.. what about an external DB?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we use XI to transfer data to a SQL DB. I pass the data through an RFC to XI. they update the SQL DB. all happens asynchronously, but does happen almost immediately.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 17:51:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931537#M941317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T17:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer data from SAP to SQL server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931538#M941318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vamsi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I understand you right you want to write a report in ABAP that can store data in an MS-SQL database that is located on an other server than your SAP database. Is that right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes I would suggest looking into ADBC (wimre that stands for ABAP DataBase Connector). There are some classes like CL_SQL_STATEMENT that allow this. One requirement is that you have installed the right DBSL (if your SAP system is running on a MS-SQL DB that is ok anyway) and. Then you have to maintain an database connection to the remote system. Transaction DBACOCKPIT is one way to do that. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I'm posting that from home and not being in the office I don't have access to all documentation at the moment so I cannot go into detail here. And I fear there is not much documentation available in the public at all. But if you search for it you will find something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But please remember one drawback of using ADBC (or EXEC-SQL or anything like that): You are writing native SQL that is executed on the database. ABAP syntax checks cannot help you at all. And you can do a lot of damage when accessing a database directly without good knowledge of what you are doing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Jan Stallkamp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 18:24:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931538#M941318</guid>
      <dc:creator>JanStallkamp</dc:creator>
      <dc:date>2008-06-03T18:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer data from SAP to SQL server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931539#M941319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. Let me try in this direction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vamsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 21:48:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931539#M941319</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T21:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer data from SAP to SQL server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931540#M941320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vamsi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what you are after is called DB Multiconnect. Essentially you can connect directly from you ABAP WAS to an external database and use native SQL to read and write to the external database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to install the db-specific portion of the SAP kernel unless you are running SAP on the same DB platform. You also need to install the db-client tools that facilitate remote access to the external database. Then maintain the db connection in transaction DBCON.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are some OSS notes that cover how to set this up. Search for "db multi connect".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Graham Robbo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 23:21:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931540#M941320</guid>
      <dc:creator>GrahamRobbo</dc:creator>
      <dc:date>2008-06-03T23:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer data from SAP to SQL server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931541#M941321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Vamsi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we also expect the exact requirement as you mentioned. We also need to transfer some data to SQL server from SAP. How you solve your issue? pls explain &lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;\[removed by moderator\]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am expecting your reply in this regard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sukumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jan Stallkamp on Jul 23, 2008 10:58 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 08:56:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931541#M941321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T08:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer data from SAP to SQL server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931542#M941322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried with DB multiconnect as mentioned before? If yes, what issues are you facing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Jan Stallkamp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 08:59:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931542#M941322</guid>
      <dc:creator>JanStallkamp</dc:creator>
      <dc:date>2008-07-23T08:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer data from SAP to SQL server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931543#M941323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Guru's ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing same problem . Please see my details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done all the pre-requisites as per OSS note no. 178949 . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Details are as below : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Operating system : windows 2003 std edition 64 bit&lt;/P&gt;&lt;P&gt;Sap Kernal : 640&lt;/P&gt;&lt;P&gt;Dll file : dbmssslib.dll (64 Bit)&lt;/P&gt;&lt;P&gt;SAP : 4.7 version &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While registering this file "regsvr32 dbmssslib.dll"  on windows application server  , &lt;/P&gt;&lt;P&gt; it displays error dbmssslib.dll file was loaded ,but dllregisterServer entry point not&lt;/P&gt;&lt;P&gt;found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to load / register this file on windows application server . I have made entries in DCON . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will very grateful to you . Please guide me .  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2008 10:25:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931543#M941323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-17T10:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer data from SAP to SQL server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931544#M941324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Cheers !! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am thru . I installed Microsoft Data&lt;/P&gt;&lt;P&gt;Access Components (MDAC) and DBMSSLIB.DLL 32 bit instead of 64 bit. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working fine .   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Milind&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2008 12:26:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-data-from-sap-to-sql-server/m-p/3931544#M941324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-17T12:26:28Z</dc:date>
    </item>
  </channel>
</rss>

