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

0
Ukończony

Allow for naming primary keys

Lukas Eder 11 lat temu Ostatnio zmodyfikowane przez Rafał Strzaliński (Senior Engineer) 9 lat temu 7
Currently, primary keys cannot be named. They're only flags on a table's columns. That's not complete, of course, as primary keys are constraints like any other, which can be managed via their own names
0
Z odpowiedzią

Student account expired :(

Connor Brough 9 lat temu Ostatnio zmodyfikowane przez Jack Polkowski 9 lat temu 2

Hi I created a student account and must have set it up wrong as it seems to have expired and I can no longer access my work.

0
Planowane

Could we get a Chat box on the System so like Google Docs or Slack we can communicate with each other?

Michael Nelson 9 lat temu Ostatnio zmodyfikowane przez Jack Polkowski 9 lat temu 1

Could we get a Chat box on the System so like Google Docs or Slack we can communicate with each other?

+1
W trakcie analizy

Allow for sharing a link directly, instead of going via E-Mail

Lukas Eder 9 lat temu zaktualizowano 9 lat temu 9

Currently, it seems as though I can share a model only via E-Mail. In Google Docs, or Dropbox, items can be shared with anyone by generating a link with a token, which I can then use however I please.

Would be great if that were possible (unless I'm missing something, and it already is?)

0
Z odpowiedzią

HELP!!!!! my school work

Rihards Viktorovs 9 lat temu zaktualizowano 9 lat temu 7

Hi i am student from Latvia Vidzeme University College. And ther is my DB work what i need but my trial end and i cant get my work. I readet topic about switch to academic, but i cant becouse scool e-mail is closed server wher cant send external mail, only scools. But i can send my scool ID card for proof. or send my sql code it will be good.My acc register on rihardsviktorovs@inbox.lv

0
Z odpowiedzią

Reverse Engineering Download - I cannot install "reverse-engineering-1_6_7.jar"

Gary Cully 9 lat temu Ostatnio zmodyfikowane przez Rafał Strzaliński (Senior Engineer) 9 lat temu 4

I could not install this add-in. I doubled-clicked the file and nothing happens. Then I installed Java's "server-jre-8u66-windows-x64.gz" and I installed chromeinstall-8u65.exe. I've changed Windows file associations to point to the .jar file type to javaw.exe. I tried running javaw.exe from the cmd prompt. These approaches did not work. I read the Reverse Engineering documentation on your websiste. I frankly have not grocked it. It seems there is very little content there relevant to this issue. I am using Windows 7 Professional 64-bit. I really want your product to work...so far, it looks like it will meet my needs very well.

Gary

+1
W trakcie analizy

Support for SQL Server 2014

Michael Blaut 9 lat temu zaktualizowano 9 lat temu 2

When are you going to add support for SQL Server 2014?

+2
W trakcie analizy

Allow for "align-locking" objects vertically or horizontally to other objects when dragging

Lukas Eder 9 lat temu zaktualizowano 9 lat temu 3

When I drag an object, I often want to align it vertically / horizontally with other objects. MS Powerpoint, for instance, is smart enough to discover that intent, and it displays a red line to visualize the fact that I'm about to vertically / horizontally align this object with another one.


This is obviously a completely opt-in feature, and it is active only in the vicinity of around 5 pixels with the other object (and it can be avoided by pressing shift or alt, I believe).

0
W trakcie analizy

Multi-selecting objects should allow for multi-resizing

Lukas Eder 9 lat temu Ostatnio zmodyfikowane przez Rafał Strzaliński (Senior Engineer) 9 lat temu 1

When I select several tables, I expect them to resize all at the same time when I click on the corners of one table and resize that one.


I'm not 100% sure about the UX of such a feature, but I would definitely find the workflow "select all -> resize" an intuitive workflow for resizing several objects.


The use-case behind this is to make all tables the same size and vertically / horizontally aligned.

0
Naprawione

​​reverse engineering fails if any function-based index exists

Ilya Kharlamov 9 lat temu Ostatnio zmodyfikowane przez anonymous 9 lat temu 2

Dzień dobry

  1. get reverse-engineering-1_6_9.jar
  2. oracle 11.2.0.4.0
  3. create a table that uses fbi (a function based index)


create table

AAA

(

x number

);

create index aaa_idx1 on AAA(upper(x));


4. call the reverse-engineering-tool

Exception in thread "main" com.vertabelo.reverse.nr: Column SYS_NC00002$ not found in AAA

at com.vertabelo.reverse.ns.a(:1413)
at com.vertabelo.reverse.ns.a(:1392)
at com.vertabelo.reverse.ny.a(:317)
at com.vertabelo.reverse.ns.b(:550)
at com.vertabelo.reverse.ns.c(:412)
at com.vertabelo.reverse.ns.b(:185)
at com.vertabelo.reverse.Main.main(:491)


Solution:

You use in your code


paramDatabaseMetaData.getString("COLUMN_NAME");


but you'll need to check if this column really exists via DatabaseMetaData.getColumns before doing that



Odpowiedź
anonymous 9 lat temu

Unfortunately, Vertabelo doesn't support this construction now - indexes may have only columns from the table. We have this feature on our roadmap, but it's not available yet.


I've fixed the problem in the reverse-engineering tool so that such indexes were ignored and listed at the end of the reverse-engineering operation. Here is a link to the JAR with this issue fixed: reverse-engineering-1_6_10.jar
Please, check if it works well now.


Regarding indexes with expressions, I'd suggest placing them manually in the "Additional SQL scripts" section in table properties. This way, they'll be present in the output SQL script.


I look forward to your feedback.