摘要:
decode 解码 be intend for 适应 distinguished 显著的,突出的 implied 隐含的 abbreviated 简短的 enabled roles 已启用的角色 be cognizant of 认识到 pertinent 相关的 identical 相同的 arit
阅读全文
posted @ 2017-10-12 00:25
杨杨yang
阅读(107)
推荐(0)
摘要:
oralce 有两种临时表 a.会话级临时表 b.事物级临时表 A.事物级临时表 语法 create global temporary table table_name( col1 type1, col2 type2, ................) on commit delete rows;
阅读全文
posted @ 2017-10-11 00:08
杨杨yang
阅读(248)
推荐(0)
摘要:
问题:在工作的时候遇到电脑桌面显示不出来 解决方案: 1.结束explorer.exe进程 2.新建一个explorer.exe进程
阅读全文
posted @ 2017-10-10 00:23
杨杨yang
阅读(801)
推荐(0)
摘要:
Changing the Database Archiving Mode 改变数据库归档模式。 Purpose 目的 This module describes how you can change the database archiving mode. 这篇文字描述如何的你可以改变那个数据库归档
阅读全文
posted @ 2017-10-09 21:26
杨杨yang
阅读(437)
推荐(0)
摘要:
1.查看归档日志模式(两种方法) a. archive log list b. select log_mode from v$database; 2.关闭数据库实例 shutdown immediate 3.开启数据库mount状态 startup mount 4.改变数据库归档模式 alter d
阅读全文
posted @ 2017-10-09 21:16
杨杨yang
阅读(198)
推荐(0)
摘要:
Oracle_四种状态 oracle四种状态 1.shutdown(完全关闭) 2.nomount(未加载) 3.mount(已加载) 4.open(完全打开) Shutdown状态 Shutdown immediate(要等待一会,别急) 注意:数据库的关闭顺序与数据库的加载顺序相反。 nomou
阅读全文
posted @ 2017-10-09 00:07
杨杨yang
阅读(813)
推荐(0)
摘要:
我的工具,PL/SQL Developer(其他工具大同小意) 1.用系统管理员账号登入数据库 账号是:sys, connect as:sysdba 登入进入如下页面。 2.查看所有用户(用数据字典 all_users)这里以开启HR用户为例 select * from all_users; 3.解
阅读全文
posted @ 2017-09-21 00:05
杨杨yang
阅读(715)
推荐(0)
摘要:
1、查看服务器端编码 a.select userenv(‘language’) from dual; b.我实际查到的结果为:AMERICAN_AMERICA.ZHS16GBK 2、执行语句 select * frm V$NLS_PARAMETERS; a.查看第一行中的PARAMETER项中的NL
阅读全文
posted @ 2017-07-22 07:46
杨杨yang
阅读(662)
推荐(0)
摘要:
mybaits 是不完全的orm(对象关系映射(Object Relational Mapping)框架,需要自己书写sql语句 mybatis学习难度必hibernate低适合关系型模型要求不高的软件开发。 mybatis更加灵活不是整个数据库的数据都启动 hibernate对象/关系映射能力强数
阅读全文
posted @ 2017-05-24 00:58
杨杨yang
阅读(169)
推荐(0)
摘要:
jquey 是一个JavaScript框架(库) javascrip加载页面是页面全部加载完在加载 就是图片那些加载完 慢 会覆盖 // window.onload=function(){ alert("1"); }; jQuery不会覆盖 快 dom结构绘制完就加载。 jQuery(documet
阅读全文
posted @ 2017-05-14 01:27
杨杨yang
阅读(114)
推荐(0)