We are doing the source coding using Team Coding with GIT as source controller. I would like to know whether incremental versioning is posible in TOAD.
Below is the sample script to explain in detail.
CREATE TABLE TMP_TEST
(TXT VARCHAR2(200 BYTE));
Now I check out the table and going to edit the below table or using alter script to add a new column.
ALTER table tmp_test add new_col VARCHAR2(200));
I am doing the check out and see the code is changed as below.
CREATE TABLE TMP_TEST
(TXT VARCHAR2(200 BYTE),
NEW_COL VARCHAR2(100 BYTE);
But, I would like to see the file as like below.
CREATE TABLE TMP_TEST
(TXT VARCHAR2(200 BYTE));
ALTER TABLE TMP_TEST ADD NEW_COL varchar2(100);
Is that possible using TOAD- Team coding?