384 results found
-
helper for json script
Hi, we use a lot of json caluses in our db procedures e.g.:
select
*
into
#parcel_data
from
openjson(@parcelData, '$')
with
(
"ParcelId" int '$.ParcelId',
"ParcelTypeId" int '$.ParcelTypeId',
"ShipmentId" int '$.ShipmentId',
"BarCode" nvarchar(100) '$.BarCode'
);
Why don't You prepare such a helper in dbForge Studio ? It could be located on the level of "Generate script as" menu for each table for instance. To have the possibility to prepare our own plugins would be also a good idea.1 vote -
Save a file even if it contains errors
If a DML query contains an error, the file is not saved. It is absurd to have to go into Notepad to save a file.
1 vote -
Mr D
How do I save the DB connection ...similar to how I can register servers in SSMS. Thanks
1 vote -
SQL Monitor
How I can I monitor last 100 queries for a particular DB
1 vote -
Implementation of Registered Server Groups
In SSMS, there is a feature called Registered servers, which allows for creation of groups of servers eg. Development, which contains sql server instances for all development servers.
With this option, a user can execute the same script against all the servers in the group.
This can be useful in a scenario such as if you need to execute a query against your database in each of your retail locations.
I would like to see this feature implemented in dbForge Studio IDE.1 vote -
import dbf file
When we do an import for dbf file, the first file is ready to create a new table with the file name for the table's name. At the end, when the import is done, we can click on "Import more". We select a new dbf file but it tries to import in an existing table or the previous table name and a number at the end. It must always be the file name for the table name when we want to import to a new table.
Thanks a lot!1 vote -
intellisense in select
if you write part of a column name, intellisense gives you a list to chose from, but automatically selects the first row, so you can confirm the choice by pressing TAB. That works in WHERE, ON, GROUP BY, ORDER BY statement, but not in SELECT. I am quite sure that in one old Release this worked. not sure, why it does not anymore.
Right now in SELECT you have to write part of the column name and then use cursor down to select the first item on the list, then press tab.1 vote -
Copy Columns in the table designer the same way you can in MS SSMS
In MS SSMS I can select multiple rows in a table definition and then do a Control-C to copy those definitions. I can then go to a different table (or even the same table) and paste the definitions in.
I typically have 4 columns that are always on my tables (DateCreated, CreatedByID, UpdatedByID, and UtcTimestamp) and it's easier to just copy them from another table then to enter them in by hand every time I create a table.
1 vote -
Multi-Select rows in the Table Editor
I want to be able to multi select rows in the table editor so that I can delete them all at one time.
1 vote -
More details on Warnings
I added new fields and moved them up, it gave me a warning of "The object requires rebuilding, this may result in the loss of some properties.". Is there a way to tell what properties those are or is it just an warning that might not even exist?
This feels like a CYA warning message. If I'm going to lose something, it would be nice for me to know what it thinks I'm going to lose.
1 vote -
Add Spell Check to Column Names, Table Names, etc...
If I have column names or table names like
MyTabel, it should be able to split it apart at the capitalizations and tell me that Tabel is spelled incorrectly and offer suggestions on how to fix it.
Same goes for Table Names, Stored Procedure Names, etc...
1 vote -
DISTINCT and TOP formatting
EDIT: Apparently this editor doesn't support any formatting?
I want DISTINCT and TOP to line up with the first column not with SELECT.
So this:
SELECT
DISTINCT
TOP 100
t.[TraineeName]would be
SELECT
DISTINCT
TOP 100
t.[TraineeName]1 vote -
Please make your window selection dialogs less useless.
The window selection dialogs have a Name and a Path column. You can resize the dialog to your heart's content, but it will not have any effect on the width of the Name. Which, if the window is displaying a DB object, will have the schema part of the name prepended. Which, if th. e schema part of the name is long enough to be useful, will cause the interesting part of the name to be truncated.
Provide an affordance that will allow users to resize the width of the Name column in the window selection dialog. Alternatively, provide a…
1 vote -
create schema
From the Database Explorer > DatabaseName > Security > Schema, be able to right-click and Create New Schema
1 vote -
bug:Bug in table editing
SELECT * FROM BaseProfile A
JOIN BaseProfile_Trl A1 ON A.ID = A1.ID WHERE A1.id=20200215edit table:BaseProfileTrl,After editing one row of data, I found that the entire table got updated.
1 vote -
SQL Editor - add word wrap option
I would suggest that the possibility of having in the editor the features of "Word Wrap" and "Show visual glyphs for word wrap" as they exist in the editor of Visual Studio be added.
1 vote -
Existence logic needed for triggers
When a new trigger is created, the script tests for existence first. So if the trigger does not exist, it will not create it. It should not test for existence as it will never create the trigger. It's unnecessary to check the object's existence if the product is using CREATE OR ALTER trigger.
1 vote -
Auto re-draw causing loss of user specified relationship lines on diagraming tool
Fix issue with diagram tool auto redrawing relationship lines when tables are dropped and recreated with no changes to relationships from old to new tables.
Specifically I reverse engineered my tables into the database diagraming tool. Then painstakingly organized the tables then adjusted all the relationship lines so they take a short path and do not cross then saved the diagram.
When re-opening it everything is fine. But - if I ever drop and recreate the tables (e.g. with a script to change the schema) the diagram tool auto-redraws all the relationships and the diagram becomes a mess.
Please fix.…
1 vote -
formating Value and Numbers in result of Query Like show numbers separated by separators
There is an option to change the way Date and Date-Time shown is the result of Query if you add other thing like show numbers separated by separators etc.
1 vote -
Add filter for Object Search
Please add a filter to Object Search results like 'Display distinct names of objects only' (or similar),. That will help with searching objects (tables/views) that contain certain data, but not data itself. Say when I search for string 'rufhweirfi' in my a database, it returns me 4000+ rows from 58 tables, but I need only names of objects that contain such data. That would help with searching pairs master-detail in database that has no relationships for tables.
1 vote
- Don't see your idea?