Questions tagged [derby]

Use this tag for questions about Apache Derby, an Apache DB subproject. Derby is an open source relational database implemented entirely in Java and available under the Apache License, Version 2.0.

Apache Derby, an Apache DB subproject, is an open source relational database implemented entirely in Java and available under the Apache License, Version 2.0.

Some key advantages include:

  • a small footprint
  • Java, JDBC, and SQL standards
  • embedded Java-based solutions in addition to traditional client/server support
  • and easy of installation and deployment.

From Java 6 onward a version of Derby is included in the JDK.

Useful Links

2643 questions
0
votes
0 answers

How to show complete column information in derby DB

I am unable to see complete certificate in derby database in CLI. I need to check the certificates before I proceed to do other stuffs. How can I check whole breaking column info of certificates ? Example:- -----BEGIN CERTIFICATE-----…
NoobCoder
  • 493
  • 8
  • 25
0
votes
1 answer

EclipseLink and Derby with Java 19

This project used to work in Java 8 and NetBeans 8, but after upgrading my project to use Java 19 with NetBeans 16 I now see this error: Exception in thread "AWT-EventQueue-0" Local Exception Stack: Exception [EclipseLink-30005] (Eclipse…
simgineer
  • 1,754
  • 2
  • 22
  • 49
0
votes
0 answers

Error while starting Hive due to error in Derby configuration

I'm trying to add Hive to my Hadoop 3.2.0 ecosystem. I have followed the install&config steps as described here: https://www.tutorialspoint.com/hive/hive_installation.htm Unfortunately I have stuck while trying to test hive using hive -hiveconf…
Ziggy
  • 19
  • 4
0
votes
1 answer

Connect Derby to Java

I'm trying to connect to a database using Derby in Java (using NetBeans), but I keep getting this error when I try to create a new database: An error occurred while crating the database java.lang.ClassNotFoundException; …
0
votes
0 answers

I have this problem: java.sql.SQLNonTransientConnectionException: Connection could not be authenticated. Reason: User ID or password invalid

So as shown above I get this error message while trying to add values to my Java derby Database. Full error-message is as shown: run: at java.sql.SQLNonTransientConnectionException: Verbindung konnte nicht authentifiziert werden. Grund:…
0
votes
1 answer

JPA connect to Derby Database with Hibernate-ORM related problem in Quarkus

Currently, I am trying to build an API with JPA and Derby Database, and I've got some problems with Hibernate Reactive/Hibernate ORM. Particularly, I want to connect to a Derby database server as…
blank
  • 37
  • 1
  • 7
0
votes
0 answers

I can not initiate derby schema

when i run $HIVE_HOME/bin/schematool -initSchema -dbType derby the output is Metastore connection URL: jdbc:derby://localhost:1527/metastore_db;create=true Metastore Connection Driver : org.apache.derby.jdbc.EmbeddedDriver Metastore connection…
0
votes
0 answers

Intellij Idea in debug mode throw java.security.InvalidAlgorithmParameterException: DH key size must be multiple of 64

I have my java project in Intellij Idea, the app in the project connect to a database (apache derby). If I run the application not in debug mode I get no errors, no exceptions, it seems to work fine. If I run the application in Intellij debug mode I…
res1
  • 3,482
  • 5
  • 29
  • 50
0
votes
1 answer

Java Derby does not find database

Java Derby does not find a database even with "create=true" sentence. The code is following: public class Main{ public static void main(String[] args) { try { DriverManager.getConnection("jdbc:derby:javaDb;create=true"); …
JamesB
  • 569
  • 1
  • 9
  • 31
0
votes
1 answer

Bulk Import Derby error SYSCS_IMPORT_DATA CHARACTERDELIMITER must be CHAR(1)

Hi I trying to import txt values file into derby database using CALL SYSCS_UTIL.SYSCS_IMPORT_DATA. Each value column is delimited by ; and the line of values is delimited by LF Line Feed. 111142501;283811110;01111000;28111004;EXPO[LF] In my java…
0
votes
1 answer

How to fix Derby issue for Apache Netbeans IDE 15

Unable to start server for Derby in IDE 15. Tried to use Derby version 14, didn't work. Tried to change the location of the folder, didn't work. When I press start server, it just hangs there, does no further processing.
0
votes
1 answer

data migration from an embedded javaDB

I am currently working on swign based javaSE application utlizing an embedded JavaDB for storing the data. My data model (and DB ) is fully java based utilizing JPA entities and JavaEE Persistence mechanism. No SQL scripts are used in the creation…
achliopa
  • 19
  • 1
0
votes
1 answer

why database connection is failed when i am trying to running jar file of my java application and i am using a 'Derby' Embedded database

so i made a project with MYSQl database but because of the embedded facility of 'Derby' i switched to Derby database. I uesd Netbeans IDE in which my application is work perfectly (all operation are performed very well) but when i make a jar file…
0
votes
1 answer

how to get instance in singleton class to check if database is already booted by a JVM

I have an application with java derby database (Embedded). As you know can't use embedded java derby database for multiple JVM connection, but I need to put my application in a shared folder for multiple users. so, for checking database is already…
nik ravan
  • 1
  • 3
0
votes
0 answers

how to druid metadata storage replication and clustering

I am using derbydb as metastorage. However, I'm unable to find any material that either explains it in a decent fashion or is able to convince me that replication doesn't exist for Derby.
kwak
  • 1
1 2 3
99
100