Quantcast
Channel: MySQL Forums - MySQL Workbench
Viewing all 3733 articles
Browse latest View live

Python plugins provided as compiled *.PYC files? (1 reply)

$
0
0
Hi,

is it generally possible to provide Python plugins as compiled *.PYC files to the public, that is without actually having to provide the source code?

Karsten

Import Failure (1 reply)

$
0
0
I tried several Versions of Workbench, with 6.2.5 it was possible again to Export my databases.
Now I also tried to Import the databases (on another machine), but there is always the error:
ERROR 1046 (3D000) at line 22: No database selected

This is also the same with the beta release 6.3.1.0

I tried to Export/Import the DB to/from a Folder, but also from a dump-file. When I try to Import the DB from a dump file, then I can not "select database objects to Import"

What's the Problem? Do I use the Workbench in a wrong way?

Password timeout (1 reply)

$
0
0
Even though I have changed the setting for both of the following to 3600

DBMS connection keep-alive interval (in seconds) 3600
DBMS connection read time out (in seconds) 3600

Under Workbench Preferences > SQl Editor

After inactivity of 5-10 minutes; it asks for the password. What am I doing wrong? Where else, can keep connection for 1 hour be set?

Result grid is not visible (1 reply)

$
0
0
Hello,

I neet help to activate the result griud in my Workbench 6.2.
I cant find any help to this issue?! In the View I have no options to result grid?!

Can anyone help me, to activate the result grid, I spent 1 hour with google and cpould not find helpfully informations.

Thanks!!!

Michael

Need more control over colors (1 reply)

$
0
0
Why are font colors and background colors still so restrictive in the Fonts and Colors section? I don't want to do anything exotic, just the following:

- Change the background color in my query editor window from white to something more relaxing to my eyes

- Change the font colors of different types of text, for example comments. The font color of comments in the sql editor is super light gray, and against the white background, is almost unreadable to my eyes. It seems that being able to change a few basic things like this should be a super easy code change for the awesome mysql editor team.

Please...

MySQL Workbench 6.2 not displaying text in panel options (no replies)

$
0
0
Anyone has any idea why cant i see text next to checkboxes in panel.

Forward engineering panel.

6.2 Workbench (no replies)

$
0
0
Forward engineering option panel.
Text is not showing next to checkboxes.

Can somebody post screenshot of this panel with all the text so i know the order of the things. I want to DROP objects before each CREATE object and GENERATE DROP SCHEMA.

Thanks.

Installed Workbench in both CentOS and OpenSUSE won't launch (no replies)

$
0
0
I installed workbench on both my CentOS and OpenSUSE environments, in both I was not able to launch Workbench. Icon is visible, but does not launch. I was able to successfully install and run in the Windows environment.

Live db tables got overwritten.. (no replies)

$
0
0
I am new to MySQL and workbench. I was trying to restore a db with different name and live db tables got overwritten. Is there any way to recover? Why did it overwrite even after I asked to different schema? Is it by default or any settings I need to do at workbench? Help will be really appreciated.
Thanks

restore issue (no replies)

$
0
0
I am new to MySQL and workbench. I was trying to restore a db with different name and live db tables got overwritten. Is there any way to recover? Why did it overwrite even after I asked to different schema? Is it by default or any settings I need to do at workbench? Help will be really appreciated.
Thanks

Migration- Table name are not correct and truncated (no replies)

$
0
0
Hi,

I want to do database migration from MSSQLServer to mySql. some tables in MSSQL have a long name and when I migrate these tables it seems their names are truncated in mysql.

for example:

in MSSQL "CommonProviderSystem_Provider_ProviderTypeProviderOptionProviderDataValue" table will change to "CommonproviderSystem_Provider_ProviderTypeProviderOptionProvid1" in MySql


it's worth to mention that I've changed the source code of mysql and set 128 instead of 64 for NAME_CHAR_LEN variable so I can add manually a new table with a long name in workbench but not in the migration process.

how can I fix this?
Thanks in advance for any help.

Regards,
Zohreh

Problems w. Setting Up WB Schema. (no replies)

$
0
0
I am having extreme problems with trying to set up a Schema in Workbench 6.2. I guess that I forgot my password. can someone please help me with this?

Peter Can't Set New Schema In WB (no replies)

