79 results found
-
PL/SQL print out ref cursor returned by a stored procedure to GRID tabs
Add feature to fetch from a ref cursor returned from a stored procedure (OUT variable) and print the resulting rows to GRID tabs.
Example code to return 2 ref cursors.
CREATE OR REPLACE PROCEDURE spgetsysdate(c1 IN OUT sysrefcursor, c2 IN OUT sysrefcursor) AS
BEGIN
OPEN c1 FOR SELECT SYSDATE FROM dual;
OPEN c2 FOR SELECT SYSDATE-1 FROM dual;
END;DECLARE
c1 SYSREFCURSOR;
c2 SYSREFCURSOR;
BEGIN
spgetsysdate(c1,c2);
--How to PRINT c1 and c2 to grid tabs like the DEBUGGER?
END;1 vote -
Version Control on Script Files for Oracle
All of the following from both the IDE and Command Line
Schema Export to SQL Files
Schema Compare of Database to SQL Files
Generate Create script from SQL Files
Generate Diff Script from SQL Files
Deploy Create Script to Database
Deploy Diff Script to Database
Commit SQL Files to Git Repo1 vote -
group tab
- like groupping SQL editor tab like browers vivaldi , which is helpful to a developer to manage the SQL editor easily.
- group result data grip like dbeaver not to run same sql query to get result set again.
1 vote -
Excel Export Wrapping Columns Default
Please either turn off or provide a configuration option to not allow cell wrapping for data exported to Excel.
Why is this even the default for export when it is not the default for worksheets created in Excel?
2 votes -
Simple sort of Columns in Query View
In some schemas/tables there may be MANY fields. It would be fantastic if there were a way to set (and remember) that tables could have their fields sorted alphabetically. It would then be really useful if there was the ability to Filter.
This second ask would be similar to how part of the Database Explorer works for filtering now.
3 votes -
Possibility to connect to DB over proxy
Possibility to connect to DB over proxy using ssh key for proxy authentication.
The same thing exists in Oracle SQL developer - SSH hosts, where you can add a list of hosts and attach DBs to them.
A lot of requests here in features regarding Connections. You could rework this connection window. Add ldap, win auth, ssh connections, proxy, etc. Add folders, organizers, maybe some other useful stuff for connecting to DBs...1 vote -
Suggested CODE
When designing a new table adding fields down at ide is an option that said "Script Changes" and then the software suggests a beautiful code, well it will be cool if that applies for coding to for example a simple drop:
DROP TABLE ???????????
Then the suggested code will be something like get this into a transaction as the first feature mentioned.1 vote -
Formatting CODE
When autoformat documents the commas go to the beginning of the line and sometimes is a requirement to get trailing commas.
1 vote -
Selecting a word (double click)
When I select a word (double click), show how many chars are in the selection on the taskbar of dbForge Studio
6 votes -
data compare
Data compare
Please advise if there is another way to achieve this.
Routinely we compare different schemas with 3000+ data tables. We change the table group we want to compare. Ex:
(a) Compare these 1000 tables from schema A against schema B.
(b) Compare these 500 tables from schema A against schema B.It is time consuming to select what to compare out of thousands.
Suggestion would be to have an input list to select source tables to compare with target. An example:
select tablename from usertables@A X where exists ( select 1 from inputlist
y where…1 vote -
Spatial Viewer
I'd like to have a spatial viewer tab, like ssms, when geometry objects are part of a result set.
3 votes -
include .DDL File extension
Dear Sirs,
We have .SQL and .DDL files. The latter is used with all of our create statements.Unfortunately, when I open a .DDL file, you do not treat it as SQL!
You have a TON of other file extensions. Can we add this one? And have it behave like .sql does?
Is this a case where if we assigned it in windows, or changed a registry it could fix it?
1 vote -
Persistent settings/customization in Data Editor
Data editor allows customization of the order and column width, set sorting and filtering records, also set how the text is highlighted (HTML, XML, …).
After a restart of the application, this setting is lost.
I mean the possibility of persistent individual customization for each table or view.4 votes -
Duplicate Objects enhancements
We would like to see expanded ability to duplicate objects. Right now can only do tables and views, but would like to see that expanded to packages, procedures etc.
Would also like the ability to copy to a different server and database. Right now, limited to duplicating to a different schema on the same connection.
Using the schema synchronization takes too long to compare schemas that have a lot of objects, when only one object needs to be synchronized from test to prod.
1 vote -
Frozen Columns
It would be good to have the possibility to freeze columns in the grid in the data edit, like in this example.
https://docs.devexpress.com/WPF/6302/contr
ols-and-libraries/data-grid/grid-view-data-layout/columns-and-card-fields/fixed-columns-and-bands1 vote -
DISPLAY OF DATE WITH TIME AND WITHOUT TIME
While executing select query In TOAD the data in date columns are displayed dynamically. If time is stored along with the date, it will show the date with time. Else it will show only date.
In DBForge, the date field is displayed always with the time component. If I remove the time format in settings, it will always show without time.
Is there a setting to achieve the TOAD functionality?
Thank You
1 vote -
excel export with sql code in one cell
When export to excel (and some others) add empty sheet named "Code" and paste full query SQL text on this sheet.
1 vote -
When creating a connection, it would be great to set a default object to open
When creating a connection, it would be great if I could select a default object and folder to open. For example: When I connect to a database, I have to select show all objects. I than need to select my desired Schema and than select the Tables folder to view the tables. I have to do this every time I disconnect and reconnect. It would be great to be able to select this as a default to do it automatically every time I connect.
1 vote -
Table Filter
Add ability to filter tables based on LIKE syntax and BETWEEN syntax.
4 votes -
export edilen tablolarda sıralama kriteri (örneğin primary key id artan ya da azalan olarak) belirlenebilmelidir.
export edilen tablolarda sıralama kriteri (örneğin primary key id artan ya da azalan olarak) belirlenebilmelidir.
1 vote
- Don't see your idea?