DAOUtil error : user lacks privilege or object not found: CAMPAIGN_PHASE in statement [SELECT id_phase, campaign_code, starting_date, ending_date, label, order_num, phase_type_code FROM campaign_phase] - SQL statement : - Plugin : campaign
fr.paris.lutece.portal.service.util.AppException: DAOUtil error : user lacks privilege or object not found: CAMPAIGN_PHASE in statement [SELECT id_phase, campaign_code, starting_date, ending_date, label, order_num, phase_type_code FROM campaign_phase] - SQL statement : - Plugin : campaign
at fr.paris.lutece.plugins.campaign.web.PhaseJspBeanTest.testJspBeans(PhaseJspBeanTest.java:78)
Caused by: java.sql.SQLSyntaxErrorException: user lacks privilege or object not found: CAMPAIGN_PHASE in statement [SELECT id_phase, campaign_code, starting_date, ending_date, label, order_num, phase_type_code FROM campaign_phase]
at fr.paris.lutece.plugins.campaign.web.PhaseJspBeanTest.testJspBeans(PhaseJspBeanTest.java:78)
Caused by: org.hsqldb.HsqlException: user lacks privilege or object not found: CAMPAIGN_PHASE
at fr.paris.lutece.plugins.campaign.web.PhaseJspBeanTest.testJspBeans(PhaseJspBeanTest.java:78)
DAOUtil error : user lacks privilege or object not found: CAMPAIGN_CAMPAIGN in statement [INSERT INTO campaign_campaign ( campaign_code, title, description, active ) VALUES ( ?, ?, ?, ? ) ] - SQL statement : - Plugin : campaign
fr.paris.lutece.portal.service.util.AppException: DAOUtil error : user lacks privilege or object not found: CAMPAIGN_CAMPAIGN in statement [INSERT INTO campaign_campaign ( campaign_code, title, description, active ) VALUES ( ?, ?, ?, ? ) ] - SQL statement : - Plugin : campaign
at fr.paris.lutece.plugins.campaign.business.CampaignBusinessTest.testBusiness(CampaignBusinessTest.java:65)
Caused by: java.sql.SQLSyntaxErrorException: user lacks privilege or object not found: CAMPAIGN_CAMPAIGN in statement [INSERT INTO campaign_campaign ( campaign_code, title, description, active ) VALUES ( ?, ?, ?, ? ) ]
at fr.paris.lutece.plugins.campaign.business.CampaignBusinessTest.testBusiness(CampaignBusinessTest.java:65)
Caused by: org.hsqldb.HsqlException: user lacks privilege or object not found: CAMPAIGN_CAMPAIGN
at fr.paris.lutece.plugins.campaign.business.CampaignBusinessTest.testBusiness(CampaignBusinessTest.java:65)
DAOUtil error : user lacks privilege or object not found: CAMPAIGN_THEME in statement [SELECT id_theme, campaign_code, code_theme, title, description, active, front_rgb, image_file FROM campaign_theme] - SQL statement : - Plugin : campaign
fr.paris.lutece.portal.service.util.AppException: DAOUtil error : user lacks privilege or object not found: CAMPAIGN_THEME in statement [SELECT id_theme, campaign_code, code_theme, title, description, active, front_rgb, image_file FROM campaign_theme] - SQL statement : - Plugin : campaign
at fr.paris.lutece.plugins.campaign.web.ThemeJspBeanTest.testJspBeans(ThemeJspBeanTest.java:77)
Caused by: java.sql.SQLSyntaxErrorException: user lacks privilege or object not found: CAMPAIGN_THEME in statement [SELECT id_theme, campaign_code, code_theme, title, description, active, front_rgb, image_file FROM campaign_theme]
at fr.paris.lutece.plugins.campaign.web.ThemeJspBeanTest.testJspBeans(ThemeJspBeanTest.java:77)
Caused by: org.hsqldb.HsqlException: user lacks privilege or object not found: CAMPAIGN_THEME
at fr.paris.lutece.plugins.campaign.web.ThemeJspBeanTest.testJspBeans(ThemeJspBeanTest.java:77)
DAOUtil error : user lacks privilege or object not found: CAMPAIGN_CAMPAIGN in statement [SELECT id_campaign, campaign_code, title, description, active FROM campaign_campaign] - SQL statement : - Plugin : campaign
fr.paris.lutece.portal.service.util.AppException: DAOUtil error : user lacks privilege or object not found: CAMPAIGN_CAMPAIGN in statement [SELECT id_campaign, campaign_code, title, description, active FROM campaign_campaign] - SQL statement : - Plugin : campaign
at fr.paris.lutece.plugins.campaign.web.CampaignJspBeanTest.testJspBeans(CampaignJspBeanTest.java:70)
Caused by: java.sql.SQLSyntaxErrorException: user lacks privilege or object not found: CAMPAIGN_CAMPAIGN in statement [SELECT id_campaign, campaign_code, title, description, active FROM campaign_campaign]
at fr.paris.lutece.plugins.campaign.web.CampaignJspBeanTest.testJspBeans(CampaignJspBeanTest.java:70)
Caused by: org.hsqldb.HsqlException: user lacks privilege or object not found: CAMPAIGN_CAMPAIGN
at fr.paris.lutece.plugins.campaign.web.CampaignJspBeanTest.testJspBeans(CampaignJspBeanTest.java:70)
[sql] Failed to execute: CREATE TABLE campaign_campaign ( id_campaign int GENERATED BY DEFAULT AS IDENTITY(START WITH 1), campaign_code varchar(50) NOT NULL, title varchar(255) default '' NOT NULL, description LONGVARCHAR NOT NULL, active SMALLINT NOT NULL, PRIMARY KEY (id_campaign), UNIQUE INDEX (campaign_code) )
[sql] Failed to execute: CREATE TABLE campaign_phase_types ( id_phase_type int(6) NOT NULL, phase_type_code varchar(50) NOT NULL, label varchar(255) NOT NULL, PRIMARY KEY (id_phase_type), UNIQUE INDEX (phase_type_code) )
[sql] Failed to execute: CREATE TABLE campaign_phase ( id_phase int GENERATED BY DEFAULT AS IDENTITY(START WITH 1), phase_type_code varchar(50) NOT NULL, campaign_code varchar(50) default '' NOT NULL, starting_date TIMESTAMP NOT NULL, ending_date TIMESTAMP NOT NULL, label varchar(255) default '' NOT NULL, order_num int default '0' NOT NULL, PRIMARY KEY (id_phase), UNIQUE INDEX (phase_type_code,campaign_code ), CONSTRAINT fk_campaign_phase_campaign FOREIGN KEY (campaign_code) REFERENCES campaign_campaign (campaign_code), CONSTRAINT fk_campaign_phases_phase_type FOREIGN KEY(phase_type_code) references campaign_phase_types(phase_type_code) )
[sql] Failed to execute: CREATE TABLE campaign_theme ( id_theme int GENERATED BY DEFAULT AS IDENTITY(START WITH 1), campaign_code varchar(50) default '' NOT NULL, code_theme varchar(50) default '' NOT NULL, title varchar(255) default '' NOT NULL, description LONGVARCHAR NOT NULL, active SMALLINT NOT NULL, front_rgb varchar(255) default '' NOT NULL, image_file int default '0', PRIMARY KEY (id_theme), CONSTRAINT fk_campaign_phase_theme FOREIGN KEY (campaign_code) REFERENCES campaign_campaign (campaign_code) )
[sql] Failed to execute: CREATE TABLE campaign_area ( id_area int GENERATED BY DEFAULT AS IDENTITY(START WITH 1), area_code varchar(50) NOT NULL, campaign_code varchar(50) default '' NOT NULL, title varchar(255) default '' NOT NULL, type varchar(50) default '', number_votes int default 0 NOT NULL, active SMALLINT NOT NULL, PRIMARY KEY (id_area), UNIQUE INDEX ( area_code, campaign_code ), CONSTRAINT fk_campaign_phase_area FOREIGN KEY (campaign_code) REFERENCES campaign_campaign (campaign_code) )
DAOUtil error : user lacks privilege or object not found: CAMPAIGN_AREA in statement [SELECT id_area, area_code, campaign_code, title, type, number_votes, active FROM campaign_area] - SQL statement : - Plugin : campaign
fr.paris.lutece.portal.service.util.AppException: DAOUtil error : user lacks privilege or object not found: CAMPAIGN_AREA in statement [SELECT id_area, area_code, campaign_code, title, type, number_votes, active FROM campaign_area] - SQL statement : - Plugin : campaign
at fr.paris.lutece.plugins.campaign.web.AreaJspBeanTest.testJspBeans(AreaJspBeanTest.java:75)
Caused by: java.sql.SQLSyntaxErrorException: user lacks privilege or object not found: CAMPAIGN_AREA in statement [SELECT id_area, area_code, campaign_code, title, type, number_votes, active FROM campaign_area]
at fr.paris.lutece.plugins.campaign.web.AreaJspBeanTest.testJspBeans(AreaJspBeanTest.java:75)
Caused by: org.hsqldb.HsqlException: user lacks privilege or object not found: CAMPAIGN_AREA
at fr.paris.lutece.plugins.campaign.web.AreaJspBeanTest.testJspBeans(AreaJspBeanTest.java:75)
fr.paris.lutece.portal.service.util.AppException: DAOUtil error : user lacks privilege or object not found: CAMPAIGN_CAMPAIGN in statement [SELECT id_campaign, campaign_code, title, description, active FROM campaign_campaign] - SQL statement : - Plugin : campaign