查看现存镜像目录 select * from dba_directories; 创建镜像目录 create or replace directory my_dir as 'local_dir' ; 把镜像目录的权限赋予所需用户 grant read,write on directory my_dir to oracle_user_name; 创建dblink create public da... Read More
posted @ 2018-09-05 14:39 悬壶济世-修行者 Views(933) Comments(0) Diggs(0) Edit
启动: [oracle@oracleSigle ~]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.1.0 Production on Wed Nov 8 09:26:15 2017 Copyright (c) 1982, 2009, Oracle. All rights reserved. Connected to an idle in... Read More
posted @ 2018-08-29 16:56 悬壶济世-修行者 Views(130) Comments(0) Diggs(0) Edit
原因:流量表 解决办法:not修改流量表(容易出错,出错后果更严重);is迁移虚拟机这样会对应生成新的流量表,然后问题就解决了。 Read More
posted @ 2018-08-29 16:55 悬壶济世-修行者 Views(191) Comments(0) Diggs(0) Edit
1.查看日志模式archive log list,或者select name,log_mode from v$database; 2.数据库非归档模式改为归档模式: 关闭数据库:shutdown immediate; 启动数据库到mount状态:startup mount; 修改数据库未归档模式:alter database archivelog; ... Read More
posted @ 2018-08-29 16:50 悬壶济世-修行者 Views(260) Comments(0) Diggs(0) Edit
试验环境:华硕主板(型号不详,不过时间比较长了) 解决措施:经多次尝试,最后在更换内存条位置后开机正常,更换位置时对内存条接口处进行了灰尘清理。 最后得出结果:由于机器长时间搁置不用导致部件接触不良。 Read More
posted @ 2018-08-28 16:47 悬壶济世-修行者 Views(4701) Comments(0) Diggs(0) Edit
Step1 安装Python3.6.xhttps://www.digitalocean.com/community/tutorials/how-to-install-python-3-and-set-up-a-local-programming-environment-on-centos-7 sudo yum -y update sudo yum -y install yum-utils su... Read More
posted @ 2018-08-05 23:15 悬壶济世-修行者 Views(918) Comments(0) Diggs(0) Edit
1.华硕主板无法正常启动,机器接通电源有红色报警灯闪烁。(解决办法:重新拔插内存条。最终分析原因:长时间未用,导致部分部件接触不良) Read More
posted @ 2018-06-22 18:14 悬壶济世-修行者 Views(3145) Comments(0) Diggs(0) Edit
systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。 启动一个服务:systemctl start firewalld.service 关闭一个服务:systemctl stop firewalld.service 重启一个服务:systemctl restart firewalld.service 显示一个服务的状态:syste... Read More
posted @ 2018-06-22 17:21 悬壶济世-修行者 Views(132) Comments(0) Diggs(0) Edit
[root@hys ~]# uname -a Linux hys 3.10.0-693.el7.x86_64 #1 SMP Tue Aug 22 21:09:27 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux 这是我的操作系统的版本信息 检查是否已经安装vsftp [root@hys ~]# rpm -qa | grep vsftp vsftpd-3.0.2-22... Read More
posted @ 2018-06-22 16:09 悬壶济世-修行者 Views(217) Comments(0) Diggs(0) Edit
本文以win10和Python3为例来介绍如何安装Pygame。 安装Pygame需要使用pip,我们首先检查pip是否已被安装。 打开一个终端窗口,并执行如下命令 C:\Users\hys>python -m pip --version pip 9.0.2 from E:\soft\installFiles\Python\lib\site-packages (python 3.6) 如果输出类似... Read More
posted @ 2018-03-27 23:03 悬壶济世-修行者 Views(437) Comments(0) Diggs(0) Edit