dbvisualizer

DataGrip使用入门

浪子不回头ぞ 提交于 2020-08-16 15:39:55
最近看到一款数据库客户端工具,DataGrip,是大名鼎鼎的JetBrains公司出品的,就是那个出品Intellij IDEA的公司。DataGrip是一款数据库管理客户端工具,方便连接到数据库服务器,执行sql、创建表、创建索引以及导出数据等。之前试用的客户端工具是dbvisualizer,但是在试用了DataGrip以后,我就决定抛弃dbvisualizer。我相信,当你第一眼看到DataGrip以后,会有一种惊艳的感觉,就好比你第一眼看到一个姑娘,就是那么一瞥,你对自己说,就是她了!废话不多说,来看看DataGrip的常用功能。DataGrip下载链接如下 https://www.jetbrains.com/datagrip/download 。安装过程也很简单,双击安装,下一步,中间会让你选择主题,本人选择的是经典的Darcula,安装完成后,启动,界面如下 相信使用过IDEA的同学会感到很亲切。接下来管理数据库驱动。DataGrip支持主流的数据库,File->DataSource 也可以在Database视图中展开绿色的+号,添加数据库连接 选择需要连接的数据库类型 在面板中,左上部分列出了已经建立的数据库连接,点击各项,右侧会展示当前连接的配置信息,General面板中,可以配置数据库连接的信息,如主机、用户名、密码等,不同数据库配置信息不完全相同,填入数据库URL

DataGrip使用入门

▼魔方 西西 提交于 2020-08-06 00:56:17
最近看到一款数据库客户端工具,DataGrip,是大名鼎鼎的JetBrains公司出品的,就是那个出品Intellij IDEA的公司。DataGrip是一款数据库管理客户端工具,方便连接到数据库服务器,执行sql、创建表、创建索引以及导出数据等。之前试用的客户端工具是dbvisualizer,但是在试用了DataGrip以后,我就决定抛弃dbvisualizer。我相信,当你第一眼看到DataGrip以后,会有一种惊艳的感觉,就好比你第一眼看到一个姑娘,就是那么一瞥,你对自己说,就是她了!废话不多说,来看看DataGrip的常用功能。DataGrip下载链接如下 https://www.jetbrains.com/datagrip/download 。安装过程也很简单,双击安装,下一步,中间会让你选择主题,本人选择的是经典的Darcula,安装完成后,启动,界面如下 相信使用过IDEA的同学会感到很亲切。接下来管理数据库驱动。DataGrip支持主流的数据库,File->DataSource 也可以在Database视图中展开绿色的+号,添加数据库连接 选择需要连接的数据库类型 在面板中,左上部分列出了已经建立的数据库连接,点击各项,右侧会展示当前连接的配置信息,General面板中,可以配置数据库连接的信息,如主机、用户名、密码等,不同数据库配置信息不完全相同,填入数据库URL

MySQL connection with DBVisualizer

