原文:08. 删除重复&海量数据重复数据,通常有两种:一是完全重复的记录,也就是所有字段的值都一样;二是部分字段值重复的记录。一. 删除完全重复的记录完全重复的数据,通常是由于没有设置主键/唯一键约束导致的。测试数据:if OBJECT_ID('duplicate_all') is not null...
分类:
其他好文 时间:
2014-06-25 23:46:12
阅读次数:
289
终于找到了一份满意的UDP打洞原理解释,附上正文,自己整理了一下源码3.3. UDP hole punching UDP打洞技术The third technique, and the one of primary interest in this document, is widely known...
分类:
其他好文 时间:
2014-06-25 16:57:52
阅读次数:
280
使用COM 风格的编程接口
如果不直接使用 COM 库,不创建自己的包装,那么更可能的是使用 COM 风格的编程接口。这是因为现在许多开发商发布应用程序时,提供了首选的互操作程序集(Primary Interop Assemblies),这是预先创建的 COM 包装,因此,我们就不需要再自己考虑用 TlbImp.exe 来创建包装了。
注意
更多有关首选的互操作程序集的内容,可以...
分类:
其他好文 时间:
2014-06-25 00:18:39
阅读次数:
263
create table student
(
id varchar2(5) primary key,
name varchar2(20), not null,
sex char(2) check(sex='男' or sex='女')
)
--向student中插入一条数据,用函数来验证插入是否正确
create or replace function (f_id in varchar2...
分类:
数据库 时间:
2014-06-25 00:11:31
阅读次数:
376
今天整合项目的时候, 遇到了这样一个问题。duplicate symbol _flag in: /Users/apple/Library/Developer/Xcode/DerivedData/bluetoothPhone-fspknidhnizzjygmuqngfcklvnic/Build/Intermediates/bluetoothPhone.build/Debug-iphonesim...
分类:
移动开发 时间:
2014-06-22 22:05:27
阅读次数:
266
1.创建测试数据库
create database ServerbrokerTest
on primary(
name=ServerbrokerTest_data,
filename='C:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA\ServerbrokerTest_data.mdf',
size=5...
分类:
数据库 时间:
2014-06-22 22:03:04
阅读次数:
354
今天是2014-06-18,在复制数据的时候出现如下错误:
RMAN-05537: DUPLICATE without TARGET connection when auxiliary instance is started with spfile cannot use SPFILE clause
操作过程如下:
[oracle@dg1 dbs]$ rman target sys/root@...
分类:
其他好文 时间:
2014-06-22 19:13:14
阅读次数:
306
题目:
Given a set of distinct integers, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets.
...
分类:
其他好文 时间:
2014-06-22 17:51:54
阅读次数:
196
1、
??
Subsets
Given a set of distinct integers, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate subset...
分类:
其他好文 时间:
2014-06-22 17:08:53
阅读次数:
179
There are two types of Standby databases:
1, Physical standby database
block-for-block basis
the physically identical with the primary database
user recovery technology
2, Logical standby databa...
分类:
其他好文 时间:
2014-06-22 08:35:53
阅读次数:
355