-1
votes
2answers
436 views

How to check if a DataBase exist or not after the connection is made JAVA

I have a big question... I have a database java program creation. I want to know if the database exists or not, and the if exists just connect, if not to create it. I tried this one: if ...
0
votes
2answers
3k views

How to check if record exists in another table and if not then add [duplicate]

Possible Duplicate: Insert statement that checks for duplicate before insert I'd like to check if a building id exists in the issue log table using the foreign key b_id. And if it does not ...
3
votes
5answers
430 views

How to check if a table already exists in the database by using MySQL?

Now I am using something like: dbResult = dbStatement.executeQuery("SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = '[e2]' AND table_name = '[emp101_messages]'"); ...
0
votes
1answer
669 views

Check if database exists in JavaScript

openDatabase(DB_SHORT_NAME, DB_VERSION, DB_DISPLAY_NAME, DB_MAX_SIZE) in JavaScript opens database or creates the database if not exists in browser. Is there any way I can able to check if database ...
0
votes
0answers
435 views

Create database if not exists timeout

I'm trying to do CREATE DATABASE IF NOT EXISTS databasename but get timeout errors. The tables in the database are quite large, some 100s of MBs. Doing the same thing on a smaller database works ...
1
vote
3answers
305 views

SQL SMS - Error - There is already an object named “genre” in the database

I'm trying to create a hypothetical videostore database and this error message comes up everytime I execute this query: DROP DATABASE videostore CREATE DATABASE videostore CREATE TABLE genre ( ...
0
votes
1answer
468 views

Performance Comparation Between sql SELECT NULL and SELECT 1

Which one is better for performance IF EXISTS(Select null from table) or IF EXISTS(Select 1 from table) ?
4
votes
4answers
1k views

MYSQL - Difference between IN and EXIST

MySql question: What is the difference between [NOT] IN and [NOT] EXIST when doing subqueries in MySql.
1
vote
2answers
406 views

Shuold I use not exists or join statement to filter out NULLs?

SELECT * FROM employees e WHERE NOT EXISTS ( SELECT name FROM eotm_dyn d WHERE d.employeeID = e.id ) And SELECT * FROM employees a LEFT JOIN ...
1
vote
4answers
5k views

Oracle: Check if rows exist in other table

I've got a query joining several tables and returning quite a few columns. An indexed column of another table references the PK of one of these joined tables. Now I would like to add another column ...
38
votes
8answers
55k views

How to check if mysql database exists

Is it possible to check if a (MySQL) database exists after having made a connection. I know how to check if a table exists in a DB, but I need to check if the DB exists. If not I have to call another ...
1
vote
3answers
3k views

Inserting an object to the db using hibernate, only if it doesn't exist

Let's say I have a mapped User object with a user_id as a primary key, and a mail column with a unique constraint. I want my program to save a User object to the users table only if it doesn't exist. ...