benladeng5225
- 浏览: 44454 次
- 性别:
- 来自: 西安
-
社区版块
- ( 0)
- ( 0)
- ( 0)
最新评论
-
:
很好,一定程度上解决了我有些迷惑的问题,
文章列表
- 博客分类:
@echo
set "nls_lang=american_america.us7ascii"
--set "nls_lang=american_america.zhs16gbk"
start /d "e:\plsql" plsqldev.exe
exit
- 2022-10-11 14:50
- 浏览 17
- 分类:数据库
导出:
1.查询或创建逻辑目录
select * from dba_directories;
create directory as '/data/...';
2.为 oracle用户授予访问数据目录的权限,输入命令:
grant read,write on dir
- 2022-09-14 15:28
- 浏览 49
- 分类:数据库
- 博客分类:
准备数据库执行oracle sql,或使用mysql的sql代码创建库后,使用dbeaver或navicat等工具转换为oracle库(官方最新)修改数据库链接字符串url: jdbc:oracle:thin:@192.168.1.1:1521:orclusername: rootpassword: rootdriver-class-name: oracle.jdbc.oracledriver数据库脚本create table jimu_dict ( id varchar2(32) not null, dict_name nvarchar2(100) null, dict_code ...
- 2022-03-19 09:40
- 浏览 320
- 分类:互联网
- 博客分类:
npm install
cnpm 安装 npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm -version
cnpm : 无法加载文件 d:\tools\node\node_global\cnpm.ps1
以管理员身份运行vscode
执行:get-executionpolicy,显示restricted,表示状态是禁止的
执行:set-executionpolicy remotesigned
这时再执行 get-executionpolicy ,就显示remotesigned
- 2021-12-18 17:48
- 浏览 79
- 分类:web前端
- 博客分类:
@echo off
@echo 取得当前目录
pushd "�%"
cd ..
set pard=�%
popd
echo 上一层目录为%pard%
echo 当前目录为�%
@echo off
pushd "�%"
cd ..
set pard=�%
popd
@echo off
cls
echo.
echo ================================
echo 获取批处理文件管理员权限
echo ================================
...
- 2021-11-28 08:55
- 浏览 125
- 分类:编程语言
- 博客分类:
mail:
host: smtp.126.com
port: 25
username: [email protected]
fromaddress:
password: xxxxx
nickname: davinci
- 2021-11-09 23:31
- 浏览 171
- 分类:编程语言
- 博客分类:
1、设置mainclass 首先,在configuration中配置好spring boot配置:2、“程序包com.sun.tools.javac.util不存在” 问题解决 打开 file -> project structure引入tools.jar .3、连接mysql出现unable to load authentication plugin 'caching_sha2_password' 登陆mysql成功之后输入: alter user 'root'@'localhost' identified by 'root' password expire ne ...
- 2021-11-09 23:16
- 浏览 203
- 分类:编程语言
- 博客分类:
启动时指定编码格式,-dfile.encoding=utf-8 .
java -jar -dfile.encoding=utf-8 -dserver.port=10001 demo-2.4.0.jar
- 2021-11-06 10:39
- 浏览 155
- 分类:编程语言
- 博客分类:
product code(产品代号): 4vkjwhfeh3ufnqnmpr9brvcuyujrx3n3le serial number(序列号):226959 password(密码): xs374ca
- 2021-10-31 08:11
- 浏览 124
- 分类:数据库
- 博客分类:
use mysql;
update user set authentication_string='' where user='root';
alter user'root'@'%' identified by 'root';
- 2021-09-16 10:01
- 浏览 123
- 分类:数据库
- 博客分类:
mysql> create user 'root'@'%' identified by 'root';mysql> grant all privileges on *.* to 'root'@'%' with grant option;
- 2021-07-08 09:36
- 浏览 1565
- 分类:非技术
- 博客分类:
-- 修改数据表和字段字符集
alter table tablename default character set utf8mb4 collate=utf8mb4_general_ci;
alter table tablename convert to character set utf8mb4 collate utf8mb4_general_ci;
- 2021-06-07 17:33
- 浏览 1675
- 分类:数据库
- 博客分类:
netstat -aon|findstr "8080"
netstat -nltp | grep 1935(linux)
taskkill /f /pid 13716
- 2021-05-31 11:53
- 浏览 900
- 分类:web前端
maven-no compiler is provided in this environment. perhaps you are running on a jre rather than a jdk?
问题原因:eclipse默认是运行在jre上的,但是maven插件需要使用jdk,因此需要在eclipse修改installed jres位置在-->【window】-->【prefrences】-->【java】-->【installed jres】
- 2017-10-13 11:49
- 浏览 1144
- 分类:编程语言
« 上一页 1