74 results found
-
You have a bug, this stored procedure has legal text, you can compile it, but it cannot be edited by the tool.
You can compile this stored procedure but you cannot edit with your tool, it says that the code is wrong, but it is not.
CREATE DEFINER = 'root'@'%'
PROCEDURE simulation.comparebill()
BEGIN
with mybill AS(
with billing AS(select c.day AS day,c.code AS code,cast(c.seconds as double) / 60.00 AS Mins,
case when r.code is null then 0.005 when c.jurisdiction = 'Inter' THEN
r.inter when c.jurisdiction = 'Intra' then r.intra else greatest(r.intra,r.inter) end AS rate,
ifnull(r.description,'Missing Destinations at $0.005') AS description
from (cdr c INNER join ratedeck r on(c.code = r.code))) select billing.day AS day,billing.description AS description,
round(sum(billing.Mins),2) AS Minutes,
round(sum(billing.Mins * billing.rate),2)…1 vote -
1 vote
-
Export to MS Excel 2007
Currently, exporting to MS Excel 2007 more than 1048576 rows, dbForge doesn't slipt to a new Sheet the remaining rows.
1 vote -
Character set 'perlogicalinterfacedtoview' is not supported
Comparing two databases I encounter this error.
I have selected "Detect mysql charset" as I am advised by the error message.
However I keep receiving this error.
Is there a way to manually add some encodings?
I have updated the application to the latest update.
DB forge Studio for Mysql Pro.1 vote -
Do not display Object Does Not Exist error when object exists
Scenario
DB user has SELECT privileges on mysql.proc.
DB user has ALL PRIVILEGES on schemaA, and NO PRIVILEGES on schemaB.
DB user is running dbForge for MySQL 8.0.40
A Stored Procedure (spA) in schemaA calls a Stored Function in schema A (fnA).
A Stored Procedure (spB) in schemaB calls the Stored Function in schema A (fnA).Therefore, in the Database Explorer tree view, schemaA is listed, schemaB is not.
Action
The user expands the list of Stored Functions in schema A, expands fn_A, and then expands the "Used By" list.
…1 voteAdminDevart (_, Devart) responded
Could you please provide us the result of the following query:
SHOW GRANTS FOR ’DB_user_name’@’host_name’You can send a reply straight to our support system at alexaATdevartDOTcom and supportATdevartDOTcom .
-
Error when importing DBF file with field type CURRENCY
A have dbf files with FoxPro database. When i trying to import file with CURRENCY datafields I get error: "Неверный или неизвестный тип колонки DBF"
1 voteAdminDevart (_, Devart) responded
Could you please provide us the CREATE definition of the table into which you are importing data and the imported .dbf file so we can reproduce this issue on our side?
-
Stop the view from being centered after moving an object with the arrow keys in the Database Diagram view
(or add an option if this is intended behavior). If I am zoomed in and move an object with the arrow keys the view will center on the object which makes moving something relative to something else that [was visible before the centering] very hard to do. It looks like the system is trying to guarantee the whole object is visible which results in the jumping if part of it is outside the view (clipped).
1 voteAdminDevart (_, Devart) responded
Could you please describe this in more detail? Screenshots or video will be also of help.
You can send a reply straight to our support system at supportATdevartDOTcom, so we will keep further correspondence with you on this issue via e-mail.
-
Selected cell of Data-Compare goes blank
Awesome product btw - (just) one annoying bug:
This relates to the top part of the data compare section; any selected cell to pick a related view turns white and doesn't show the number anymore - just the checkbox. Same for the source or target object name.
(Moving away to see the number again resets the list view; looking at the tag bubble of the list requires searching the columns since the position is always shifting based on the length of all numbers. Not so much fun on large data sets)
Thanks for your fantastic work,
Regards,
Martin.(customer since…
1 vote -
Data viewer stops working
The data viewer stops working intermittently. The only way to get it working again is to restart dbForge. I execute a query, and then right click on a cell in the results and select Data Viewer. In most cases this shows the data in the Data Viewer panel but it regularly jus displays nothing.
1 voteAdminDevart (_, Devart) responded
Please make sure you are using the latest build 6.2.280.
If the issue still persists in the latest build, please provide us the CREATE definition of the table and a test record so we can reproduce the issue on our side.
You can send a reply straight to our support system at supportATdevartDOTcom, so we will keep further correspondence with you on this issue via e-mail.
-
Issue with / character on its own line in a stored proc
I am working with other devs, one of which uses another app for sp's.
In his app he has a weird formatter, but it will place / on there own line as part of a division statement in the sp.
dbForge for MySQL won't even open the sp, says it cannot parse the sp, so I cannot even open the sp to edit it.
1 voteAdminDevart (_, Devart) responded
Could you please provide us the CREATE definition of the stored procedure and let us know what version of dbForge you are using?
You can reply straight to our support system at supportATdevartDOTcom
-
there is a BUG on the tool
When you reverse engineer a table with a column defined like this
tdate timestamp NOT NULL DEFAULT date(CURRENTTIMESTAMP) ON UPDATE CURRENTTIMESTAMP
after any change in the table, unrelated, you write the same column as
tdate timestamp NOT NULL DEFAULT 'date(CURRENTTIMESTAMP)' ON UPDATE CURRENTTIMESTAMP
which is wrong, the quotes cannot be there. The modification fails.1 voteAdminDevart (_, Devart) responded
Could you please provide us the CREATE definition of the table and specify what version of dbForge Studio for MySQL you are using?
You can reply straight to our support system at supportATdevartDOTcom
-
There's no effect in the setting of Hightlight SELECT Statement?
I remember this effect is good for the text editor of the SQL,but why is no effect now?
1 voteAdminDevart (_, Devart) responded
Could you please provide us a screenshot explaining this and describe the steps to reproduce the issue in detail?
You can send a reply straight to our support system at supportATdevartDOTcom and alexaATdevartDOTcom
-
copy and paste
copy anda paste from view data and excel not work
1 vote -
Fix start of comment detection at beginning of line
When editing SQL code in dbForge for MySQL 7.3.137, there is a case where it fails to detect the "start of comment" delimiter, and incorrectly intreprets the remaining text on the line as SQL code. This breaks the syntax highlighter, auto-complete, and ability to save stored procedures, functions, etc.
Specifically, when using a double-dash "--" to start a comment in MySQL, it normally requires whitespace after the double-dash to be interpreted as a start of comment delimiter. However, when the double dash is at the beginning of a line, it does not require whitespace.
See: https://dev.mysql.com/doc/refman/5.7/en/ansi-diff-comments.html
Example:
-- This is…
1 vote -
The wildcard characters “%” and “_” can be used in the Host and Db columns of either table. These have the same meaning as for pattern-match
Granting privileges has issues if the database name contains an underscore.
If the database privileges have been defined on the mysql command line or in pma myadmin the underscores are escaped so that an exact match of the database name applies.
eg.
GRANT select on
my\_db
.* TO 'user'@'host'DbForge does not escape the _ character and creates a new privilege:
GRANT INSERT on
my_db
.* TO 'user'@'host'If the 'my_db' escaped SELECT privilege is present then the INSERT privilege created by dbForge is ignored.
The underscores in database and host names should be escaped out by dbForge when it…
1 vote -
output window
1) meanwhile the execution of SQL script file if I click on some other window, ant then return in output window...the output windows shows the first output...and not the (more usefull) last one.
2) please fix it! I have more than one schema. I select the first one. Open a SQL file...launch it. Ok. I open a second SQL file...THE SCHEMA CHANGE without show me the change and dbForge run the SQL script on the second schema!!! Damn it!
1 vote -
Backup/Restore does not order Views so that a View that references another View is after the referenced View
When doing a Backup / Restore, It does order the Views so that if one View references another, the referenced View is defined first. I assume it orders them by case. Could you make it so that it defines the prerequisite views first or ahead of the views that require them.
Thanks for the amazing program, I realize this probably isnt a bug in dbForge but more a generic SQL issue but it would be nice if dbForge would transparently order them when making a backup.
1 vote -
Can't login to forum, goes around in circles
I don't know my username, I know my email, I can't request my password as it says my account is activated, but I can't get the activation email because I don't know the username apparently.
Someone help, very frustrating
1 vote -
Handle newline and carriage return in result data
When results from SQL query contain a newline/carriage return, only the first part of the result (until the first CR) is displayed.
For instance, if my DB field contains CR as follows :
My Business
1 park avenue
New-York
USAWhen getting this field content through select, only the first line ("My Business") is displayed in the result panel.
1 vote -
Can't follow Caret when input Chinese characters
When using Chinese PinYin input(such as QQ pinyin input), the input box will keep at the left-top screen, don't follow my cursor position.
1 vote
- Don't see your idea?