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

2014年3月4日

[转]sqlserver2008锁表语句详解

摘要: 本文转自:http://xue.uplook.cn/database/sqlserver/801760.html锁定数据库的一个表 代码如下: SELECT * FROM table WITH (HOLDLOCK)注意: 锁定数据库的一个表的区别 代码如下: SELECT * FROM table WITH (HOLDLOCK) 其他事务可以读取表,但不能更新删除 代码如下: SELECT * FROM table WITH (TABLOCKX) 其他事务不能读取表,更新和删除SELECT 语句中“加锁选项”的功能说明SQL Server提供了强大而完备的锁机制来帮助实现数据库系统的并发性和高 阅读全文

posted @ 2014-03-04 09:33 freeliver54 阅读(1255) 评论(0) 推荐(0)

2014年3月3日

[转]Understanding Integration Services Package Configurations

摘要: 本文转自:http://msdn.microsoft.com/en-us/library/cc895212.aspxIntroductionWith the 2008 release, SQL Server Integration Services (SSIS) continues its advance in the enterprise data integration arena. Integration Services offers an entire architecture that combines the required elements for building solu 阅读全文

posted @ 2014-03-03 15:45 freeliver54 阅读(316) 评论(1) 推荐(0)

[转]SSIS: Execute Package via Stored Procedure

摘要: 本文转自:http://sqlblog.de/blog/2009/09/ssis-execute-package-via-stored-procedure/There are two options executing SSIS packages:- xp_cmdshell command (not recommended for security reasons)- sp_start_job commandThe main difference between both options is the execution method. The xp_cmdshell command is a 阅读全文

posted @ 2014-03-03 15:41 freeliver54 阅读(567) 评论(0) 推荐(0)

[转]Loading and Running a Local Package Programmatically

摘要: 本文转自:http://msdn.microsoft.com/en-us/library/ms136090.aspxYou can run Integration Services packages as needed or at predetermined times by using the methods described inRunning Packages. However, with only a few lines of code, you can also run a package from a custom application such as a Windows Fo 阅读全文

posted @ 2014-03-03 15:34 freeliver54 阅读(289) 评论(4) 推荐(0)

[转]Mapping Stored Procedure Parameters in SSIS OLE DB Source Editor

摘要: 本文转自:http://geekswithblogs.net/stun/archive/2009/03/05/mapping-stored-procedure-parameters-in-ssis-ole-db-source-editor.aspxI was working on a SSIS Data Flow Task by passingPackage Variablesinto a Stored Procedure. I will be using[AdventureWorks]sample database included with the SQL Server installat 阅读全文

posted @ 2014-03-03 11:21 freeliver54 阅读(584) 评论(0) 推荐(0)

[转]Data Flow How-to Topics (SSIS)

摘要: 本文转自:http://technet.microsoft.com/en-us/library/ms137612(v=sql.90).aspxThis section contains procedures for working with data flow components—sources, transformations, destinations, and the paths that connect them—using the SQL Server 2005 Integration Services (SSIS) tools that Business Intelligence 阅读全文

posted @ 2014-03-03 11:15 freeliver54 阅读(251) 评论(0) 推荐(0)

[转]Advanced Oracle SQL Developer Features

摘要: 本文转自:http://www.oracle.com/technetwork/cn/server-storage/linux/sqldev-adv-otn-092384.htmlAdvanced Oracle SQL Developer FeaturesPurposeThis tutorial demonstrates some of the more advanced features within Oracle SQL Developer.Time to CompleteApproximately 50 minutesOverviewOracle SQL Developer is a fr 阅读全文

posted @ 2014-03-03 10:14 freeliver54 阅读(860) 评论(0) 推荐(1)

2014年2月28日

[转]SSIS包的调用方式

