码迷,mamicode.com
首页 >  
搜索关键字:database mirroring    ( 14224个结果
Oracle connect resource权限
connect resource权限;grant connect,resource to user;后用户包括的权限:CONNECT角色: --是授予最终用户的典型权利,最基本的ALTER SESSION --修改会话CREATE CLUSTER --建立聚簇CREATE DATABASE LINK...
分类:数据库   时间:2014-05-01 14:58:47    阅读次数:456
Oracle Client安装与基本配置
1. 安装Oracle Client, 访问Oracle站点下载Oracle Database 11g Release 2 Client或者(直接下载Oracle 11gR2 Client)2. 下载解压后,点击Setup.exe3. 安装类型中选择管理员或定制4. 选择安装语言5. 指定安装位置6...
分类:数据库   时间:2014-05-01 13:34:51    阅读次数:388
Hibernate逆向工程
MySQL Administrator 创建表MyEclipse Database Explorer视图:1. New2 .Driver template: MySQL Connector/JDriver name: 给定一个连接名称Connection URL:jdbc:mysql://[]/相应...
分类:系统相关   时间:2014-05-01 10:48:33    阅读次数:696
如何利用数据挖掘进行分析的方法
ps:作为目前人工智能和数据库领域研究的热点问题,数据挖掘从数据库的大量数据中揭示出隐含的、先前未知的并有潜在价值的信息的非平凡过程。数据挖掘(Data Mining,DM),又称数据库中的知识发现(Knowledge Discover in Database,KDD),是目前人工智能和数据库领域研...
分类:其他好文   时间:2014-05-01 06:55:40    阅读次数:254
【Mysql】select
描述The SELECT statement is used to select data from a database.The result is stored in a result table, called the result-set.大意:select用来从数据库中挑选数据有以下两种形...
分类:数据库   时间:2014-05-01 06:14:32    阅读次数:467
数据库基本操作(二)--数据查询
//数据查询create database JXGL; //创建数据库use JXGL;//使用数据库create table S( Sno char(10) not null unique, Sname char(20) not null unique, Ssex char(2), Sage in...
分类:数据库   时间:2014-05-01 01:01:27    阅读次数:653
Writing your first Django
Quick install guide1.1 Install Python, it works with Python2.6, 2.7, 3.2, 3.3. All these version of Python include a lightweight database SQLite, so y...
分类:其他好文   时间:2014-04-30 23:14:34    阅读次数:566
追踪sql会话 dbms_monitor
经常会遇到一个会话中存在sql性能问题,但无法定位哪一个sql导致DB性能问题较高,这是我们需要对这个session进行监控可以通过dbms_monitor包来实现。 首先确定要监控的会话sid及serial#,可以通过v$session视图获得 select sid, serial#, username from v$session  where ... 确定session...
分类:数据库   时间:2014-04-30 22:23:38    阅读次数:413
[TroubleShooting]Neither the partner nor the witness server instance for database is availble
Problem: You are trying to setup a mirroring on a Database called xxxDB(SQL server 2012). You are getting this error while trying to setup mirroring. “Neither the partner nor the witness server ins...
分类:数据库   时间:2014-04-29 13:33:20    阅读次数:444
CF:Problem 426B - Sereja and Mirroring 二分或者分治
这题解法怎么说呢,因为我是把行数逐步除以2暴力得到的答案,所以有点二分的意思,但是昨天琦神说是有点像分治的意思,反正总的来说:就是从大逐步细化找到最优答案。 但是昨晚傻B了,靠!多写了点东西,然后就错了,刚才一练习,拿昨晚的代码一看,就把6行代码删去就过了,靠!昨晚应该是脑子进水了!!!!! 昨晚的代码: #include #include #include #include #in...
分类:其他好文   时间:2014-04-29 13:28:20    阅读次数:387
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!