--上一月,上一年 select add_months(sysdate,-1) last_month,add_months(sysdate,-12) last_year from dual; --下一月,下一年 select add_months(sysdate,1) last_month,add_... ...
分类:
数据库 时间:
2018-11-27 12:29:53
阅读次数:
297
Oracle11g导出dmp并导入Oracle10g的操作记录。 操作环境说明: Oracle11g环境:Windows7,Oracle Database 11g Enterprise Edition Release 11.2.0.1.0,ZHS16GBK。 Oracle10g环境:中标麒麟,Ora... ...
分类:
数据库 时间:
2018-11-25 20:37:06
阅读次数:
214
环境说明: 数据源:ORACLE 11g以下(64位或者32位) 连接工具:SSIS(SQL SERVER2012 64位) 服务器: WINDOWS SERVER 2008r2 64位 第一步:下载安装ORACLE11g 32位客户端: ORACLE32客户端下载地址 链接:https://pan ...
分类:
其他好文 时间:
2018-11-22 12:28:14
阅读次数:
285
查询数据库字符集 select userenv('language') from dual; linux中文字符集/etc/sysconfig/i18n LANG=zh_CN.gb18030 #oracle11g 修改字符集 修改为ZHS16GBKconn /as sysdba shutdown i ...
分类:
数据库 时间:
2018-11-16 17:33:21
阅读次数:
220
在plsql工具中执行以下语句,可建立Oracle表空间。 转发 /*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace yuhang_temp tempfile 'D:\oracledata\yuhang_temp.dbf' size 50m au ...
分类:
数据库 时间:
2018-11-16 10:29:09
阅读次数:
240
oracle11g空表处理: select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0;然后将执行结果复制到另一个SQL窗口,并执行。 导出: exp test/test@serv ...
分类:
数据库 时间:
2018-11-13 14:19:29
阅读次数:
252
一.命令找不到 xhost:command not found yum whatprovides "*/xhost" yum -y install xorg-x11-server-utils-7.7-2.el6.x86_64 二.安装oracle11g时出现xhost: unable to open ...
分类:
数据库 时间:
2018-11-12 17:36:28
阅读次数:
372
系统:rhel6.5server6oracle11g主机名解析ip地址因安转oracle需要图形故安装图形化[root@server6~]#yumgroupinstall"X窗口系统""KDE桌面""桌面"#根据自己系统是否是英文yumgrouplist查看[root@server6~]#yuminstallpdksh-5.2.14-37
分类:
数据库 时间:
2018-11-09 16:10:20
阅读次数:
206
04.风哥Oracle数据库实战入门-Oracle安装配置视频教程链接:https://pan.baidu.com/s/1UDhT_A_e62sZshQ5n2toYQ提取码:pqca请分享链接到5个QQIT交流群后,加入以下QQ群找群主获取更多免费视频。更多视频教程,请加入QQ群(只加一个即可):189070296336282998更多视频课程请点击:http://www.itpux.com/or
分类:
数据库 时间:
2018-11-08 10:52:06
阅读次数:
202
第一处坑: 解决方案: 原文:https://blog.csdn.net/yhj198927/article/details/49178279 1.打开oracle的“Net Manager” 2.打开“监听程序” 3.打开“数据库服务” 4.点击“添加数据库” 5.填写相关信息 “全局数据库名”和 ...
分类:
数据库 时间:
2018-10-19 02:29:54
阅读次数:
243