上一页 1 ··· 71 72 73 74 75 76 77 78 79 ··· 157 下一页

2014年3月24日

[转]Configure logging in SSIS packages

摘要: 本文转自:http://learnsqlwithbru.com/2009/11/26/configure-logging-in-ssis-packages/n this article we will look at the steps to enable logging in SSIS packages. Each control flow task in a package have multiple events and logging enables you to look the execution details of these events.Steps to configure 阅读全文

posted @ 2014-03-24 09:30 freeliver54 阅读(541) 评论(2) 推荐(0)

2014年3月21日

[引]雅虎日历控件 Example: Two-Pane Calendar with Custom Rendering and Multiple Selection

摘要: 本文转自:http://yuilibrary.com/yui/docs/calendar/calendar-multipane.htmlThis example demonstrates how to instantiate a Calendar, switch its template to a double-pane, and create custom renderers for its header and certain cells (based on rules), as well as turn on multiple date selection and disable cer 阅读全文

posted @ 2014-03-21 17:02 freeliver54 阅读(616) 评论(2) 推荐(0)

2014年3月18日

[转]HTML5 Day 4: Add Drop Down Menu to ASP.NET MVC HTML5 Template using CSS and jQuery

摘要: 本文转自:http://pietschsoft.com/post/2010/11/17/HTML5-Day-4-Add-DropDown-Menu-ASPNET-MVC-HTML5-Template-using-CSS-and-jQueryToday I was playing around with using jQuery to create a drop down menu. I thought I’d share an example of adding a drop down menu to thenew ASP.NET MVC HTML5 Template that I creat 阅读全文

posted @ 2014-03-18 14:05 freeliver54 阅读(446) 评论(0) 推荐(0)

多级菜单 menu

摘要: jquery menu:http://jqueryui.com/menu/Kendo UI Demoshttp://demos.telerik.com/kendo-ui/web/menu/index.html?mvchttp://demos.devexpress.com/MVCxNavigationAndLayoutDemos/Menu/Overview 阅读全文

posted @ 2014-03-18 11:51 freeliver54 阅读(328) 评论(4) 推荐(0)

2014年3月11日

PHP 在线 编辑 解析

摘要: http://www.w3schools.com/php/default.asp http://www.w3schools.com/php/showphp.asp?filename=demo_syntaxhttp://phpfiddle.org/http://www.compileonline.com/execute_php_online.phphttp://writecodeonline.com/php/ 阅读全文

posted @ 2014-03-11 20:38 freeliver54 阅读(853) 评论(2) 推荐(1)

[转]在PHP语言中使用JSON

摘要: 本文转自:http://www.ruanyifeng.com/blog/2011/01/json_in_php.html作者: 阮一峰日期: 2011年1月14日目前,JSON已经成为最流行的数据交换格式之一,各大网站的API几乎都支持它。我写过一篇《数据类型和JSON格式》,探讨它的设计思想。今天,我想总结一下PHP语言对它的支持,这是开发互联网应用程序(特别是编写API)必须了解的知识。从5.2版本开始,PHP原生提供json_encode()和json_decode()函数,前者用于编码,后者用于解码。一、json_encode()该函数主要用来将数组和对象,转换为json格式。先看一个 阅读全文

posted @ 2014-03-11 20:25 freeliver54 阅读(306) 评论(1) 推荐(0)

2014年3月6日

[转]SSIS ADO.NET vs OLEDB

摘要: 本文转自:http://social.msdn.microsoft.com/Forums/sqlserver/en-US/1a9e3670-9685-4943-913b-123ecf248a9c/ole-db-vs-adonet?forum=sqlintegrationservicesADO.NET vs OLEDB:I'll try to answer this question by slicing it into4 main areas:1.support across SSIS components:a.SSIS is not welcoming ADO.NET and OLE 阅读全文

posted @ 2014-03-06 18:41 freeliver54 阅读(1241) 评论(0) 推荐(0)

