码迷,mamicode.com
首页 >  
搜索关键字:creation    ( 446个结果
解决Oracle11g空表无法导出的问题
Oracle11g 新增参数deferred_segment_creation  ,建库的时候默认值为true,意思是延时加载,当表中不存在数据的时候,不为这个表创建空间,当你导出的时候会发现很多表不存在 使用show parameter deferred deferred_segment_creation; 命令可以查看deferred_segment_creation的值,如果想...
分类:数据库   时间:2014-08-18 20:32:02    阅读次数:211
Performance analysis of our own full blown HTTP
In previous post?Let‘s do our own full blown HTTP server with Netty 4?you and I were excited by creation of our own web server.?So far so good. But how good?? Given ordinary notebook? cat?/pr...
分类:其他好文   时间:2014-08-12 19:13:14    阅读次数:300
获取web应用路径 // "/" 表示class 根目录
/** * 获取web应用路径 * @Description : 方法描述 * @Method_Name : getRootPath * @return * @return : String * @Creation Date : 2013-12-13 下午...
分类:Web程序   时间:2014-08-04 14:11:57    阅读次数:206
sql 模糊查询优化
在sql语句中使用 like模糊查询时,应该尽量避免%%,因为模糊查询是比较慢的,当出现这样的情况时,应该考虑优化。举个例子:我在表中查询2012 年创建的记录SELECT * FROM `component_data` WHERE creation_date LIKE '2012%'; 得到的时....
分类:数据库   时间:2014-08-01 19:05:32    阅读次数:276
oracle11g导出空表
DEFERRED_SEGMENT_CREATION参数 该参数意思是当创建对象(如表),初始时没有数据,是否立即创建segment。默认是true。这会导致在按用户导出时,没有segment的对象不会导出。 解决方法 首先执行下面的语句: Select 'alter table '||table_name||' allocate extent;' from user_tables wh...
分类:数据库   时间:2014-07-31 03:05:25    阅读次数:230
What is happening in Crockford's object creation technique?
What is happening in Crockford's object creation technique?http://stackoverflow.com/questions/2766057/what-is-happening-in-crockfords-object-creation-...
分类:移动开发   时间:2014-07-30 20:30:45    阅读次数:272
java线程例子登山
Through its implementation, this project will familiarize you with the creation and execution of threads, and with the use of the Thread class methods...
分类:编程语言   时间:2014-07-28 14:44:03    阅读次数:467
查询SQLSERVER执行过的SQL记录
有的时候,需要知道SQLSERVER执行了什么语句,可以用下面的方法:SELECT TOP 1000--创建时间QS.creation_time,--查询语句SUBSTRING(ST.text,(QS.statement_start_offset/2)+1,((CASE QS.statement_e...
分类:数据库   时间:2014-07-24 22:22:32    阅读次数:208
11g Oracle导出表 默认不导出数据为空的表解决
11g oracle导出表时会默认不导出数据为空1、Oracle11g默认对空表不分配segment,故使用exp导出Oracle11g数据库时,空表不会导出。2、设置deferred_segment_creation参数为FALSE后,无论是空表还是非空表,都分配segment。在sqlplus中...
分类:数据库   时间:2014-07-19 11:21:36    阅读次数:239
yii save model return id null
```php /** * Creates a new model. * If creation is successful, the browser will be redirected to the 'view' page. */ public function actionCreate()...
分类:其他好文   时间:2014-07-18 08:35:27    阅读次数:250
446条   上一页 1 ... 40 41 42 43 44 45 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!