上一页 1 2 3 4 5 6 ··· 17 下一页
摘要: 一、自定义变量 1.1 自定义局部变量 在shell脚本文件中 var_name=value 1.2 自定义常量 readonly var_name 1.3 自定义全局变量 在shell脚本文件中 export var_name 二、特殊符号变量 1.1 $n: 用于获取命令的输入参数 $0: 获取 阅读全文
posted @ 2024-04-09 17:13 scwyfy 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 一、shell、shell脚本介绍 1、shell是命令,类似于windows的dos命令 2、shell脚本是根据shell命令或程序编写语言编写的shell文件,也叫shell程序 二、Shell解析器 1、查看linux系统centos支持的解析器 命令:cat /etc/shells ps: 阅读全文
posted @ 2024-03-30 23:12 scwyfy 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 本地库登录plsql,执行以下代码 步骤一:创建dblink(若无权限先授权) create database link '取linkname名(eg: 用远程数据库名+_remote)' connect to '远程数据库用户' identified by '远程数据库密码' using '(DE 阅读全文
posted @ 2024-03-19 10:29 scwyfy 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 一、报错代码: Error updating database. Cause: java.sql.SQLException: ORA-01691: unable to extend lob segment OMSP_FLOWGINE.SYS_LOB0000035445C00014$$ by 1024 阅读全文
posted @ 2024-02-28 14:10 scwyfy 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 1、查询被锁的表(object_name)以及是哪个session引起的 select a.OS_USER_NAME, c.owner, c.object_name, b.sid, b.serial#, logon_time from v$locked_object a, v$session b, 阅读全文
posted @ 2023-05-16 15:28 scwyfy 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1、location root : /path/uri(把匹配的路径追加到配置的路径:/demoProject追加到/usr/local/nginx/front/apps/demo) /demoProject { root /usr/local/nginx/front/apps/demo } 当访问 阅读全文
posted @ 2023-03-06 21:55 scwyfy 阅读(80) 评论(0) 推荐(0) 编辑
摘要: **Transaction rolled back because it has been marked as rollback-only”** 代码逻辑很简单: try{ 方法B // 抛出异常 }catch(Exception e){ //异常打印 } 异常被try捕获了,但是没有做处理,所以出 阅读全文
posted @ 2022-09-28 11:07 scwyfy 阅读(109) 评论(0) 推荐(0) 编辑
摘要: let re =/^(\d{4})-(\d{2})-(\d{2})$/; let str = "2022-06-22"; if (re.test(str) { console.log("验证成功!") } 阅读全文
posted @ 2022-06-22 10:19 scwyfy 阅读(270) 评论(0) 推荐(0) 编辑
摘要: package com.tree; import java.util.LinkedList; import java.util.Stack; public class BSTree<T extends Comparable> { public static void main(String[] ar 阅读全文
posted @ 2022-04-22 16:34 scwyfy 阅读(20) 评论(0) 推荐(0) 编辑
摘要: package com.tree; public class TreePrinter { <T> int heightOf(BSTree.BSTNode<T> node) { if(node == null) { return 0; } return Math.max( heightOf(node. 阅读全文
posted @ 2022-04-22 15:20 scwyfy 阅读(48) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 17 下一页