码迷,mamicode.com
首页 >  
搜索关键字:exp    ( 9310个结果
Oracle导入(imp )与导出(exp )
导出exp username/password@orcl file=db.dmp导入imp username/password@orcl file=h:\db.dmp full=y备注:在导入之前,请先清除Views、Sequences、Tables也可以使用Bat文件导出Bat文件内容如下:@ec...
分类:数据库   时间:2014-08-12 10:04:43    阅读次数:289
expect与rsync 异步并行备份数据脚本
expect与rsync异步并行备份数据脚本 #!/bin/bash #author:qunying.liu #2014.08.02 #脚本用途:通过rsync从远程机器备份数据到本机机器对应目录 #脚本目录:/usr/local/scripts/,expect脚本目录:/usr/local/scripts/dsfilersync, #备注:一个机器对应一个exp脚本,该脚本中..
分类:其他好文   时间:2014-08-11 15:22:23    阅读次数:232
bailian 2694
#include 头文件atof 将字符串 转化为 一个双精度值 int atof(a) #include #includedouble exp(){ char a[20];scanf("%s",a) ;switch(a[0]) { case'+': re...
分类:其他好文   时间:2014-08-10 21:11:50    阅读次数:314
JS中 判断null
以下是不正确的方法:var exp = null;if (exp == null){ alert("is null");}exp 为 undefined 时,也会得到与 null 相同的结果,虽然 null 和 undefined 不一样。注意:要同时判断 null 和 undefined 时可使用...
分类:Web程序   时间:2014-08-09 18:08:08    阅读次数:219
I should know the content of js
阻止事件传播,必须显示,return false; return exp?confirm():!!alert(); js 定时器,线程,启动,开始,停止。参数传递,使用window; js扩展: String.prototype.Trim = String.prototype.trim = function() {...
分类:Web程序   时间:2014-08-07 13:35:00    阅读次数:250
Oracle导入导出dmp文件
导出dmp: exp iflashbuy/password@width246 file=iflashbuy20140121.dmp owner=iflashbuy246
分类:数据库   时间:2014-08-06 18:17:51    阅读次数:487
在asp.net中使用加密数据库联接字符串
在我们发布网站时,加密web.config,这样可以有效保证数据库用户和密码安全,其步骤如下:1.添加密钥执行:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis-pc"hnlaw"-exp其中"hnlaw"为密钥名称2.添加web...
分类:数据库   时间:2014-08-06 18:11:01    阅读次数:283
matlab plot
图形标注x=0:pi/100:2*pi; y1=2*exp(-0.5*x); y2=cos(4*pi*x); plot(x,y1,x,y2) title('x from 0 to 2{\pi}'); %加图形标题 xlabel('Variable X'); %加X轴说明 ylabel('Variab...
分类:其他好文   时间:2014-08-06 17:19:22    阅读次数:256
利用栈判断输入的表达式中的括号是否匹配(假设只含有左、右括号)
利用栈判断输入的表达式中的括号是否匹配(假设只含有左、右括号) bool Match(char exp[],int n) {   int i=0;   char e;   bool match=true;   SqStack *st;   InitStack(st);//初始化栈    while(i   {     if(exp[i]=='(')//当前字符为左括号,将其...
分类:其他好文   时间:2014-08-06 10:31:59    阅读次数:225
oracle数据库备份
--数据库备份--导出exp userid=shoppingsys/shoppingsys@orcl file=/home/oracle/shoppingsys.dmp log=/home/oracle/shoppingsys.log--数据库备份--导入imp userid=shoppingsys...
分类:数据库   时间:2014-08-06 01:23:00    阅读次数:252
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!