[CommandMethod("changeZoom")]staticpublicvoidCommandChangeViewportZoom(){// access database and editorDatabasedb =Application.DocumentManager. MdiActi...
分类:
Web程序 时间:
2014-07-09 15:12:34
阅读次数:
335
本章主要阐述SGA中的Database buffer cache。Buffer cache {1.pin (读写瞬间的状态)2.clean3.dirty4.unused}--Database buffer cache概述:1.段、区、块的概念:create table t2 ( id int, .....
分类:
数据库 时间:
2014-07-09 14:49:28
阅读次数:
219
简单来说,学习Oracle数据库就两个目标:保证数据库数据的一致性;提高数据库的性能(这个和日志没关系)。日志的功能:只是保证数据库数据的一致性;1、Oracle日志原理 史记讲解法 日志记录方式2、实际日志产生过程3、归档模式 alter database archivelog ARC...
分类:
数据库 时间:
2014-07-09 14:42:48
阅读次数:
248
/// /// 获取窗口中块说明 /// /// 数据库对象 /// 窗口选择角点1 /// 窗口选择角点2 /// public static void getBlocks(this Database db,Point3d pt1,Point3d p...
分类:
其他好文 时间:
2014-07-09 14:08:07
阅读次数:
260
阻塞是DBA经常碰到的情形,尤其是不良的应用程序设计的阻塞将导致性能严重下降直至数据库崩溃。对DBA而言,有必要知道如何定位到当前系统有哪些阻塞,到底谁是阻塞者,谁是被阻塞者。本文对此给出了描述并做了相关演示。1、阻塞及其类型a、什么是阻塞一个会话持有某个资源的锁,而另一个会话在请求这个资源,就会出现阻塞(blocking)。也就是说新的会话会被挂起,直到持有锁的会话放弃锁定的资源。大多数情况下,...
分类:
数据库 时间:
2014-07-09 11:52:36
阅读次数:
286
#coding=utf-8
import MySQLdb
import sys
import os
# 李红颖编写,用户湖南CLV数据分割使用
print 'dump database:',sys.argv[1] ##传入的第一个参数,数据库名称
print 'dump table:',sys.argv[2] ##传入的第二个参数,表名称
dbname=sys.argv[1]
tablen...
分类:
数据库 时间:
2014-07-09 09:35:51
阅读次数:
236
ylbtech-DatabaseDesgin:ylbtech-cnblogs(博客园)-数据库设计-2,Admin(用户后台)DatabaseName:同学录Model:Type:Url:1.A,数据库关系图(Database Diagram) 返回顶部1.B,数据库设计脚本(Database De...
分类:
数据库 时间:
2014-07-08 22:37:39
阅读次数:
304
本章内容:Understanding Flashback Database, Restore Points and Guaranteed Restore PointsLogging for Flashback Database and Guaranteed Restore PointsPrerequ...
分类:
数据库 时间:
2014-07-08 21:48:50
阅读次数:
289
server=localhost;database=Northwind; integrated security=SSPIMicrosoft安全支持提供器接口(SSPI)是定义得较全面的公用API,用来获得验证、信息完整性、信息隐私等集成安全服务,以及用于所有分布式应用程序协议的安全方面的服务。应用...
分类:
其他好文 时间:
2014-07-08 11:46:06
阅读次数:
248
1.首先定位mysql的my.ini配置文件,查找datadir的位置#Path to the database rootdatadir="C:/ProgramData/MySQL/MySQL Server 5.5/Data/"一般情况下,该文件夹是隐藏,需要显示所有文件。2.将data目录下的文件...
分类:
数据库 时间:
2014-07-08 11:36:20
阅读次数:
195