码迷,mamicode.com
首页 >  
搜索关键字:h2 database    ( 15591个结果
ORACLE 11G 如何修改 awr 的保留期限小于8天
?? ORACLE 11G 如何修改 awr 的保留期限小于8天 Oracle Database 11g 默认具备一个系统定义的Moving Window Baseline,该基线对应于 AWR 保留期中的所有 AWR 数据。 仅可存在一个Moving Window Baseline。 系统定义的Moving Window Baseline认大小为当前的AWR保留期,即默认为八天。 如果...
分类:数据库   时间:2014-07-22 23:05:33    阅读次数:358
MySQL建表字段类型
1、数据库:在MySQL中,要存储数据,必须从数据库开始,因此首先要创建数据库,但由于学校的MySQL服务器对学生数据帐号有限止,学生不得创建数据库,故每个学生的帐号中已事先由信息中心为大家建立了一个名为帐号名的数据库。但我们必须了解创建数据库的语句为CREATE DATABASE 2、数据表:是构...
分类:数据库   时间:2014-05-01 21:18:23    阅读次数:539
c 函数及指针学习 10
标准库函数1算数运算stdlib.h2随机数stdlib.h3字符串转化stdlib.h4数学函数 math.h5日期和时间 time.h6信号 signal.h7打印可变参数列表stdarg.h8断言 assert.h抽象数据类型在数据结构中比较仔细运行时环境没看来自为知笔记(Wiz)
分类:其他好文   时间:2014-05-01 19:06:09    阅读次数:305
【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
Entity Framework Database/Code First实现对表进行压缩配置
我采用Database First,用Sql很容易就可以做到对一个表进行压缩。如以下: CREATE TABLE [dbo].[Entities]( [Id] [int] IDENTITY(1,1) NOT NULL, [Name] [nvarchar](max) NULL, Primary Key Clustered ([Id] ASC) WITH (DATA_...
分类:数据库   时间:2014-04-30 22:23:39    阅读次数:436
追踪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] The remote copy of database xx has not been rolled forward to a point in time
Steps: 1. backup database DBmirror on SQL1 2. backup database log 3. copy db and log backup files to SQL2 4. restore db with norecovery 5. restore log with norecovery 6. create endpoints on both...
分类:数据库   时间:2014-04-30 22:15:38    阅读次数:414
SQL Mirroring[Hot back up with Double machine]
Background: It's fairly common for businesses to want to provide some high availability for their SQL Server databases, and one option is to have two SQL Server databases on separate machines with a SQL Server database mirrored....
分类:数据库   时间:2014-04-30 22:11:38    阅读次数:520
jquery css选择器
1. $('node+next') == $('node').next() 2. $('node~siblings') == $('node').nextAll(); 3. :gt(index)大于index序号的的元素,从0开始 4. :lt(index)小于index序号的元素,从0开始 4. :header 获取所有h1,h2,h3,h4...的元素...
分类:Web程序   时间:2014-04-29 13:45:20    阅读次数:322
[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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!