[转]SSIS高级转换任务—在Package中是用临时表是需要设置RetainSameConnection属性

摘要: 本文转自:http://www.cnblogs.com/tylerdonet/archive/2011/05/20/2052306.html在上一个导入列这个例子中我们创建一个实际的表来存储文件路径,在生产环境中我们可能不会创建一个实际的物理表来存储这些信息,而是创建临时表。这里有一个小小的技巧,在Control Flow中拖放两个Execute SQL task,一个创建临时表,另一个销毁临时表,执行这个package,会遇到一个错误,在Progress中提示信息显示不存在这个临时表。错误信息如下:Error: 0xC002F210 at Execute SQL Task 1, Execut 阅读全文

posted @ 2014-03-06 14:35 freeliver54 阅读(780) 评论(0) 推荐(0)

[转]SSIS高级转换任务—行计数

摘要: 本文转自:http://www.cnblogs.com/tylerdonet/archive/2011/06/19/2084780.html在SSIS中的Row Count转换可以在数据流中计算数据源的行数。这种任务必须将行数保存在一个变量中。这种任务在你不想将数据行数保存在一个物理表中时会很有用。例如在ConditionalSplit任务中使用多个RowCount记录有多少行被分离出来,每个Row Count将使用变量记录分支中的数据行数,可以将这个变量值记录在数据库中,作为邮件信息发送出去,或者在下一个步骤中使用。一样这个任务需要使用高级编辑器,这个更加简单,只需要添加一个变量来存储行数。 阅读全文

posted @ 2014-03-06 14:31 freeliver54 阅读(517) 评论(0) 推荐(0)

[转]SSIS Recordset Destination

摘要: 本文转自:http://www.sqlis.com/sqlis/post/Shredding-a-Recordset.aspxDoing what to a recordset?Shredding a recordset in this instance means that we are going to show you how to take a recordset produced in your SSIS package, loop over the rows in that recordset, break apart the columns and do something wi 阅读全文

posted @ 2014-03-06 10:26 freeliver54 阅读(536) 评论(0) 推荐(0)

[转]SSIS: By coding

摘要: 本文转自:http://www.codeproject.com/Articles/604197/SSIS-By-codingIntroductionSSIS better known as “SQL Server Integration Services (SSIS)”, is a component of SQL Server. According to Wikipedia:-“SSIS is a platform for data integration and workflow applications. It features a fast and flexible data war. 阅读全文

posted @ 2014-03-06 09:21 freeliver54 阅读(508) 评论(0) 推荐(0)

[转]SSIS cannot convert between unicode and non-unicode string

摘要: 本文转自:http://www.mssqltips.com/sqlservertip/1393/import-excel-unicode-data-with-sql-server-integration-services/Import Excel unicode data with SQL Server Integration ServicesProblemOne task that most people are faced with at some point in time is the need to import data into SQL Server from an Excel 阅读全文

posted @ 2014-03-06 09:17 freeliver54 阅读(4812) 评论(0) 推荐(1)

2014年3月5日

[转]How to handle Failed Rows in a Data Flow

摘要: 本文转自:http://www.rad.pasfu.com/index.php?/archives/23-How-to-handle-Failed-Rows-in-a-Data-Flow.htmlsuppose this scenario: you have a source table and a destination table, you want to transfer rows from source table to destination table, so you can use simple data flow with OLE DB source and OLE DB De 阅读全文

posted @ 2014-03-05 18:45 freeliver54 阅读(446) 评论(0) 推荐(0)

[转]Getting started with SSIS - Part 10: Event Handling and Logging

摘要: 本文转自:http://beyondrelational.com/modules/12/tutorials/24/tutorials/9686/getting-started-with-ssis-part-10-event-handling-and-logging.aspxLet us now add some more features to our package. We would now addEvent handlingandLoggingto our package created. Before doing that, let us see what do the two mea 阅读全文

posted @ 2014-03-05 18:03 freeliver54 阅读(307) 评论(0) 推荐(0)

