网站首页 站内搜索

搜索结果

查询Tags标签: Rename,共有 44条记录
  • Oracle Users表空间重命名

    需求:默认无法直接删除Oracle的users表空间,直接尝试删除会有报错如下: SQL> drop tablespace users including contents and datafiles; drop tablespace users including contents and datafiles * ERROR at line 1: ORA-12919: Can not drop the default permane…

    2023/6/8 18:22:07 人评论 次浏览
  • [Typescript] Step1 & 2 for converting a js app to ts

    1. Compiling in "loose mode"Start with all tests passing Rename all .js to .ts, allowing implicit any Fix only things that are not type-checking, or causing compile errors Be careful to avoid changing behavior of function Get test passing ag…

    2022/8/29 6:23:50 人评论 次浏览
  • rename重命名

    [root@liuwei test]# ls 11.txt 12.txt 13.txt 14.txt 15.txt 16.txt 17.txt 18.txt 19.txt 1.txt 20.txt 2.txt 3.txt 4.txt 5.txt 6.txt 7.txt 8.txt 9.txt[root@liuwei test]# rename .txt .txt.bak * [root@liuwei test]# ls 11.txt.bak 13.txt.ba…

    2022/7/29 6:22:46 人评论 次浏览
  • 重命名表结构数据库

    1、复制表结构create table sms_send_record_bak_202220615 as select * from sms_send_record where 1=2; 2、插入短信数据insert into sms_send_record_bak_202220615 select * from sms_send_record where send_date > to_date(2022-05-1 00:00:00,yyyy-mm-dd hh24…

    2022/6/16 2:21:21 人评论 次浏览
  • Python 批量修改文件名

    批量修改文件名 python 对文件进行批量改名用到的是 os 模块中的 listdir 方法和 rename 方法。os.listdir(dir) : 获取指定目录下的所有子目录和文件名 os.rename(原文件名,新文件名) : 对文件或目录改名把混乱的文件名改成有序的文件名:import os path=input(请输入文…

    2022/6/14 1:21:05 人评论 次浏览
  • Python实现一键文件重命名,告别手误!

    应用背景 背景:“由于工作需要可能需要对一些文件进行重命名的处理,但是可能操作起来比较烦,点错了就命名失败或者没带鼠标,用控制板操作起来比较麻烦等等场景” ps:以上都是200自我觉得比较烦,所以才出了这个小功能~ 好了,此版本是基于上次文章的版本进行更新,(…

    2022/6/4 1:20:11 人评论 次浏览
  • 重命名文件

    1 import os2 3 def renameFile():4 try:5 os.rename(srcFile,dstFile)6 except Exception as e:7 print(e)8 print(rename file fail\r\n + srcFile )9 else: 10 print(rename file success\r\n + dstFile ) 11 12 if __na…

    2022/5/30 23:20:04 人评论 次浏览
  • idea-基础操作

    导入工程:1、解压工程压缩包到前文件夹;2、然后按照以下截图依次操作:--> --> --> -->一、创建新工程:二、在新创建的项目下创建一个模块:按照箭头顺序创建----------->-----------> ----------->------------>-----------> 三、创建第二…

    2022/4/13 6:13:10 人评论 次浏览
  • wxpython 文件重命名报错提示os.rename WinError 2]系统找不到指定的文件‘

    原因:重命名需要把文件路径带上 源码: for file in files: print(file) os.rename(file, file.replace(beforename, aftername)) 修改后for file in files: f=file.replace(beforename, aftername) os.re…

    2022/3/26 17:52:46 人评论 次浏览
  • Redis高危命令禁止或重命名

    对于一些 redis 的高危命令,建议做禁用处理。 vim /opt/redis/conf/redis.conf #通过修改redis配置文件实现 禁止#rename-command CONFIG "" rename-command KEYS "" rename-command FLUSHALL "" rename-command FLUSHDB &quo…

    2022/2/25 19:25:04 人评论 次浏览
  • python批量修改txt文件里的类别数,批量修改文件名

    做工程项目时,经常会遇到需要将两个数据集融合到一个数据集里的情况,但是两个数据集里的类别数又要能够对应上,比如两个数据集都是二分类的,那类别标签就是0和1,这种情况下就需要将另一个数据集的标签改为2和3,这样才能将两个数据集融合到一个里面。 直接上代码,更…

    2022/1/17 17:03:55 人评论 次浏览
  • python批量修改txt文件里的类别数,批量修改文件名

    做工程项目时,经常会遇到需要将两个数据集融合到一个数据集里的情况,但是两个数据集里的类别数又要能够对应上,比如两个数据集都是二分类的,那类别标签就是0和1,这种情况下就需要将另一个数据集的标签改为2和3,这样才能将两个数据集融合到一个里面。 直接上代码,更…

    2022/1/17 17:03:55 人评论 次浏览
  • How to rename the hostname in RAC

    How to rename the hostname in RAC (Doc ID 2341779.1) To BottomIn this Document Goal Solution References APPLIES TO: Oracle Database Exadata Express Cloud Service - Version N/A and laterOracle Database Exadata Cloud Machine - Version N/A and laterO…

    2022/1/8 6:04:05 人评论 次浏览
  • How to rename the hostname in RAC

    How to rename the hostname in RAC (Doc ID 2341779.1) To BottomIn this Document Goal Solution References APPLIES TO: Oracle Database Exadata Express Cloud Service - Version N/A and laterOracle Database Exadata Cloud Machine - Version N/A and laterO…

    2022/1/8 6:04:05 人评论 次浏览
  • Redis、Tomact安全漏洞处理

    最近在工作中遇到了一些Redis/Tomact安全漏洞问题,在此整理了一下: 一:Redis安全加固及安全漏洞处理 1.禁止一些高危命令(重启redis才能生效) 修改 redis.conf 文件,禁用远程修改 DB 文件地址 rename-command FLUSHALL "" rename-command CONFIG "&q…

    2022/1/6 19:38:44 人评论 次浏览
共44记录«上一页123下一页»
扫一扫关注最新编程教程