Your feedback is highly appreciated! Let's make Vertabelo even better.

0
Fixed

ERROR:Parse SQL timeout

Guy 2 years ago updated by Jarosław Błąd (CEO) 2 years ago 2

I am trying to import a DDL script from SQL Server to create a new physical data model. When I select the SQL script file it tries to parse it and after a long time it gives the timeout error. The file is 922K. I have removed every table I can. I have manually edited the file and removed all non-DDL statements and comments in order to make it as small as possible.

How can I get the import to succeed?

0

Updating the Model With Comments from Excel

Guy 2 years ago 0

We have a large database (~500 tables) modelled in Vertabelo. We have some existing documentation of table descriptions and column descriptions in an Excel spreadsheet. We would like to move our documentation from the Excel spreadsheet into the Vertabelo model. Can you suggest the best way to do this?

We looked at the API but that appears to be read-only. We have considered exporting the model as XML and writing code to update the XML file from the Excel spreadsheet and then re-importing the XML but this involves a certain amount of time to write the code to do this.

+1

Disabling "scroll to zoom" doesn't stick and it should be off by default

Terris Linenbach 2 years ago updated 2 years ago 2

The instructions in https://support.vertabelo.com/communities/1/topics/185-disable-scroll-to-zoom don't work. If you click on the gear icon again and go into the settings, the "scroll to zoom" checkbox will still be checked. This happens in edit and view modes. This annoying feature should be disabled by default in my opinion. Scroll should scroll, not zoom.

0
Planned

Add 75% Zoom

Terris Linenbach 2 years ago updated 2 years ago 2

The zoom drop-down levels are 25-50-100-200 and 400 .. I often want 75. I never want 400.

0
Answered

The take control feature is taking hours to load

Giorgos Geroukos 2 years ago updated by s rapport 2 years ago 2

Whenever I try and take control of my physical data model, it takes hours to happen. Is there any way to fix this

0
Answered

cardinality

philippe bissohong 11 years ago updated by Emily Webster 2 years ago 3
how can i show cardinality in the model. I can only see min and max on one side of the relationship.  Example: ||-----|< as oppose to  |-----|<

Thank you,
Philippe
+28
Under review

Pattern for naming objects

Aleksandra Machewka 11 years ago updated by fed 2 years ago 3
It would be a handy feature to allow user to define patterns for default object names, eg. primary keys. Currently, PK is formed using pattern "{objectName}_pk". Such pattern could be defined by user, having access to variables like {objectName}, {objectNameSingular} (for objects named in plural form). For FK, source and destination object names could be accessible, so user can form default FK name as "FK_{sourceObjectName}_{destinationObjectName}". I'm aware, that this can be done via explicitly naming PKs and FKs, but such feature would be useful when model is big and many relations exist.
0

Feature request: Share a model to my team

Terris Linenbach 2 years ago updated 2 years ago 0

I would like to share models to the whole team without specifying individual email addresses. The team of course changes when I add and remove team members.

+14

PostgreSQL enum types

kspar 7 years ago updated by Terris Linenbach 2 years ago 1

Please add support for PostgreSQL enumerated types.


Is there a workaround that enables at least modeling/showing enums graphically somehow without proper code generation support?

0

Not able to add ARRAY/STRUCT columns AS IS from Big Query in model

anunagraju 2 years ago 0

I have below SQL in Big Query. I wanted to show in Verabelo for ER diagram, but it's populated in a single line. 

CREATE TABLE `acn-gcp-fsi.POC.RECORD_POC2`
(
ADDRESS STRUCT<CITY STRING NOT NULL, COUNTRY STRUCT<STATE STRING NOT NULL, HOUSE_NUMBER STRING NOT NULL> NOT NULL> NOT NULL
);