摘要: 本文转自:http://www.cnblogs.com/lijun4017/archive/2008/12/04/1347701.html编写简单SSIS包光看MSDN应该就问题不大了,最近几天几个朋友来问我SSIS的调用问题,然后想起我当初实现调用SSIS包的问题的时候也走了不少弯路,确实这方面的资料网上很少.下面我总结了一下,大概分为这么三类吧.1.使用sqserver2005的代理服务来新建作业来执行包任务;2.使用编程语言来实现包的调用,比如c#或者vb.net等;3.使用存储过程或者sql语句来调用包;下面我们一个一个展开讲一下:1.使用代理服务的方式我认为这种是调用SSIS包最方便 阅读全文

posted @ 2014-02-28 15:57 freeliver54 阅读(450) 评论(0) 推荐(0)

[转]oracle 11g 忘记 默认用户密码

摘要: 本文转自:http://blog.csdn.net/huangbiao86/article/details/6595052首先启动sqlplus 输入用户名:sqlplus / as sysdba 密码空缺 如果用户被锁定,记得加上 SQL> alter user dbsnmp account unlock;User altered. 然后修改密码 SQL> alter user dbsnmp identified by dbsnmp;User altered. 现在就可以用用户名:dbsnmp 密码:dbsnmp登录了。Oracle 10g默认安装带来的用户名/密码 Userna 阅读全文

posted @ 2014-02-28 10:34 freeliver54 阅读(2156) 评论(3) 推荐(0)

2014年2月27日

[转]Insert, Update, and Delete Destination table with SSIS

摘要: 本文转自:http://www.rad.pasfu.com/index.php?/archives/150-Insert,-Update,-and-Delete-Destination-table-with-SSIS.htmlPreviously I’ve wrote about design and implementation an UPSERT with SSIS. UPSERT is about Update existing records, and Insert new records. Today I want to extend this to cover DELETED re 阅读全文

posted @ 2014-02-27 13:48 freeliver54 阅读(1079) 评论(0) 推荐(0)

[转]JS判断访问设备、客户端操作系统类型

摘要: 本文转自:http://www.cnblogs.com/duanguyuan/p/3534470.html先给出一个实例:判断windows、linux、android复制以下代码另存为html文件即可。判断操作系统判断当前访问网站的设备是否是PC//平台、设备和操作系统var system ={win : false,mac : false,xll : false};//检测平台var p = navigator.platform;system.win = p.indexOf("Win") == 0;system.mac = p.indexOf("Mac&quo 阅读全文

posted @ 2014-02-27 09:28 freeliver54 阅读(9636) 评论(0) 推荐(0)

2014年2月26日

[转]SSIS数据转换组件_派生列、审核、字符映射转换和条件性拆分转换

摘要: 本文转自:http://www.cnblogs.com/gudujianxiao/archive/2012/04/14/2446925.html一 派生列派生列转换通过对输入列进行类型转换或应用表达式得出新的结果。这个结果可以作为新列添加,也可以替换输入列。可以使用此转换执行下列任务: 1.将不同列的数据连接到一个派生列中。例如,可以使用表达式 FirstName + " " + LastName 将 FirstName 和 LastName 列中的值组合到名为 FullName 的单个派 生列中。 2.通过使用 SUBSTRING 之类的函数从字符串数据中提取字符,... 阅读全文

posted @ 2014-02-26 18:54 freeliver54 阅读(907) 评论(2) 推荐(0)

[转]SQL Server 2005 Integration Services (SSIS) (3) - Business Intelligence Development Studio

摘要: 本文转自:http://blog.csdn.net/me_online/article/details/1546281三,SQL Server Integration Services 开发环境– Business Intelligence Development Studio (BIDS) 在上一节中,我们介绍了利用 SQL Server 导入/导出向导建立了一个 SSIS Package, 并且将这个 Package 保存到了一个 .dtsx 文件中。本节我们将通过建立一个新的 SSIS 项目打开这个文件来认识一下开发 SSIS Package的主要工具 – SQL Server 2005 阅读全文

posted @ 2014-02-26 18:28 freeliver54 阅读(597) 评论(0) 推荐(0)

2014年2月25日

