oracle
job简介主要的使用情景定时在后台执行相关操作:如每天晚上0点将一张表的数据保存到另一张表中,2:定时备份数据库等熟化说万事开头难,这里我只简单记述一个创建一个简单的job步骤如下:1、创建一张表g_testcreate
table G_TEST(ID NUMBER(12),C_DAT...
分类:
数据库 时间:
2014-06-29 12:40:17
阅读次数:
252
Paint paint1 = new Paint();paint1.setXfermode(new
PorterDuffXfermode(Mode.CLEAR));canvas.drawPaint(paint1);paint1.setXfermode(new
PorterDuffXfermode(M...
分类:
其他好文 时间:
2014-06-29 12:37:10
阅读次数:
202
//对应数据库中的某个表 [Table(Name = "main.Student")] public
class Student { [Column(Name = "StuName", DbType = "varchar(50)")] public string
StuName { get; set...
分类:
数据库 时间:
2014-06-06 07:34:05
阅读次数:
413
delete table atruncate table
b用truncate删除表比delete删除表 逻辑读和cost都有明显的减少delete
删除并不能释放空间,虽然将很多块的记录删除,但空间依然会保留,oracle在查询时,依然会查询这些块而truncate是一种释放高水平位的动作,这些空...
分类:
其他好文 时间:
2014-06-06 07:32:46
阅读次数:
337
一、创测试表-- Create tablecreate table
J_STOCK_MONTH( CLASS3 VARCHAR2(12) not null, AMOUNT NUMBER(12) not null,
CREATE_TIME DATE not null, CR...
分类:
数据库 时间:
2014-06-05 22:12:41
阅读次数:
559
Table Groups [AX 2012]0 out of 1 rated this
helpful-Rate this topic Updated:February 21, 2012 Applies To:Microsoft Dynamics
AX 2012 R2, Microsoft Dyna...
分类:
其他好文 时间:
2014-06-05 20:45:09
阅读次数:
326
1. 复合字面值char *get_status_str(int status){ return
(char *[]){"linkdown","partial-linkup","full-linkup","N/A"}[status];} 2.
常量折叠#include int main() { .....
分类:
其他好文 时间:
2014-06-05 20:35:26
阅读次数:
199
Table Properties [AX 2012]1 out of 2 rated this
helpful-Rate this topic Updated:July 20, 2012 Applies To:Microsoft Dynamics AX
2012 R2, Microsoft Dyna...
分类:
其他好文 时间:
2014-06-05 20:02:44
阅读次数:
547
假设有一个表,结构如下:root@localhost : yayun 22:59:43>
create table t1 ( -> id int unsigned not null auto_increment, -> id2 int
unsigned not null default ...
分类:
其他好文 时间:
2014-06-05 15:22:16
阅读次数:
240
Table会随着内容增加而变宽,即便使用了CSS也控制不住。必须对table使用table-layout:
fixed才行。例如: xyz
分类:
Web程序 时间:
2014-06-05 13:38:39
阅读次数:
249