$
0
0
Peter Brawley I Can't Set Up A New Schema In WorkBench! It just flat doesn't take my password. How do I reset my password? Sorry for this "newbie" question.

Foreign Key Relationship creates new column using EER Diagram and INNODB (no replies)

$
0
0
I cannot establish a foreign key relationship (in INNODB style) using MySQL Workbench's EER Diagram. Every time I create a 1-to-many join, it creates an additional column as you might expect with storage_engine = MyISAM.

The default sql_mode for the database is sql_mode=traditional (I cannot change this setting as the db is on a shared server.)

The default storage_engine = myisam (I cannot change this setting as the db is on a shared server.)

Using MySQL Workbench 6.2 (for windows x64) my connection specifies (for the session) SQL_MODE=STRICT_ALL_TABLES.

Additionally, all my tables are set to storage_engine = InnoDB

Finally, within the "Workbench Preferences" ==> Modeling ==> MySQL:
the default storage engine is set to InnoDB
and
SQL_MODE to be used in generating scripts is set to STRICT_ALL_TABLES

Steps...

1. I reverse engineer the db
2. Create a join in EER Diagram

A new column is created in the table to which I am establishing the foreign key. I have no idea how to prevent this and create the relationship as expected using engine InnoDB.

Possibly despite all my settings, it is still using MyISAM ?

Any help on this is greatly appreciated. Thank you in advance.

How to edit data to 2 tables using Result Grid or Form editor (1 reply)

$
0
0
I can edit the data in both tables individuality with no issue. But how do I edit data in 2 tables using MySQL Workbench (or can I)? I use the below query to get the data but unable to edit it from the table (or using Form Editor).


SELECT
*
FROM
TABLE1
INNER JOIN
TABLE2 ON TABLE1.ID = TABLE2.ID
WHERE
TABLE1.ID = 1

Disable Definer (no replies)

$
0
0
I've been use mysql workbench ce for my development , what I like is that it has synchronize method which is good. Now I have three database server for a development : my own computer, test server, and development server.

Updating table from one server to another is easy using the synchronize method, but for trigger, procedure ( routines ), event and function is very difficult.

For above type, mysql workbench automatically add "DEFINER" stuff whenever you create or alter it, which of course will be different in each server. And due to that during synchronization, I must edit manually or else it will always be failed. Selecting option "Ignore check definer" also not working.

For function and routines every time before updating the other server I just login to mysql console and run this

update mysql.proc set definer = '' where db = <my db>

Then this will update my model in mysql workbench and remove all definer string. But for trigger there is no easy way, and I cannot update INFORMATION_SCHEME.TRIGGERS cause it's only a view like table.

Perhaps we can disable this function in mysql workbench ?

Importación (1 reply)

$
0
0
Estimados foreros, soy nuevo en MySql, hice una tabla con varias columnas y queria importar desde un archivo Csv delimitado por comas, el cual genere desde una tabla en Excel, me fui a la opci;on de importar, busque el archivo y le di ejecutar, la información si me la trajo, pero resulta que puso todas las columnas del archivo Csv en el promer campo de la tabla que yo había creado y lo que ocupo es que en cada campo de la tabla quede cada campo del Csv que esta separado por comas. Si me pueden ayudar se los agradecería mucho.

Atte: David.

WorkBench 6.2.5 on Mac 10.10 (no replies)

$
0
0
I'm trying to use MySqlWorkbench to manage my SQL instances. I want to make some global changes.

As soon as I select the options file I get "error opening configuration file" "get_file_content" parameter filename must be an absolute path.

For configuration file in bottom of window it says "not configured".

If apply an option I get "Unhandled exception" nonetype object has no attribute __getitem__.

How did I get the workbench to recognize a config file I can save changes too?

About Workbench 6.2.5 (1 reply)

$
0
0
Mysql Workbench 6.2.5 is not working in windows 8 and windows10 Technical preview
The error shown "HtmlRenderer.Utils.FontUtils" exception thrown...

Editor Views Menu/Panel (1 reply)

$
0
0
Is there anyway to disable or hide the Editor Views Panel? I only ever use the Result Grid and it hides part of the grid behind it. I can not scroll to see it. I either have to make workbench bigger (because I have two screens it works but flows onto the second screen) or constantly adjust the other panels to make the result grid bigger to see all the data.
Viewing all 3733 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>