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

0
To nie jest błąd

On update constraint is not generated in SQL

Saeed Rahimi 9 lat temu Ostatnio zmodyfikowane przez Rafał Strzaliński (Senior Engineer) 9 lat temu 2

I am testing the tool and have created two tables (Customer and Project) with one reference (1-m) from customer to project. I also have 2 constraints - one on delete and one for on update. The generated SQL statement does not have the on update constraint clause. Why? Here is the SQL generated.

-- Created by Vertabelo (http://vertabelo.com)

-- Last modification date: 2016-07-18 18:28:56.15

-- tables
-- Table: Customer
CREATE TABLE Customer (
    Cname varchar2(20)  NOT NULL,
    Rating number(2)  NULL,
    CONSTRAINT Customer_pk PRIMARY KEY (Cname)
) ;

-- Table: Project
CREATE TABLE Project (
    PNo number(5)  NOT NULL,
    Pname varchar2(15)  NULL,
    Customer_Cname varchar2(20)  NOT NULL,
    CONSTRAINT Project_pk PRIMARY KEY (PNo)
) ;

-- foreign keys
-- Reference: Project_Customer (table: Project)
ALTER TABLE Project ADD CONSTRAINT Project_Customer
    FOREIGN KEY (Customer_Cname)
    REFERENCES Customer (Cname)
    ON DELETE CASCADE;

-- End of file.


Odpowiedź

Hello,


Oracle 11g does not support ON UPDATE clause. Please see documentation on REFERENCES: https://docs.oracle.com/cd/B28359_01/server.111/b28286/clauses002.htm#CJAIHHGC

You can emulate this behaviour, tutorial: http://www.dba-oracle.com/oracle_tips_cascade_update.htm


We don't disable 'on update' select for Oracle in UI so it might be confusing...


Note: If you choose another DB engine (for example Postgres), Vertabelo will generate ON UPDATE clause.



0
Z odpowiedzią

database

mukkaram waheed 9 lat temu Ostatnio zmodyfikowane przez Rafał Strzaliński (Senior Engineer) 9 lat temu 2

i can add my database to your site for creating relationship in our database

Odpowiedź

Hello,


You can import an existing database into Vertabelo with help of our Reverse Engineering tool. An article about it: http://www.vertabelo.com/blog/documentation/reverse-engineering


You can also import an sql file when creating new model, screenshot:



I hope this helps

0
Ukończony

Take over hosting of Vertabelo JOOQ integration

Aner Perez 10 lat temu Ostatnio zmodyfikowane przez Rafał Strzaliński (Senior Engineer) 9 lat temu 7

The recent schema changes to the Vertabelo model XML cause the jOOQ code generator to fail to detect primary keys on tables in the model. Furthermore, jOOQ issue #5113 was created to remove the jOOQ-Vertabelo integration from jOOQ in the upcoming version 3.8.


It would be highly beneficial if Vertabelo could take over the maintenance of this plugin in their own repository as suggested in the GitHub issue. As it currently stands the generated code is missing update functionality because of the inability to detect primary keys.

+1
Planowane

notes and description should support chinese

gao yang 9 lat temu Ostatnio zmodyfikowane przez Adam Mościcki 9 lat temu 1

The generated document does not support Chinese.

Image 317

+3
Ukończony

How do I generate my database doucumentation

Glory Igboanugo 11 lat temu Ostatnio zmodyfikowane przez anonymous 9 lat temu 5
+10
Ukończony

Provide an export option that displays the table descriptions

sam Prin 10 lat temu Ostatnio zmodyfikowane przez anonymous 9 lat temu 6
I have not found a way to export and print my schema to include the table descriptions. This would be useful for printed copies.
0
Ukończony

User Roles

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

What is the meaning of the different user roles you have defined and finctions.

0
Z odpowiedzią

Can I sign up using paypal?

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

Is there an option of signing up using PayPal?

0
Z odpowiedzią

Oracle. Triggers/synonyms/comments while creating tables

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

My model have been created under the Oracle 11g. So, could you please describe how I can add triggers, synonyms for a tables? Also i'm interested in how a comments could be added for a tables and columns.

Would like to say thank you for that great project! It will be great to have such an instrument. I like it simple approach to work with a team of developers.

Thank you in advance.

+14
W trakcie analizy

Please add autoformating

ShaunL 11 lat temu Ostatnio zmodyfikowane przez Brian Hartman 9 lat temu 5
I'd like to request some minimal auto formatting such as snapping to align tables and/or some other means of automatically arranging the canvas.