नीचे वह कोड है जिसका उपयोग मैं वर्तमान में MS SQL Server 2008 से VBA में डेटा खींचने के लिए करता हूं। आपको यह सुनिश्चित करने की आवश्यकता है कि आपके पास उचित ADODB संदर्भ है [VBA संपादक-> उपकरण-> संदर्भ ] और सुनिश्चित करें कि आपके पास Microsoft ActiveX डेटा ऑब्जेक्ट 2.8 लाइब्रेरी . है चेक किया गया है, जो नीचे की पंक्ति से दूसरी है जिसे चेक किया गया है (मैं विंडोज 7 पर एक्सेल 2010 का उपयोग कर रहा हूं; आपके पास थोड़ा अलग ActiveX संस्करण हो सकता है, लेकिन यह अभी भी Microsoft ActiveX के साथ शुरू होगा):
दूरस्थ होस्ट और उपयोगकर्ता नाम/पासवर्ड के साथ MS SQL से कनेक्ट करने के लिए उप मॉड्यूल
Sub Download_Standard_BOM()
'Initializes variables
Dim cnn As New ADODB.Connection
Dim rst As New ADODB.Recordset
Dim ConnectionString As String
Dim StrQuery As String
'Setup the connection string for accessing MS SQL database
'Make sure to change:
'1: PASSWORD
'2: USERNAME
'3: REMOTE_IP_ADDRESS
'4: DATABASE
ConnectionString = "Provider=SQLOLEDB.1;Password=PASSWORD;Persist Security Info=True;User ID=USERNAME;Data Source=REMOTE_IP_ADDRESS;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Use Encryption for Data=False;Tag with column collation when possible=False;Initial Catalog=DATABASE"
'Opens connection to the database
cnn.Open ConnectionString
'Timeout error in seconds for executing the entire query; this will run for 15 minutes before VBA timesout, but your database might timeout before this value
cnn.CommandTimeout = 900
'This is your actual MS SQL query that you need to run; you should check this query first using a more robust SQL editor (such as HeidiSQL) to ensure your query is valid
StrQuery = "SELECT TOP 10 * FROM tbl_table"
'Performs the actual query
rst.Open StrQuery, cnn
'Dumps all the results from the StrQuery into cell A2 of the first sheet in the active workbook
Sheets(1).Range("A2").CopyFromRecordset rst
End Sub