82 results found
-
Ability to navigate for procedures and functions
Add ability to navigate for procedures and functions as it realised in menu item Go To Definition for tables.
3 votes -
Add to the about help if the version is 64 or 32 bit thanks.
Toad for data point lets you know if you're running a 32 bit or 64 bit version of the software. It would be helpful if studio did the same. Thanks.
3 votes -
vi key bindings
vi key-bindings in sql editor would be amazing!
3 votes -
Spatial Viewer
I'd like to have a spatial viewer tab, like ssms, when geometry objects are part of a result set.
3 votes -
Ability to view list of private procedures/functions in package body from Database Explorer
Add to Database Explorer the ability to view the list of the private procedures/functions in package body. Otherwise, there is no possibility to navigate to the functions that are not specified in the package declaration.
3 votes -
New feature: Hide columns in table diagrams with a specific names defined by the user. For example: "TimeStamp", "LastUser" , etc.
New feature: Hide some columns in all table diagrams with a specific names defined by the user. For example: "TIMESTAMP", "LASTUSER" , etc. In some cases all tables owns some of theese fields that are not important in the diagrams and wastes space.
3 votes -
Support for UNION operator in Query Builder
Support for UNION operator in Query Builder
It's not always convenient to have many Views created in the database, when UNION can be used to join these in a single view.
Query builder does not support UNION at this time and it would be a nice addition.
3 votes -
Support schedule jobs in schema comparison
The schema comparison should allow to compare DBMS_SCHEDULER-derived objects, such as scheduled jobs, schedules, programs, chains, and so on.
2 votes -
Ability to select multiple schemas for creating snapshots
It would be nice if i can select multiple schemas for creating snapshots. "New Schema Comparison" window design is very handy and can be take as an example.
2 votes -
Add results grid bar from SQL Complete. - Max/Min/Avg/Sum/Count/Distinct totals.
Add results grid bar from SQL Complete which has an Excel like bar at bottom of query results. Max/Min/Avg/Sum/Count/Distinct totals shown, very handy for data review
2 votes -
add parametr parser to "Edit Parameters(ctrl+shift+P) window
Then i use query with many param i need write all it into the parameters table hand by hand.
select :p1,:p2,:p3,:p4,:p5,:p6,:p7,:p8,:p9,:p10 from dual
please add textbox what i put m.b. JSON as:
{p1:1,p2:2,p3:3,p4:4,p5:5,p6:6,p7:7,p8:8,p9:9,p10:10} and it asserted to query and used in execute.
And can optuinal add type:
{p1:[1,number],p2:[2,number], p3:3,p4:4,p5:5,p6:6,p7:7,p8:8,p9:9,p10:10} with varchar2 as default2 votes -
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 -
Add a browser schema panel
like the one in sql developer that allow a dinamic instant filter for object type
1 vote -
add line # to execute selection in output
When logging the query execution INCLUDE the Line# of the first line executed in parenthesis. Really useful if you executed a chunk of code.
Currently:
-- 6:11:56 PM --
testUSPNightly_related.sql: Query opened in 0.009s [0.008s exec, 0.001s fetch]Suggestion:
-- 6:11:56 PM --
testUSPNightly_related.sql (239): Query opened in 0.009s [0.008s exec, 0.001s fetch]1 vote -
sort document outline - makes finding procedures names easier
sort document outline - makes finding procedures names easier
1 vote -
Support for Java Classes and Java Sources
Is there support for Java codes and classes? The objects are not displayed in Object Viewer.
1 vote -
Comparison and Snapshot
Some RDBMS distinguish between schema owner and data user. The data users schema is using synonyms to the schema owners schema.
While the data user has an higher limit of sessions the schema owner has a limit of 1 session only.
Here comes my feature idea - it would be good to ensure, that at least taking a snapshot is working with 1 connection only. Currently taking a snapshot and comparing schemas require more than 1 sessions.
But both of those functions (snapshot, schema comparison) are core functionality for schema maintenance and customer support.Thanks
1 vote -
Protocol of export/import
Hi,
dbForge posts after an export/import a protocol with number of rows, errors, etc.
Not listed is the file exported/imported or the used table.
For those users exporting/importing some tables in parallel this would be helpful!Ronald
1 vote -
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 -
Tables synchronization - provide option syncing different sets of objects as needed
With database containing many objects, and multiple environments, it would be great to have a feature where one can only work with a chosen set of tables and add/remove more as needed.
1 vote
- Don't see your idea?