解决步骤: 1: Sql Server是否已经启动. 2: 检查Sql Server服务器是否开启TCP/IP协议. 侦听的默认端口为1433 3: ping 数据库服务器. 看网络是否可通 4: Telnet 服务器IP 1433, 检查是否防火墙原因导致端口不通 5: 服务器是否允许远程连接 ....
分类:
数据库 时间:
2014-11-27 23:20:26
阅读次数:
493
synchronized关键字可以作为函数的修饰符,也可作为函数内的语句,也就是平时说的同步方法和同步语句块。如果再细的分类,synchronized可作用于instance变量、object reference(对象引用)、static函数和class literals(类名称字面常量)身上。
注意:
A.无论synchronized关键字加在方法上还是对象上,它取得的锁都是对象,而不是...
分类:
其他好文 时间:
2014-11-27 18:27:28
阅读次数:
173
从带有tableview并且使用Mj下拉刷新的视图调用popViewControllerAnimated的时候,控制台打印这个:An instance 0x15d7aa00 of class UITableView was deallocated while key value observers ...
分类:
其他好文 时间:
2014-11-27 12:15:56
阅读次数:
228
在做ssh项目时,启动tomcat,出现了以下的错误
严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.BeanC...
分类:
移动开发 时间:
2014-11-26 21:04:00
阅读次数:
975
Nginx源码分析—过期事件和惊群事件的处理
过期事件:每个事件的date域都是一个结构体ngx_connection_t结构体,表示对应的连接。对于一个结构体struct epoll_event 中的data.ptr成员存储的是ngx_connection_t连接,这里使用Instance标志位来标识,下面就配合ngx_epoll_process_events方法说明他的用法。
Data.p...
分类:
其他好文 时间:
2014-11-26 16:38:07
阅读次数:
165
1、饿汉式单例模式
// 饿汉式单例模式 - by Chimomo
namespace CSharpLearning
{
public sealed class Singleton
{
private static readonly Singleton instance = new Singleton();
private Singleton() ...
分类:
编程语言 时间:
2014-11-25 14:29:50
阅读次数:
213
核心公式:DB --> ETL --> DW vs REF file
错误产生原因:
1, DB/DW Connection Issue
2, SQL Issue
3, Product Bug
4, REF file not updated
物理需求分析:
1, Source DB: EBS, PSFT, Fusion…DB Instance
2, DW...
分类:
数据库 时间:
2014-11-25 12:48:20
阅读次数:
283
Quaro上的问答,我感觉回答的非常好!What are the advantages of different classification algorithms?For instance, if we have large training data set with approx more t...
分类:
编程语言 时间:
2014-11-25 12:42:25
阅读次数:
350
1.Object reference not set to an instance of an object. 未将对象引用(引用)到对象的实例,说白了就是有个对象为null,但是你在用它点出来的各种东西。2.An entity object cannot be referenced by mul....
今天下午将远程数据库中数据导出然后导入到本地数据库,部署的项目连接本地数据库后jboss启动后编译报如下错误:
严重: Exception sending context initialized event to listener instance of class com.dicpsi.mis.contextListener.ContextListener
org.spri...
分类:
数据库 时间:
2014-11-24 22:31:48
阅读次数:
318