Java is an object-oriented language and runtime environment. Java programs can run unchanged on most platforms in a Virtual Machine called the JVM.
2
votes
1answer
23 views
Return ResultSet with column names from postgresql Stored procedures
I have the following postgresql Function:
CREATE OR REPLACE FUNCTION readMessage(messageFor INT, qid INT = NULL, ctxt INT = NULL, messageFrom INT = NULL, byTimeStamp BOOLEAN = FALSE)
RETURNS SETOF ...
0
votes
0answers
24 views
how to restore sqlite dump file to sqlite database using java?
I generated dump file from java using .dump command so my back-up is ready now I want to restore it to once again so can anyone help me how to restore?
In stackoverflow I got this but nothing restore ...
0
votes
0answers
59 views
oracle sqlplus as sysdba startup error
Oracle 11g,
PC: 32G,8 thread cpu.
now three oracle instances has been running.
but.
sqlplus "/as sysdba"
prompt connect to an empty instance.
when I do startup command,
come an error:
...
1
vote
2answers
75 views
How can I execute a PL/SQL procedure for Oracle via JDBC?
I have a Java webapp with an Oracle DB, and I try to execute this statement at the end of a data migration script:
EXEC DBMS_STATS.GATHER_TABLE_STATS (ownname => 'MY_SCHEMA', tabname => ...
0
votes
0answers
43 views
How can we update 10000 rows at a time by using data from flat file? [duplicate]
I have records in a flat file and want to update my database using that data.
Currently I update it row by row and having a commit size if 100. I want to update 10000 rows at time, faster.
What ...
0
votes
0answers
116 views
Mysql ON DUPLICATE KEY UPDATE does not work with specific key
While, my query works on almost all entries, it does not work with one particular key.
"INSERT INTO highscores (uuid, name, score) VALUES (?, ?, ?) ON DUPLICATE KEY UPDATE score = VALUES(score)"
If ...
2
votes
1answer
200 views
Replicate or Call java encryption function in Oracle pl/sql
I am trying to replicate encryption/decryption method present in java in Oracle DB, so that data encrypted in java can be decrypted through Oracle Function.
Below is java code:
package com.encr;
...
0
votes
1answer
146 views
Oracle Database 10g JRE Error
I am trying to install Oracle Database 10.2 on OEL5U6(Linux System). I followed all the instructions from HERE.
When I am executing installer this return:
Preparing to launch Oracle Universal ...
2
votes
0answers
84 views
Insert Speeds for large batches
In my application, my INSERTs seem to be taking a major chunk of the time. I have a large number of objects in memory (~40-50,000) which i want to insert into a table.
Lets take a sample table
...
4
votes
3answers
1k views
Bulk database update/insert from CSV file
I am implementing application specific data import feature from one database to another.
I have a CSV file containing say 10000 rows. These rows need to be inserted/updated into database.
There ...
2
votes
3answers
55 views
Performance difference between searching table with 350 columns and searching table with 25 columns
I am currently doing some hibernate performance test. My requirement is to search for data in a particular column of a table containing 8 million rows and 350 columns. Currently, I don't have the ...
0
votes
1answer
152 views
How can I send HTTP requests from SQL Server 2012 to a non-.Net application? [duplicate]
I know basic only concepts (DDL,DML queries) of the SQL Server 2012. I explain the workflows of both my application and the database below.
Workflow of the application:
I build web application in ...
0
votes
0answers
25 views
Secure the jdbc and remote MySQL(windows) server connection [duplicate]
I'm a student doing a project which uses jdbc and mysql(on windows).
I have an app with connects to mysql server on remote host.
I just this connection to be a little secure.
I found this :
...
0
votes
1answer
448 views
How to retrieve data from Postgresql index using java
I am writing an application for searching, using text search of Postgresql. I am a beginner in Database. I created a Gin index and i am trying to get data from it. My code is
import ...
1
vote
1answer
71 views
Is there any way to retrieve “Messages” in SQL Server through JDBC?
By "Messages" I mean the Messages tab in the following figure, which includes "Warning", "n rows affected" and in the figure below, the execution time. In JDBC, ResultSet class is used to retrieve the ...
-1
votes
1answer
50 views
checking a folder whether required file is present at a regular interval [closed]
i have 4 folder hierarchy in a following format :
Hourly Daily Weekly Monthly.
In every folder i have files which is coming in a frequency based on their folder's name.
Now , i have ...
0
votes
0answers
52 views
If local data center nodes are down then it will get the data from other data center replica nodes?
I have recently started using Cassandra in our Production environment. We have a 24 node cross colo cluster with replication factor of 4. We have 12 nodes in PHX colo and 12 nodes in SLC colo. And ...
0
votes
0answers
93 views
How memory usage with mysql Statement.setFetchSize()
Suppose I am a selecting 100k rows from a mysql table using following java code
Statement stmt=con.createStatement();
stmt.setFetchSize(FETCH_SIZE);
ResultSet ...
0
votes
1answer
202 views
Best way to synchronize several databases in different computers
I must to do a POS program for college in Java, the problem is that I don't know how to link the different computers to a master computer that handles the changes of the database and sends them to the ...
0
votes
1answer
96 views
trying to execute SQL query on an oracle 10g database using java but getting ORA-00911 error [closed]
I am trying to execute a simple CREATE TABLE query on an oracle10g database using java. This is what I am doing:
Connection conn = //create connection
//open connection. No errors/warnings are ...
0
votes
0answers
147 views
MongoDB master - slave not syncing anymore
I have a setup with two MongoDB instances, one master and one slave. The sync worked perfectly fine for quite a while now, but suddenly stopped. The major problem is, that the guy who setup the ...
0
votes
2answers
169 views
Exploring and optimizing SQL performance of your system (PostgreSQL and Hibernate)?
Imagine you have inherited some project with extensive usage of SQL queries.
Let us assume that Hibernate is used as ORM and PostgreSQL as database, but thats not the point.
A question is: could ...
0
votes
1answer
138 views
Zip based search in mysql.
I want to implement a zip based search in mysql database, I am populating the location column in my database based on a drop-down where in I have predefined zip codes, now if a user wants to search ...
1
vote
0answers
128 views
h2 Java server synchronization and caching
I'm happily coding a client-server application in Java using H2 as database.
The server runs the database as an embedded local database while clients connect to it via TCP.
Now more and more I see ...
7
votes
2answers
2k views
Oracle 11g: performance improvements of inserts
I have a table of 500 millions of rows (and growing)
I did the following to improve performance of inserts:
On database side:
dropped all indexes and constraints
disabled logging
On application ...
0
votes
1answer
200 views
Is there an easy way to replicate MySQL data?
My software is deployed in various cities, each have a database, but they have different authorizations such as:
central DB
/\
/ \
DB1 ...
1
vote
1answer
153 views
Convert the IP Address range to two BIGINT for faster lookup
I am working on a project in which we need to do IP Address lookups. So for this we have got the datasets which will look like below and now the next steps is to populate this datasets in to the MySql ...
1
vote
1answer
230 views
What does the bit data type map to in a Java Domain Object
When you have a column of the bit data type what Class would be used to represent that in a Java POJO mapping that table to an object which is using javax.persistence annotations?
I tried Boolean, ...
1
vote
0answers
169 views
jTDS + stored procedures + prepareSQL = nesting level error?
Situation
A (Tomcat) Java web application using jTDS to connect to a MSSQL 2008 database. This Java application for 99% executes MSSQL stored procedures using user input.
Problem
The jTDS driver ...
1
vote
0answers
243 views
Cannot remove .bak file
I have a java application that:
Reads a .bak file from a windows fileshare and restores it in SQL Server on a remote windows server
Does various modifications on the database restored from the .bak ...
0
votes
2answers
509 views
Reloading .sql file from java into PostgreSQL - Windows
I am trying to reload a .sql script file into PostgreSQL from my sample Java application.
Script is successfully executed from console as well as from pgAdmin tool. But from Java, it hangs...
This ...
1
vote
2answers
221 views
Derby/SQL - How to increase performance when left joining and retrieving varchar columns
Through trial and error I found that if I do a left join such as:
SELECT
firsttable.id,
secondtable.id,
secondtable.varcharColumn
FROM
firsttable
LEFT JOIN
secondtable
ON
...
0
votes
1answer
69 views
How to determine why connection creation lasts so long?
On one of my servers (Windows 2008 Server), creating connection in Java to PostgreSQL server takes from 1,5 to 4 seconds! I have no clue how to start checking what can be wrong. I tried different ...
4
votes
2answers
763 views
Postgresql 9 speeding up indexed inserts (JPA)
I have an application which generates a lot of data which needs to be inserted quickly (something around 13million records). I use JPA 2.0/Hibernate with Postgres 9.1, and I managed to achieve quite a ...
0
votes
1answer
134 views
Structuring SQLite database with 2 relationships?
I'm current working on a SQLite-database in a android project which will store 3 types of objects; feed, users and posts.
There will be several feeds containing several varying users(a user can be ...
3
votes
2answers
6k views
How to view contents of table in mysql-workbench
Hi everyone am fairly new to mysql, I made a java program that stores data in mysql database. I am using this tool called mysql-workbench that can create databases, tables and much more. What I wanted ...
0
votes
2answers
530 views
MySQL database backup every day using java code
We are developing a Java web application using Spring, Hibernate and MySQL.
I want our application to automatically backup the MySQL database daily; is there any way to accomplish that with Java ...
3
votes
2answers
242 views
Query for fetching records from SQLite database on Blackberry
I want to fetch data from SQLite database for Blackberry.
There is one table with four columns: ID, FROM, TO, TIME
I want to fetch record on the basis of FROM, and TO values.
Where condition 1:
...
0
votes
1answer
555 views
java.sql.SQLException: Login failed for user 'sa'
I am having trouble connecting to my Microsoft SQL Server database through a jTDS connection:
Connection conn = DriverManager.getConnection("jdbc:jtds:sqlserver://localhost:1433
...
2
votes
2answers
1k views
java.sql.SQLException: Login failed for user 'sa'
I am having trouble connecting to my SQL Server database through a jtds connection:
Connection conn = DriverManager.getConnection("jdbc:jtds:sqlserver://localhost:1433/MnA;instance=SQLEXPRESS", ...
0
votes
1answer
120 views
Simple Search on 13 Terabyte Oracle Database to return relevant rows (.net app? Java?)
I am sure there are some easy ways to do this... I have a simple flat Oracle table which is 13 terabytes or so in size due to a large number of rows accumulating over the years. I need to do a search ...
2
votes
1answer
569 views
Derby slows down after 1.2 million records
I'm using a Derby database, mass insertions slow down to 1/4 to 1/6 the speed once there are 1.2 million records (about 6 GB database size, one major table, other tables are tiny). Is that normal? Is ...
3
votes
1answer
213 views
Table was not locked with LOCK TABLES when recreating an index
I have a weird problem when recreating the index. This is what happens. This is done through JDBC, in Java btw.
A table 'stuff' is truncated by a process. The application is reinitalizing a cycle ...
0
votes
1answer
3k views
How to take oracle 10g backup? [duplicate]
Possible Duplicate:
How to take oracle 10g backup?
I followed this http://www.oracle-base.com/articles/10g/oracle-data-pump-10g.php link to create a db backup. I used this command to create ...
1
vote
0answers
72 views
Command line switch to disable Coherence?
We have a Java app that happens to have the coherence jar in the path.
My application doesn't need it, so I'd like to pass some type of -D variable to the JVM to tell it to ignore coherence, or ...
1
vote
1answer
1k views
Error calling stored procedure from trigger in Oracle Database 11g
I'm trying to create a trigger that calls some Java code whenever a table is inserted/updated. I'm aware of possible performance issues, I don't need advice that I should not do this; I just need to ...
1
vote
0answers
152 views
Populate database column with drop-down menu item
I'm quite new to Apex and Oracle in general, but I would like to know how to populate a database column with the data from
the drop-down list
Currently I'm not getting further than simply creating ...
1
vote
0answers
167 views
mysql server is not sending result set back after query execution to client and staying in sending data state
When I pass a query from my Java application to mysql server, it stays in Sending Data state and not returning result set back to application.
When I execute the same query in SQLYog directly, it ...
0
votes
1answer
293 views
Preloading a Java library in DB2, similar to ORACLE's loadjava
Edit to add details to clarify, based on Chris' comment:
A Java stored procedure depends on external libraries. Locally it compiles successfully, since they are added to the classpath. But when ...
0
votes
1answer
156 views
Is any possible way to get warning message through by oracle [closed]
I am working in developing oracle data base tool, I want display warning message when executing function. For example:
CREATE OR REPLACE FUNCTION FN_OEDS_CONVERTDATE2(
V_DATE DATE) RETURN VARCHAR2
...