14 lines
1010 B
SQL
14 lines
1010 B
SQL
-- INSERIMENTO NUOVI PROFILI
|
|
INSERT INTO DBCGO_PROFILO (ID, NOME, DESCRIZIONE) VALUES (8, 'GA', 'AMMINISTRATORE BI');
|
|
INSERT INTO DBCGO_PROFILO (ID, NOME, DESCRIZIONE) VALUES (9, 'GB', 'VISUALIZZATORE BI');
|
|
|
|
-- NUOVA FUNZIONE PER LINK VERSO ORACLE BI
|
|
INSERT INTO DBCGO_FUNZIONE_WEB (ID, ID_PADRE, NOME, COMANDO, DESCRIZIONE, ORDINE, MENU)
|
|
VALUES (59, null, 'LOGIN TO BI', '/dbcgo/bi', 'Login to BI', 135, 0);
|
|
|
|
INSERT INTO DBCGO_PROFILO_FUNZIONE_WEB (ID_PROFILO, ID_FUNZIONE) VALUES ( (select ID from dbcgo_profilo where nome = 'GG'), (select ID from DBCGO_FUNZIONE_WEB where nome = 'LOGIN TO BI'));
|
|
INSERT INTO DBCGO_PROFILO_FUNZIONE_WEB (ID_PROFILO, ID_FUNZIONE) VALUES ( (select ID from dbcgo_profilo where nome = 'GA'), (select ID from DBCGO_FUNZIONE_WEB where nome = 'LOGIN TO BI'));
|
|
INSERT INTO DBCGO_PROFILO_FUNZIONE_WEB (ID_PROFILO, ID_FUNZIONE) VALUES ( (select ID from dbcgo_profilo where nome = 'GB'), (select ID from DBCGO_FUNZIONE_WEB where nome = 'LOGIN TO BI'));
|
|
|
|
|