1 2 3 4 5 ··· 18 下一页
摘要: SqlDemo SET SERVEROUTPUT ON DECLARE VERSION_NO_MAX INT; TYPE tb_table_type IS TABLE OF TABLE_NAME%rowtype; -- 目标表 类型 tb_table tb_table_type; -- 目标表 集合 阅读全文
posted @ 2025-06-12 16:11 Robot-Blog 阅读(3) 评论(0) 推荐(0)
摘要: 1.表结构 1.1.索引 1.1.1.复合索引优化 如果查询经常同时过滤多个字段(如WHERE col1 = ? AND col2 = ?),创建复合索引并强制使用 -- 创建复合索引 CREATE INDEX idx_col1_col2 ON table_name(col1, col2); -- 阅读全文
posted @ 2025-06-06 15:07 Robot-Blog 阅读(9) 评论(0) 推荐(0)
摘要: MsSql 1.Cannot resolve the collation conflict between "Chinese_PRC_CI_AS" and "SQL_Latin1_General_CP1_CI_AS" in the equal to operation. 原因:两个数据源使用了不同的 阅读全文
posted @ 2025-05-29 09:34 Robot-Blog 阅读(16) 评论(0) 推荐(0)
摘要: 导出 1.安装插件:Get CRX 1.1.在应用商店打开指定扩展程序的安装页面,选择:Get CRX of this extension 2. 在扩展程序中点击“打包扩展程序” 2.1.右上角[...] / 扩展程序 / 管理扩展程序,或者,直接在网址列输入 chrome://extensions 阅读全文
posted @ 2025-04-11 14:49 Robot-Blog 阅读(208) 评论(0) 推荐(0)
摘要: 系统设置与管理 appwiz.cpl:打开 “程序和功能”,用于添加或删除程序。 compmgmt.msc:打开 “计算机管理”,可进行系统管理,如管理磁盘、用户、服务等。 devmgmt.msc:打开 “设备管理器”,用于管理计算机硬件设备。 gpedit.msc:打开 “组策略”,可对系统进行各 阅读全文
posted @ 2025-04-10 11:04 Robot-Blog 阅读(418) 评论(0) 推荐(0)
摘要: 介绍 Nginx (engine x) 是一个轻量级高性能的HTTP和反向代理服务器,同时也是一个通用 代理服务器 (TCP/UDP/IMAP/POP3/SMTP) Link: https://nginx.org/en/download.html 命令 nginx -v ## 查看版本 start 阅读全文
posted @ 2025-02-18 17:59 Robot-Blog 阅读(9) 评论(0) 推荐(0)
摘要: PS: # 定义要搜索的目录和关键字-替换字符串对 $directory = "D:\xxx\xxx" $replacements = @{ "<variable_type>JVM</variable_type>" = "<variable_type>CURRENT_JOB</variable_ty 阅读全文
posted @ 2025-02-17 10:59 Robot-Blog 阅读(12) 评论(0) 推荐(0)
摘要: 查询用户数量 -- 查询用户数量 SELECT COUNT(*) AS user_count FROM DBA_USERS; SELECT COUNT(*) AS user_count FROM USER_TABLES; 查询表数量 -- 查询表数量 SELECT OWNER, COUNT(*) A 阅读全文
posted @ 2024-12-23 21:17 Robot-Blog 阅读(107) 评论(0) 推荐(0)
摘要: To enable HTTP Strict Transport Security (HSTS) in IIS, need to add the appropriate headers to your web server's configuration: Open IIS Manager: Star 阅读全文
posted @ 2024-12-17 14:23 Robot-Blog 阅读(156) 评论(0) 推荐(0)
摘要: OneNote 删除线:Ctrl + - VsCode 切换是否换行:Alt + Z 不换行,保持在一行:Ctrl + Shift + p,输入框输入:Toggle Word Wrap 阅读全文
posted @ 2024-11-12 11:42 Robot-Blog 阅读(11) 评论(0) 推荐(0)
1 2 3 4 5 ··· 18 下一页