网站首页
编程语言
数据库
系统相关
其他分享
编程问答
MyUser
2024-07-09
Oracle数据库使用expdp/impdp导出导入数据
背景:正式环境数据同步到测试环境,数据库名:MYDB,正式、用户:MYUSER(必须拥有SYS权限)。1、正式环境备份数据库(1)正式服务器上,cmd输入sqlplus,使用MYUSER账户登录(2)创建一个自定义的目录,用于存放导出的数据createdirectoryDATA_OUT_FILEas'E:\app\Administrator\admin\MYDB\my_dir\'
2024-04-30
PostgreSQL 简单使用
切换到postgres用户:默认情况下,以postgres用户身份登录可以获得数据库的完全访问权限:sudosu-postgres登录到PostgreSQL:psql系统会提示您输入之前设置的postgres用户的密码。登录后,您可以创建新的数据库和用户,或者执行其他数据库操作。例如,创建一个名为mydatabas
2024-04-22
SSH 登陆 Windows 时踩过的坑
有一次处于某些原因我在Mac上使用SSH远程登陆了Windows,然后在Windows上使用SSH登陆localhost,惊讶地发现登不进去!SSH提示公钥验证失败。可是我的Windows使用的私钥和Mac是一样的,并且以前在Windows上也一直可以登陆localhost,为什么今天突然不行了呢?抱着百思不得
2024-04-17
mysql8.0管理用户
--使用mysql数据库USEmysql;--创建用户CREATEUSERmyuserIDENTIFIEDBY'mypass';--查看用户SELECTuser,host,authentication_stringFROMUSERWHEREUSER='myuser';--修改用户密码updateusersetauthentication_string=''whereuser='m
2023-11-15
openstack同学们踩过的坑
问题1: 1,环境变量里的用户密码与创建用户时设置的密码不一致。解决方法:用管理员身份修改用户密码openstackuserset--password-promptmyuser2,忘记给用户赋予角色openstackroleassignmentlist--user用户名或ID#查看某一账户的角色分配openstackroleadd--pro
2023-11-06
报错:1130-host ... is not allowed to connect to this MySql server 开放mysql远程连接 不使用localhost
报错:1130-host...isnotallowedtoconnecttothisMySqlserver开放mysql远程连接不使用localhost解决方法:1。改表法。可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改"mysql"数据库里的"user"表里的"host"项,从"
2023-10-30
【转载】Mysql8授予某个用户某个数据库的权限
参考chatgpt3.5环境软件/系统版本说明mysql8.0.28正文要在MySQL中授予某个用户对某个数据库的权限,你可以使用以下SQL语句:GRANT权限列表ON数据库名.表名TO'用户名'@'主机名';下面是这个语句的各个部分的解释:权限列表:这是你要授予用户的权限列表,可
2023-10-10
PostgreSQL学习(1)
安装PostgreSQLsudoaptinstallpostgresqlpostgresql-contrib#如果您需要特定版本,请使用“postgresql-12”或类似版本,替换“postgresql”:postgresql-contrib软件包包含了一些有用的扩展和附加功能。登录PostgreSQL默认情况下,PostgreSQL安装后只允许本地连接,且只有postgr
2023-06-23
Ubuntu ARM如何使用undetected-chromedrive
1.Chromium和Driver安装sudoaptupdate&&sudoaptinstallchromiumchromium-driver2.复制一份到当前用户目录cp/usr/bin/chromedriver/home/myuser/.local/share/undetected_chromedriver/chromedriver_copy 3.Python启动代码importundetected_chromedriver
2023-02-04
spring boot集成mybatis-plus——根据id查询用户信息
为了便捷的操作。不按照前面几篇的方式。直接在controller中进行mapper注入和操作。 packageorg.example.controller;importorg.example.Entity.MyUser;importor
2023-02-04
spring boot集成mybatis-plus——根据多个id查询用户信息
packageorg.example.controller;importorg.example.Entity.MyUser;importorg.example.mapper.UserMapper;importorg.example.service.MyUserService;importorg.
2023-02-04
spring boot集成mybatis-plus——通过name修改用户信息
其他不变: 服务类:packageorg.example.service;importorg.example.Entity.MyUser;importjava.util.List;publicinterfaceMyUserService{//查询所
2023-02-04
spring boot集成mybatis-plus——通过id修改用户信息
实体类不变:packageorg.example.Entity;importcom.baomidou.mybatisplus.annotation.IdType;importcom.baomidou.mybatisplus.annotation.TableId;importcom.baom
2023-01-07
spring boot——spring boot的基本配置——spring boot整合mybatis——本地实例运行——MyBatis动态SQL——MyBatis分页
========================================================================
2023-01-07
spring boot——spring boot的基本配置——spring boot整合mybatis——本地实例运行——MyBatis动态SQL——MyBatis trim标签
============================================================ pojo类:packag
2023-01-07
spring boot——spring boot的基本配置——spring boot整合mybatis——本地实例运行——MyBatis动态SQL——MyBatis bind标签
================================================================================== pojo类
2023-01-07
spring boot——spring boot的基本配置——spring boot整合mybatis——本地实例运行——MyBatis动态SQL——MyBatis foreach标签
=========================================================================================
2023-01-07
spring boot——spring boot的基本配置——spring boot整合mybatis——本地实例运行——MyBatis动态SQL——MyBatis set标签
pojo类:packageorg.example.entity;publicclassMyU
2023-01-06
spring boot——spring boot的基本配置——spring boot整合mybatis——本地实例运行——MyBatis动态SQL——MyBatis where标签
===========================================================================
2023-01-06
spring boot——spring boot的基本配置——spring boot整合mybatis——本地实例运行——MyBatis动态SQL——MyBatis choose、when和other
pojo类:packageorg.example.entity;publicclassMyUser{privateintid;privateStringname;privateintag
2023-01-05
spring boot——spring boot的基本配置——spring boot整合mybatis——本地实例运行——MyBatis动态SQL——MyBatis if标签——between语句——
mapper层:packagecom.demo.mapper;importjava.util.List;importorg.apache.ibatis.annotations.Mapper;importorg.apache.ibatis.annotation
2023-01-05
spring boot——spring boot的基本配置——spring boot整合mybatis——本地实例运行——MyBatis动态SQL——MyBatis if标签——示例001
pojo类:packageorg.example.entity;publicclassMyUser{privateintid;privateStringname;privateintage;publ
2023-01-04
spring boot——spring boot的基本配置——spring boot整合mybatis——本地实例运行——查询操作——返回int类型——查询总行数
POJO类:packageorg.example.entity;publicclassMyUser{privateintid;privateStringname;privateintage;publicintgetId(){
2023-01-04
spring boot——spring boot的基本配置——spring boot整合mybatis——本地实例运行——模糊查询操作方式二——返回list列表-pojo类型——根据name查询数据
POJO类:packageorg.example.entity;publicclassMyUser{privateintid;privateStringname;privateintage;publicintgetId(){
2023-01-04
spring boot——spring boot的基本配置——spring boot整合mybatis——本地实例运行——模糊查询操作方式一——返回list列表-pojo类型——根据name查询数据
POJO类:packageorg.example.entity;publicclassMyUser{privateintid;privateStringname;privateintage;publicintgetId(){