下面是编程之家 jb51.cc 通过网络收集整理的代码片段。
编程之家小编现在分享给大家,也给大家做个参考。
Create Excel XLS from T-sql Script rating Total number of Votes [30] By: David A. Long This is a T-sql script that uses OLE,ADO,Jet4 ISAM,and Linked Server to create and populate an Excel Workbook (XLS) file from T-sql query. If the Excel Worksheet exists,the query will append to the "table". The code is designed to be used by sql Agent and to append to the step output with verbose and minimal detail. Code is pretty well commented,including some hard won kNowledge about Jet4 ISAM,OLE,and usage of the Excel table from T-sql -- Create XLS script DAL - 04/24/2003 -- -- Designed for Agent scheduling,turn on "Append output for step history" -- -- Search for %%% to find adjustable constants and other options -- -- Uses OLE for ADO and OLE DB to create the XLS file if it does not exist -- Linked Server requires the XLS to exist before creation -- Uses OLE ADO to Create the XLS Worksheet for use as a table by T-sql -- Uses Linked Server to allow T-sql access to XLS table -- Uses T-sql to populate te XLS worksheet,very fast -- PRINT 'Begin CreateXLS script at '+RTRIM(CONVERT(varchar(24),GETDATE(),121))+' ' PRINT '' GO SET NOCOUNT ON DECLARE @Conn int -- ADO Connection object to create XLS,@hr int -- OLE return value,@src varchar(255) -- OLE Error Source,@desc varchar(255) -- OLE Error Description,@Path varchar(255) -- Drive or UNC path for XLS,@Connect varchar(255) -- OLE DB Connection string for Jet 4 Excel ISAM,@WKS_Created bit -- Whether the XLS Worksheet exists,@WKS_Name varchar(128) -- Name of the XLS Worksheet (table),@ServerName nvarchar(128) -- Linked Server name for XLS,@DDL varchar(8000) -- Jet4 DDL for the XLS WKS table creation,@sql varchar(8000) -- INSERT INTO XLS T-sql,@Recs int -- Number of records added to XLS,@Log bit -- Whether to log process detail -- Init variables SELECT @Recs = 0 -- %%% 1 = Verbose output detail,helps find problems,0 = minimal output detail,@Log = 1 -- %%% assign the UNC or path and name for the XLS file,requires Read/Write access -- must be accessable from server via sql Server service account -- & sql Server Agent service account,if scheduled SET @Path = 'C:\TEMP\Test_'+CONVERT(varchar(10),112)+'.xls' -- assign the ADO connection string for the XLS creation SET @Connect = 'Provider=Microsoft.Jet.OLEDB.4.0;Data Source='[email protected]+';Extended Properties=Excel 8.0' -- %%% assign the Linked Server name for the XLS population SET @ServerName = 'EXCEL_TEST' -- %%% Rename Table as required,this will also be the XLS Worksheet name SET @WKS_Name = 'People' -- %%% Table creation DDL,uses Jet4 Syntax,-- Text data type = varchar(255) when accessed from T-sql SET @DDL = 'CREATE TABLE '[email protected]_Name+' (SSN Text,Name Text,Phone Text)' -- %%% T-sql for table population,note the 4 part naming required by Jet4 OLE DB -- INSERT INTO SELECT,INSERT INTO valueS,and EXEC sp types are supported -- Linked Server does not support SELECT INTO types SET @sql = 'INSERT INTO '[email protected]+'...'[email protected]_Name+' (SSN,Name,Phone) ' SET @sql = @sql+'SELECT au_id AS SSN' SET @sql = @sql+',LTRIM(RTRIM(ISNULL(au_fname,'''')+'' ''+ISNULL(au_lname,''''))) AS Name' SET @sql = @sql+',phone AS Phone ' SET @sql = @sql+'FROM pubs.dbo.authors' IF @Log = 1 PRINT 'Created OLE ADODB.Connection object' -- Create the Conn object EXEC @hr = sp_OACreate 'ADODB.Connection',@Conn OUT IF @hr <> 0 -- have to use <> as OLE / ADO can return negative error numbers BEGIN -- Return OLE error EXEC sp_OAGetErrorInfo @Conn,@src OUT,@desc OUT SELECT Error=convert(varbinary(4),@hr),[email protected],[email protected] RETURN END IF @Log = 1 PRINT char(9)+'Assigned ConnectionString property' -- Set a the Conn object's ConnectionString property -- Work-around for error using a variable parameter on the Open method EXEC @hr = sp_OASetProperty @Conn,'ConnectionString',@Connect IF @hr <> 0 BEGIN -- Return OLE error EXEC sp_OAGetErrorInfo @Conn,[email protected],D[email protected] RETURN END IF @Log = 1 PRINT char(9)+'Open Connection to XLS,for file Create or Append' -- Call the Open method to create the XLS if it does not exist,can't use parameters EXEC @hr = sp_OAMethod @Conn,'Open' IF @hr <> 0 BEGIN -- Return OLE error EXEC sp_OAGetErrorInfo @Conn,[email protected],[email protected] RETURN END -- %%% This section Could be repeated for multiple Worksheets (Tables) IF @Log = 1 PRINT char(9)+'Execute DDL to create '''[email protected]_Name+''' worksheet' -- Call the Execute method to Create the work sheet with the @WKS_Name caption,-- which is also used as a Table reference in T-sql -- Neat way to define column data types in Excel worksheet -- Sometimes converting to text is the only work-around for Excel's General -- Cell formatting,even though the Cell contains Text,Excel tries to format -- it in a "Smart" way,I have even had to use the single quote appended as the -- 1st character in T-sql to force Excel to leave it alone EXEC @hr = sp_OAMethod @Conn,'Execute',NULL,@DDL,129 -- adCmdText + adExecutenorecords -- 0x80040E14 for table exists in ADO IF @hr = 0x80040E14 -- kludge,skip 0x80042732 for ADO Optional parameters (NULL) in sql7 OR @hr = 0x80042732 BEGIN -- Trap these OLE Errors IF @hr = 0x80040E14 BEGIN PRINT char(9)+''''[email protected]_Name+''' Worksheet exists for append' SET @WKS_Created = 0 END SET @hr = 0 -- ignore these errors END IF @hr <> 0 BEGIN -- Return OLE error EXEC sp_OAGetErrorInfo @Conn,[email protected],[email protected] RETURN END IF @Log = 1 PRINT 'Destroyed OLE ADODB.Connection object' -- Destroy the Conn object,+++ important to not leak memory +++ EXEC @hr = sp_OADestroy @Conn IF @hr <> 0 BEGIN -- Return OLE error EXEC sp_OAGetErrorInfo @Conn,[email protected],[email protected] RETURN END -- Linked Server allows T-sql to access the XLS worksheet (Table) -- This must be performed after the ADO stuff as the XLS must exist -- and contain the schema for the table,or worksheet IF NOT EXISTS(SELECT srvname from master.dbo.sysservers where srvname = @ServerName) BEGIN IF @Log = 1 PRINT 'Created Linked Server '''[email protected]+''' and Login' EXEC sp_addlinkedserver @server = @ServerName,@srvproduct = 'Microsoft Excel Workbook',@provider = 'Microsoft.Jet.OLEDB.4.0',@datasrc = @Path,@provstr = 'Excel 8.0' -- no login name or password are required to connect to the Jet4 ISAM Linked Server EXEC sp_addlinkedsrvlogin @ServerName,'false' END -- Have to EXEC the sql,otherwise the sql is evaluated -- for the Linked Server before it exists EXEC (@sql) PRINT char(9)+'Populated '''[email protected]_Name+''' table with '+CONVERT(varchar,@@ROWCOUNT)+' Rows' -- %%% Optional you may leave the Linked Server for other XLS operations -- Remember that the Linked Server will not create the XLS,so remove it -- When you are done with it,especially if you delete or move the file IF EXISTS(SELECT srvname from master.dbo.sysservers where srvname = @ServerName) BEGIN IF @Log = 1 PRINT 'Deleted Linked Server '''[email protected]+''' and Login' EXEC sp_dropserver @ServerName,'droplogins' END GO SET NOCOUNT OFF PRINT '' PRINT 'Finished CreateXLS script at '+RTRIM(CONVERT(varchar(24),121))+' ' GO
以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。
如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。