创建Oracle索引:create index DEFECT_SUBMIT_DATE_IDX
on Defect(Submit_Date);create index DEFECT_DBID_SUBMIT_DATE_IDX on Defect(dbid,
Submit_Date);删除索引:drop ...
分类:
数据库 时间:
2014-05-29 02:53:44
阅读次数:
407
[Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)]//Identifier字段会自动产生guid值,如果Identifier是int类型,那字段就是自增类型。[Table("Retail",
Schema = "Chapter2")]p...
分类:
其他好文 时间:
2014-05-29 02:38:14
阅读次数:
227
1. Table per Hierarchy
基类和继承类存储在同一张数据表中,通过一个专门的字段(Identifier Column)进行区分。protected override void
OnModelCreating(DbModelBuilder modelBuilder){base.On....
分类:
其他好文 时间:
2014-05-29 02:36:10
阅读次数:
329
#导出大表:mysqldump --add-drop-table
--single-transaction --triggers -R -quick --disable-keys -utest -ptest -P5616
test > test.sql#仅导出表结构mysqldump --add-....
分类:
数据库 时间:
2014-05-29 00:03:48
阅读次数:
458
在调用Oracle函数时为了让PL/SQL 函数返回数据的多个行,必须通过返回一个 REF
CURSOR 或一个数据集合来完成。REF CURSOR 的这种情况局限于可以从查询中选择的数据,而整个集合在可以返回前,必须进行具体化。 9i
通过引入Oracle函数中的管道化表函数纠正了后一种情况。表函...
分类:
数据库 时间:
2014-05-28 22:25:06
阅读次数:
359
建立表空间和用户的步骤: 用户 建立:create user 用户名 identified
by "密码"; 授权:grant create session to 用户名; grant create table to 用户名; grant c...
分类:
数据库 时间:
2014-05-28 21:41:27
阅读次数:
393
出于对bi行业的强大热爱,出于对cognos tm1的强大兴趣,于是就想研究一下Cognos
TM1(table manager
one),今天就分享一下自己微不足道研究成果,真可谓是tm1的九牛一毛,主要作用在于自勉.问题1:从网上down下来的tm1安装包很乱,不知道该安装什么组件,顺序是怎么样...
分类:
其他好文 时间:
2014-05-28 13:27:14
阅读次数:
518
android.permission.ACCESS_CHECKIN_PROPERTIES 允
许读写访问”properties”表在checkin数据库中,改值可以修改上传( Allows read/write access to the
“properties” table in the chec...
分类:
移动开发 时间:
2014-05-28 03:21:29
阅读次数:
346
Situations in Which Direct Path Load Is Not UsedIf
any of the following conditions exist for a table, then Data Pump uses external
tables rather than ...
分类:
数据库 时间:
2014-05-28 03:03:56
阅读次数:
361
1.复制表 create table t2 like t1; insert into t2
select * from t1;2.索引 a. ALTER TABLE 用来创建普通索引,UNIQUE 索引和 PRIMARY KEY 索引 ALTER
TABLE table_name ADD...
分类:
数据库 时间:
2014-05-28 01:29:48
阅读次数:
335