Problem: Importing an Oracle 11g R2 Data Pump file containing an ArcSDE 10.x geodatabase encounters Oracle errors ORA-31693, ORA-02354, ORA-00600 Desc ...
分类:
其他好文 时间:
2021-06-24 18:01:26
阅读次数:
0
1、oracle中用户密码复杂度配置 1)查看参数 select limit from dba_profiles where resource_name='PASSWORD_VERIFY_FUNCTION' and profile in (select profile from dba_users ...
分类:
数据库 时间:
2021-06-24 17:35:08
阅读次数:
0
sqlplus / as sysdba 报错ORA-01012: not logged on 发生原因:关闭数据库是shutdown 后面没有接关闭参数中的任何一个。 nomal ————- —-所有连接都断开时才能关闭; transactional ———-等待事务结束后,主动断开连接; imme ...
分类:
其他好文 时间:
2021-06-21 20:45:57
阅读次数:
0
这个问题是因为需要在tnsnames.ora文件中进行一些相关配置,具体配置参见博文:https://www.cnblogs.com/mingforyou/p/7110459.html 最后环境变量必须要配置:相关路径按照你实际的路径进行设置即可 右击"我的电脑" - "属性" - "高级" - " ...
分类:
数据库 时间:
2021-06-20 18:50:33
阅读次数:
0
简单设置环境变量,以及密码 1.把mysql命令加入环境变量 [root@master01 ~]# vim /etc/profile.d/mysql.sh #!/bin/bash export MYSQL=/application/mysql export PATH=$PATH:$MYSQL/bin ...
分类:
数据库 时间:
2021-06-20 18:49:27
阅读次数:
0
s() is used for univariate smooths (section 5.3, p. 201), isotropic smooths of several variables (section 5.5, 214) and random effects (section 3.5.2, ...
分类:
其他好文 时间:
2021-06-19 19:29:15
阅读次数:
0
from turtle import *def moveto(x,y): penup() goto(x,y) pendown()def main(): setup(800, 600) speed(0) for radius in range(20, 200, 20): moveto(0, -radi ...
分类:
其他好文 时间:
2021-06-18 20:00:08
阅读次数:
0
常用的传感器有哪些 什么叫 传感器 微型化、数字化、智能化、多功能化、系统化、网络化。它是实现自动检测和自动控制的首要环节。传感器的存在和发展,让物体有了触觉、味觉和嗅觉等感官,让物体慢慢变得活了起来。通常根据其基本感知功能分为热敏元件、光敏元件、气敏元件、力敏元件、磁敏元件、湿敏元件、声敏元件、放 ...
分类:
其他好文 时间:
2021-06-16 18:00:28
阅读次数:
0
In my circumstances the error was due to the fact the listener did not have the db's service registered. I solved this by registering the services. Ex ...
分类:
其他好文 时间:
2021-06-16 17:56:58
阅读次数:
0
1. 程序的概念 程序 - 数据结构 + 算法,主要指存放在硬盘上的可执行文件 2. 进程的概念 <1> 进程 - 主要指,运行在内存中的可执行文件 <2> 主流的操作系统,都支持多进程,为了让操作系统同时可以执行多个任务。 但,进程是重量级的,新建一个进程,会消耗CPU和内存空间等系统资源, 因此 ...
分类:
编程语言 时间:
2021-06-11 18:34:05
阅读次数:
0