
oracle数据库
pergoods
这个作者很懒,什么都没留下…
展开
-
oracle去除重复数据
delete from table a where rowid!=(select max(rowid) from table b where a.ent_name=b.ent_name)原创 2016-11-04 15:41:53 · 166 阅读 · 0 评论 -
oracle时间转换为字符、截取字符
[color=red]表示year的:y 表示年的最后一位 yy 表示年的最后2位 yyy 表示年的最后3位 yyyy 用4位数表示年表示month的:mm 用2位数字表示月;mon 用简写形式 比如11月或者nov ;month 用全称 比如11月或者november表示day的:dd 表示当月第几天;ddd表示当年第几天;dy 当周第几天 简写 比如星期五或者fri;day当周第几...原创 2017-12-11 17:36:31 · 270 阅读 · 0 评论 -
PLSQL 添加新用户和配置权限
1.PLSQL登录超级管理员2.找到All objects中的Users,右键点击 新建 3.一般 中填写好 用户名和密码4.角色权限 写入 connect 默认 dba 默认 ctxapp 默认 resource 默认应用即可...原创 2018-01-02 15:12:12 · 5043 阅读 · 0 评论 -
oracle数据库中查询 一个字段包含另一个字段sql
select * from table a where 字段1 like '%'||字段2||'%'原创 2018-01-17 17:10:02 · 10635 阅读 · 0 评论 -
解决PLSQL连接oracle慢 的方法(监听日志文件过大)
原因:G:\app\Administrator\diag\tnslsnr\LS--20171012URU\listener\trace\listener.log文件过大(主要原因 监听日志)G:\app\Administrator\diag\tnslsnr\LS--20171012URU\listener\alert\log.xml文件(可以备份或保留一个即可, 连接日志)...原创 2018-03-07 10:33:11 · 1300 阅读 · 0 评论 -
oracle模糊查询 包含1,而不包含11,的数据
aaa表数据如下:序号 name rowid1 1, AAEfLQAAJAALrdkAAA2 11, AAEfLQAAJAALrdkAAB3 12, AAEfLQAAJAALrdkAAC4 13, AAEfLQAAJAALrdkAAD[color=red]select * from aaa where name like '%,1,%' or na...原创 2018-05-22 17:24:34 · 4270 阅读 · 0 评论 -
提示符导入导出oracle表数据
--导出C:\Users\1>[color=red]exp o2optzq/o2optzq@IP:1521/orcl file=F:\tab1.dmp tables=(tb1,tb2)[/color]------------------------------如下:表示导出成功Export: Release 11.2.0.1.0 - Production on 星期一 7月 2 10...原创 2018-07-02 10:40:30 · 131 阅读 · 0 评论 -
关系型数据库的ACID特性(金典解读关系型数据的一致性)
关系型数据库的ACID特性A:原子性C:一致性I:隔离性D:永久性一致性的金典解读案例:[img]http://dl2.iteye.com/upload/attachment/0130/2382/42b5b2db-fa4b-3f6a-9d17-61144c45acbe.jpg[/img]解读图片含义:中间的方框为一个oracle数据库(1000万数据),用户A执...原创 2018-07-11 16:55:16 · 1249 阅读 · 0 评论 -
oracle数据库存储过程
[img]http://dl2.iteye.com/upload/attachment/0130/2384/de59a1b3-3764-3da7-b66f-d0cd7965d383.png[/img]原创 2018-07-11 17:55:24 · 126 阅读 · 0 评论 -
oracle添加表空间文件以及查询表空间使用率
1.进入cmd窗口2.超级用户登录:sqlplus / as sysdba 回车3.添加表空间文件ALTER TABLESPACE 表空间名称 ADD DATAFILE 'G:\app\Administrator\oradata\orcl\USERS04.DBF' SIZE 200M AUTOEXTEND ON NEXT 500M MAXSIZE 30000M;...原创 2018-07-27 17:57:24 · 404 阅读 · 0 评论 -
Oracle如何查询所有表的约束(外键等)
1.查询出所有表的唯一键约束的 禁用sql select 'alert table ' || table_name || ' disable constraint '||constraint_name||';' from user_constraints where constraint_type='U';如下:alert table SYENTINFO2 disable ...原创 2018-09-06 11:00:20 · 9677 阅读 · 0 评论 -
oracle导入导出某个用户下的所有表以及约束
导出oracle数据库某个用户下的所有表exp 用户名/密码@服务器IP:1521/orcl file=d:\PCBMONDB.dmp full=y导入imp 用户名/密码@服务器IP:1521/orcl full=y file=d:\PCBMONDB.dmporcl是根据数据库连接字符串而定...原创 2018-09-06 11:28:53 · 869 阅读 · 0 评论 -
三亚数据库统计sql
[b]--差评数据统计select a.shop_name,a.shop_url,a.ptmc,a.hy,nm.ev_user,nm.ev_time,nm.ev_content from (select t.shop_id, t.shop_name, t.shop_url, (select name from pub_code...原创 2018-09-18 18:26:25 · 230 阅读 · 0 评论 -
oracle 根据数值范围分组 (group by )
create table aa_test( name varchar2(10), num varchar2(10)); insert into aa_test values('admin1','1');insert into aa_test values('admin1','2');insert into aa_test values('admin1',...原创 2017-12-08 17:51:24 · 5643 阅读 · 0 评论 -
判断web死链接
--第一步update bj_web20171204 set death='1'where death is null and( web_text is null orweb_text like '%域名售卖%' or(web_text like '%502%' and web_text not like '%公司%' ) or(web_text like '%404%' ...原创 2017-12-05 11:09:24 · 231 阅读 · 0 评论 -
windows下命令提示符导出oracle 数据表 (exp)
[color=red][b]使用exp方式导出本地oracle数据库中的数据表[/b][/color]1.导出某个用户下的所有表>[color=red]exp user/password@172.22.0.84:1521/devdb [/color]file="d:fxfkgl20180521.dmp"2.到处某个用户下的某张表>exp user/password@172....原创 2017-11-10 10:48:57 · 1070 阅读 · 0 评论 -
oracle 归档问题
--查询日志select * from v$recovery_file_dest;select sum(percent_space_used)*3/100 from v$flash_recovery_area_usage;select * from v$flash_recovery_area_usage;select * from v$version;--所以进入rman程...原创 2016-11-07 13:55:17 · 249 阅读 · 0 评论 -
oracle卸载步骤
1.停用oracle服务:进入计算机管理,在服务中,找到oracle开头的所有服务,右击选择停止2.在开始菜单中,找到Universal Installer,运行Oracle Universal Installer,单击卸载产品3.在产品清单窗口中,单击全部展开,除了OraDb11g_home1外,勾选其他项目,单击删除4.按Windows徽标键和R键,打开运行窗口,输入regedit...原创 2016-11-16 11:35:00 · 154 阅读 · 0 评论 -
mysql客户端连接oracle
mysql客户端连接oracle1.链接名:172.22.0.84 连接类型:basic 主机名或ip地址:172.22.0.84 端口:1521 service name/sid: devdb 单选service name 用户名:xxx 密码:xxx2.配置oci点击 工具--->选项---->点击 OCI :D:\oracle\prod...原创 2016-11-16 13:57:43 · 340 阅读 · 0 评论 -
oracle 批量修改时间字段的格式
--批量修改09/10 为2016/09/10update bt_nm_evaluation1 s set ev_time='2016/'||substr(ev_time,0) where length(ev_time)=9 ;--批量修改201601/02 为 2016/01/02update bt_nm_evaluation1 s set ev_time=substr(...原创 2016-11-24 11:39:57 · 2206 阅读 · 0 评论 -
oracle导入excel表格数据
1.打开pl/sql,如图所示界面,点击菜单栏中的T00LS 下的ODBC Imtorper(ODBC导入器),打开ODBC Importer选项框2.plsql客户端,在[color=red]Data fromODBC页[/color] 中选择需要导入的文件的格式,选择[color=red]ExcelFiles[/color].输入 当前ql/sql的登陆用户 的用户名和密码。然后...原创 2016-12-22 15:58:59 · 554 阅读 · 0 评论 -
oracle基本语句以及函数
1.. 处理NULL NVL函数可把NULL转换成其它类型的符号 编程技巧: NVL函数在多条件模糊查询的时候比较有用 NVL函数可返回多种数据类型: 返回日期 NVL(start_date,'2002-02-01') 返回字符串 NVL(title,'no title') 返回数字 NVL(salary,1000) 2. 按指定的规则排序 SELECT expr ...原创 2017-01-05 15:25:36 · 187 阅读 · 0 评论 -
oracle数据库创建表、序列、视图、约束要点
1. 系统开发的阶段: Strategy and Analysis Design Build and Document Transition Production 2. 数据模型 Model of system in client's mind Entity model of client's model Table model of entity mo...原创 2017-01-05 15:28:21 · 205 阅读 · 0 评论 -
sql
-- Create tablecreate table Z_ENT_HAIKOU_SHOP( SHOP_ID CHAR(32) not null, SITE_ENT_ID CHAR(32), PLATFORM_CODE CHAR(3), SHOP_NAME VARCHAR2(300), SHOP_ADDRESS VARCHAR2(30...原创 2017-08-05 12:20:58 · 140 阅读 · 0 评论 -
差评sql
update nm_evaluation_20170821 set is_bad ='1' where ev_content like '%服务态度不好%'orev_content like '%恶劣%'orev_content like '%超级差%'orev_content like '%不喜欢%'orev_content like '%不满意%'orev_co...原创 2017-08-21 10:27:44 · 188 阅读 · 0 评论 -
截取网页ICP的sql语句
首先获取网站内容后,从内容中截取出ICP信息--从text中初步截取出ICPupdate z_beijing_all_web33 set ent_icp=substr(web_text,instr(web_text,'ICP',1)-2,35)where is_yellp is null and web_text like '%ICP%' and ent_icp is nul...原创 2017-09-26 16:33:23 · 141 阅读 · 0 评论 -
截取地址
---------------------------------------------------------------------------------------------地址--起步update z_beijing_all_web33 set ent_address=substr(web_text,instr(web_text,'地址',1)-10,50)where i...原创 2017-09-27 11:04:36 · 269 阅读 · 0 评论 -
截取电话
---------------------------------------------------------------------------电话update z_beijing_all_web33 set tellphone=substr(web_text,instr(web_text,'电话',1)-10,30)where is_yellp is null and we...原创 2017-09-27 14:16:28 · 339 阅读 · 0 评论 -
oracle11g 监听无法启动(或启动后自动停止)
# listener.ora Network Configuration File: F:\oracle\product\11.2.0\dbhome_1\network\admin\listener.ora# Generated by Oracle configuration tools.SID_LIST_LISTENER = (SID_LIST = [color=re...原创 2017-11-02 15:21:50 · 1279 阅读 · 1 评论 -
更新区域代码code
--1update o2o_shop_info_app a set citycode=(select id from shop_area bwhere a.city1=b.areaname ) where pt_name='饿了么h5' and province1='河北省' --2update o2o_shop_info_app a set ...原创 2018-09-20 18:26:52 · 663 阅读 · 0 评论