Code
EXEC sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO
EXEC sp_configure 'Ad Hoc Distributed Queries', 1
GO
RECONFIGURE
GO
insert into OPENROWSET('Microsoft.Jet.OLEDB.4.0', 'C:\jlyAccess\jly.mdb';'admin';'',K_jlyMsg) select * from K_jlyMsg
insert into OPENROWSET('Microsoft.Jet.OLEDB.4.0', 'C:\jlyAccess\jly.mdb';'admin';'',City) select * from City
General data import and export:
Use the DTS wizard to migrate your Access data to SQL Server. You can use these steps:
1. On the Tools menu in SQL SERVER Enterprise Manager, select Data Transformation
2 Services, and then select czdImport Data (import Data ).
3. In the Choose a Data Source dialog box, select Microsoft Access as the Source, and then type your. mdb database (. mdb File Extension) or browse to find the file.
4. In the Choose a Destination (select target) dialog box, select Microsoft ole db Prov ider for SQL Server, select database Server, and click the required authentication method.
5. In the Specify Table Copy or Query dialog box, click Copy tables ).
6. In the Select Source Tables dialog box, click Select All ). Next, complete.
Use a Transact-SQL statement to import and export data:
1. query access data in SQL SERVER:
-- ===================================================== ====================
SELECT *
FROM OpenDataSource ('Microsoft. Jet. OLEDB.4.0 ',
'Data Source = "c: DB. mdb"; User ID = Admin; Password = ')... table name
Bytes -------------------------------------------------------------------------------------------------
2. Import access to SQL server
-- ===================================================== ====================
Run in SQL SERVER:
SELECT *
INTO newtable
From opendatasource ('Microsoft. Jet. OLEDB.4.0 ',
'Data Source = "c: DB. mdb"; User ID = Admin; Password = ')... table name
Bytes -------------------------------------------------------------------------------------------------
3. insert data in the SQL SERVER table to the Access Table
-- ===================================================== ====================
Run in SQL SERVER:
Insert into OpenDataSource ('Microsoft. Jet. OLEDB.4.0 ',
'Data Source = "c: DB. mdb"; User ID = Admin; Password = ')... table name
(Column name 1, column name 2)
Select column name 1, column name 2 from SQL table
Instance:
Insert into OPENROWSET ('Microsoft. Jet. OLEDB.4.0 ',
'C: db. mdb '; 'admin';', Test)
Select id, name from Test
Insert into openrowset ('Microsoft. Jet. OLEDB.4.0 ', 'c: rade. mdb'; 'admin'; ', table name)
SELECT *
FROM sqltablename
Bytes -------------------------------------------------------------------------------------------------
Ii. Import and export data from SQL SERVER and EXCEL
1. query Excel Data in SQL SERVER:
-- ===================================================== ====================
SELECT *
FROM OpenDataSource ('Microsoft. Jet. OLEDB.4.0 ',
'Data Source = "c: ook1.xls"; User ID = Admin; Password =; Extended properties = Excel 5.0 ')... [Sheet1 $]
The following is an example of a query. It queries an Excel spreadsheet through the ole db provider for Jet.
SELECT *
FROM OpenDataSource ('Microsoft. Jet. OLEDB.4.0 ',
'Data Source = "c: Financeaccount.xls"; User ID = Admin; Password =; Extended properties = Excel 5.0 ')... xactions
Bytes -------------------------------------------------------------------------------------------------
2. Import Excel Data to SQL server:
-- ===================================================== ====================
SELECT * into newtable
FROM OpenDataSource ('Microsoft. Jet. OLEDB.4.0 ',
'Data Source = "c: ook1.xls"; User ID = Admin; Password =; Extended properties = Excel 5.0 ')... [Sheet1 $]
Instance:
SELECT * into newtable
FROM OpenDataSource ('Microsoft. Jet. OLEDB.4.0 ',
'Data Source = "c: Financeaccount.xls"; User ID = Admin; Password =; Extended properties = Excel 5.0 ')... xactions
Bytes -------------------------------------------------------------------------------------------------
3. Export the data queried in SQL SERVER into an Excel file
-- ===================================================== ====================
T-SQL code:
EXEC master.. xp_mongoshell 'bcp database name. dbo. Table name out c: Temp.xls-c-q-S "servername"-U "sa"-P ""'
Parameter: S indicates the SQL server name, U indicates the user, and P indicates the password.
Note: You can also export text files and other formats.
Instance: EXEC master .. xp_mongoshell 'bcp saletesttmp. dbo. CusAccount out c: emp1.xls-c-q-S "pmserver"-U "sa"-P "sa "'
EXEC master .. xp_mongoshell 'bcp "SELECT au_fname, au_lname FROM pubs .. authors order by au_lname" queryout C: authors.xls-c-Sservername-Usa-ppassword'
Use ADO to export the EXCEL file code in VB6:
Dim cn As New ADODB. Connection
Cn. open "Driver = {SQL Server}; Server = WEBSVR; DataBase = WebMis; UID = sa; WD = 123 ;"
Cn.exe cute "master .. xp_mongoshell 'bcp" SELECT col1, col2 FROM database name. dbo. Table Name "queryout E: DT.xls-c-Sservername-Usa-ppassword '"
Bytes -------------------------------------------------------------------------------------------------
4. insert data to Excel in SQL SERVER:
-- ===================================================== ====================
Insert into OpenDataSource ('Microsoft. Jet. OLEDB.4.0 ',
'Data Source = "c: Temp.xls"; User ID = Admin; Password =; Extended properties = Excel 5.0 ')... table1 (A1, A2, A3) values (1, 2, 3)
T-SQL code:
INSERT
OPENDATASOURCE ('Microsoft. JET. OLEDB.4.0 ',
'Extended Properties = Excel 8.0; Data source = C: raininginventur.xls ')... [Filiale1 $]
(Bestand, produkt) VALUES (20, 'test ')
Bytes -------------------------------------------------------------------------------------------------
Summary: with the above statements, we can easily convert data in SQL SERVER, ACCESS, and EXCEL spreadsheet software, which provides us with great convenience!