十年热恋 提交于 2020-01-06 01:16:09
问题 I've created a user (1caap) in mysql root account and given read only privileges for this user to one of my database. Now my client(1caapuser) is unable to access this database. I've established the connection using Workbench. He's getting the following error when he's trying to access this database using DBVisualizer: An error occurred while establishing the connection: Type: java.sql.SQLException Error Code: 1045 SQL State: 28000 Message: Access denied for user '1caapuser'@'x.x.x.x' (using

DBVisualizer Fails to Connect

柔情痞子 提交于 2020-01-05 13:08:47
问题 I am trying to Connect to Sybase Database (on VM Server) using Sybase SQL Anywhere (JConnect) Driver but everytime it fails with following error: Product: DbVisualizer Free 9.1.2 Build: #2072 (2013/10/28 18:25) Java VM: Java HotSpot(TM) 64-Bit Server VM Java Version: 1.6.0_21 Java Vendor: Sun Microsystems Inc. OS Name: Windows 7 OS Arch: amd64 OS Version: 6.1 An error occurred while establishing the connection: Long Message: JZ00L: Login failed. Examine the SQLWarnings chained to this

The MySQL “DELIMITER” keyword isn't working

社会主义新天地 提交于 2020-01-04 04:32:13
问题 Ok so, I've been ripping my hairs ou on this one, why doesn't this work? DELIMITER | CREATE PROCEDURE Decrypt_pw() READS SQL DATA BEGIN SELECT 'Hey Select'; END| It's so basic and I'm pretty sure I'm using the correct syntax, what am I missing? Error: 21:14:07 [DELIMITER - 0 row(s), 0.000 secs] [Error Code: 1064, SQL State: 42000] You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DELIMITER | CREATE PROCEDURE

Oracle auto increment trigger issue

ⅰ亾dé卋堺 提交于 2019-12-25 07:59:27
问题 I am having an issue when creating the auto increment trigger in Oracle 11g. If someone can point out what I am doing wrong, I would really appreciate it. My script for the sequence is this : CREATE SEQUENCE SPSS_QUOTE_LINE_ITEMS_SEQ start with 1 increment by 1 minvalue 1; The script for trigger: CREATE OR REPLACE TRIGGER SPSSQUOTELINEITEMS_ON_INSERT BEFORE INSERT ON SPSS_QUOTE_LINE_ITEMS FOR EACH ROW BEGIN SELECT SPSS_QUOTE_LINE_ITEMS_SEQ.NEXTVAL INTO :new.line_num FROM dual; END; The error

Which DB driver to use DbVisualiser with Azure SQL?

人盡茶涼 提交于 2019-12-24 04:03:31
问题 I have earlier used Microsoft SQL Server Management Studio here with Azure SQL here but I want to try DbVis (a platform independent alternative). I am trying DbVis in OSX. I could find JDBC driver for SQL Server here but not sure whether this required to use DbVis with Azure SQL in OSX. Which driver do I need to select to connect to the Azure SQL in DbVis? Trial 1. Error with admin credentials The settings are Server name myDB.database.windows.net as Database URL Azure SQL admin as Database

Join conditions on multiple columns versus single join on concatenated columns?

删除回忆录丶 提交于 2019-12-23 15:49:07
问题 I observe there are two ways to achieve an objective on multiple tables. A column in the resultset will be updated and speed may be a requirement. The resultset is obtained either by: Case 1: select ert.* from eval_rep_track ert inner join ( select erp.evaluation_fk, erp.report_type, LTRIM(erp.assign_group_id, '/site/') course_name from eval_report_dup@prod erp inner join eval_report er on er.id = erp.id where erp.status='queue' and er.status='done' ) cat on ert.eval_id || '.' || ert.report

How to connect Neo4j JDBC driver with DbVisualizer

本秂侑毒 提交于 2019-12-10 10:43:58
问题 I am running Neo4j 2.1.6, tried Neo4j 2.20 as well. I can not connect it with DbVisualizer 9.1.13 And I can not find ANY step by step clear explanation on how to do it. First I've got binary JDBC Neo4j-2.0.1-SNAPSHOT here I can run my just installed Neo4j instance from the browser localhost:7474 and I don't know what the REST API is all about and if it is turned on by default. I can run the Neo4j 2.20 same way that comes with a new feature of user authorization and I am not sure if that JDBC

SQL query on H2 database table throws ArrayIndexOutOfBoundsException

穿精又带淫゛_ 提交于 2019-12-08 22:12:59
问题 I have a H2 database on which some queries work, while others are throwing an ArrayIndexOutOfBoundsException . For example: SELECT COLUMN_1 FROM MY_TABLE; // works fine SELECT COUNT(COLUMN_1) FROM MY_TABLE; // gives following error message: [Error Code: 50000, SQL State: HY000] General error: "java.lang.ArrayIndexOutOfBoundsException"; SQL statement: SELECT COUNT(COLUMN_1) FROM MY_TABLE [50000-167] What is the cause for this eror message? 回答1: The reason for the error message was a corrupt