We don't support this right now but it is an enhancement. QAT-8458
↧
Forum Post: RE: command line to start Toad for MySql
↧
Forum Post: RE: how to enable execute all button ?
As long as you have some sql in the editor and have open connection this should be enabled. Can you post full screen image so I can see what might be happening?
↧
↧
Forum Post: RE: Toad for MySQL 7.7 will not connect to anything
glad is was a simple solution[:D]
↧
Forum Post: I need some clarification on the the constrains window in TOAD
I had the foreign key constraint concept explained to me today, after that I started rummaging though Toad and found this Constraints tab. I have a few questions. Does the source columns represent the primary keys and the destination columns the foreign keys or is it the other way around? Or does it work just plain differently? Second why is there an option to select multiple columns for both source and destination? Isn't a single source and destination column enough to slave one of the tables to the other? Or do those do something else in Toad? Lets say I have 3 tables people, pictures and stats. And I wanna constrain a column named id from people with columns named people_id in pictures and stats. In this case I should select the table people. create a new constraint for it and mark the source column as id, the destination as table pictures column people_id, than do another separate constrain for the stats table? Would this act the same way as a foreign key constraint and while I have cascading allowed, allow me to delete a line from table people and automatically deleting lines from pictures and stats as well?
↧
Forum Post: RE: Bug?? in Schema comparison, Default values are ignored in the case of empty string.
Hi, I am not sure your default value (") is two single quote or just one double quote. If you type two single quote or just one double quote on MySQL Workbench, the generated create statement is different. CREATE TABLE `new_table` ( `idnew_table` int(11) NOT NULL, -- insert value null `two_single_quote` varchar(45) NOT NULL DEFAULT '', -- insert value " `double_quote` varchar(45) NOT NULL DEFAULT '"', PRIMARY KEY (`idnew_table`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; Thanks, Sandy
↧
↧
Forum Post: RE: Default '' is not recognized in the Schema Comparer
I have a similar situation in default '' when comparing columns with default '' ( double single ping) to get an empty string. It looks like Toad is ignoring the double ping '', however testing with a default of 'x' just for fun made the schema compare work just fine.
↧
Forum Post: RE: Bug?? in Schema comparison, Default values are ignored in the case of empty string.
Hi Sandy. I am using two ' with nothing in between them. The schema compare ignores the default of '' (2 x ''), as soon as something is in between them then the schema comparison in fine (like comparing 'x' with NULL) I suspect that the schema compare ignores the empty string ( the default '') and considers this NULL, sofar only a suspicion though.
↧
Forum Post: Object reference not set to an instance of an object error while exporting data to SQL query in Toad for MySQL 7.9.0.637
11:04:18 ч. Thread (20) Export Started [31.8.2016 г. 11:04:18 ч.] 11:04:18 ч. Thread (20) Export Wizard: Building object list 11:04:19 ч. Thread (20) Exporting Data (1 of 1) 11:04:19 ч. Thread (20) Object SQL Query started. 11:04:19 ч. Thread (20) Writing rows 0 - 1 11:04:19 ч. Thread (20) Exception in WriteRows 11:04:19 ч. Thread (20) Object reference not set to an instance of an object. 11:04:19 ч. Thread (20) Writing rows Finalize 11:04:19 ч. Thread (20) Object Table Result Set finished with error: Object reference not set to an instance of an object. 11:04:19 ч. Thread (20) at Quest.Toad.ImportExport.Writers.WriterBase.WriteRows(FastTable fastTable) at Quest.Toad.ImportExport.ExportObjectData.StartTableWrite(Object context) at Quest.Toad.ImportExport.ExportObjectData.Begin(LogEventHandler logEventHandler, Dictionary`2 connections, Object context) 11:04:24 ч. Thread (20) Export Finished [31.8.2016 г. 11:04:24 ч.]
↧
Forum Post: RE: Object reference not set to an instance of an object error while exporting data to SQL query in Toad for MySQL 7.9.0.637
I have this same problem in Toad 7.9.0.637. It works okay in 7.7.0.579 Exporting a query with the Export Wizard doesn't work. Exporting the whole table works, but not a query. To reproduce Event log: 2:10:22 PM Thread (25) Export Started [8/31/2016 2:10:22 PM] 2:10:22 PM Thread (25) Export Wizard: Building object list 2:10:22 PM Thread (25) Exporting Data (1 of 1) 2:10:22 PM Thread (25) Object SQL Query started. 2:10:22 PM Thread (25) Writing rows 0 - 13374 2:10:22 PM Thread (25) Exception in WriteRows 2:10:22 PM Thread (25) Object reference not set to an instance of an object. 2:10:22 PM Thread (25) Writing rows Finalize 2:10:22 PM Thread (25) Object Table Result Set finished with error: Object reference not set to an instance of an object. 2:10:22 PM Thread (25) at Quest.Toad.ImportExport.Writers.WriterBase.WriteRows(FastTable fastTable) at Quest.Toad.ImportExport.ExportObjectData.StartTableWrite(Object context) at Quest.Toad.ImportExport.ExportObjectData.Begin(LogEventHandler logEventHandler, Dictionary`2 connections, Object context) 2:10:25 PM Thread (25) Export Finished [8/31/2016 2:10:25 PM] Exporting the whole table from Object Explorer works. It works in 7.7.0.579 Log: 2:22:35 PM Thread (28) Export Started [8/31/2016 2:22:35 PM] 2:22:35 PM Thread (28) Export Wizard: Building object list 2:22:35 PM Thread (28) Exporting Data (1 of 1) 2:22:35 PM Thread (28) Object SQL Query started. 2:22:35 PM Thread (28) Writing rows 0 - 13374 2:22:35 PM Thread (28) Writing rows Finalize 2:22:35 PM Thread (28) Object Table Result Set finished. 2:22:35 PM Thread (28) Export Finished [8/31/2016 2:22:35 PM]
↧
↧
Forum Post: RE: Object reference not set to an instance of an object error while exporting data to SQL query in Toad for MySQL 7.9.0.637
Hi, I was able reproduce it but I am afraid we are not able fix it on your side. I created task for fix: QAT-8553 Filip
↧
Forum Post: Unknown MySQL error
Hello everyone. When i open MySQL database i recieve the following error message: Unknown MySQL error Does anyone have an idea as to what may be causing this?Please suggest me something for MySQL fix? Regards, Keith
↧
Forum Post: RE: Unknown MySQL error
Thanks for help
↧
Forum Post: RE: Toad for MySQL 7.7 will not connect to anything
documents.software.dell.com/.../resolved-issues
↧
↧
Forum Post: RE: How to add a key column?
Add a new column and set it as the primary key with AUTO_INCREMENT. Doing so will create a new column and automatically add a unique id for each row.
↧
Forum Post: RE: Bug?? in Schema comparison, Default values are ignored in the case of empty string.
Is there a way to contribute to Toad? Any source & build+debug access to obtain. My '' issue as default value is bugging me, and I am willing to put an effort into the issue if I can.
↧
Forum Post: RE: Unknown MySQL error
Thanks for help. Best answer
↧
Forum Post: RE: Bug?? in Schema comparison, Default values are ignored in the case of empty string.
Hi Laro Thanks for your input, this is a bug and I can reproduce in my side. Issue https://toadjira.labs.dell.com/browse/TMY-69 created for it.
↧
↧
Forum Post: Isn't there a download for mysql on osx?
I visited the downloads page but I didn't see an option for (mysql mac) I tried the mysql and downloaded but could not execute because it is for windows.
↧
Forum Post: RE: Isn't there a download for mysql on osx?
No, it only runs on Windows - the list from the requirements is: Windows Server® 2003, 2008 and 2008 R2 64-bit, Windows® XP Professional, Windows Vista®, Windows 7 and 8 (32-bit or 64-bit)
↧
Forum Post: RE: Option to turn off table schema popup
I did confirm that to be true. Someone forgot to merge that feature into the TMySQL code branch, I will get this into the next release.
↧