2011-02-01 157 views
1

我有一個鏈接服務器(Sybase)在SQL Server中設置,我需要從中繪製數據。 Sybase服務器位於世界的另一端,連接性非常低劣。我想以可管理的批次將數據插入到其中一個SQL Server表中(例如,一次有1000個記錄)。即我想要做;SQL Server 2008:批量插入表

INSERT IN [SQLServerTable] ([field]) 
SELECT [field] from [LinkedServer].[DbName].[dbo].[SybaseTable] 

但我想一次獲取1000條記錄並插入它們。

感謝
卡爾

回答

1

我通常使用Python與pyodbc模塊,這樣對SQL Server執行批處理。看一看,看看它是否是一種選擇,如果是的話,我可以給你提供一個例子。

您將需要修改大量代碼以適應您的特定情況,但是您應該能夠遵循邏輯。您可以註釋掉cnxn.commit()行來回滾事務,直到您完成所有工作。

import pyodbc 

#This is an MS SQL2008 connection string 
conn='DRIVER={SQL Server};SERVER=SERVERNAME;DATABASE=DBNAME;UID=USERNAME;PWD=PWD' 

cnxn=pyodbc.connect(conn) 
cursor=cnxn.cursor() 

rowCount=cursor.execute('SELECT Count(*) from RemoteTable').fetchone()[0] 

cnxn.close() 

count=0 
lastID=0 


while count<rowCount: 
    #You may want to close the previous connection and start a new one in this loop. Otherwise 
    #the connection will be open the entire time defeating the purpose of performing the transactions in batches. 

    cnxn=pyodbc.connect(conn) 
    cursor=cnxn.cursor() 

    rows=cursor.execute('SELECT TOP 1000 ID, Field1, Field2 FROM INC WHERE ((ID > %s)) ' % (lastID)).fetchall() 

    for row in rows: 
     cursor.execute('INSERT INTO LOCALTABLE (FIELD1, FIELD2) VALUES (%s, %s)' % (row.Field1, row.Field2)) 


    cnxn.commit() 
    cnxn.close() 

    #The [0] assumes the id is the first field in the select statement. 
    lastID=rows[len(rows)-1][0] 
    count+=len(rows) 

    #Pause after each insert to see if the user wants to continue. 
    raw_input("%s down, %s to go! Press enter to continue." % (count, rowCount-count)) 
+0

這可以工作是的。一個例子,將不勝感激。卡爾 – Karl 2011-02-04 08:41:37