- 浏览: 7218 次
- 性别:
- 来自: 成都
最新评论
文章列表
oracle创建表空间
SYS用户在CMD下以DBA身份登陆:
在CMD中打sqlplus /nolog
然后再
conn / as sysdba
//创建临时表空间
create temporary tablespace user_temp
tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;
//创建数据表空间 ...
转自http://blog.csdn.net/yeliang0202/archive/2007/12/11/1928510.aspx
< type="text/javascript">function StorePage(){d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(keyit=window.open('http://www.365key.com/st ...
http://itnewscast.com/database/using-database-change-notification-dcn-coherence-cache
Using Database Change Notification (DCN) with a Coherence CacheThanks to The Blas from Pas for this storyFeb 01, 2010 7:27pm Database I needed to ensure my coherence cache which was storing a table from a database w ...
###################以下是jboss的配置##############
java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
java.naming.provider.url=jnp://localhost:1099
###################以下是Weblogic的配置##############
# java.naming.factory.initial ...
最近项目需要用到fckeditor,下载了一个2.4.1版本,但不能部署在fdk1.4版本,修改源码后可支持。分享一下
附源码供参考