码迷,mamicode.com
首页 >  
搜索关键字:creation    ( 446个结果
oracle 11g不能导出空表的解决方法
1、Oracle11g默认对空表不分配segment,故使用exp导出Oracle11g数据库时,空表不会导出。2、设置deferred_segment_creation 参数为FALSE后,无论是空表还是非空表,都分配segment。 在sqlplus中,执行如下命令: SQL>alter sys...
分类:数据库   时间:2014-11-22 15:53:14    阅读次数:211
Run Repository Creation Utility (RCU) for Oracle Identity Management components
Run Repository Creation Utility (RCU) for Oracle Identity Management componentsInstalling Oracle Fusion Applications > Setting up Identity and Access ...
分类:数据库   时间:2014-11-22 00:42:46    阅读次数:411
11g参数之deferred_segment_creation
deferred_segment_creation    布尔型 默认值为true 这个参数10gR2中是没有的,11g中才有 从字面意思也可以看出来,当这个参数设置为true时,当创建一个表的时候,不给它分配segment,即不分配空间,当向这个表中插入第一条数据的时候才开始分配segment。 设置为true的优点:在创建一系列表的时候,若事先已知许多表并没有数据,可以指定这个参数为...
分类:其他好文   时间:2014-11-20 15:18:41    阅读次数:219
JQuery Plugin 开发
学习 JQuery 插件开发之后, 可以将自己平时常用的功能封装成插件, 便于在不同的项目之间使用.JQuery 官网上的 插件开发教程就很不错, 简单易懂.参考网址:http://learn.jquery.com/plugins/basic-plugin-creation/http://learn...
分类:Web程序   时间:2014-11-17 12:14:02    阅读次数:420
Analytic View in HANA
1. Can only select measures from one table ( Transactional data)2. Two steps of view creation reflected in editor tabs Tab "Data Foundation" ---> Crea...
分类:其他好文   时间:2014-11-13 16:09:36    阅读次数:214
关于AlertDialog.getWindow().setContentView(view)不能弹出输入法
可以阅读官方文档:http://developer.android.com/reference/android/app/Dialog.html其中有一段:Note: Activities provide a facility to manage the creation, saving and re...
分类:Windows程序   时间:2014-11-11 00:36:37    阅读次数:269
linux delete files older than 3 days
4 down vote accepted This is easy enough (although note that this goes by a modification time more than 3 days ago since a creation time is only avail...
分类:系统相关   时间:2014-11-05 16:47:22    阅读次数:188
weblogic domain creation
管理服务器 URL: http://CICI-ThinkPad:7001Domain Path:D:\Program Files\DEV\Oracle\Middleware\user_projects\domains\base_domainBEA_HOME:D:\Program Files\DEV\...
分类:Web程序   时间:2014-11-05 00:12:09    阅读次数:352
RootMotionComputer 根运动计算机
using UnityEngine;using System.Collections;/* * ---------------------------------------------------------------------------- * Creation Info * -------...
分类:其他好文   时间:2014-10-25 22:40:33    阅读次数:227
工作之:oracle 11g deferred_segment_creation段延迟创建(转载他人)
oracle 11g 新增了一个参数:deferred_segment_creation,含义是段延迟创建,默认是true。具体是什么意思呢? 如果这个参数设置为true,你新建了一个表T1,并且没有向其中插入数据,那么这个表不会立即分配extent,也就是不占数据空间,只有当你insert数据后才...
分类:数据库   时间:2014-10-21 17:33:07    阅读次数:226
446条   上一页 1 ... 38 39 40 41 42 ... 45 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!