CREATE TABLE `ecm_address` (
`addr_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL DEFAULT '0',
`consignee` varchar(60) NOT NULL DEFAULT '',
`region_id` int(10) u...
分类:
数据库 时间:
2015-01-13 23:18:10
阅读次数:
526
数据库版本11.2.0.3.0 oracle的bug导致的错误expdpORA-07445: exception encountered: core dump [kokemisz()+34] [SIGSEGV] [ADDR:0x18] [PC:0x143F5C6] [Address not mapp...
分类:
其他好文 时间:
2015-01-13 19:36:34
阅读次数:
482
ARP协议是什么? ARP协议是"Address Resolution Protocol"(地址解析协议)的缩写。在局域网中,网络中实际传输的是"帧",帧里面是有目标主机的MAC地址的。在以太网中,一个主机和另一个主机进行直接通信,必须要知道目标主机的MAC地址。但这个目标MAC地址是如何获得...
分类:
其他好文 时间:
2015-01-12 23:55:33
阅读次数:
268
prototype只有function才有的属性。var a = function() { this.age = 12; this.name = "haha"; };a.prototype = { address: "shanghai", price:13 };/...
分类:
其他好文 时间:
2015-01-12 20:45:03
阅读次数:
103
ip link listip address showip route showroute -nip neigh showping -c 1 espa043 (add to arp)ip neigh delete 9.3.76.43 dev eth0ip rule listip route list...
分类:
其他好文 时间:
2015-01-12 18:56:42
阅读次数:
170
编写网络包(存储在堆上)转换程序时,在hp-ux机器上运行时会遇到si_code: 1 - BUS_ADRALN - Invalid address alignment. Please refer to the following link that helps in handling unal.....
分类:
其他好文 时间:
2015-01-12 17:23:48
阅读次数:
209
用xshell客户端连接主机出现错误:
ssh 用户名@ip_address [port]
官方文档上的提示:
"Could not connect to 'hostname' (port 22): Connection failed."
Check if the host machine is ready for connection and the port...
分类:
其他好文 时间:
2015-01-12 16:43:39
阅读次数:
104
set /a num1=%random%%%200+1+1 //生成随机数set ip=192.168.1.//ip 主体set ip1=%ip%%num1% //拼接两部分cmd /c netsh interface ip set address name="无线网络连接" source=stat...
分类:
其他好文 时间:
2015-01-11 21:36:14
阅读次数:
236
leetcode竟然有sql的题了。。两道简单的应该会做这个题主要就是一个left join...# Write your MySQL query statement belowSELECT Person.FirstName, Person.LastName, Address.City, Addre...
分类:
其他好文 时间:
2015-01-11 20:20:37
阅读次数:
245
175Combine Two Tables题目:左连接Person表和Address表。select FirstName,LastName,City,State from Person p left join Address a on p.PersonId=a.PersonId;7个case耗时1....
分类:
数据库 时间:
2015-01-11 16:09:20
阅读次数:
299