Tagged Questions
The databasemetadata tag has no wiki summary.
5
votes
3answers
2k views
JDBC DatabaseMetaData.getColumns() returns duplicate columns
I'm busy on a piece of code to get alle the column names of a table from an Oracle database. The code I came up with looks like this:
DriverManager.registerDriver (new ...
4
votes
2answers
83 views
name is already used by an existing object
In this code I am trying to delete the tables if they already exist every time I run the program, but the control is not going inside the if statements. table1 and table2 are present in the database. ...
2
votes
0answers
45 views
JDBC with Spring slow metadata fetch Oracle
I am using the Spring JdbcUtils.extractDatabaseMetaData() method to analyze the database. The function calls a callback and hands over a DatabaseMetaData object. This object provides the ...
2
votes
3answers
466 views
How to get all table names from a database?
I'd like to retrieve all table names from a database schema, and, if possible, get all table starting with a specified prefix.
I tried using JDBC's connection.getMetaData().getTables() but it didn't ...
2
votes
2answers
651 views
What is the Python equivalent to JDBC DatabaseMetaData?
What is the Python equivalent to DatabaseMetaData
1
vote
2answers
53 views
Error while trying to test if a specific table exists in a MySQL database using JDBC
I want to check wether a table named basestation exists in a MySQL table from a Java program using JDBC. My code is:
conn = DriverManager.getConnection(url, username, password);
DatabaseMetaData dbm ...
1
vote
2answers
493 views
Why I cannot debug a DatabaseMetaData?
I've a strange situation with a little application in Java using a JDBC-OBDC. I'm inspecting a Database using the DatabaseMetaData Class. When I execute the program, everything works without ...
0
votes
0answers
40 views
What is user metadata catalog?
I am a newbie in Data Warehouse and I have a question regarding user metadata catalog. I am trying to create user metadata catalog for my data warehouse and below are the requirements from my ...
0
votes
0answers
9 views
Database Metadata about Views
Is there anyway to use the DatabaseMetaData method getColumns to retrieve the columns of a view? Or what other ways are there to do so?
Thanks in advance!
0
votes
0answers
119 views
Progress Database - modify date column
Inspired by This Post about code coverage for sql databases, I started thinking about my production system. Over 1200 tables, many of which are unused. Many tables over 100 columns, many of which are ...
0
votes
0answers
41 views
Drupal Modules for Automated Metadata Conversion
I would like to convert catalog record metadata from a MARC format to DCMI for a digital repository in a drupal platform. I have best practices and crosswalk information but wonder if there is a way ...
0
votes
1answer
261 views
Can I change the Fetch Mode in a Resultset from a DatabaseMetaData query?
I'm inspecting a Database using an DatabaseMetaData instance. I get all the information of the tables in the DB and I iterate all the Resultset without anyproblem.
At the end of the iteration, I want ...
0
votes
1answer
292 views
How to filter tables using Connection.getMetaData().getTables
I have a huge schema that contains my application table, I need to return these tables only.
I've used the following:
ResultSet publicTables = jdbcConnection.getMetaData().getTables(null, schema, ...
0
votes
1answer
191 views
Databasemetadata getting column details
I use databasemetadata to find the column size. But getColumns(null,null,"table_name",null) returns an empty resultset. I checked for the table by querying it and the table is present. Where is the ...