insert into OPENROWSET('Microsoft.ACE.OLEDB.12.0','Excel 12.0;Database=C:\c.xlsx','select字段1,字段2FROM [sheet1$]') select字段1,字段2 fromtable 今天单位一ASP.NET网...
分类:
数据库 时间:
2015-05-12 13:27:41
阅读次数:
208
http://www.cnblogs.com/xingluzhe/archive/2012/02/01/2334311.htmlSELECT u_name FROM OPENROWSET('sqloledb','DRIVER={SQL Server};SERVER=119.48.48.152;UI....
分类:
数据库 时间:
2015-05-01 08:14:53
阅读次数:
208
1、临时使用方法 OpenRowset
A. 使用有 SELECT 的OPENROWSET 与 Microsoft OLE DB Provider for SQL Server
以下范例使用 Microsoft OLE DB Provider for SQL Server,以存取命名为 remote1 的远程数据服务器上 pubs 数据库的 authors 表。从 da...
分类:
数据库 时间:
2015-04-16 15:49:01
阅读次数:
167
今天从服务器导入到本地表数据,因为跨服务器,所以用特殊的方法---根据原表创建新表,并且把数据导入select * into 表 from openrowset('SQLOLEDB' ,'sql服务器名';'用户名';'密码' ,数据库名.dbo.表名) ---已经有表结构insert into 表...
分类:
数据库 时间:
2015-02-11 16:07:20
阅读次数:
162
017_bcp_bulk_openrowset--bcp*******************************************************************************--1.可以用master..xp_cmdshell存储过程将CMD的命令传给系统,这...
分类:
其他好文 时间:
2015-02-10 22:55:41
阅读次数:
182
数据同期:update owkset owk.RecordBeginTime=convert(varchar(100),td.[实际出勤时间],121) ,owk.RecordEndTime=convert(varchar(100),td.[实际退勤时间],121) from openrowset....
分类:
数据库 时间:
2015-01-22 20:01:11
阅读次数:
208
--跨服务器导入数据SQL语句:insert into [shsw_manager].[dbo].[Station_List]select * from OPENROWSET('SQLOLEDB','SERVER=31.16.1.130;uid=sa;pwd=shswhotline;Database...
分类:
数据库 时间:
2014-12-30 13:12:50
阅读次数:
144
SQLServer跨服务器访问数据库(openrowset/opendatasource/openquery)1、启用Ad Hoc Distributed Queries 在使用openrowset/opendatasource前搜先要启用Ad Hoc Distributed Queries服务,因...
分类:
数据库 时间:
2014-12-26 10:53:11
阅读次数:
211
1、启用Ad Hoc Distributed Queries在使用openrowset/opendatasource前搜先要启用Ad Hoc Distributed Queries服务,因为这个服务不安全所以SqlServer默认是关闭的启用Ad Hoc Distributed Queries的方法...
分类:
数据库 时间:
2014-12-17 20:22:47
阅读次数:
199
在使用sqlserver数据库的OpenRowSet函数时,会遇到三种驱动方式:1. MSDASQL驱动SELECT TOP 10 * FROM OPENROWSET('MSDASQL', 'DRIVER={SQL Server};SERVER=xxx;UID=xx;PWD=xxx;', 'sele...
分类:
数据库 时间:
2014-12-16 11:32:22
阅读次数:
274