/*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m maxsize ...
分类:
其他好文 时间:
2015-03-20 16:00:58
阅读次数:
161
$("td[name='rates']").each(function () { var temp = $(this).text().substr(0,$(this).text().length-1); if (temp ...
分类:
其他好文 时间:
2015-03-20 10:30:04
阅读次数:
120
sql 游标例子 根据一表的数据去筛选另一表的数据DECLARE @MID nvarchar(20)DECLARE @UTime datetimeDECLARE @TBL_Temp table( MID nvarchar(20), Uptime datetime, Chat nvarch...
分类:
数据库 时间:
2015-03-20 09:14:28
阅读次数:
175
在进行两个变量的时候,经常会看到有些书误人子弟的推荐使用异或的方式:
方式一
{
x = x ^ y;
y = x ^ y;
x = x ^ y;
}
而不是采用临时变量实现交换:
方式二
{
int temp;
temp = a;
a = b;
b = temp;
}
美其名曰:节省内存,提高运行速度。
临时变量交换的方式:
...
分类:
其他好文 时间:
2015-03-19 22:03:33
阅读次数:
94
今天在上课的时候在测试MSSQL建表的时候 注册时间默认值用getdate()可以获取插入值时候的时间create table temp( id int PRIMARY key, in_time datetime NOT NULL default getdate() )但是在MYSQL建表练习的时候...
分类:
数据库 时间:
2015-03-19 21:55:03
阅读次数:
137
int[] array = new int[10];for (int i = 0; i < 10; i++){array[i] = i;}Random r = new Random();for (int j = 0; j < 100; j++){int temp;int x1 = r.Next(10...
分类:
编程语言 时间:
2015-03-19 19:56:25
阅读次数:
114
${temp.id} ${temp.zdzName} ${temp.ztempString} ${rainList[loop.count-1].hourrf} 在一个table中同时显示两个list的内容,找了几天终于找到解决办法了,这里的tempList和rainList是从后台传递过来的l...
分类:
其他好文 时间:
2015-03-19 18:19:20
阅读次数:
114
jxl是个韩国人开发的java中操作excel的库(棒子国思密达)相对于另一个java excel库poi来说,jxl具有小巧和使用简单等优点。File uploadedFile = new File("temp.xls"); ...
分类:
其他好文 时间:
2015-03-19 18:05:53
阅读次数:
226
#pragma once#include "J.h"class JWnd {public: JWnd(void); virtual ~JWnd(void);protected: static int SubWndProc(HWND hWnd,int message,WPARAM wParam,LPA...
分类:
其他好文 时间:
2015-03-19 18:05:49
阅读次数:
152
1 下载human_resources.rar
2 解压到$ORACLE_HOME/demo/schema/human_resources/目录下
3 在sys或system用户下运行hr_main.sql脚本
4 输入必要的参数(下面输入仅为举例)
hr用户密码:hr
表空间:users
临时表空间:temp
sys密码:xxxxxx
日志生成目录:(Linux为$ORACLE_...
分类:
数据库 时间:
2015-03-19 16:29:38
阅读次数:
203