sql >> Database >  >> RDS >> Sqlserver

SQL Server-gegevens invoegen in Salesforce met een cursor

Deze blog geeft een voorbeeld van het overbrengen van gegevens van een lokale SQL Server-tabel naar Salesforce. We gebruiken het ODBC-stuurprogramma van Salesforce.com om drie records in de Salesforce Product2-tabel in te voegen.

  1. Configureer een gekoppelde server die verbinding maakt met Salesforce.
  2. Wijzig in SQL Server Management Studio de Gekoppelde server> Eigenschappen gekoppelde server> Serveropties> RPC uit instelling op True.
  3. Maak deze tabel in SQL Server:
    create table NewProducts ( "Name" nvarchar(30), ProductCode nvarchar(10), Description nvarchar(max))
    insert into NewProducts values ( 'Test1', 'TEST01', 'Test 1st description')
    insert into NewProducts values ( 'Test2', 'TEST02', '2nd description' )
    insert into NewProducts values ( 'Test3', 'TEST03', '3rd Test description')

    U kunt gegevens invoegen in elk van de kolommen in de Product2-tabel, ervan uitgaande dat u over de benodigde machtigingen beschikt.

  4. Voer de volgende SQL uit:
    -- Declare a variable for each column you want to insert:
    declare @Name nvarchar(30)
    declare @ProductCode nvarchar(10)
    declare @Description nvarchar(max)
    
    -- Use a cursor to select your data, which enables SQL Server to extract
    -- the data from your local table to the variables.
    declare ins_cursor cursor for 
            select "Name", ProductCode, Description from NewProducts
        open ins_cursor
        fetch next from ins_cursor into @Name, @ProductCode, @Description -- At this point, the data from the first row
                                                                          -- is in your local variables.
    
        -- Move through the table with the @@FETCH_STATUS=0 
        while @@FETCH_STATUS=0
        Begin
    
             -- Execute the insert to push this data into Salesforce. Replace "SF_LINK" with the name of your Salesforce Linked Server.
            exec ('insert into Product2 ( "Name", ProductCode, Description ) Values (?, ?, ?)', @Name, @ProductCode ,@Description ) at SF_LINK
    
             -- Once the execution has taken place, you fetch the next row of data from your local table.
            fetch next from ins_cursor into @Name, @ProductCode, @Description
        End
    
        -- When all the rows have inserted you must close and deallocate the cursor.
        -- Failure to do this will not let you re-use the cursor.    
        close ins_cursor
        deallocate ins_cursor

Zie ook

  • Tips voor het gebruik van SQL Server met Salesforce

  1. java.sql.SQLException:Toegang geweigerd voor gebruiker 'root'@'localhost' (met wachtwoord:JA)

  2. Een database dupliceren met phpMyAdmin

  3. Query om unieke of primaire sleutel uit MYsql-tabel te verwijderen

  4. 7 belangrijke dingen om te onthouden over globalisering van datamodellen