MySQL Workbench is a visual database design tool that is developed by MySQL. It is the successor application of the DBDesigner4 project.

learn more… | top users | synonyms

0
votes
1answer
26 views

Concat a dynamic sql query

I'm taking my first steps into developing dynamic sql queries and I've got a question for the forum. Can a concatenated select statement be appended with additional concatenated statements (see below ...
0
votes
4answers
27 views

Selecting all data from all columns in a MySQL Database

Say I have the following data in a database DB1: Table1 id int (50) attribute varchar(255) Total Rows : 6550 Table2 id int (50) attribute varchar(255) attribute1 varchar(255) Total Rows : 10550 ...
0
votes
0answers
41 views

Error setting up Datasource using MySQL (4/5) in ColdFusion Admin

I'm very new to ColdFusion and mySQL but I'm trying to learn. Right now I'm using the learnCFinaweek site to try and get the basics down. I'm running into trouble when I try to add a new data ...
0
votes
1answer
18 views

MySQL Workbench connect to MS Access

I have a .mdb file on my computer that I would like to convert into a MySQL Schema and I have found that there is a migration tool within Workbench. However it doesn't seem to allow you to connect to ...
-1
votes
0answers
19 views

MySql Workbench/Mysql [closed]

I have a mysql db and I want to delete all the rows of a table within this db at a prefixed time(i.e. once a day). How can I do this in mysql Workbench or alternatively with a Mysql script?
1
vote
1answer
19 views

MySql Workbench access error on adding items but not on creating tables

I have an issue for adding items to a table in MySql. Situation: I have a sql script which is a file, locally located, it has following information: CREATE TABLE Regions ( RegionID smallint ...
0
votes
4answers
15 views

Illegal connection port value 'mysql' not able to fetch values from database

Hi I am trying to establish connections from my java to SQL workbench through the following code-- MysqlDataSource dataSource = new MysqlDataSource(); ...
-1
votes
1answer
29 views

missing mysql database from installation [closed]

So, I did something stupid. For some reason I decided to delete a database in mysql called mysql. Mysql-workbench flips out now that its missing. I've tried to get a fresh start by apt-get remove ...
0
votes
1answer
26 views

inserting data into new table from union of two tables

I have a following query that unions two tables Table1 and Table 2 ResultSet res = st.executeQuery(" select user_id, movie_Id, movie_name, user_name, rating, genre from Table1 union all select ...
0
votes
1answer
19 views

What to use in order to have full consolidated table in Mysql

I am creating two tables . Table 1 has following schema user_id int not null,autoincrement movie _id int not null movie_name varchar user_name varchar ...
0
votes
2answers
44 views

Join of two tables as to get entire records

I am creating two tables .Table 1 has following schema user_id int not null,autoincrement movie _id int not null movie_name varchar user_name varchar ...
0
votes
1answer
14 views

MySQL Workbench Database Migration - data truncates after apostrophe

I'm using MySQL Workbench Data Migration Wizard to migrate an MS SQL Server R2 database to MySQL database. The schema and data are migrating properly but for the fields having apostrophe, the data ...
1
vote
1answer
25 views

Checking for usename in mysql …If it exist then inserting into other table Otherwise the base table

Well i have the following table Table1 in MySQL workbench-- user_id int not null,autoincrement movie _id int not null movie_name varchar user_name ...
0
votes
1answer
22 views

MySQLt Workbench Constraints

I am using MySQL Workbench to create my data models. When i try to export the sql. it creates the Constraints for the Foreign keys. If there anyway i can prevent that to happen ? What are the ...
1
vote
1answer
15 views

Displaying and clearing values in label from database

Hello I have a datatable called Customer with the attributes CustomerID, Firstname and Surname. So far I have managed to display the labels with the correct customer connected to the correct ...
-1
votes
0answers
25 views

Update an existing table with new values

I have an existing table with about 1500 rows of servername and various values for each, (ip address, hardware info, etc). I have another table/or csv file with the same data but about 200 of the ...
1
vote
3answers
32 views

Is it possible to preload data by default, to the target database from MySQL Workbench?

There are certain tables, that does not often change: Country (ID / Name / Abbreviations) IPs by Countries (ID / IP Range) During the development, every time I modify something on the database I ...
0
votes
2answers
55 views

MySQL Workbench for MSSQL?

I generally use MySQL Wordbench for making my ER diagrams. Now, I have to make a diagram for SQL Server. Does Workbench have an SQL Server export feature? If not, are there free ER diagram software I ...
0
votes
2answers
18 views

Mass Update MySQL DB from CSV

I just added a new field to my Rails app which uses a MySQL DB. I have a CSV which contains values for the new field (name) for records already in the table. Article (table) _______________ id | ...
0
votes
2answers
31 views

MySQL. Query out the amount of sales between two specific date intervals

I am trying to write out a query with a category number, category name and the total sale for this category number between specific date intervals. SELECT k.CatNr, k.name, lin.Price * lin.Number ...
0
votes
0answers
20 views

Unable to restore database to Amazon RDS target, unable to create a user with sufficient privileges

This is the redacted output from Data Import/Restore in MySQL Workbench 5.2.47 23:16:23 Restoring H:\Clients\XX\XX\XX.sql Running: mysql.exe ...
0
votes
0answers
30 views

Unable to connect MySQL Workbench to RDS instance

Am following this tutorial http://thoughtsandideas.wordpress.com/2012/05/17/monitoring-and-managing-amazon-rds-databases-using-mysql-workbench/ I am not able to Test DB Connection while creating new ...
2
votes
1answer
24 views

Should store procedure cached in Mysql

Should store procedure cached in Mysql? If yes, How long it is stay in cache? In my case, When I call one store procedure first time, It is giving me result in 1sec, after that it gives me result in ...
0
votes
1answer
23 views

phpMyAdmin error: Cannot return a ResultSet in the Given Context in mysql

Please have a look at the code below: DELIMITER $$ DROP PROCEDURE `mostPopular` CREATE PROCEDURE `mostPopular`() BEGIN DROP view if exists mostRec; create view mostRec as select count(*) as ...
0
votes
2answers
74 views

Display/Track/Delete Mysql Rows via JSP pages

Im having the following Problem: I Have made a web application which runs on Apache Tomcat. Im using a Mysql Database as backend database for my application. The application Simply provides a GUI ...
0
votes
1answer
54 views

ERROR 1452: Cannot add or update a child row: a foreign key constraint fails

I have created two tables in MySQL 5.6.11 as shown below by means of MySQL Workbench 5.2.47. The country table: delimiter $$ CREATE TABLE `country` ( `id` int(11) NOT NULL AUTO_INCREMENT, ...
0
votes
0answers
31 views

how to display to ten values from a MySQL database using JPA and Netbeans?

I am creating a simple inventory management system using MySQL database, JPA and Netbeans..I am currently faced with a few issues.. (I have been coding using these technologies for only 2 weeks) 1. I ...
0
votes
1answer
23 views

how to spread the tables over whole page

I generate EER Diagram by MySQL Workbench: As you can see all tables placed in one place and manually to spread them all is very annoying job. Is there a way to automatically spread them over ...
2
votes
2answers
25 views

MySql localhost vs Amazon RDS instance

I have surprise with some of mysql performance. When I run simple query 'SELECT 1;' on my local host (mysql 5.6.x) using workbench, its execute in 0.000s, but the same query I ran on Amazon RDS ...
1
vote
0answers
25 views

How to nest an if statements in another if statemtn in mysql

I can not for the life of me understand why the "type = 1" is being ignored. Type is being set above and I have verified that type is either a 1 or 2. I can set that type = 5 and it still executes ...
0
votes
0answers
242 views

Compiling MySQL Workbench on Ubuntu 13.04

I am having problems compiling MySQL Workbench on Ubuntu 13.04. I downloaded the source from the MySQL site and during the configure part where it checks the dependencies it says: checking for ...
-1
votes
0answers
37 views

How to improve performance of asp.net Website,back end is Mysql server

How to improve performance of asp.net website ,we are using stored procedure for getting the data form database,Mainly we are using the "Data set" to stored the getting data ,it is best? any other ...
-7
votes
1answer
67 views

Is there any alternative to MySQL Workbench? [closed]

Amazing functions, but one of the most unreliable piece of software out there. What do you people use for (visual) database design and administration?
0
votes
2answers
27 views

Allowing multiple phone numbers in a database? [closed]

This is my first time posting here, so please bear with me if I am doing something wrong. I am hung up on one portion a homework assignment and was hoping that someone could point me in the right ...
0
votes
1answer
19 views

MYSQL Change Values based on Table values (Constraint or Trigger?)

Quick few questions on MYSQL syntax, it seems extremely hard to find these answers on google. Is it possible to set a constraint or trigger so that when a value of a column reaches a certain point it ...
0
votes
0answers
35 views

MySQL Workbench - Syncronize EER model with DB - Erno 150 Can't create table

I'm trying to synchronize my EER model with my DB in MySQL Workbench, and one table fails to syncronize. I also checked that my foreign keys have the same datatype as the column they refer to. Here is ...
0
votes
0answers
17 views

Different data directory for different database in mysql using linux OS [closed]

I am running Linux operation system,i wanted to create two database and i wanted to keep these database file into different location [not in default location] Ex- home\folder1\databasefilename1 and ...
0
votes
1answer
24 views

MySQL workbench: Check constrain in trigger

So i have created this table in MySQL Workbench called iOwe. It has a column called Pass(Y/N) on which i'd like to have a check constrain incorporated, which takes only the values "Y" or "N". I ...
0
votes
2answers
48 views

MySQL does not list sql file imported tables on a Mac with MySQL Workbench

I am unable to solve this. I have installed Zend Server on a Mac. I also installed MySQL Workbench. I have imported a SQL Schema from a .sql file to MySQL database via command line. The schema ...
0
votes
1answer
35 views

Create View in a Trigger

I have to use a view (not already created, because it's needed within that UPDATE TRIGGER) in an UPDATE inside an UPDATE TRIGGER. So this is my code: CREATE TRIGGER ...
0
votes
2answers
56 views

MySQL Errno 150

I'm creating a few simple tables and I can't get passed this foreign key error and I'm not sure why. Here's the script below. create TABLE Instructors ( ID varchar(10), First_Name varchar(50) NOT ...
0
votes
1answer
52 views

Mysql workbench foreign key options [Restrict, Cascade, Set Null, No Action], what do they do?

In foreign key options on update and on delete. What does each field [Restrict, Cascade, Set Null, No Action] do?
0
votes
1answer
57 views

How to search a MySQL blob column for a partial hex string?

I would like to SELECT a table row by searching a Blob's hex string value. I have a blob value that I want to find whose hex representation is 0041b074351bfa1092fd740c146f26ae. I would like to able to ...
-1
votes
0answers
25 views

Export localhost mysql to mysql workbench [closed]

I have a localhost mysql database with a lot of data and just 4 tables. Now i add my data local because on my internship they have a database i can only access through mysql workbench for some dark ...
0
votes
1answer
144 views

MySQL Workbench Cannot Connect to Database Server

I have exactly the same problem as the poster in question 7864276 except that in my case I've verified that the server is actually running, e.g., from within MySQL Workbench by right-clicking on Local ...
0
votes
0answers
29 views

File Encoding Issue when opening script that contains Blob

When I load a value from file (an image) into a field with datatype Blob, then export it via Admin Tab -> Data Export and open it in an SQL tab i get a File Encoding Problem Message. Unknown File ...
0
votes
1answer
37 views

Case statement in MYSQL, Case not found for?

I have a CASE statement that takes in the first 40 records of a table, it has different procedures based on a counter - @COUNT. Unfortunately when I run the procedure without a else it does not work ...
-1
votes
1answer
55 views

How to insert value into auto identity column in MYSQL [closed]

I would like to insert value into mysql innodb table Auto_Increment column? Can you please help me!! Thanks in advance.
0
votes
2answers
63 views

Error Code: 1292. Truncated incorrect DOUBLE value: 'yes'

When I execute this SQL query: INSERT INTO archi(nodo1,nodo2) SELECT p.nodo,p2.nodo FROM polinodo p,polinodo p2 where p.way=p2.way and p.idpolinodo!=p2.idpolinodo and p.idpolinodo=p2.idpolinodo-1 ...
-1
votes
1answer
226 views

MySQL Workbench error: “failed to connect to mysql at 127.0.0.1:3306 with user root” [closed]

So I was trying my luck with MySQL Workbench (5.2.47 CE) following a video tutorial in YouTube. I wanted to Open Connection to Start Querying. So I clicked on it and the Connect to Database window ...

1 2 3 4 5 13