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

0
Answered

cannot generate pdf file

Vaughan Leong 8 aastat tagasi uuendaja anonymous 8 aastat tagasi 2

My model can not generate pdf and html format, I try to set the model use two page only but it still cannot generate pdf and html format, But the MS Word format is OK.

Vasta
anonymous 8 aastat tagasi

The issue was fixed, please check that you're now able to generate documentation in any supported format.

0
Answered

MySQL generated SQL not importing - parse error on quotes

Eric Norton 8 aastat tagasi uuendaja Rafał Strzaliński (Senior Engineer) 8 aastat tagasi 6

I'm trying to import sql generated from vertabelo and I'm getting parse errors on any columns that have been put into double quotations. This has changed because the generated files did not do this before. My model is set to Mysql 5.5 and I'm definitely importing into mysql 5.5.


Any one know what the deal is with this?

0
Kavandatud

Don' have friends?

Ognjen Stanic 8 aastat tagasi uuendaja anonymous 8 aastat tagasi 1

Hi team @ Vertabelo,


The dialog answer "Don't have friends" on Invite friends form is not charmy nor funny.

Please change it to more appropriate one.


Kind regards,

Ognjen

0
Answered

delete account

Lorenzo 8 aastat tagasi uuendaja anonymous 8 aastat tagasi 1

How can I delete the account?

Vasta
anonymous 8 aastat tagasi

In order to delete an account, you need to go to "My account", then "Manage account plan." There's a button called "Close account" - that's what you're looking for.

0
Lõpetatud

I need to cancel my account. How do I do this?

Gordon Wong 8 aastat tagasi uuendaja anonymous 8 aastat tagasi 1
Vasta
anonymous 8 aastat tagasi

You can "cancel" an account in two ways:


- cancel subscription - it means that you stop paying a monthly fee, but the team account, user accounts and documents stay in our DB. Users may log into Vertabelo, but documents are not accessible. Sometime in the future you may just purchase another subscription and everything is up and ready for use.


- close account - in case of personal account it causes deletion of user account and documents (or unsharing them if they were shared); in case of team, it deletes the team account: all users are disassembled to private accounts, documents are unshared, and user which closes account is deleted.



In either case you do this by going to "My account" (in the top bar), then "Manage account plan." You'll then see two buttons: "Cancel subscription" and "Close account."

0
Answered

How do I delete a user if they own an object?

Gordon Wong 8 aastat tagasi uuendaja anonymous 8 aastat tagasi 1
Vasta
anonymous 8 aastat tagasi

There's no such possibility right now. We're now in the process of rethinking users management in team accounts.


I can do this for you if necessary. Please note that this topic is public - a private ticket might be better for this.

0
Lõpetatud

How do I delete a model owned by someone else if I am admin?

Gordon Wong 8 aastat tagasi uuendaja anonymous 8 aastat tagasi 1
Vasta
anonymous 8 aastat tagasi

There's no way to delete a document that belongs to another user. A permission to manage document must be granted explicitly - by sharing the document.

0
Answered

CodeCommit -- Does Vertabelo support CodeCommit on AWS?

fgallego123 8 aastat tagasi uuendaja Rafał Strzaliński (Senior Engineer) 8 aastat tagasi 1

I'm an analyst at Coca-Cola deciding whether or not to use Vertabelo. I need to know if Vertabelo supports CodeCommit on AWS.


Thanks

0
Not a bug

On update constraint is not generated in SQL

Saeed Rahimi 8 aastat tagasi uuendaja Rafał Strzaliński (Senior Engineer) 8 aastat tagasi 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.


Vasta

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
Answered

database

mukkaram waheed 8 aastat tagasi uuendaja Rafał Strzaliński (Senior Engineer) 8 aastat tagasi 2

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

Vasta

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