数据库技术-周排行
背景 Windows 10 ProDBeaver Enterprise Edition v21.0MongoDB v4.2 步骤 #1. 下载并安装 DBeaverhttps://dbeaver.com/download/enterprise/ #2. 下载并安装 JDK11https://www. ...
分类:数据库技术 时间:2021-05-05 21:29:02 收藏:0 阅读:618
MySQL8.0及之后的版本已经将创建账户和赋予权限的方式分开了,设置远程连接权限要用下面的语句才可以: 创建账户 create user root@'%' identified by '密码'; 赋予权限 grant all privileges on *.* to root@'%' with g ...
分类:数据库技术 时间:2021-05-16 14:32:28 收藏:0 阅读:24
CREATE TABLE tb_emp5 (id INT(11) PRIMARY KEY,name VARCHAR(25),deptId INT(11), salary FLOAT,CONSTRAINT fk_emp_dept1 FOREIGN KEY(deptId) REFERENCES tb_d ...
分类:数据库技术 时间:2021-06-07 23:13:46 收藏:0 阅读:170
使用ImpalaJDBCDriver时发现了一个bug,会报如下错误: [Cloudera][ImpalaJDBCDriver](500051) ERROR processing query/statement. Error Code: 0, SQL state: TStatus(statusCod ...
分类:数据库技术 时间:2021-07-13 15:15:00 收藏:0 阅读:59
PyMySQL PyMySQL是基于python连接操作mysql库的第三方库 介绍:代码托管地址:https://github.com/PyMySQL/PyMySQL 在线文档:https://pymysql.readthedocs.io/en/latest/index.html 安装 pytho ...
分类:数据库技术 时间:2021-08-26 09:34:01 收藏:0 阅读:37
1.前言 这里我们在安装后oracle数据后就可以使用sqlplus命令进行登录了 2.oracle数据库的几种登录方式 2.1 sqlplus /nolog (这样是为了不在cmd 或者terminal 上暴露密码的登录方式) $ sqlplus /nolog SQL> conn /as sysd ...
分类:数据库技术 时间:2021-09-23 07:39:46 收藏:0 阅读:38
摘要 Shopee 供应链主要覆盖卖家发货后,仓库拣选商品、交至第三方物流(3rd Party Logistics,下称 3PL)、送达买家过程中的各种场景。Logistics Channel Service 项目(下称 LCS)是物流履约链路上连接内外的一环,收拢了向 3PL 下单、获取物流轨迹更 ...
分类:数据库技术 时间:2021-09-24 03:06:39 收藏:0 阅读:43
MySQL Workbench是一款专为MySQL设计的ER/数据库建模工具。它是著名的数据库设计工具DBDesigner4的继任者。你可以用MySQL Workbench设计和创建新的数据库图示,建立数据库文档,以及进行复杂的MySQL 迁移 MySQL Workbench是下一代的可视化数据库设计、管理的工具,它同时有开源和商业化的两个版本。该软件支持Windows和Linux系统,下面是一...
分类:数据库技术 时间:2014-01-21 01:27:15 收藏:0 阅读:719
今天报了这个异常,这是页面报的org.springframework.dao.DataIntegrityViolationException: could not execute statement; SQL [n/a]; constraint [null]; nested exception is...
分类:数据库技术 时间:2014-02-07 21:47:01 收藏:0 阅读:8765
mysql异常: com.mysql.jdbc.CommunicationsException: The driver was unable to create a connection due to an inability to establish the client portion of a socket. This is usually caused by a limit on...
分类:数据库技术 时间:2014-02-11 01:30:56 收藏:0 阅读:688
1.在windows系统中,DB2 日志db2diag.log 在什么地方?以下是IBM网站上的解答QuestionWhere is db2diag.log for DB2 V9.5 located on Windows?AnswerIn DB2 V9.5, the location of db2d...
分类:数据库技术 时间:2014-02-12 18:31:40 收藏:0 阅读:778
在mysql数据库中,常常会遇到统计当天的内容。例如,在user表中,日期字段为:log_time统计当天sql语句为:select*fromuserwheredate(log_time)=curdate();curdate()表示当天日期统计前一天如果表示前一天的数据,则不能使用curdate()...
分类:数据库技术 时间:2014-02-14 16:48:14 收藏:0 阅读:403
1, look at the sphinx.person.address.conf to see how to configure the conf file2, index the database using conf file. the format is as below: indexer ...
分类:数据库技术 时间:2014-02-14 23:29:22 收藏:0 阅读:592
先执行yum updatenodejs 安装:yum install nodejselseyum repolistcurl -O http://download-i2.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpmsudo ...
分类:数据库技术 时间:2014-02-17 19:44:17 收藏:0 阅读:824
西安-dba-王宁军 你肯定是点击 界面上的按钮重启的 这是大忌   oracle的那个重启没有好用过  西安-dba-王宁军  10:35:08 我告诉你重启OPP的方法: 界面上点击按钮后杀掉OPP后台进程, 然后在界面上点击启用按钮,就ok了 深圳-DBA-芦苇(274244827)  10:44:18 求助,为什么我用pl/ sql ,跑“fnd_user_pkg.chan...
分类:数据库技术 时间:2014-02-21 04:31:48 收藏:0 阅读:1606
1.SELECT MONTH(SellTime) as selltime,SUM(TotalPrice) as total FROM Sell WHERE YEAR(SellTime)=CONVERT(varchar(4),getdate(),120) GROUP BY MONTH(SellTime...
分类:数据库技术 时间:2014-02-27 05:13:08 收藏:0 阅读:694
the conception of schema is different in different db software.here i just refer to oracle schema。following is quote from "http://docs.oracle.com/cd/B...
分类:数据库技术 时间:2014-03-01 00:25:55 收藏:0 阅读:596
Postgresql下plv8安装过程其实很简单,但是在网络上搜集了半天都没有找到一篇满意的安装文档,现在总结如下:1.下载和PostgreSQL相对应的plv8版本,下载地址如下: http://www.postgresonline.com/journal/archives/280-PLV8-1....
分类:数据库技术 时间:2014-03-03 22:18:28 收藏:0 阅读:735
这个文件整整纠结我一个上午,关键问题不是没有方法而是方法不对! 我最初是按照这个方法: http://www.cnblogs.com/sunzhenxing19860608/archive/2010/10/19/1855823.html 怎么试都没有办法插入数据,只能更新成功!请教了别人之后才发现这个方法是不对的! 借鉴上面的例子: 数据库表:TEST CREATE TABLE...
分类:数据库技术 时间:2014-03-04 04:05:50 收藏:0 阅读:567
参考:https://github.com/snowdream/51-androidhttp://www.cnblogs.com/cat-lee/archive/2011/07/09/2101718.htmlhttp://developer.android.com/tools/device.html...
分类:数据库技术 时间:2014-03-05 03:10:25 收藏:0 阅读:648
1808182838410978
上一页219544下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!