码迷,mamicode.com
首页 >  
搜索关键字:temp    ( 7776个结果
linux下oracle创建表空间
在命令行模式下,输入sqlplus /nolog,回车这时界面会显示SQL>,这个时候再输入 conn / as sysdba;回车//创建临时表空间create temporary tablespace test_temp tempfile'/home/app/oracle/oradata/tes...
分类:数据库   时间:2014-11-20 18:22:39    阅读次数:220
指针使用注意事项
题:即输入的两个整数按大小顺序输出。今用函数处理,而且用指针类型的数据作函数参数。swap(int *p1,int *p2){ int temp; temp=*p1; *p1=*p2; *p2=temp;}main(){ int a,b; int *pointer...
分类:其他好文   时间:2014-11-20 13:24:26    阅读次数:170
Bugzilla不能上传附件解决方法
Bugzilla不能上传附件 环境:win7、Bugzilla 错误提示:CGI.pm open of tmpfile \\CGItemp5760/QQ.png failed: No such file or directory ; 一种解决方法:在C盘创建一个文件夹temp;找到CGI.pm文件,路径为C:/bugzilla/lib/CGI.pm,用记事本打开CGI.pm,找到变量CG...
分类:Web程序   时间:2014-11-19 12:41:45    阅读次数:160
批量插入数据存储过程备忘
1 DELIMITER / 2 CREATE PROCEDURE insertuser() 3 BEGIN 4 SET @i = 1000; 5 SET @temp = 'xxx'; 6 WHILE @i < 3000 DO 7 SET @username = CONCAT(@temp,@i); ....
分类:其他好文   时间:2014-11-19 12:17:28    阅读次数:209
C/C++中,写在while循环体的cin.getline()语句执行一次问题
#include #include #include using namespace std; int main() {     int count;     cin>>count;     string s;     string temp;     cin.ignore();     for(int i=0;i     {         getline...
分类:编程语言   时间:2014-11-19 01:42:04    阅读次数:266
【Lua】关于遍历制定路径下所有目录及文件
关于Lua中如何遍历指定文件路径下的所有文件,需要用到Lua的lfs库。 首先创建一个temp.lua文件,用编辑器打开: 要使用lfs库,首先需要把lfs库加载进来require("lfs") 随后创建一个函数,用来遍历指定路径下的所有文件,这里我们需要用到lfs库中的lfs.dir()...
分类:其他好文   时间:2014-11-19 00:22:45    阅读次数:216
存储过程 游标
CREATE PROCEDURE [dbo].[RuleExecute_Temp]ASdeclare @executedate varchar(20)declare @branchcode varchar(50)declare @rulenumber varchar(50)declare @num....
分类:其他好文   时间:2014-11-18 22:56:10    阅读次数:185
UVa 10176 - Ocean Deep ! - Make it shallow !!
题目:给你一个二进制串,判断能否被131071 整除。 分析:数论。直接模拟除法运算,求出余数即可。 说明:注意可能有非法字符(例如空格)。 #include #include #include #include #include #include using namespace std; char buf[10010],temp[110]; int main() { ...
分类:其他好文   时间:2014-11-18 11:48:13    阅读次数:154
GRANT 授权
sys(管理员)身份登录,创建用户名zsta_new create user zsta_new   identified by 密码   default tablespace ZSTA_DATA_TBS   temporary tablespace TEMP   profile DEFAULT; 给zsta_new用户授权(允许创建存储过程等): grant conn...
分类:其他好文   时间:2014-11-17 19:34:18    阅读次数:203
php实现文件上传的源码
php实现文件上传的源码,更多php技术开发就去php教程网,http://php.662p.com m.jpg [type] => image/jpeg [tmp_name] => C:\WINDOWS\Temp\php1A.tmp [error] => 0 [size] => 44905 ) ....
分类:Web程序   时间:2014-11-17 10:27:37    阅读次数:172
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!