摘要:
Oracle 安装用户组的创建在官方文档有说明,这里把这部分内容单独拿出来说明一下。一.官网说明From:http://docs.oracle.com/cd/E11882_01/rac.112/e17264/preparing.htm#TDPRC1291.1 Required Operating System Users and GroupsTo install theOracle Grid Infrastructure for a cluster software and Oracle RAC, you mustcreate the following operating system gr 阅读全文
posted @ 2011-12-11 16:36
sqlite例子
阅读(183)
评论(0)
推荐(0)
摘要:
针对Oracle 11g 之前版本的行列转换,之前整理过一篇文档:Oracle 行列转换 总结http://blog.csdn.net/tianlesoftware/article/details/4704858在Oracle 11g中,Oracle 又增加了2个查询:pivot 和 unpivot。pivot:行转列unpivot:列转行在官网上有一点介绍这两个函数的使用文档:http://docs.oracle.com/cd/E11882_01/server.112/e26088/statements_10002.htm#SQLRF01702不过也不详细,google 一下,网上有一篇比较 阅读全文
posted @ 2011-12-10 22:04
sqlite例子
阅读(334)
评论(0)
推荐(0)
摘要:
先看我们的数据:SQL> select count(1) from dave where cust_tel like '0551%';COUNT(1)----------2723在我们的Dave表里,cust_tel 电话以0551 开头的有2723条记录,现在我们把这些记录换成0556.我们使用如下方法测试一下:SQL> select * from v$version; BANNER
----------------------------------------------------------------------
Oracle Database 11g 阅读全文
posted @ 2011-12-10 17:41
sqlite例子
阅读(173)
评论(0)
推荐(0)
摘要:
Oracle Aggregate Functions用过很多,官网的说明如下:Aggregate Functionshttp://docs.oracle.com/cd/E11882_01/server.112/e26088/functions003.htm#SQLRF20035 Aggregatefunctions return a single result row based on groups of rows, rather than onsingle rows. Aggregate functions can appear in select lists and inORDERBYan 阅读全文
posted @ 2011-12-09 15:22
sqlite例子
阅读(484)
评论(0)
推荐(0)
摘要:
对于DBA 来说,这2个命令都不陌生,用这2个命令都可以收集表的统计信息。 这篇主要看一下这2个命令的区别。相关内容参考:Oracle Analyze 命令 详解http://blog.csdn.net/tianlesoftware/article/details/7055164Oracle Statistic 统计信息 小结http://blog.csdn.net/tianlesoftware/article/details/4668723Oracle 判断 并 手动收集 统计信息 脚本http://blog.csdn.net/tianlesoftware/article/details/6 阅读全文
posted @ 2011-12-08 22:45
sqlite例子
阅读(193)
评论(0)
推荐(0)
摘要:
ArcGIS Server 10.1新特性ArcGIS Server 10.1新特性ArcGIS Server 10.1是ArcGIS Server的新一代产品。它包含了一系列架构上的提升以为所有的GIS服务和ArcGIS Server框架增强ArcGIS Server 10.1的性能,持久性以及可伸缩性。下面列出了一些亮点以及相关的链接将给你更多的信息。架构·安装区分为Windows或Linux以前,我们提供了ArcGIS Server的两种安装:基于Microsoft .NET框架的ArcGIS Server以及基于Java平台的ArcGIS Server。在10.1中,安装根据 阅读全文
posted @ 2011-12-08 00:49
sqlite例子
阅读(233)
评论(0)
推荐(0)
摘要:
c/c++编写window服务的授权服务(四)定义客户端访问服务授权服务的源代码头文件 stdafx.h// stdafx.h : 标准系统包含文件的包含文件,
// 或是经常使用但不常更改的
// 特定于项目的包含文件
// #pragma once
#include <winsock2.h>
#include <stdio.h> #include <stdlib.h> #include "targetver.h"
#include <tchar.h> #include <fstream>
#include &l 阅读全文
posted @ 2011-12-03 01:46
sqlite例子
阅读(261)
评论(0)
推荐(0)
摘要:
c/c++编写window服务的授权服务(三)//实现授权服务的函数体LicenseService.cpp#pragma once
#include "LicenseService.h"
#include "hex_md5.h" //安装入口点
void main(int argc, char* argv[])
{ //初始化全局变量 //获取exe所在目录 CurExeDir=GetCurDir(); //printf("\n当前exe所在目录为:%s\n",CurExeDir); //获取ServerConfig.ini配置参数并 阅读全文
posted @ 2011-12-03 01:25
sqlite例子
阅读(286)
评论(0)
推荐(0)
摘要:
//c/c++编写window服务的授权服务(二)//定义授权服务的头文件LicenseService.h#pragma once
//建立工程:win32控制平台应用程序
//LicenseService.cpp
//用C/C++编写的Window服务一例
//安装与反安装批处理.bat
//方法一:
//echo sc delete LicenseService
//echo sc create LicenseService binpath= E:\Debug\LicenseService.exe
//方法二:
//LicenseService.exe uninstall
//Licens 阅读全文
posted @ 2011-12-03 01:22
sqlite例子
阅读(243)
评论(1)
推荐(0)
摘要:
//#include "hex_md5.h"//C/C++写的md5加密函数
/**
* MD5制作函数,兼容PHP
* @author wangzebin */ #include <stdio.h>
#include <stdlib.h>
#include <string.h>
//#include "syslog.h" /* * Convert an array of little-endian words to a hex string. */
int binl2hex( int *src, char *dst, 阅读全文
posted @ 2011-12-03 01:17
sqlite例子
阅读(282)
评论(0)
推荐(0)
浙公网安备 33010602011771号