首页 > 2014年08月13日 > 全部分享
oracle 全文检索
一、使用 sys 用户登录oracle(1)运行—cmd—sqlplus — sys/密码 @连接字符 as sysdba二、授权1、grant ctxapp to 全文检索使用用户;2、grant execute on ctx_dll to 全文检索使用用户;3、全文检索使用用户 登录oracle...
分类:数据库技术   时间:2014-08-13 12:40:06    收藏:0  评论:0  赞:0  阅读:413
SAP (ABAP) 常用的数学函数
Function funcReturn valueabsAbsolute value of the argument arg (绝对值)signPlus/minus sign of the argument arg: -1, if the value of arg is negative; 0 if...
分类:其他   时间:2014-08-13 12:39:56    收藏:0  评论:0  赞:0  阅读:641
AMF_OBJECT 数据结构浅析
组织的比较散,主要是标记一下有关 AMF_OBJECT数据组织结构。其标识嵌套结束则为 0x 00 00 09原始数据结构已知:key=“0123456”;Value的值是一个结构体如下:struct usrinfo{ int itype; char name[12]; ...
分类:其他   时间:2014-08-13 12:39:36    收藏:0  评论:0  赞:0  阅读:357
html5 自定义数据属性 ,也就是 data-* 自定义属性---笔记。
html5 自定义数据属性 ,也就是 data-* 自定义属性。 例如 可以有三种方法访问和修改data: 1.使用getAttribute setAttribute 方法 例如 div.getAttribute("data-last-value") 2.使用datase...
分类:Web开发   时间:2014-08-13 12:39:26    收藏:0  评论:0  赞:0  阅读:407
在线笔试系统 数据库设计
试卷模板:papertemaplate岗位类型:positiontype题库:question答卷:sheet应聘者答案(答卷明细表):ansersheet用户表(包含面试吗、HR、应聘者):user角色表:role (用来区分用户的类型)试卷模板和题库的关系(试卷明细表): paperdetail...
分类:数据库技术   时间:2014-08-13 12:39:06    收藏:0  评论:0  赞:0  阅读:379
java中synchronized使用方法
synchronized的一个简单样例public class TextThread {/** * @param args */public static void main(String[] args) {// TODO 自己主动生成方法存根 TxtThread tt = new TxtThrea...
分类:编程语言   时间:2014-08-13 12:38:56    收藏:0  评论:0  赞:0  阅读:412
MySQL replication illegal mix of collations
MySQL replication case 一则转载:http://www.vmcd.org/2013/09/mysql-replication-case-%E4%B8%80%E5%88%99/Posted by admin on September 10th, 2013最近同事处理了一则mysq...
分类:数据库技术   时间:2014-08-13 12:38:46    收藏:0  评论:0  赞:0  阅读:348
yanghui杨辉三角--(二维数组
#include #define N 15using namespace std;int a[N][N];void yanghui(int n){ int i,j; for(i=0;i>n; yanghui(n); for(i=0;i#define N 15using names...
分类:其他   时间:2014-08-13 12:38:36    收藏:0  评论:0  赞:0  阅读:318
[LeetCode] Decode Ways(DP)
A message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded message con...
分类:其他   时间:2014-08-13 12:38:26    收藏:0  评论:0  赞:0  阅读:346
unity学习之总结比较
1、for与while循环while 循环用于循环次数不是确定的情况for 循环用于循环次数确定的情况下使用for:for ( int i = 0; i 列表名=new list();这样给他实例化一个对象,用for循环添加数public List value = new List(); ...
分类:其他   时间:2014-08-13 12:38:16    收藏:0  评论:0  赞:0  阅读:346
LUA 运算笔记
for循环 比如要实现这样的一个For for(int i=10;i>1;i—) { print(i) } 转换成LUA for i=10,1,-1 do print(i) end 在循环里我们常用的 –i ,i++在LUA里不支持,只能写成 i= i-1 ;i=i+1 发现一个有意思的是也可以使用...
分类:其他   时间:2014-08-13 12:38:07    收藏:0  评论:0  赞:0  阅读:254
全面解读python web 程序的9种部署方式
转载自鲁塔弗的博客,本文地址http://lutaf.com/141.htmpython有很多web 开发框架,代码写完了,部署上线是个大事,通常来说,web应用一般是三层结构web server ---->application -----> DB server主流的web server 一个巴掌...
分类:编程语言   时间:2014-08-13 12:37:56    收藏:0  评论:0  赞:0  阅读:494
combobox添加选项
如果不需要绑定字段,只需要显示列表cmb_Type.Items.AddRange(new object[] {"姓名","年龄","性别"});Datatable dt = getDataTable();cmb_Type.Displayname = column1;cmb_Type.ValueMem...
分类:其他   时间:2014-08-13 12:37:36    收藏:0  评论:0  赞:0  阅读:274
Windbg and resources leaks in .NET applications 资源汇总
Windows Forms Leaks1.http://blogs.msdn.com/b/tess/archive/2008/02/04/net-debugging-demos-information-and-setup-instructions.aspx2.http://www.codeproje...
分类:移动平台   时间:2014-08-13 12:36:56    收藏:0  评论:0  赞:0  阅读:374
iOS基础
1.属性readwrite,readonly,assign,retain,copy,nonatomic各是什么作用,在那种情况下用?readwrite是可读可写特性;需要生成getter方法和setter方法时readonly是只读特性只会生成getter方法 不会生成setter方法;不希望属性在...
分类:移动平台   时间:2014-08-13 12:36:46    收藏:0  评论:0  赞:0  阅读:460
Winform 根据Point截图并保存到指定路径
1 /// 2 /// 获取图片流 3 /// 4 /// 图片屏幕起始点 5 /// 图片大小 6 /// 7 public string CutImage(Point ImageXY, Siz...
分类:Windows开发   时间:2014-08-13 12:36:36    收藏:0  评论:0  赞:0  阅读:314
Linux sync命令的作用分析
Sync命令在用reboot命令启动unix系统后,系统提示出错信息,部分应用程序不能正常工作。经仔细检查系统文件,并和初始的正确备份进行比较,发现某些文件确实被破坏了,翻来覆去找不到文件遭破坏的原因,最后想到了写缓存命令——sync,在reboot前没有运行sync命令,导致了系统文件的改变而不能...
分类:系统服务   时间:2014-08-13 12:36:26    收藏:0  评论:0  赞:0  阅读:358
Ptrace_scope的作用及设置
Short answer: no practical danger yet, but read on for a better way...What's this ptrace thing anyway?this is due to a bug in the Ubuntu kernel that p...
分类:其他   时间:2014-08-13 12:36:16    收藏:0  评论:0  赞:0  阅读:524
Windows网络编程
第一章 序言 我写这个专题的目的,一方面是为了通过对网络编程再一次系统的总结,提高自己的网络编程水平,特别是Windows下的网络编程水平。同一时候,我也希望,能为众多初学网络编程的人提供一点帮助,由于我開始学习网络编程的时候,能找到的资料就非常少。当然,花钱能够买到翻译版本号的书:) 首先向大家推...
分类:Windows开发   时间:2014-08-13 12:36:06    收藏:0  评论:0  赞:0  阅读:526
check_MK安装部署(nagios4版本)
概述: 操作系统版本:CentOS release 6.3 (Final) 64位 nagios版本:Nagios Core 4.0.6 pnp4nagios版本:pnp4nagios-0.6.22 mk-livestatus版本:mk-livestatus-1.2.5i5p2 check...
分类:移动平台   时间:2014-08-13 12:35:46    收藏:0  评论:0  赞:0  阅读:1617
2001条   上一页 1 ... 64 65 66 67 68 ... 101 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!