[转]SSIS中OLE DB Source中如何执行Store Procedure 以得到源数据

摘要: 本文转自:http://www.cnblogs.com/michaelxu/archive/2009/10/16/1584284.html有很多人喜欢在OLE DB Source中执行Store Procedure,以得到源数据。但我们经常会遇到这样的情况,在OLE DB Source的Sql Command中写好执行Store Procedure的语句后,可以正常Preview,但是当点到Columns标签时,却看不到Store Procedure返回来的结果集,就是说没有columns显示。解决办法步骤:1)确保Store Procedure的最后一句是select语句,即有结果集返回2) 阅读全文

posted @ 2014-03-05 15:30 freeliver54 阅读(374) 评论(0) 推荐(0)

[转]SSIS OLE DB Source中执行带参数的存储过程

摘要: 本文转自:http://www.cnblogs.com/michaelxu/archive/2009/10/21/1587450.html问题描述:执行一个存储过程得到一个多条记录的结果集,然后循环这个结果集的每一条记录,根据这条记录的某几个字段执行一个带参数的存储过程,再将返回的结果集插入到一张表中。Execute SQL Task “Get master records”中通过执行一个存储过程得到一个主结果集,Foreach Loop Container循环每条主记录,Data Flow Task对每条记录进行处理。1、先定义变量,如下表v_BatchList定义为Object用来存储返回 阅读全文

posted @ 2014-03-05 14:00 freeliver54 阅读(533) 评论(0) 推荐(0)

[转]Working with Parameters and Return Codes in the Execute SQL Task

摘要: 本文转自:http://msdn.microsoft.com/zh-cn/magazine/cc280502(en-us,SQL.100).aspxSQL statements and stored procedures frequently use input parameters, output parameters, and return codes. In Integration Services, the Execute SQL task supports the Input, Output, and ReturnValue parameter types. You use the 阅读全文

posted @ 2014-03-05 12:28 freeliver54 阅读(466) 评论(0) 推荐(0)

2014年3月4日

[转]How to solve SSIS error code 0xC020801C/0xC004700C/0xC0047017

摘要: 本文转自:http://www.codeproject.com/Articles/534651/HowplustoplussolveplusSSISpluserrorpluscodeplus0xCBackgroundSSIS is the one of the best ETL tool available in market and it can load large amount of data from any heterogeneous data source whether structured, unstructured,application, cloud or real-tim 阅读全文

posted @ 2014-03-04 17:29 freeliver54 阅读(2060) 评论(0) 推荐(0)

[转]ssis cannot retrieve the column code page info from the ole db provider

摘要: 本文转自:http://social.msdn.microsoft.com/Forums/sqlserver/en-US/dc1a61f2-1ab8-4ed3-b85c-db6481800b50/error-importing-data-from-oracle-database-to-an-sql-database?forum=sqlintegrationservices1) Go into your data-flow that contains your OLE DB Source component.2) Click the OLE DB Source component once3) 阅读全文

posted @ 2014-03-04 17:06 freeliver54 阅读(580) 评论(0) 推荐(0)

[转]使用SSIS创建同步数据库数据任务

摘要: 本文转自:http://www.cnblogs.com/heqichang/archive/2012/09/19/2693214.htmlSSIS(SQL Server Integration Services)是用于生成企业级数据集成和数据转换解决方案的平台。使用 Integration Services 可解决复杂的业务问题,具体表现为:复制或下载文件,发送电子邮件以响应事件,更新数据仓库,清除和挖掘数据以及管理 SQL Server 对象和数据。这些包可以独立使用,也可以与其他包一起使用以满足复杂的业务需求。Integration Services 可以提取和转换来自多种源(如 XML 阅读全文

posted @ 2014-03-04 10:35 freeliver54 阅读(949) 评论(0) 推荐(0)

上一页 1 ··· 71 72 73 74 75 76 77 78 79 ··· 157 下一页

导航