当前位置:网站首页>linux下oracle常见操作以及日常积累知识点(函数、定时任务)
linux下oracle常见操作以及日常积累知识点(函数、定时任务)
2022-08-05 10:08:00 【qingfengvssuibian】
oracle的启动、关闭
#用dba的身份登录
sqlplus / nolog conn / as sysdba
#启动
startup
#关闭
shutdown immediate
监听启动:
#监听启动
lsnrctl start
#监听状态
lsnrctl status
#监听停止
lsnrctl stop
Trunk函数:截取日期或者数字
--截取日期
select trunc(sysdate,'yyyy') from dual union all --精确到年,显示当年第一天
select trunc(sysdate,'mm') from dual union all --月
select trunc(sysdate,'dd') from dual union all --天
select trunc(sysdate,'hh') from dual union all --小时
select trunc(sysdate,'mi') from dual union all --分
select trunc(sysdate) from dual union all --和精确到天一样 dd
select sysdate from dual union all
SELECT (sysdate + 1) FROM dual; --下一天 1代表1天的意思,+1就是下一天 +1/24代表加一个小时
--截取数值,不进行四舍五入,可用于保留有效数字
select trunc(155.555) from dual union all --保留三位有效数字
select trunc(155.555,3) from dual union all
select trunc(155.555,2) from dual union all
select trunc(155.555,0) from dual union all
select trunc(155.555,-2) from dual; --保留-2位有效数字
forupdate和rowid修改数据
出现无法修改数据(只读readonly模式),可以尝试只修改一张表。一般建议使用rowid。
定时任务
每隔一段时间执行一次任务。不多说,直接上操作。
创建新表
create table testDsrw(
name varchar2(50),
riqi date
);
创建存储过程
create or replace procedure testPro is
begin
insert into testdsrw(name,riqi)values('tie',sysdate);
commit;
end testPro;
可视化创建定时任务job
在DBMS_JOBS下新建job,并配置红色部分,其中内容写上存储过程的名字(后面必须跟上分号,不然报错),在间隔中写入下次执行时间,例如 TRUNC(sysdate,'mi') + 1/(24*60),代表下一分钟。至此,一个简单的定时任务创建完成。
启动
点击应用即可
停止
点击 断开然后再次应用即可停止定时任务
至此定时任务界面版介绍完成。
边栏推荐
- 【MindSpore易点通机器人-01】你也许见过很多知识问答机器人,但这个有点不一样
- 多线程(进阶) - 2.5w字总结
- three物体围绕一周呈球形排列
- 为什么sys_class 里显示的很多表的 RELTABLESPACE 值为 0 ?
- SD NAND Flash简介!
- 第四章:redis 数组结构的set和一些通用命令「建议收藏」
- Redis源码解析:Redis Cluster
- 无题九
- Jenkins使用手册(2) —— 软件配置
- The century-old Nordic luxury home appliance brand ASKO smart wine cabinet in the three-temperature area presents the Chinese Valentine’s Day, and tastes the love of the delicacy
猜你喜欢
The founder of the DFINITY Foundation talks about the ups and downs of the bear market, and where should DeFi projects go?
E-sports, convenience, efficiency, security, key words for OriginOS functions
IDEA执行Test操作导致数据插入时出现了重复数据
偏向锁/轻量锁/重级锁锁锁更健康,上锁解锁到底是怎么完成实现的
Technical dry goods | Hausdorff distance for image segmentation based on MindSpore
高质量 DeFi 应用构建指南,助力开发者玩转 DeFi Summer
创建一个 Dapp,为什么要选择波卡?
leetcode: 529. 扫雷游戏
Open Source Summer | How OpenHarmony Query Device Type (eTS)
【温度预警程序de开发】事件驱动模型实例运用
随机推荐
STM32+ULN2003 drives 28BYJ4 stepper motor (forward and reverse according to the number of turns)
Development common manual link sharing
hcip BGP enhancement experiment
浅析WSGI协议
LeetCode 216. Combined Sum III (2022.08.04)
uniapp 连接ibeacon
Still looking for a network backup resources?Hurry up to collect the following network backup resource search artifact it is worth collecting!
Why are RELTABLESPACE values 0 for many tables displayed in sys_class?
无题一
Imitation SBUS fixed with serial data conversion
C语言的高级用法
微服务 技术栈
无题十一
【Office】Microsoft Office下载地址合集(微软官方原版离线安装下载)
语音社交软件开发——充分发挥其价值
2022 Huashu Cup Mathematical Modeling Ideas Analysis and Exchange
Four years of weight loss record
Keil升级到AC6后,到底有哪些变化?
攻防世界-PWN-new_easypwn
The JVM collection that Alibaba's top architects have summarized for many years, where can't I check it!