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

0

Print model of data

Rodrigo Zenteno 7 years ago 0

For the printing of models, it would be very interesting to have the option to choose just print PK and FK or All the columns of the tables, since for large models, it is not displayed well.

0
Answered

Hi, Would be possible to switch my trial account to the Academic Account for students? Your help would be appreciated.

Martin Kleis 10 years ago updated by Kristjan Peterson 7 years ago 7
I tried to enroll to the academic account, but could not find the correct link. Could you please alter my account accordingly. Kind Regards, Martin
0
Declined

Data Model to DFM to Data Vault

olajideolaolorun 8 years ago updated by Jeff Arlt 7 years ago 2

If a Data Model is drawn, is there an easy way to convert to DFM or DV 1 or 2.0?

Thanks

0
Completed

Add support for the MySQL float Data Type

Barrie Walker 7 years ago updated by Mariusz Zakrzewski 7 years ago 1

float is currently missing for MySQL

0
Answered

previlege required to reverse engineer

Jay Cheruvelil 7 years ago updated by Rafał Strzaliński (Senior Engineer) 7 years ago 2

What privilege do you require for the user account to reverse engineer an oracle database ,   read access is sufficient ? or higher privilege is required . I need to ask this privilege to my admin


+3
Completed

Vector diagrams in PDF

Aner Perez 10 years ago updated by Jarosław Błąd (CEO) 7 years ago 4
The current print/PDF feature seems to generate a raster image of the diagram which is then included in the PDF. It would significantly improve print quality if the PDF used vector operations instead of rasterizing the diagram at a specific pixel resolution.
Extra brownie points if SVG was also supported.
0
Under review

Importing SQL without creating Objects Automatically

Anthony Vargas-Gobeille 7 years ago updated by Mariusz Zakrzewski 7 years ago 1

Hi,

I would like to know if it is possible to import a .sql without having Vertabelo creating objects and adding to the model. I would like to know because Vertabelo does not know how to arrange the diagram properly, so I want to do it manually one by one.


Thank you

0
Not a bug

Reverse Engineering does not work

Rabbani Mohammed 7 years ago updated by Mariusz Zakrzewski 7 years ago 2

Hi,

I am trying to reverse engineer an existing database in MS SQL Server. I need to extend database capabilities and therefore need the existing model to start with. 

I am using the following connection string but getting an error. 

Can you please advise if this command is right? 

java -jar reverse-engineering.jar com.vertabelo.reverse.Main -url jdbc:sqlserver://00.11.222.333\MMISQLE16,1433 -user xxx -password xxxxxx -o qa_db

The error message is as follows: 

No JDBC driver given. Using JDBC driver: com.microsoft.sqlserver.jdbc.SQLServerD
river
Reverse engineering MS SQL Server database
Connecting to the database...
Exception in thread "main" com.vertabelo.reverse.ask: Unable to load JDBC driver
com.microsoft.sqlserver.jdbc.SQLServerDriver
at com.vertabelo.reverse.asl.b(:203)
at com.vertabelo.reverse.Main.main(:8253)
Caused by: java.lang.ClassNotFoundException: com.microsoft.sqlserver.jdbc.SQLSer
verDriver
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at com.vertabelo.reverse.asl.b(:201)
... 1 more

Appreciate your help.

0
Under review

my college doesn't issue any email addresses

abhisinghal2103 7 years ago updated by Mariusz Zakrzewski 7 years ago 1
Answer
Mariusz Zakrzewski 7 years ago

Hi,

I assume you want to use an academic account on Vertabelo. 


You can create an academic account providing a scan of your ID card. You do not have to provide an academic email address. In the registration form, next to the field 'ID card scan', select the image from your local disk. 


I hope that helps,

Mariusz Zakrzewski 

0
Completed

MySQL: decimal/double/float precision boundaries

Jadaw1n 11 years ago updated by rahul kumar 7 years ago 4
Display an error if a field has a larger decimal place value than the whole number part.

CREATE TABLE test (
something decimal(2,3) NOT NULL
)
MySQL said:
#1427 - For float(M,D), double(M,D) or decimal(M,D), M must be >= D (column 'something').