码迷,mamicode.com
首页 >  
搜索关键字:instance    ( 6546个结果
设计模式之单例模式
private static Singleton instance; public Singleton() { //private 不让客户端 new } public static Singleton GetInst...
分类:其他好文   时间:2014-07-22 22:55:15    阅读次数:286
oracle init.ora常用配置详解
参考网上整理了重要的配置文件db_name = "51cto"一个数据库标识符,应与CREATE DATABASE 语句中指定的名称相对应。instance_name =51cto在多个例程使用相同服务名的情况下,用来唯一地标识一个数据库例程。INSTANCE_NAME不应与 SID 混淆,它实际上...
分类:数据库   时间:2014-07-16 18:57:46    阅读次数:307
C#中实例Singleton
【C#中实例Singleton】1、经典方案:using System; public class Singleton { private static Singleton instance; private Singleton() {} public static Singlet...
分类:其他好文   时间:2014-07-16 18:05:35    阅读次数:170
添加Distributor失败
上周做了一个case,客户无法为SQL Server instance配置remote distributor。 下面分享一下排查问题的过程,希望对您排查类似的问题所有帮助。客户的环境中的SQL Server均为sql server 2012 RTM.Distributor server: SQL1...
分类:其他好文   时间:2014-07-16 08:41:41    阅读次数:341
淘宝商城servlet的路径web.xml部分
淘宝商城servlet的路径web.xml部分 <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/x...
分类:Web程序   时间:2014-07-16 08:28:16    阅读次数:208
【翻译自mos文章】使用asmcmd命令在本地和远程 asm 实例之间 拷贝asm file的方法
使用asmcmd命令在本地和远程 asm 实例之间 拷贝asm file的方法...
分类:其他好文   时间:2014-07-15 12:35:52    阅读次数:271
No WebApplicationContext found: no ContextLoaderListener registered?报错解决
今天跑了下新搭的一个SSI框架。报如下错误: 严重: Exception sending context initialized event to listener instance of class com.j.chat.upgrade.web.core.SystemLaunchListener java.lang.IllegalStateException: No WebApplicat...
分类:移动开发   时间:2014-07-15 10:43:08    阅读次数:405
如何设置aws的instance的security group
1.如果是webserver的话一般要设置port 80的权限,可以选择HTTP, 然后输入自己的IP或者选择anywhere,这样任意ip都能access到了 2.为了能够在其他机器上ping这个instance,需要设置ICMP,同样的ip可以自己设置也可以选择anywhere 其余的TCP, UDP, HTTPS也最好设置下,如果没有隐私权限的要求,例如尚处于开发软件或者测试阶段...
分类:其他好文   时间:2014-07-15 10:33:21    阅读次数:315
解决方案:QSqlDatabase: an instance of QCoreApplication is required for loading driver plugins
在用QSqlDatabase时遇到报错QSqlDatabase: an instance of QCoreApplication is required for loading driver plugins是因为Qt不知道plugins的所在目录。 解决方法: 在用到数据库之前添加代码QCoreApplication::addLibraryPath("./plugins"); 其中的...
分类:移动开发   时间:2014-07-14 17:20:41    阅读次数:346
新建aix实例
请注意:为什么实例用户和实例名需要相同?创建实例命令中,并没有实例用户的选项,但是系统却通过实例名找到该用户,并在/home下的相关目录里建立了实例文件夹和文件(sqllib)。-bash-3.2# cd instance 在instance目录下-bash-3.2# ./db2icrt -u te...
分类:其他好文   时间:2014-07-14 15:37:25    阅读次数:236
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!