xxx

在Excel列A的内容姓名与身份证号,例如:xxx 62****************** ,现在需要姓名与身份证号分开,用怎么样的公式?

在Excel列A的内容姓名与身份证号,例如:xxx 62****************** ,现在需要姓名与身份证号分开,用怎么样的公式? = MID(A1, FIND(" ", A1) + 1, LEN(A1) - FIND(" ", A1)) 这个公式使用 MID 函数、FIND 函数和 LE ......
证号 姓名 身份 公式 内容

MySQL CTE递归查询 Data too long for colum‘xxx‘ at row 1

在mysql 8 使用 CTE递归查询时,出现了这个报错 WITH recursive area AS ( SELECT area_name, area_code FROM sys_area_tree WHERE area_category = '1' AND parent_code IS NULL ......
MySQL colum Data long CTE

E: The repository 'xxx' is not signed.

在ubuntu上安装了google chrome, 运行时有问题,删除了之后再次运行 sudp apt update 会报错 E: The repository 'http://dl.google.com/linux/chrome/deb stable InRelease' is not signe ......
repository signed 39 The not

C/C++ C2679 二元“<<”: 没有找到接受“XXX”类型的右操作数的运算符(或没有可接受的转换)

今天在做一个C++项目时遇到了如下问题: 找了好久的百度,结果发现只要把这段报错的程序换一下位置,放到运算符重载函数的下面就可以了,因为编译器是按顺序执行的。。。 ......
操作数 运算符 类型 C2679 2679

1130 - Host 'xxx' is not allowed to connect to this MySQL server

安装mysql-5.7.32数据库时,使用Navicat工具连接数据库时,出现Host 'xxx' is not allowed to connect to this MySQL server,详情如下: 两种解决方案,任选一个即可: 1、修改mysql数据库用户表数据 执行如下SQL命令: use ......
allowed connect server MySQL 1130

sonarqube启动报错:You must address the points described in the following [2] lines before starting Elasticsearch.bootstrap check XXXmax numberXXXfor user[sonar] is too low .XXX check the logs at XXX/.log

You must address the points described in the following [2] lines before starting Elasticsearch.bootstrap check failure [1] of [2]: max number of threa ......

错误:You can't specify target table 'xxx' for update in FROM clause的解决

delete FROM usrlogin where member_id=(SELECT member_id FROM usrlogin WHERE login_id='#011SkhVVje27smbxek0XwjKeA=='); 会出现报错信息: You can't specify target ......
39 错误 specify clause target

记一次在服务器上运行node.js程序时无法通过nohup xxx & 方式挂起的问题

由于业务需求 每天要在服务器上整理一组数据,为了方便就用node.js来写了。但是运行的时候发现了一个问题 明明使用了nohup main.js &的方式后台运行了程序 但是一旦我关闭了shell控制台 这个后台运行的程序也会跟着终止掉,不知道是什么原因,于是采用forever.js的方式来运行项目 ......
方式 服务器 程序 问题 nohup

报错:Could not resolve view with name 'xxx' in servlet with name 'dispatcherServlet' at org.springframework.web.servlet.DispatcherServlet.render

报错: Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Could not resolve view with name 'xxx' in servlet with ......

ORA-01502: index 'xxx' or partition of such index is in unusable state

SELECT 'alter index ' ||INDEX_NAME || ' REBUILD;' INDEX_NAME, INDEX_TYPE, TABLESPACE_NAME, TABLE_TYPE, STATUS FROM DBA_INDEXES WHERE STATUS = 'UNUSABL ......
index partition unusable 01502 state

部署项目 Failure obtaining db row lock: Table ‘XXX.qrtz_LOCKS‘ doesn‘t exist

系统环境 centos7 MySQL5.7 原因: mysql对表大小写有要求,但是当时创建表的时候都是小写,所以说就查不到qrtz_LOCKS这张表,所以就报错了 解决办法: 找到mysql的配置文件 my.cnf 路径在etc/my.cnf cd etc vim my.cnf 此时点击A键触发编 ......
qrtz_LOCKS obtaining Failure 项目 Table

xxx is not in the sudoers file. This incident will be reported

1、问题背景 在使用创建的用户访问超出用户权限的文件时,需要用到sudo命令,如1使用创建的用户编辑 /etc/hosts 文件,无法操作,详情如下: 原因:bigdata用户未在 /etc/sudoers 文件中做权限设置。 2、解决方案 在 /etc/sudoers 中做如下操作: # 1、查看 ......
incident reported sudoers file This

解决MAC:xxx已损坏,无法打开,您应该将它移到废纸篓的问题

感谢https://www.macat.vip/496.html 1. sudo spctl --master-disable 2. sudo xattr -rd com.apple.quarantine 注意最后quarantine 后面加一个空格!然后打开Finder(访达),点击左侧的 应用程 ......
废纸篓 废纸 问题 MAC xxx

Grafana导入 json 文件的 dashboard 错误 Templating Failed to upgrade legacy queries Datasource xxx not found

前言 编辑或者修改后的 dashboard 保存为 json 文件,在其他环境导入使用,报错 Failed to upgrade legacy queries Datasource xxxxxxx was not found,无法显示监控数据 问题原因为:从其他 grafana 导出的 dashbo ......

VSCode + ESP-IDF 问题 identifier XXX is undefined

VSCode + ESP-IDF 问题 identifier XXX is undefined VSCode会出现错误提示如: identifier "CONFIG_IDF_TARGET" is undefinedC/C++(20) identifier "CONFIG_FREERTOS_HZ" i ......
identifier undefined ESP-IDF VSCode 问题

ModuleNotFoundError: No module named ‘xxx‘可能的解决方案大全

"ModuleNotFoundError: No module named 'xxx'"这个报错是个非常常见的报错,几乎每个python程序员都遇到过,导致这个报错的原因也非常多,下面是我曾经遇到过的原因和解决方案 module包没安装 忘了import 没有__init__.py文件 packag ......

多种方案教你彻底解决mac npm install -g后仍然不行怎么办sudo: xxx: command not found

问题概述 某些时候我们成功执行了npm install -g xxx,但是执行完成以后,使用我们全局新安装的包依然不行,如何解决呢? 解决方案1: step1: 查看npm 全局文件安装地址 XXX@CN_CXXXMD6M ~ % npm list -g /Users/XXX/.npm-global ......
多种 怎么办 install command 方案

嵌入式linux运行程序 -sh ./xxx: not found 解决办法

问题分析在嵌入式Linux环境下,运行应用程序,提示”-sh: ./xxx : not fount” 出现该问题是因为缺少动态链接库,通过”ldd xxx”指令查看缺少的库。 库文件从哪里来,需要拷贝在哪里?找到我们搭建的交叉编译环境目录,我安装在“/usr/local/arm/”目录中。进入目录中 ......
嵌入式 办法 程序 linux found

goland编辑器编译的时候报错package xxx is not in GOROOT的原因排查

先介绍下,我的目录部署情况 1、GOROOT=C:\Program Files\Go(我的golang环境装在c盘的) 2、GOPATH=E:\Go(项目目录我放在E盘的) 3、GO111MODULE=auto(默认值,没有改过) 4、GOVERSION=go1.20.6(我的golang版本) 5 ......
编辑器 原因 package 时候 goland

在idea的控制台使用命令报错XXX无法识别为命令或改变了环境变量后idea环境未同步更新

报错XXX无法识别为命令是当前环境中不存在XXX配置,当前环境不是说电脑的系统环境,比如使用的idea那当前环境就是idea的配置环境: 打开设置(ctrl+alt+s) 在Value中添加XXX对应的路径,记得加分号(;)。 ......
命令 环境 控制台 idea 变量

default property alias xxx 应用

ArchInterface.qml Control { id: content default property alias contentChildren: content.data // 内部的元素, 由子模块去实现 backgroud: Rectangle { color: "transpar ......
property default alias xxx

从安卓模拟器中获取 expo-av 库录音得到的音频文件 file:///data/user/0/mo.com.nccl.xxx/cache/Audio

在使用 expo-av 录制音频时,录制结束通过 recording.getURI() 可以获取得到的音频文件的地址。 想要获取该文件可以通过发送请求的方式: const uri = recording.getURI(); let response = await fetch(uri); let b ......
模拟器 音频 expo-av 文件 Audio

boot项目编译通过,启动正常,打包报错程序包xxx不存在

解决办法: 去掉下面的自带插件 <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <excludes> <exc ......
程序 项目 boot xxx

window和linux下有关xxx.dll和xxx.so动态库,可执行文件运行时的动态库检索路径文档

没想到详细的内容都在库和命令的man手册中。 ld.so动态库手册里有描述ELF可执行文件在运行时,都会在哪几个位置检索动态库。 如果共享对象依赖项不包含斜杠,则它 按以下顺序搜索: (1) 使用二进制文件的 DT_RPATH 动态节属性中指定的目录(如果存在且 DT_RUNPATH 属性不存在)。 ......
动态 路径 xxx 文档 文件

iOS开发Swift-alertWithTitle(title: xxx, message: xxx, placeHolders: xxx, buttons:xxx, ...)

alertWithTitle(title: "输入信息", message: "请输入您的姓名:", placeHolders: [], buttons: ["确定"], defaultButtonIndex: 0, cancelButtonIndex: 0, defaultText: "张三"); ......

解决vscode找不到Python自定义模块,报错No module named 'xxx'

vscode 找不到python自定义模块 vscode之所以找不到自定义模块,与其PYTHONPATH有关。 1、 首先在.vscode下的launch.json中添加"env": {"PYTHONPATH": "${workspaceRoot}"} { "version": "0.2.0", " ......
模块 vscode Python module named

解决错误 org.apache.ibatis.type.TypeException: The alias xxx is already mapped to the value xxxxx

具体错误信息如下:其实就是此类名和其他包有冲突 那么解决办法就是声明一个别名就好了:使用注解 解決办法 ......
TypeException 错误 already apache ibatis

docker清理不用的桥接网卡br-xxx

docker清理不用的桥接网卡br-xxx # 场景 在Linux机器中,发现了很多br-开头的网卡信息,一看就是docker创建的,但是有些已经不再使用了,因此想清理一下 ![image-20230915140857896](https://img2023.cnblogs.com/blog/176 ......
网卡 不用 docker br-xxx xxx

c gtk3写demo的时候,出现一大串(.text+0xxx): undefined reference to `xxx'错误。

错误内容 (.text+0x4b): undefined reference to `gtk_window_get_type' 环境 开发工具:IDEA GTK: mingw-w64-x86_64-gtk3 解决方法 前提是你已经按照GTK按照教程进行按照过GTK了 第一种 排查cmake的变量是否 ......
reference xxx undefined 错误 时候

[vite] Internal server error: URI malformed at decodeURI (<anonymous>) at viteTransformMiddleware (xxx_project/node_modules/vite/dist/node/chunks/dep-51c4f80a.js:59976:19)的解决方法

前端项目启动,出现 [vite] Internal server error: URI malformed at decodeURI () at viteTransformMiddleware (xxx_project/node_modules/vite/dist/node/chunks/dep-5 ......