using System;using System.Data;using
System.Configuration;using System.Collections;using System.Web;using
System.Web.Security;using System.Web.UI;usin...
分类:
其他好文 时间:
2014-05-01 13:28:29
阅读次数:
274
安装了Oracle之后,第一件事情就是想想怎么去连接,进而操作。SQL
Developer是官方提供的强大工具,个人看来也是第一选择。目前官网提供的最新版是4.0.1.14.48,下载下来之后,就跃跃欲试了。将下载下来的包解压,直接运行sqldeveloper.exe这个文件,选择了本地安装的JDK...
分类:
数据库 时间:
2014-05-01 13:27:12
阅读次数:
477
using System;using System.Collections;using
System.Configuration;using System.Data;using System.Linq;using System.Web;using
System.Web.Security;using ...
分类:
其他好文 时间:
2014-05-01 13:25:21
阅读次数:
380
http://udt.sourceforge.net/DT is a reliable UDP
based application level data transport protocol for distributed data intensive
applications over wide ...
分类:
其他好文 时间:
2014-05-01 13:21:54
阅读次数:
488
public static class ExtensionMethods{/// ///
将List转换成DataTable/// /// /// /// public static DataTable ToDataTable(this IList
data){PropertyDescriptorC...
分类:
其他好文 时间:
2014-05-01 13:03:47
阅读次数:
355
Data
Abstract是最好的多层次框架,它提供端到端的解决方案,同时也可以很轻松地建立起可扩展的数据库方案以满足如今的分布式系统要求。
分类:
Web程序 时间:
2014-05-01 12:10:14
阅读次数:
416
来着TOM的《oracle 编程艺术
9i,10g,11g》PMONPMON,进程监视。PMON主要有3个用途:1,在进程非正常中断后,做清理工作。例如:dedicated
server失败了或者因为一些原因被杀死,这是PMON的工作分两种。第一,是对dedicated server所做的工作进行恢...
分类:
数据库 时间:
2014-05-01 11:49:21
阅读次数:
403
去重有两层含义,一:是记录完全一样;二:是符合一定条件的认为是重复。根据表的数量,去重可划分为:单表去重和多表关联去重。对于去重,一般最容易想到的是用distinct,而distinct只能对记录完全重复的记录保留一条。distinct使用的是二重循环的方式来去重的,如果数据量非常大的时候,会导致性...
分类:
数据库 时间:
2014-05-01 11:36:20
阅读次数:
422
1.
下载jre,eclipse,cdt其中jre是java运行环境,eclipse需要先装jre,才可能运行,cdt是在eclipse中运行c\c++程序的插件。下载jre网址是:http://www.oracle.com/technetwork/java/javase/downloads/...
分类:
编程语言 时间:
2014-05-01 11:26:34
阅读次数:
519
Oracle单表去重去重有两层含义,一:是记录完全一样。二:是符合一定条件的认为是重复。根据表的数量,去重可划分为:单表去重和多表关联去重。对于去重,一般最容易想到的是用distinct,而distinct只能对记录完全重复的记录保留一条。distinct使用的是二重循环的方式来去重的,如果数据量非...
分类:
数据库 时间:
2014-05-01 11:13:53
阅读次数:
555