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

0
Beantwortet

NONCLUSTERED PRIMARY KEY

Dixant Rai vor 7 Jahren aktualisiert von Łukasz Kubicki vor 1 Monat 6

Is it possible to create NONCLUSTERED PrimaryKey while still using the PK flag to identify them? I'm trying to achieve this in sql server.

0
Beantwortet

how to use the reverse Reverse engineering to? 14?

mo aarab vor 9 Jahren aktualisiert von Łukasz Kubicki vor 1 Monat 5

is it possible to get an example to SQL Server 14? I'm don't know anything of java

Antwort
Łukasz Kubicki vor 1 Monat

Please:
1. Download reverse engingeering http://www.vertabelo.com/_file/reverse-engineering/reverse-engineering-1_6_12.jar
2. Download jdbc driver https://www.microsoft.com/en-us/download/details.aspx?id=11774 (exe file should install jar somewhere)
3. In the download folder do:


java -cp .:reverse-engineering-1_6_12.jar:sqljdbc4.jar com.vertabelo.reverse.Main -url jdbc:sqlserver://[serverName[\instanceName][:portNumber]][;property=value[;property=value]] -user USERNAME -password PASSWORD -o OUTPUT_FILENAME


I hope this helps.


Best regards,

Adam Mościcki

0
Beantwortet

Support for Postgres array data types

Phil Constantinou vor 7 Jahren aktualisiert von Łukasz Kubicki vor 1 Monat 2

How should I handle array data types from Postgres 9.2 in Vertabelo. 

- Can I declare them visually?

- Can I create indexes on them?

- If not, is there a workaround.

0
Beantwortet

FK tag in "properties" column of auto-generated documentation

Luka Čubelić vor 6 Jahren aktualisiert von Łukasz Kubicki vor 1 Monat 2

Is it possible to add the "FK" in the "properties" column of the fields that are foreign keys in some table, just like it says "PK" for the primary key?

0
Abgelehnt

how to prevent Vertabelo to open multiple browser tabs ?

Laurent Cohen vor 6 Jahren aktualisiert von Łukasz Kubicki vor 1 Monat 2

Is there a way to avoid Vertabelo to open multiple browser tabs (each time I open a document/model ) ?

0
Beantwortet

Relationship Properties - What is Dependent listed under Mandatory

JOHN DYER vor 1 Monat aktualisiert von Łukasz Kubicki vor 1 Monat 1

Image 1676

0
Beantwortet

How many columns can be displayed in a table?

James Robinson vor 6 Jahren aktualisiert von Łukasz Kubicki vor 1 Monat 3

We have a fact table in a physical data model.  Even though we have over 120 columns in the table, only a few are visible regardless of how we resize it.  Is there a limit to how many columns show in the table?  Can we modify it?

0
Fertiggestellt

Postgres 11 support

Bill Bell vor 6 Jahren aktualisiert von Łukasz Kubicki vor 1 Monat 2

Please add support for Postgres 11!!  Unique indexes. Sprocs.

0
Fixed

[Postgres] Migration Script Error - SET DEFAULT now()

Fernando Santos vor 2 Jahren aktualisiert vor 1 Monat 3

Hi there!

I generated a migration SQL script for Postgres physical data Model, but it didn't work properly.


One of the changes was setting a default for a timestamp column, using now() function as the default value.

The ALTER TABLE command generated by the migration feature was:


-- Column: created_at.
ALTER TABLE rq_forms
ALTER created_at SET DEFAULT 'now()';


However, it creates the default with a fixed timestamp, the date and time of the ALTER TABLE execution.

The expected behavior was setting now() function as the default, not the fixed date and time.

This is the correct script the migration feature should generate: 

-- Column: created_at.
ALTER TABLE rq_forms
ALTER created_at SET DEFAULT now(); --> Without the single quotes.

Just to mention, the CREATE TABLE is working fine, setting the now() function properly when I generate the SQL Script for the same table in the model as seen below. Just ALTER TABLE generated by the migration has the bug.

-- Its OK!

CREATE TABLE rq_forms (
id serial NOT NULL,
created_at timestamp NOT NULL DEFAULT now(),
updated_at timestamp NULL,

(...)


One more request:

Vertabelo could have the type "timestamp with time zone" in the Type windows predefined options (in the Date and time section).

The "timestamp" option creates a "timestamp without time zone" column.

It would be nice to have the option to choose between with or without time zone in Vertabelo.

I hope I could help improving Vertabelo.


Regards,


Fernando dos Santos.

+2
Fertiggestellt

group tables and subject areas

Anthony Cole vor 9 Jahren aktualisiert von Łukasz Kubicki vor 1 Monat 4

There should be a way to "dock" a table to a subject area (SA) so that when I move the SA, all the tables docked to it move too.