[转]Webservice client timeout

摘要: 本文转自:http://social.msdn.microsoft.com/Forums/vstudio/en-us/ed89ae3c-e5f8-401b-bcc7-333579a9f0fe/webservice-client-timeout?forum=wcfAfter creating proxy object do this :client.InnerChannel.OperationTimeout = new TimeSpan(0,10,0);--------------------------------------------Please find the code below: 阅读全文

posted @ 2014-02-25 10:26 freeliver54 阅读(663) 评论(0) 推荐(0)

[转]Web Services使用out参数

摘要: 本文转自:http://www.cnblogs.com/zhaozhan/archive/2010/10/25/1860837.html Web Services使用out参数,在SOAP协议中会跟返回值一样作为SOAP响应的内容返回。 Web Services定义: 1: public class WebService1 : System.Web.Services.WebService 2: { 3: [WebMethod] 4: public string HelloWorld(out int outParamInt,out TestClass outParamOb... 阅读全文

posted @ 2014-02-25 10:17 freeliver54 阅读(379) 评论(0) 推荐(0)

[转]Calling Web Service Functions Asynchronously from a Web Page 异步调用WebServices

摘要: 本文转自:http://www.codeproject.com/Articles/70441/Calling-Web-Service-Functions-Asynchronously-fromOver on the ASP.NET forums where I moderate, a user had a problem calling a Web Service from a web page asynchronously. I tried his code on my machine and was able to reproduce the problem. I was able to 阅读全文

posted @ 2014-02-25 10:10 freeliver54 阅读(303) 评论(0) 推荐(0)

2014年2月24日

[转]Android 应用的自动升级、更新模块的实现

摘要: 本文转自:http://www.oschina.net/question/163910_28462我们看到很多Android应用都具有自动更新功能,用户一键就可以完成软件的升级更新。得益于Android系统的软件包管理和安装机制,这一功能实现起来相当简单,下面我们就来实践一下。首先给出界面效果:1. 准备知识 在AndroidManifest.xml里定义了每个Android apk的版本标识:view sourceprint?1 5 6其中,android:versionCode和android:versionName两个字段分别表示版本代码,版本名称。versionCode是 整型数字,. 阅读全文

posted @ 2014-02-24 14:57 freeliver54 阅读(594) 评论(1) 推荐(0)

保险

摘要: 泰康e爱家定期寿险养老计划http://shop.taikang.com/term/eajdqsx泰康e生健康重大疾病保障计划http://shop.taikang.com/health/ehealth泰康e顺女性疾病保险http://shop.taikang.com/woman/femalediseases泰康e顺少儿重大疾病保险http://shop.taikang.com/child/childillness泰康e顺交通工具意外保障计划http://shop.taikang.com/accident/transport 阅读全文

posted @ 2014-02-24 13:09 freeliver54 阅读(272) 评论(0) 推荐(0)

2014年2月20日

[转]Displaying standard DataTables in MVC

摘要: 本文转自:http://stackoverflow.com/questions/2243898/displaying-standard-datatables-in-mvcController action:public ActionResult Index(){ ViewData["Message"] = "Welcome to ASP.NET MVC!"; DataTable dt = new DataTable("MyTable"); dt.Columns.Add(new DataColumn("Col1", 阅读全文

posted @ 2014-02-20 18:06 freeliver54 阅读(281) 评论(0) 推荐(0)

sql server 跨数据库调用存储过程

摘要: A库存储过程:create PROCEDURE [dbo].[spAAAForTest]( @UserName nvarchar(20) =null , @LoginPwd nvarchar(60) =null)ASBEGIN select N'A' AS a , N'B' AS B , N'C' AS C ;END同一台服务器实例,A,B两个数据库, 在B库的存储过程中,调用A库的存储过程B库:ALTER PROCEDURE [dbo].[spAAAForTest2]( ... 阅读全文

posted @ 2014-02-20 13:50 freeliver54 阅读(17374) 评论(2) 推荐(3)

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

导航