sql
stringlengths
6
1.05M
<reponame>paulissoft/oracle-build-tools<gh_stars>1-10 CREATE TYPE "ORACLE_TOOLS"."T_TABLE_COLUMN_DDL" authid current_user under oracle_tools.t_type_attribute_ddl ( constructor function t_table_column_ddl ( self in out nocopy oracle_tools.t_table_column_ddl , p_obj in oracle_tools.t_schema_object ) return self as result , overriding member procedure migrate ( self in out nocopy oracle_tools.t_table_column_ddl , p_source in oracle_tools.t_schema_ddl , p_target in oracle_tools.t_schema_ddl ) , overriding member procedure uninstall ( self in out nocopy oracle_tools.t_table_column_ddl , p_target in oracle_tools.t_schema_ddl ) ) not final; /
<gh_stars>100-1000 alter table room add column lang varchar(2) NOT NULL default 'en';
SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Queue]') AND type in (N'U')) BEGIN CREATE TABLE [dbo].[Queue]( [QueueID] [int] IDENTITY(1,1) NOT NULL, [SchemaName] [sysname] NOT NULL, [ObjectName] [sysname] NOT NULL, [Parameters] [nvarchar](max) NOT NULL, [QueueStartTime] [datetime2](7) NULL, [SessionID] [smallint] NULL, [RequestID] [int] NULL, [RequestStartTime] [datetime] NULL, CONSTRAINT [PK_Queue] PRIMARY KEY CLUSTERED ( [QueueID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ) END GO
create table GESTIONACTIVIDADES_ALUMNO_ACTIVIDAD_LINK ( ALUMNO_ID varchar(36) not null, ACTIVIDAD_ID varchar(36) not null, primary key (ALUMNO_ID, ACTIVIDAD_ID) );
<reponame>solita/kuntalaisaloite alter table municipality_initiative add column video_url text; alter table municipality_initiative add column video_name text;
<gh_stars>100-1000 -- Revert environments BEGIN; DROP TABLE goiardi.environments; COMMIT;
<gh_stars>1000+ -- Copyright 2020 The Nomulus Authors. All Rights Reserved. -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ALTER TABLE IF EXISTS "Domain" RENAME creation_client_id TO creation_registrar_id; ALTER TABLE IF EXISTS "Domain" RENAME current_sponsor_client_id TO current_sponsor_registrar_id; ALTER TABLE IF EXISTS "Domain" RENAME last_epp_update_client_id TO last_epp_update_registrar_id; ALTER TABLE IF EXISTS "Contact" RENAME creation_client_id TO creation_registrar_id; ALTER TABLE IF EXISTS "Contact" RENAME current_sponsor_client_id TO current_sponsor_registrar_id; ALTER TABLE IF EXISTS "Contact" RENAME last_epp_update_client_id TO last_epp_update_registrar_id; ALTER TABLE IF EXISTS "HostResource" RENAME creation_client_id TO creation_registrar_id; ALTER TABLE IF EXISTS "HostResource" RENAME current_sponsor_client_id TO current_sponsor_registrar_id; ALTER TABLE IF EXISTS "HostResource" RENAME last_epp_update_client_id TO last_epp_update_registrar_id; ALTER TABLE IF EXISTS "Registrar" RENAME client_id TO registrar_id; ALTER TABLE IF EXISTS "BillingCancellation" RENAME client_id TO registrar_id; ALTER TABLE IF EXISTS "BillingCancellation" RENAME CONSTRAINT fk_billing_cancellation_client_id TO fk_billing_cancellation_registrar_id; ALTER TABLE IF EXISTS "BillingEvent" RENAME client_id TO registrar_id; ALTER TABLE IF EXISTS "BillingEvent" RENAME CONSTRAINT fk_billing_event_client_id TO fk_billing_event_registrar_id; ALTER TABLE IF EXISTS "BillingRecurrence" RENAME client_id TO registrar_id; ALTER TABLE IF EXISTS "BillingRecurrence" RENAME CONSTRAINT fk_billing_recurrence_client_id TO fk_billing_recurrence_registrar_id;
alter table settings add mode varchar(32) default 'Celery' null;
<reponame>alazarolop/dicsm -- # FUNCTIONS FOR TRIGGERS CREATE OR REPLACE FUNCTION sources.src_tb (src varchar, bd integer) RETURNS varchar AS $$ SELECT concat(src, '_' || NULLIF(bd, 0)) ; $$ LANGUAGE SQL IMMUTABLE ; COMMENT ON FUNCTION sources.src_tb (src varchar, bd integer) IS 'Naming of source raster tables' ; -- # TRIGGER FUNCTIONS CREATE OR REPLACE FUNCTION sources.src_ins () RETURNS trigger AS $$ DECLARE tb varchar ; -- BEGIN -- Band identifier _0_ means there is just one band on the source, so no numbering is needed. tb := src_tb(NEW.src_id, NEW.band_id) ; -- Structure EXECUTE format( 'CREATE TABLE IF NOT EXISTS sources.%I () INHERITS (sources._src_rast)', tb ) ; EXECUTE format( 'ALTER TABLE IF EXISTS sources.%I ALTER COLUMN rid ADD GENERATED ALWAYS AS IDENTITY', tb ) ; EXECUTE format( 'ALTER TABLE IF EXISTS sources.%I ADD PRIMARY KEY (rid) ', tb ) ; -- Comment EXECUTE format( 'COMMENT ON TABLE %I IS %L', src_tb(NEW.src_id, NEW.band_id), concat(NEW.descr, ' (', NULLIF(NEW.wave, 0) || ' ', NEW.unit, ')') ) ; RETURN NEW ; -- END ; $$ LANGUAGE plpgsql ; COMMENT ON FUNCTION sources.src_ins () IS 'Automatic management of source rasters on INSERT' ; CREATE OR REPLACE FUNCTION sources.src_del () RETURNS trigger AS $$ DECLARE tb varchar ; -- BEGIN -- Band identifier _0_ means there is just one band on the source, so no numbering is needed. tb := src_tb(OLD.src_id, OLD.band_id) ; EXECUTE format( 'DROP TABLE IF EXISTS sources.%I', tb ) ; RETURN OLD ; -- END ; $$ LANGUAGE plpgsql ; COMMENT ON FUNCTION sources.src_del () IS 'Automatic management of source rasters on DELETE' ; CREATE OR REPLACE FUNCTION sources.src_upd () RETURNS trigger AS $$ BEGIN CASE WHEN OLD.src_id IS DISTINCT FROM NEW.src_id OR OLD.band_id IS DISTINCT FROM NEW.band_id THEN EXECUTE format( 'ALTER TABLE IF EXISTS sources.%I RENAME TO %I', src_tb(OLD.src_id, OLD.band_id), src_tb(NEW.src_id, NEW.band_id) ) ; ELSE EXECUTE format( 'COMMENT ON TABLE %I IS %L', src_tb(OLD.src_id, OLD.band_id), concat(NEW.descr, ' (', NULLIF(NEW.wave, 0) || ' ', NEW.unit, ')') ) ; END CASE ; RETURN NEW ; -- END ; $$ LANGUAGE plpgsql ; COMMENT ON FUNCTION sources.src_upd () IS 'Automatic management of source rasters on UPDATE' ; CREATE OR REPLACE FUNCTION sources.src_single_band () RETURNS trigger AS $$ DECLARE i integer ; -- BEGIN EXECUTE format( 'SELECT * FROM sources.%I WHERE src_id ILIKE %L AND band_id = 0', TG_TABLE_NAME, NEW.src_id) ; GET DIAGNOSTICS i := ROW_COUNT ; IF i >= 1 THEN RAISE EXCEPTION '% defined as single band source.', NEW.src_id USING HINT = 'Change band id. from 0 to include new bands.' ; ELSE RETURN NEW ; END IF ; -- END ; $$ LANGUAGE plpgsql ; COMMENT ON FUNCTION sources.src_single_band () IS 'Control of sources defined as single band' ;
<reponame>mzabani/codd -- COPY employee FROM STDIN WITH (FORMAT CSV); -- "5","Dracula","master" -- "6","The Grinch","master" -- \. SELECT 'just for fun'; COPY employee FROM STDIN WITH (FORMAT CSV); 5,Dracula,master 6,The Grinch,master \. COPY public.employee FROM STDIN WITH (format csv); 7,Frankenstein,junior 8,Medusa,senior \. COPY public . employee FROM STDIN WITH (FORMAT CSV); 9,Werewolf,intern \. -- One empty COPY COPY "public"."employee" FROM STDIN WITH (FORMAT CSV); \. SELECT setval('employee_employee_id_seq', (SELECT MAX(employee_id) FROM employee));
<gh_stars>10-100 -- This SQL code was generated by sklearn2sql (development version). -- Copyright 2018 -- Model : KerasClassifier_LSTM -- Dataset : BinaryClass_10 -- Database : oracle -- This SQL code can contain one or more statements, to be executed in the order they appear in this file. -- Model deployment code WITH keras_input AS (SELECT "ADS"."KEY" AS "KEY", "ADS"."Feature_0" AS "Feature_0", "ADS"."Feature_1" AS "Feature_1", "ADS"."Feature_2" AS "Feature_2", "ADS"."Feature_3" AS "Feature_3", "ADS"."Feature_4" AS "Feature_4", "ADS"."Feature_5" AS "Feature_5", "ADS"."Feature_6" AS "Feature_6", "ADS"."Feature_7" AS "Feature_7", "ADS"."Feature_8" AS "Feature_8", "ADS"."Feature_9" AS "Feature_9" FROM "BINARYCLASS_10" "ADS"), keras_input_1 AS (SELECT keras_input."KEY" AS "KEY", keras_input."Feature_0" AS "Feature_0", keras_input."Feature_1" AS "Feature_1", keras_input."Feature_2" AS "Feature_2", keras_input."Feature_3" AS "Feature_3", keras_input."Feature_4" AS "Feature_4", keras_input."Feature_5" AS "Feature_5", keras_input."Feature_6" AS "Feature_6", keras_input."Feature_7" AS "Feature_7", keras_input."Feature_8" AS "Feature_8", keras_input."Feature_9" AS "Feature_9" FROM keras_input), keras_input_1_rn AS (SELECT row_number() OVER (ORDER BY keras_input_1."KEY" ASC) AS rn, keras_input_1."KEY" AS "KEY", keras_input_1."Feature_0" AS "Feature_0", keras_input_1."Feature_1" AS "Feature_1", keras_input_1."Feature_2" AS "Feature_2", keras_input_1."Feature_3" AS "Feature_3", keras_input_1."Feature_4" AS "Feature_4", keras_input_1."Feature_5" AS "Feature_5", keras_input_1."Feature_6" AS "Feature_6", keras_input_1."Feature_7" AS "Feature_7", keras_input_1."Feature_8" AS "Feature_8", keras_input_1."Feature_9" AS "Feature_9" FROM keras_input_1), lstm_input_kernel_bias AS (SELECT keras_input_1_rn.rn AS rn, keras_input_1_rn."KEY" AS "KEY", keras_input_1_rn."Feature_0" AS "Feature_0", keras_input_1_rn."Feature_1" AS "Feature_1", keras_input_1_rn."Feature_2" AS "Feature_2", keras_input_1_rn."Feature_3" AS "Feature_3", keras_input_1_rn."Feature_4" AS "Feature_4", keras_input_1_rn."Feature_5" AS "Feature_5", keras_input_1_rn."Feature_6" AS "Feature_6", keras_input_1_rn."Feature_7" AS "Feature_7", keras_input_1_rn."Feature_8" AS "Feature_8", keras_input_1_rn."Feature_9" AS "Feature_9", 0.12307072940858885 + -0.016295115511083556 * keras_input_1_rn."Feature_0" + 0.06624450875091845 * keras_input_1_rn."Feature_1" + -0.09800239979299913 * keras_input_1_rn."Feature_2" + -0.012362352237377527 * keras_input_1_rn."Feature_3" + 0.6061579632434527 * keras_input_1_rn."Feature_4" + -0.4023012984208115 * keras_input_1_rn."Feature_5" + -0.19907330195636663 * keras_input_1_rn."Feature_6" + 0.4632655561587989 * keras_input_1_rn."Feature_7" + 0.11720323191143608 * keras_input_1_rn."Feature_8" + -0.04845934950506519 * keras_input_1_rn."Feature_9" AS dot_prod_i_1, 0.12790884364788765 + 0.22339315427019527 * keras_input_1_rn."Feature_0" + 0.45746194164615384 * keras_input_1_rn."Feature_1" + 0.24546447441599603 * keras_input_1_rn."Feature_2" + -0.050623936250964424 * keras_input_1_rn."Feature_3" + 0.01770886246464201 * keras_input_1_rn."Feature_4" + 0.4788249354793985 * keras_input_1_rn."Feature_5" + 0.19697038753669865 * keras_input_1_rn."Feature_6" + -0.36598614400094626 * keras_input_1_rn."Feature_7" + 0.017227271658282584 * keras_input_1_rn."Feature_8" + 0.6077779481343358 * keras_input_1_rn."Feature_9" AS dot_prod_i_2, 0.09277205951285025 + -0.36954400343618565 * keras_input_1_rn."Feature_0" + -0.5740048121833017 * keras_input_1_rn."Feature_1" + -0.38716022921312854 * keras_input_1_rn."Feature_2" + 0.050582311534017814 * keras_input_1_rn."Feature_3" + 0.26680193697961824 * keras_input_1_rn."Feature_4" + 0.2995381531491264 * keras_input_1_rn."Feature_5" + 0.0653109768295145 * keras_input_1_rn."Feature_6" + -0.5562609702515103 * keras_input_1_rn."Feature_7" + -0.5457094883477874 * keras_input_1_rn."Feature_8" + -0.0011187290385889451 * keras_input_1_rn."Feature_9" AS dot_prod_i_3, 0.9629744600717444 + -0.16322102919861617 * keras_input_1_rn."Feature_0" + -0.20002500098691742 * keras_input_1_rn."Feature_1" + 0.51657812298431 * keras_input_1_rn."Feature_2" + -0.32769544453607546 * keras_input_1_rn."Feature_3" + 0.01664090120498486 * keras_input_1_rn."Feature_4" + 0.24778561402879634 * keras_input_1_rn."Feature_5" + 0.4889816580274014 * keras_input_1_rn."Feature_6" + 0.3624369529423046 * keras_input_1_rn."Feature_7" + -0.133327231888462 * keras_input_1_rn."Feature_8" + 0.4749810495427877 * keras_input_1_rn."Feature_9" AS dot_prod_f_1, 1.2552339215810173 + -0.6321053001614346 * keras_input_1_rn."Feature_0" + -0.11655347305442673 * keras_input_1_rn."Feature_1" + -0.4024417417436294 * keras_input_1_rn."Feature_2" + -0.4229632263528634 * keras_input_1_rn."Feature_3" + -0.40071174620563055 * keras_input_1_rn."Feature_4" + 0.3965706554753225 * keras_input_1_rn."Feature_5" + -0.33060052378462845 * keras_input_1_rn."Feature_6" + -0.39801925863103177 * keras_input_1_rn."Feature_7" + -0.27456016931376254 * keras_input_1_rn."Feature_8" + 0.31141568993047014 * keras_input_1_rn."Feature_9" AS dot_prod_f_2, 0.9794227116379571 + 0.1802047807909727 * keras_input_1_rn."Feature_0" + 0.14052913610346346 * keras_input_1_rn."Feature_1" + 0.34144422780697853 * keras_input_1_rn."Feature_2" + 0.2044498775173398 * keras_input_1_rn."Feature_3" + -0.011882267444573397 * keras_input_1_rn."Feature_4" + 0.27530878468591086 * keras_input_1_rn."Feature_5" + -0.5381010798178606 * keras_input_1_rn."Feature_6" + 0.1703808300927238 * keras_input_1_rn."Feature_7" + -0.1725778273703081 * keras_input_1_rn."Feature_8" + -0.0569466989797636 * keras_input_1_rn."Feature_9" AS dot_prod_f_3, -0.09653277323412719 + 0.057562237828976036 * keras_input_1_rn."Feature_0" + 0.06673871107532636 * keras_input_1_rn."Feature_1" + 0.10334513343463865 * keras_input_1_rn."Feature_2" + 0.33806287606298824 * keras_input_1_rn."Feature_3" + -0.11380822829099596 * keras_input_1_rn."Feature_4" + -0.029211507961255274 * keras_input_1_rn."Feature_5" + -0.2745379725381135 * keras_input_1_rn."Feature_6" + -0.29980222720137184 * keras_input_1_rn."Feature_7" + -0.04428228555836805 * keras_input_1_rn."Feature_8" + 0.7539523809422225 * keras_input_1_rn."Feature_9" AS dot_prod_c_1, 0.21748631770958327 + -0.2483349976862582 * keras_input_1_rn."Feature_0" + 0.5843268751216072 * keras_input_1_rn."Feature_1" + 0.47634678275125697 * keras_input_1_rn."Feature_2" + -0.12202095937283033 * keras_input_1_rn."Feature_3" + 0.04127974012632448 * keras_input_1_rn."Feature_4" + 0.4707546736624365 * keras_input_1_rn."Feature_5" + 0.3864963907197333 * keras_input_1_rn."Feature_6" + -0.6205432512495775 * keras_input_1_rn."Feature_7" + 0.10609851179278151 * keras_input_1_rn."Feature_8" + -0.011430491417043036 * keras_input_1_rn."Feature_9" AS dot_prod_c_2, 0.07425542869351272 + -0.5459024219996443 * keras_input_1_rn."Feature_0" + -0.4935570965452585 * keras_input_1_rn."Feature_1" + 0.20792557952570095 * keras_input_1_rn."Feature_2" + -0.3318136427407139 * keras_input_1_rn."Feature_3" + 0.015858109313710123 * keras_input_1_rn."Feature_4" + 0.1469862560019459 * keras_input_1_rn."Feature_5" + -0.30857716030166205 * keras_input_1_rn."Feature_6" + -0.4247853639105941 * keras_input_1_rn."Feature_7" + 0.26307146254658426 * keras_input_1_rn."Feature_8" + 0.365299618024286 * keras_input_1_rn."Feature_9" AS dot_prod_c_3, -0.0302391776925038 + 0.26523990954754734 * keras_input_1_rn."Feature_0" + -0.25448521494696047 * keras_input_1_rn."Feature_1" + -0.24070271337831003 * keras_input_1_rn."Feature_2" + 0.09003240880246965 * keras_input_1_rn."Feature_3" + 0.2243250907186032 * keras_input_1_rn."Feature_4" + 0.2688105904148112 * keras_input_1_rn."Feature_5" + 0.11663912415925695 * keras_input_1_rn."Feature_6" + -0.23958683763341398 * keras_input_1_rn."Feature_7" + -0.12758457999330225 * keras_input_1_rn."Feature_8" + -0.1779804705922848 * keras_input_1_rn."Feature_9" AS dot_prod_o_1, 0.06073244496888123 + -0.911441543117071 * keras_input_1_rn."Feature_0" + 0.1876243228702539 * keras_input_1_rn."Feature_1" + -0.05534791929253556 * keras_input_1_rn."Feature_2" + -0.32120573320638 * keras_input_1_rn."Feature_3" + -0.1992486302033126 * keras_input_1_rn."Feature_4" + -0.3464358944339925 * keras_input_1_rn."Feature_5" + 0.2172533764135385 * keras_input_1_rn."Feature_6" + -0.9109439591138703 * keras_input_1_rn."Feature_7" + -0.07778595911791257 * keras_input_1_rn."Feature_8" + 0.7569091995711427 * keras_input_1_rn."Feature_9" AS dot_prod_o_2, -0.08147840264365136 + -0.31360524563368575 * keras_input_1_rn."Feature_0" + -0.13453712609121654 * keras_input_1_rn."Feature_1" + 0.04169416968833159 * keras_input_1_rn."Feature_2" + 0.44508458453438937 * keras_input_1_rn."Feature_3" + 0.2188069060069084 * keras_input_1_rn."Feature_4" + -0.4687338132122748 * keras_input_1_rn."Feature_5" + -0.5499084275786156 * keras_input_1_rn."Feature_6" + 0.07503673156965432 * keras_input_1_rn."Feature_7" + 0.23518267167054985 * keras_input_1_rn."Feature_8" + -0.33380278677396563 * keras_input_1_rn."Feature_9" AS dot_prod_o_3 FROM keras_input_1_rn), rnn_cte_lstm_1(rn_1, "KEY", "PreviousState_1", "PreviousState_2", "PreviousState_3", "PreviousState_4", "PreviousState_5", "PreviousState_6", "State_1", "State_2", "State_3", "State_4", "State_5", "State_6") AS (SELECT lstm_input_kernel_bias.rn AS rn_1, lstm_input_kernel_bias."KEY" AS "KEY", CAST(0.0 AS BINARY_DOUBLE) AS "PreviousState_1", CAST(0.0 AS BINARY_DOUBLE) AS "PreviousState_2", CAST(0.0 AS BINARY_DOUBLE) AS "PreviousState_3", CAST(0.0 AS BINARY_DOUBLE) AS "PreviousState_4", CAST(0.0 AS BINARY_DOUBLE) AS "PreviousState_5", CAST(0.0 AS BINARY_DOUBLE) AS "PreviousState_6", greatest(lstm_input_kernel_bias.dot_prod_o_1 + 0.0, 0) * tanh(greatest(lstm_input_kernel_bias.dot_prod_i_1 + 0.0, 0) * tanh(lstm_input_kernel_bias.dot_prod_c_1 + 0.0) + greatest(lstm_input_kernel_bias.dot_prod_f_1 + 0.0, 0) * 0.0) AS "State_1", greatest(lstm_input_kernel_bias.dot_prod_o_2 + 0.0, 0) * tanh(greatest(lstm_input_kernel_bias.dot_prod_i_2 + 0.0, 0) * tanh(lstm_input_kernel_bias.dot_prod_c_2 + 0.0) + greatest(lstm_input_kernel_bias.dot_prod_f_2 + 0.0, 0) * 0.0) AS "State_2", greatest(lstm_input_kernel_bias.dot_prod_o_3 + 0.0, 0) * tanh(greatest(lstm_input_kernel_bias.dot_prod_i_3 + 0.0, 0) * tanh(lstm_input_kernel_bias.dot_prod_c_3 + 0.0) + greatest(lstm_input_kernel_bias.dot_prod_f_3 + 0.0, 0) * 0.0) AS "State_3", greatest(lstm_input_kernel_bias.dot_prod_i_1 + 0.0, 0) * tanh(lstm_input_kernel_bias.dot_prod_c_1 + 0.0) + greatest(lstm_input_kernel_bias.dot_prod_f_1 + 0.0, 0) * 0.0 AS "State_4", greatest(lstm_input_kernel_bias.dot_prod_i_2 + 0.0, 0) * tanh(lstm_input_kernel_bias.dot_prod_c_2 + 0.0) + greatest(lstm_input_kernel_bias.dot_prod_f_2 + 0.0, 0) * 0.0 AS "State_5", greatest(lstm_input_kernel_bias.dot_prod_i_3 + 0.0, 0) * tanh(lstm_input_kernel_bias.dot_prod_c_3 + 0.0) + greatest(lstm_input_kernel_bias.dot_prod_f_3 + 0.0, 0) * 0.0 AS "State_6" FROM lstm_input_kernel_bias WHERE lstm_input_kernel_bias.rn = 1 UNION ALL SELECT lstm_input_kernel_bias.rn AS rn, lstm_input_kernel_bias."KEY" AS "KEY", rnn_cte_lstm_1."State_1" AS "PreviousState_1", rnn_cte_lstm_1."State_2" AS "PreviousState_2", rnn_cte_lstm_1."State_3" AS "PreviousState_3", rnn_cte_lstm_1."State_4" AS "PreviousState_4", rnn_cte_lstm_1."State_5" AS "PreviousState_5", rnn_cte_lstm_1."State_6" AS "PreviousState_6", greatest(lstm_input_kernel_bias.dot_prod_o_1 + -0.16762967890746974 * rnn_cte_lstm_1."State_1" + 0.005597990616175263 * rnn_cte_lstm_1."State_2" + -0.10286906133596868 * rnn_cte_lstm_1."State_3", 0) * tanh(greatest(lstm_input_kernel_bias.dot_prod_i_1 + -0.0010420017965313228 * rnn_cte_lstm_1."State_1" + 0.358987024424689 * rnn_cte_lstm_1."State_2" + -0.10766710892979788 * rnn_cte_lstm_1."State_3", 0) * tanh(lstm_input_kernel_bias.dot_prod_c_1 + 0.03752604996332553 * rnn_cte_lstm_1."State_1" + 0.02768146440695024 * rnn_cte_lstm_1."State_2" + 0.5511533055326917 * rnn_cte_lstm_1."State_3") + greatest(lstm_input_kernel_bias.dot_prod_f_1 + -0.4259157138539399 * rnn_cte_lstm_1."State_1" + 0.0991669923954855 * rnn_cte_lstm_1."State_2" + -0.06459371139877969 * rnn_cte_lstm_1."State_3", 0) * rnn_cte_lstm_1."State_4") AS "State_1", greatest(lstm_input_kernel_bias.dot_prod_o_2 + -0.010162474643468361 * rnn_cte_lstm_1."State_1" + 0.6840958315865961 * rnn_cte_lstm_1."State_2" + -0.1115831865241463 * rnn_cte_lstm_1."State_3", 0) * tanh(greatest(lstm_input_kernel_bias.dot_prod_i_2 + -0.22544763722654454 * rnn_cte_lstm_1."State_1" + -0.09265259124431588 * rnn_cte_lstm_1."State_2" + -0.09813266285523749 * rnn_cte_lstm_1."State_3", 0) * tanh(lstm_input_kernel_bias.dot_prod_c_2 + 0.12334792443351204 * rnn_cte_lstm_1."State_1" + 0.6045807466478506 * rnn_cte_lstm_1."State_2" + 0.18266193343544845 * rnn_cte_lstm_1."State_3") + greatest(lstm_input_kernel_bias.dot_prod_f_2 + 0.2848339411487133 * rnn_cte_lstm_1."State_1" + 0.18421729591972258 * rnn_cte_lstm_1."State_2" + 0.6611715830649668 * rnn_cte_lstm_1."State_3", 0) * rnn_cte_lstm_1."State_5") AS "State_2", greatest(lstm_input_kernel_bias.dot_prod_o_3 + 0.6158746863068318 * rnn_cte_lstm_1."State_1" + -0.1937623995342916 * rnn_cte_lstm_1."State_2" + -0.5173639956779246 * rnn_cte_lstm_1."State_3", 0) * tanh(greatest(lstm_input_kernel_bias.dot_prod_i_3 + -0.10835679523865967 * rnn_cte_lstm_1."State_1" + 0.41875671163957484 * rnn_cte_lstm_1."State_2" + -0.10909998742113919 * rnn_cte_lstm_1."State_3", 0) * tanh(lstm_input_kernel_bias.dot_prod_c_3 + -0.03299774415662299 * rnn_cte_lstm_1."State_1" + -0.0802289482449878 * rnn_cte_lstm_1."State_2" + -0.06476944451637492 * rnn_cte_lstm_1."State_3") + greatest(lstm_input_kernel_bias.dot_prod_f_3 + 0.4119753810521627 * rnn_cte_lstm_1."State_1" + 0.31885557417834964 * rnn_cte_lstm_1."State_2" + 0.038521182546093054 * rnn_cte_lstm_1."State_3", 0) * rnn_cte_lstm_1."State_6") AS "State_3", greatest(lstm_input_kernel_bias.dot_prod_i_1 + -0.0010420017965313228 * rnn_cte_lstm_1."State_1" + 0.358987024424689 * rnn_cte_lstm_1."State_2" + -0.10766710892979788 * rnn_cte_lstm_1."State_3", 0) * tanh(lstm_input_kernel_bias.dot_prod_c_1 + 0.03752604996332553 * rnn_cte_lstm_1."State_1" + 0.02768146440695024 * rnn_cte_lstm_1."State_2" + 0.5511533055326917 * rnn_cte_lstm_1."State_3") + greatest(lstm_input_kernel_bias.dot_prod_f_1 + -0.4259157138539399 * rnn_cte_lstm_1."State_1" + 0.0991669923954855 * rnn_cte_lstm_1."State_2" + -0.06459371139877969 * rnn_cte_lstm_1."State_3", 0) * rnn_cte_lstm_1."State_4" AS "State_4", greatest(lstm_input_kernel_bias.dot_prod_i_2 + -0.22544763722654454 * rnn_cte_lstm_1."State_1" + -0.09265259124431588 * rnn_cte_lstm_1."State_2" + -0.09813266285523749 * rnn_cte_lstm_1."State_3", 0) * tanh(lstm_input_kernel_bias.dot_prod_c_2 + 0.12334792443351204 * rnn_cte_lstm_1."State_1" + 0.6045807466478506 * rnn_cte_lstm_1."State_2" + 0.18266193343544845 * rnn_cte_lstm_1."State_3") + greatest(lstm_input_kernel_bias.dot_prod_f_2 + 0.2848339411487133 * rnn_cte_lstm_1."State_1" + 0.18421729591972258 * rnn_cte_lstm_1."State_2" + 0.6611715830649668 * rnn_cte_lstm_1."State_3", 0) * rnn_cte_lstm_1."State_5" AS "State_5", greatest(lstm_input_kernel_bias.dot_prod_i_3 + -0.10835679523865967 * rnn_cte_lstm_1."State_1" + 0.41875671163957484 * rnn_cte_lstm_1."State_2" + -0.10909998742113919 * rnn_cte_lstm_1."State_3", 0) * tanh(lstm_input_kernel_bias.dot_prod_c_3 + -0.03299774415662299 * rnn_cte_lstm_1."State_1" + -0.0802289482449878 * rnn_cte_lstm_1."State_2" + -0.06476944451637492 * rnn_cte_lstm_1."State_3") + greatest(lstm_input_kernel_bias.dot_prod_f_3 + 0.4119753810521627 * rnn_cte_lstm_1."State_1" + 0.31885557417834964 * rnn_cte_lstm_1."State_2" + 0.038521182546093054 * rnn_cte_lstm_1."State_3", 0) * rnn_cte_lstm_1."State_6" AS "State_6" FROM lstm_input_kernel_bias, rnn_cte_lstm_1 WHERE lstm_input_kernel_bias.rn = rnn_cte_lstm_1.rn_1 + 1), lstm_1 AS (SELECT rnn_cte_lstm_1."KEY" AS "KEY", CAST(rnn_cte_lstm_1."State_1" AS BINARY_DOUBLE) AS output_1, CAST(rnn_cte_lstm_1."State_2" AS BINARY_DOUBLE) AS output_2, CAST(rnn_cte_lstm_1."State_3" AS BINARY_DOUBLE) AS output_3 FROM rnn_cte_lstm_1), lstm_1_1 AS (SELECT lstm_1."KEY" AS "KEY", lstm_1.output_1 AS output_1, lstm_1.output_2 AS output_2, lstm_1.output_3 AS output_3 FROM lstm_1), layer_dense_1 AS (SELECT lstm_1_1."KEY" AS "KEY", 0.0774961068156797 + -0.4737753467989032 * lstm_1_1.output_1 + -0.5775076731312051 * lstm_1_1.output_2 + -0.4040671886359914 * lstm_1_1.output_3 AS output_1, -0.07749610681567967 + 0.9343507433790119 * lstm_1_1.output_1 + -0.14105889483434347 * lstm_1_1.output_2 + 0.2800682001772759 * lstm_1_1.output_3 AS output_2 FROM lstm_1_1), layer_dense_1_1 AS (SELECT layer_dense_1."KEY" AS "KEY", layer_dense_1.output_1 AS output_1, layer_dense_1.output_2 AS output_2 FROM layer_dense_1), score_soft_max_step1 AS (SELECT layer_dense_1_1."KEY" AS "KEY", layer_dense_1_1.output_1 AS "Score_0", exp(least(100.0, greatest(-100.0, layer_dense_1_1.output_1))) AS "exp_Score_0", layer_dense_1_1.output_2 AS "Score_1", exp(least(100.0, greatest(-100.0, layer_dense_1_1.output_2))) AS "exp_Score_1" FROM layer_dense_1_1), score_class_union_soft AS (SELECT soft_scu."KEY" AS "KEY", soft_scu.class AS class, soft_scu."exp_Score" AS "exp_Score" FROM (SELECT score_soft_max_step1."KEY" AS "KEY", 0 AS class, score_soft_max_step1."exp_Score_0" AS "exp_Score" FROM score_soft_max_step1 UNION ALL SELECT score_soft_max_step1."KEY" AS "KEY", 1 AS class, score_soft_max_step1."exp_Score_1" AS "exp_Score" FROM score_soft_max_step1) soft_scu), score_soft_max AS (SELECT score_soft_max_step1."KEY" AS "KEY", score_soft_max_step1."Score_0" AS "Score_0", score_soft_max_step1."exp_Score_0" AS "exp_Score_0", score_soft_max_step1."Score_1" AS "Score_1", score_soft_max_step1."exp_Score_1" AS "exp_Score_1", sum_exp_t."KEY_sum" AS "KEY_sum", sum_exp_t."sum_ExpScore" AS "sum_ExpScore" FROM score_soft_max_step1 LEFT OUTER JOIN (SELECT score_class_union_soft."KEY" AS "KEY_sum", sum(score_class_union_soft."exp_Score") AS "sum_ExpScore" FROM score_class_union_soft GROUP BY score_class_union_soft."KEY") sum_exp_t ON score_soft_max_step1."KEY" = sum_exp_t."KEY_sum"), layer_softmax AS (SELECT score_soft_max."KEY" AS "KEY", score_soft_max."exp_Score_0" / score_soft_max."sum_ExpScore" AS output_1, score_soft_max."exp_Score_1" / score_soft_max."sum_ExpScore" AS output_2 FROM score_soft_max), orig_cte AS (SELECT layer_softmax."KEY" AS "KEY", CAST(NULL AS BINARY_DOUBLE) AS "Score_0", CAST(NULL AS BINARY_DOUBLE) AS "Score_1", layer_softmax.output_1 AS "Proba_0", layer_softmax.output_2 AS "Proba_1", CAST(NULL AS BINARY_DOUBLE) AS "LogProba_0", CAST(NULL AS BINARY_DOUBLE) AS "LogProba_1", CAST(NULL AS NUMBER(19)) AS "Decision", CAST(NULL AS BINARY_DOUBLE) AS "DecisionProba" FROM layer_softmax), score_class_union AS (SELECT scu."KEY_u" AS "KEY_u", scu.class AS class, scu."LogProba" AS "LogProba", scu."Proba" AS "Proba", scu."Score" AS "Score" FROM (SELECT orig_cte."KEY" AS "KEY_u", 0 AS class, orig_cte."LogProba_0" AS "LogProba", orig_cte."Proba_0" AS "Proba", orig_cte."Score_0" AS "Score" FROM orig_cte UNION ALL SELECT orig_cte."KEY" AS "KEY_u", 1 AS class, orig_cte."LogProba_1" AS "LogProba", orig_cte."Proba_1" AS "Proba", orig_cte."Score_1" AS "Score" FROM orig_cte) scu), score_max AS (SELECT orig_cte."KEY" AS "KEY", orig_cte."Score_0" AS "Score_0", orig_cte."Score_1" AS "Score_1", orig_cte."Proba_0" AS "Proba_0", orig_cte."Proba_1" AS "Proba_1", orig_cte."LogProba_0" AS "LogProba_0", orig_cte."LogProba_1" AS "LogProba_1", orig_cte."Decision" AS "Decision", orig_cte."DecisionProba" AS "DecisionProba", max_select."KEY_m" AS "KEY_m", max_select."max_Proba" AS "max_Proba" FROM orig_cte LEFT OUTER JOIN (SELECT score_class_union."KEY_u" AS "KEY_m", max(score_class_union."Proba") AS "max_Proba" FROM score_class_union GROUP BY score_class_union."KEY_u") max_select ON orig_cte."KEY" = max_select."KEY_m"), union_with_max AS (SELECT score_class_union."KEY_u" AS "KEY_u", score_class_union.class AS class, score_class_union."LogProba" AS "LogProba", score_class_union."Proba" AS "Proba", score_class_union."Score" AS "Score", score_max."KEY" AS "KEY", score_max."Score_0" AS "Score_0", score_max."Score_1" AS "Score_1", score_max."Proba_0" AS "Proba_0", score_max."Proba_1" AS "Proba_1", score_max."LogProba_0" AS "LogProba_0", score_max."LogProba_1" AS "LogProba_1", score_max."Decision" AS "Decision", score_max."DecisionProba" AS "DecisionProba", score_max."KEY_m" AS "KEY_m", score_max."max_Proba" AS "max_Proba" FROM score_class_union LEFT OUTER JOIN score_max ON score_class_union."KEY_u" = score_max."KEY"), arg_max_cte AS (SELECT score_max."KEY" AS "KEY", score_max."Score_0" AS "Score_0", score_max."Score_1" AS "Score_1", score_max."Proba_0" AS "Proba_0", score_max."Proba_1" AS "Proba_1", score_max."LogProba_0" AS "LogProba_0", score_max."LogProba_1" AS "LogProba_1", score_max."Decision" AS "Decision", score_max."DecisionProba" AS "DecisionProba", score_max."KEY_m" AS "KEY_m", score_max."max_Proba" AS "max_Proba", "arg_max_t_Proba"."KEY_Proba" AS "KEY_Proba", "arg_max_t_Proba"."arg_max_Proba" AS "arg_max_Proba" FROM score_max LEFT OUTER JOIN (SELECT union_with_max."KEY" AS "KEY_Proba", max(union_with_max.class) AS "arg_max_Proba" FROM union_with_max WHERE union_with_max."max_Proba" <= union_with_max."Proba" GROUP BY union_with_max."KEY") "arg_max_t_Proba" ON score_max."KEY" = "arg_max_t_Proba"."KEY_Proba") SELECT arg_max_cte."KEY" AS "KEY", arg_max_cte."Score_0" AS "Score_0", arg_max_cte."Score_1" AS "Score_1", arg_max_cte."Proba_0" AS "Proba_0", arg_max_cte."Proba_1" AS "Proba_1", CASE WHEN (arg_max_cte."Proba_0" IS NULL OR arg_max_cte."Proba_0" > 0.0) THEN ln(arg_max_cte."Proba_0") ELSE -BINARY_DOUBLE_INFINITY END AS "LogProba_0", CASE WHEN (arg_max_cte."Proba_1" IS NULL OR arg_max_cte."Proba_1" > 0.0) THEN ln(arg_max_cte."Proba_1") ELSE -BINARY_DOUBLE_INFINITY END AS "LogProba_1", arg_max_cte."arg_max_Proba" AS "Decision", arg_max_cte."max_Proba" AS "DecisionProba" FROM arg_max_cte
--+ holdcas on; set @ja='[1,2, {"a":1}]'; set @jo='{"a":1, "b":[1,2,3], "c":["a","b","c"]}'; prepare st from 'SELECT JSON_ARRAY(?, ?, ?)'; execute st using @ja,@jo,100000; execute st using @ja,@jo,100000,1; select JSON_ARRAY(@ja,@jo,100000); select JSON_ARRAY(cast(@ja as json),cast(@jo as json),100000); prepare st from 'SELECT JSON_ARRAY_APPEND(?, ?, ?)'; execute st using @ja,'$[2]',@jo; select JSON_ARRAY_APPEND(@ja,'$[2]',@jo); execute st using @ja,'$[1]',@jo; select JSON_ARRAY_INSERT(@ja,'$[1]',@jo); prepare st from 'SELECT JSON_ARRAY_INSERT(?, ?, ?)'; execute st using @ja,'$[2]',@jo; select JSON_ARRAY_INSERT(@ja,'$[2]',@jo); execute st using @ja,'$[1]',@jo; select JSON_ARRAY_INSERT(@ja,'$[1]',@jo); set @ja='[1,2, {"a":1}]'; set @jo='{"a":1, "b":[1,2,3], "c":["a","b","c"]}'; set @p = '$.a'; prepare st from 'SELECT JSON_CONTAINS_PATH(?,?,?)'; execute st using @ja, 'all', @p; execute st using @ja, @oa , '$[2].a'; execute st using @jo, 'all', @p; set @oa ='one'; execute st using @jo, @oa , @p; execute st using @jo, @oa , null; execute st using null, null , null; set @p = '$.a'; prepare st from 'SELECT JSON_EXTRACT(?,?)'; set @p = '$.a'; execute st using @ja, @p; set @p = '$'; execute st using @ja, @p; set @p = ''; execute st using @ja, @p; set @p = '/0'; execute st using @ja, @p; set @ja='[1,2, {"a":1}]'; set @jo='{"a":1, "b":[1,2,3], "c":["a","b","c"]}'; prepare st from 'SELECT JSON_GET_ALL_PATHS(?)'; execute st using @ja; execute st using @jo; set @ja='[1,2, {"a":1}]'; set @jo='{"a":1, "b":[1,2,3], "c":["a","b","c"]}'; prepare st from 'SELECT JSON_KEYS(?)'; execute st using @ja; execute st using @jo; prepare st from 'SELECT JSON_KEYS(?,?)'; set @p = '$[2].a'; execute st using @ja,@p; execute st using @ja,'$[2]'; execute st using @jo,'$.c'; SET @j = '{ "a": 1, "b": [2, 3]}'; prepare st from 'SELECT JSON_SET(?,?,?,?,?);'; execute st using @j,'$.a',10, '$.c', '[true, false]'; prepare st from 'SELECT JSON_INSERT(?,?,?,?,?);'; execute st using @j,'$.a',10, '$.c', '[true, false]'; prepare st from 'SELECT JSON_REPLACE(?,?,?,?,?);'; execute st using @j,'$.a',10, '$.c', '[true, false]'; set @ja='[1,2, {"a":100}]'; set @jo='{"a":1, "b":[1,2,3], "c":["a","b","c"]}'; prepare st from 'SELECT JSON_MERGE_PRESERVE(?,?);'; execute st using @ja,@jo; execute st using @jo,@ja; prepare st from 'SELECT JSON_MERGE(?,?);'; execute st using @ja,@jo; execute st using @jo,@ja; prepare st from 'SELECT JSON_MERGE_PATCH(?,?);'; execute st using @ja,@jo; execute st using @jo,@ja; execute st using @jo,@ja,@ja; set @ja='[1,2, {"a":1}]'; set @jo='{"a":1, "b":[1,2,3], "c":["a","b","c"]}'; prepare st from 'SELECT JSON_REMOVE(?,?);'; execute st using @ja,'$'; execute st using @ja,'$[0]'; execute st using @jo,'$.a'; execute st using @ja,'$[0],$[1].a'; set @p='$[0],$[1].a'; execute st using @jo,@p; set @p='$[0]'; prepare st from 'SELECT JSON_REMOVE(?,?,?);'; execute st using @ja,@p,@p; execute st using @ja,'$[0]','$[1].a'; set @ja='[1,2, {"a":1}]'; set @jo='{"a":1, "b":[1,2,3], "c":["a","ab","ca"]}'; prepare st from 'SELECT JSON_SEARCH(?,?,?);'; execute st using @ja,'all','a'; execute st using @jo,'all','a'; execute st using json_array(@ja,@jo),'all','a'; set @j=(select json_merge(@ja,@jo,@jo)); execute st using @j,'all','a'; execute st using @j,'one','%a%'; execute st using @j,'one','%a%',; prepare st from 'SELECT JSON_SEARCH(?,?,?,?,?);'; execute st using @jo,'all','a',null,'$'; execute st using @jo,'all','a','','$'; execute st using @jo,'all','a_','_','$'; set @ja='[1,2, {"a":1}]'; set @jo='{"a":1, "b":[1,2,3], "c":["a","b","c"]}'; prepare st from 'SELECT JSON_ARRAYAGG(?)'; execute st using @ja; select JSON_ARRAYAGG(@ja); drop table if exists t; create table t (i int , j json); prepare st from 'insert into t values (?,?)'; execute st using 1,@ja; execute st using 2,@jo; insert into t values (1,'1'); insert into t values (3,1); insert into t values (2,'"A"'); select * from t order by i,j desc; prepare st from 'SELECT JSON_ARRAYAGG(?) from t group by i+? order by i'; execute st using 'a',1; SELECT JSON_ARRAYAGG(j) from (select * from t order by 1,2) group by i; SELECT JSON_objectAGG(j) from (select * from t order by 1,2) group by i; SELECT JSON_arrayAGG(i,j) from (select * from t order by 1,2) group by i+1 order by i; --CBRD-22609 SELECT JSON_OBJECTAGG(i,j) from (select * from t order by 1 desc,2 desc) group by i+1 order by i; prepare st from 'SELECT JSON_OBJECTAGG(i,j) from (select i,j from t order by i,j) group by i order by i'; execute st using '1'; prepare st from 'SELECT JSON_OBJECTAGG(?,j) from (select * from t order by 1,2) group by i order by 1'; execute st using 'a'; prepare st from 'SELECT JSON_OBJECTAGG(?,j) from (select * from t order by 1,2) group by i+? order by 1'; execute st using 'a',1; prepare st from 'SELECT i,j from t where i >= json_extract(j, ?)'; execute st using '$.a'; prepare st from 'SELECT JSON_OBJECT(?,?,?,?) '; execute st using 'a','b','a',1; execute st using 'a','b','b',1; set @k='a'; set @v='1'; prepare st from 'SELECT JSON_OBJECT(?,?) '; execute st using @k,@v; prepare st from 'SELECT JSON_merge(?,?) '; execute st using 1,1; drop table if exists t; drop variable @j, @jo,@ja,@k,@v,@p,@oa; drop prepare st; --+ holdcas off;
--Complete tests for SPACE function -- check NULL argument, literal arguments -- SELECT SPACE(NULL), '|' || SPACE(3) || '|', LENGTH(SPACE(68423)) || '|', LENGTH(SPACE(12345678909)); -- check emtpy string returned from negative lengths, -- -- and NULL returned from lengths larger than max VARCHAR precision -- SELECT '|' || SPACE(-20) || '|', SPACE(1073741824), '|' || SPACE(CAST(10 AS SMALLINT)) || '|'; -- check type conversions -- SELECT '|' || SPACE('8') || '|', '|' || SPACE(CAST(N'8' AS NCHAR VARYING(10))) || '|'; -- Check precision for resulting string from constant arguments -- CREATE TABLE SpaceTbl AS SELECT SPACE(8 + LENGTH('Hh')) AS Sp; SELECT attr_name, class_name, attr_type, data_type, prec, scale FROM db_attribute WHERE class_name='spacetbl'; -- Check max varchar precision returned from run-time expressions arguments -- CREATE TABLE SpaceTbl2 AS SELECT SPACE(LENGTH(Sp)) as [ space( char_length(sp))] FROM SpaceTbl; SELECT attr_name, class_name, attr_type, data_type, prec, scale FROM db_attribute WHERE class_name='spacetbl2'; DROP TABLE SpaceTbl2; DROP TABLE SpaceTbl; -- check results from run-time expressions of types VARCHAR, SMALLINT, INTEGER, BIGINT -- CREATE TABLE SpaceTbl ( TblId SMALLINT, val INTEGER, Big BIGINT, CharValue VARCHAR(10) ); INSERT INTO SpaceTbl VALUES (1, 1, 1, '1'), (2, 2, 2, '2'), (10, 10, 10, '10'); SELECT '|' || SPACE(TblId) || '|', '|' || SPACE(val) || '|', '|' || SPACE(val + 1073741823) || '|', '|' || SPACE(Big) || '|', '|' || SPACE(CharValue) || '|' FROM SpaceTbl ORDER BY TblId; -- Check host variables usage with SPACE function -- $int,$3, $bigint, $1073741824, $varchar, $1073741824, $char, $10 SELECT '|' || SPACE(?) || '|', '|' || SPACE(?) || '|', '|' || SPACE(?) || '|', '|' || SPACE(?) || '|'; $int, $2 SELECT '|' || SPACE(Big + ?) || '|' FROM SpaceTbl ORDER BY TblId DROP TABLE SpaceTbl; create table t1(i integer); insert into t1 values(null); select space(i) from t1; drop table t1; --Test numeric types select if(length(space(cast(12345 as short))) = 12345, 'ok', 'nok'); select if(length(space(cast(12345 as integer))) = 12345, 'ok', 'nok'); select if(length(space(cast(12345 as bigint))) = 12345, 'ok', 'nok'); select if(length(space(cast(12345.5 as float))) = 12346, 'ok', 'nok'); select if(length(space(cast(12345.4 as float))) = 12345, 'ok', 'nok'); select if(length(space(cast(12345.5 as double))) = 12346, 'ok', 'nok'); select if(length(space(cast(12345.4 as double))) = 12345, 'ok', 'nok'); select if(length(space(cast(12345.5 as numeric(10,5)))) = 12346, 'ok', 'nok'); select if(length(space(cast(12345.4 as numeric(10,5)))) = 12345, 'ok', 'nok'); -- server side create table t (s short, i integer, bi bigint, f float, d double, m monetary, n numeric(10,5)); insert into t values(12345, 12345, 12345, 12345.5, 12345.5, 12345.5, 12345.5); select if(length(space(s)) = s, 'ok', 'nok') from t; select if(length(space(i)) = i, 'ok', 'nok') from t; select if(length(space(bi)) = bi, 'ok', 'nok') from t; insert into t values(12345, 12345, 12345, 12345.4, 12345.4, 12345.4, 12345.4); select if(length(space(f)) = round(f), 'ok', 'nok') from t; select if(length(space(d)) = round(d), 'ok', 'nok') from t; select if(length(space(m)) = round(m), 'ok', 'nok') from t; select if(length(space(n)) = round(n), 'ok', 'nok') from t; drop table t; -- Test unsupported types -- TBD select space(cast('1' as char(8))); select space(cast('1' as varchar(8))); select space(cast(n'1' as nchar(8))); select space(cast(n'1' as nchar varying(8))); select space(cast(B'1' as bit(8))); select space(cast(B'1' as bit varying(8))); select space(current_date); select space(current_time); select space(current_datetime); select space(current_timestamp); --3. Check the result -- check whether the result includes only space character select if(length(trim(space(cast(12345 as short)))) = 0, 'ok', 'nok'); -- check the length select if(length(space(1073741823)) is null, 'ok', 'nok'); --4. Test host variables -- success $int, $12345, $int, $12345; select if(length(space(?)) = ?, 'ok', 'nok'); $numeric, $12345.5, $int, $12346; select if(length(space(?)) = ?, 'ok', 'nok'); $float, $12345.5, $int, $12346; select if(length(space(?)) = ?, 'ok', 'nok'); $double, $12345.5, $int, $12346; select if(length(space(?)) = ?, 'ok', 'nok'); $numeric, $12345.4, $int, $12345; select if(length(space(?)) = ?, 'ok', 'nok'); $float, $12345.4, $int, $12345; select if(length(space(?)) = ?, 'ok', 'nok'); $double, $12345.4, $int, $12345; select if(length(space(?)) = ?, 'ok', 'nok'); -- failure $date, $2010-09-02; select space(?); $time, $17:30:30; select space(?); $datetime, $2010-09-02 17:30:30; select space(?); $timestamp, $2010-09-02 17:30:30; select space(?);
<filename>openGaussBase/testcase/KEYWORDS/precision/Opengauss_Function_Keyword_Precision_Case0033.sql -- @testpoint:opengauss关键字precision(非保留),作为视图名 --关键字precision作为视图名,不带引号,创建成功 CREATE or replace VIEW precision AS SELECT * FROM pg_tablespace WHERE spcname = 'pg_default'; drop view precision; --关键字precision作为视图名,加双引号,创建成功 CREATE or replace VIEW "precision" AS SELECT * FROM pg_tablespace WHERE spcname = 'pg_default'; drop VIEW "precision"; --关键字precision作为视图名,加单引号,合理报错 CREATE or replace VIEW 'precision' AS SELECT * FROM pg_tablespace WHERE spcname = 'pg_default'; --关键字precision作为视图名,加反引号,合理报错 CREATE or replace VIEW `precision` AS SELECT * FROM pg_tablespace WHERE spcname = 'pg_default';
-- @testpoint:opengauss关键字null(保留),作为存储过程名 --关键字不带引号-合理报错 create or replace procedure null() is V1 BLOB; begin IF V1 is NULL then raise info 'V1 is NULL'; else raise info 'V1 is not NULL'; end if; end; / --关键字带双引号-成功 create or replace procedure "null"() is V1 BLOB; begin IF V1 is NULL then raise info 'V1 is NULL'; else raise info 'V1 is not NULL'; end if; end; / --清理环境 drop procedure "null"; --关键字带单引号-合理报错 create or replace procedure 'null'() is V1 BLOB; begin IF V1 is NULL then raise info 'V1 is NULL'; else raise info 'V1 is not NULL'; end if; end; / --关键字带反引号-合理报错 create or replace procedure `null`() is V1 BLOB; begin IF V1 is NULL then raise info 'V1 is NULL'; else raise info 'V1 is not NULL'; end if; end; /
<filename>src/database/dump.sql DROP TABLE IF EXISTS `comunications`; DROP TABLE IF EXISTS `qualitys`; CREATE TABLE `qualitys` ( `quality_id` int(11) NOT NULL AUTO_INCREMENT, `label` varchar(15) NOT NULL, `description` varchar(255) DEFAULT NULL, `active` tinyint(1) DEFAULT '1', `created` datetime DEFAULT NULL, PRIMARY KEY (`quality_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `comunications` ( `comunication_id` int(11) NOT NULL AUTO_INCREMENT, `quality_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `title` varchar(45) NOT NULL, `message` varchar(120) DEFAULT NULL, `href` varchar(255) DEFAULT NULL, `read` tinyint(1) DEFAULT '0', `active` int(11) DEFAULT '1', `created` datetime DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`comunication_id`), KEY `fk_comunications_1_idx` (`quality_id`), CONSTRAINT `fk_comunications_1` FOREIGN KEY (`quality_id`) REFERENCES `qualitys` (`quality_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- -- PostgreSQL database dump -- -- Dumped from database version 12.4 -- Dumped by pg_dump version 13.3 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; -- -- Name: earth_shape_v; Type: VIEW; Schema: public; Owner: radon_admin -- CREATE VIEW public.earth_shape_v AS SELECT earth_shape.id, earth_shape.a, earth_shape.b, CASE WHEN (earth_shape.a = earth_shape.b) THEN NULL::numeric ELSE (((1)::numeric / ((earth_shape.a - earth_shape.b) / earth_shape.a)))::numeric(6,3) END AS inverse_flattening, earth_shape.name, earth_shape.description, earth_shape.last_updated, earth_shape.last_updater FROM public.earth_shape; ALTER TABLE public.earth_shape_v OWNER TO radon_admin; -- -- Name: TABLE earth_shape_v; Type: ACL; Schema: public; Owner: radon_admin -- GRANT SELECT ON TABLE public.earth_shape_v TO PUBLIC; -- -- PostgreSQL database dump complete --
<reponame>Dedy1354/spk_ikm -- phpMyAdmin SQL Dump -- version 4.2.7.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: 01 Jun 2017 pada 11.18 -- Versi Server: 5.6.20 -- PHP Version: 5.5.15 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `koperasi` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `anggota` -- CREATE TABLE IF NOT EXISTS `anggota` ( `ID_ANGGOTA` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `NAMA_ANGGOTA` varchar(35) DEFAULT NULL, `JENIS_KELAMIN_ANGGOTA` varchar(10) DEFAULT NULL, `TANGGAL_LAHIR_ANGGOTA` datetime DEFAULT NULL, `ALAMAT_ANGGOTA` varchar(100) DEFAULT NULL, `KEWARGANEGARAAN_ANGGOTA` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `angsuran` -- CREATE TABLE IF NOT EXISTS `angsuran` ( `ID_ANGSURAN` varchar(10) NOT NULL, `ID_ANGGOTA` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `LAMA_ANGSURAN` varchar(10) DEFAULT NULL, `TANGGAL_ANGSURAN` datetime DEFAULT NULL, `JUMLAH_ANGSURAN` varchar(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `inovasi_koperasi` -- CREATE TABLE IF NOT EXISTS `inovasi_koperasi` ( `ID_INOVASI_KOPERASI` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `JUMLAH_PRODUK_TERBARU_KOPERASI` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `jasa` -- CREATE TABLE IF NOT EXISTS `jasa` ( `ID_JASA` int(11) NOT NULL, `ID_ANGSURAN` varchar(10) DEFAULT NULL, `BESAR_JASA` varchar(15) DEFAULT NULL, `TANGGAL_JASA` datetime DEFAULT NULL, `JUMLAH_JASA` varchar(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `kategori_pinjaman` -- CREATE TABLE IF NOT EXISTS `kategori_pinjaman` ( `ID_KAT_PIN` varchar(10) NOT NULL, `JENIS_PINJAMAN` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `kategori_simpanan` -- CREATE TABLE IF NOT EXISTS `kategori_simpanan` ( `ID_KATEGORI` varchar(10) NOT NULL, `JENIS_SIMPANAN` varchar(25) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `keberadaan_rk_dan_rapbn` -- CREATE TABLE IF NOT EXISTS `keberadaan_rk_dan_rapbn` ( `ID_KEBERADAAN_RK_DAN_RAPBN` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `BANYAK_RENCANA_KERJA` tinyint(1) DEFAULT NULL, `REALISASI_RENCANA_KERJA` tinyint(1) DEFAULT NULL, `RENCANA_PENDAPATAN` varchar(15) DEFAULT NULL, `REALISASI_PENDAPATAN` varchar(15) DEFAULT NULL, `RENCANA_BELANJA` varchar(15) DEFAULT NULL, `REALISASI_BELANJA` varchar(15) DEFAULT NULL, `RENCANA_SHU` varchar(15) DEFAULT NULL, `REALISASI_SHU` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `keberadaan_sistem_informasi` -- CREATE TABLE IF NOT EXISTS `keberadaan_sistem_informasi` ( `ID_KEBERADAAN_SISTEM_INFORMASI` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `KEBERADAAN_SISTEM_INFORMASI` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `kemampuan_bersaing_koperasi` -- CREATE TABLE IF NOT EXISTS `kemampuan_bersaing_koperasi` ( `ID_KEMAMPUAN_BERSAING_KOPERASI` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `PESAING_KOPERASI` tinyint(1) DEFAULT NULL, `STRATEGI_BERSAING_KOPERASI` tinyint(1) DEFAULT NULL, `DISTRIBUSI_PRODUK_DARI_KOPERASI_LAIN` tinyint(1) DEFAULT NULL, `PEMILIHAN_PRODUK_KOPERASI` tinyint(1) DEFAULT NULL, `KEMUDAHAN_PRODUK_KOPERASI` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `kemudahan_akses_informasi` -- CREATE TABLE IF NOT EXISTS `kemudahan_akses_informasi` ( `ID_KEMUDAHAN_AKSES_INFORMASI` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ANGGOTA` tinyint(1) DEFAULT NULL, `PEMBINA` tinyint(1) DEFAULT NULL, `REKANAN_KERJA` tinyint(1) DEFAULT NULL, `MASYARAKAT` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `kepengawasan_periode` -- CREATE TABLE IF NOT EXISTS `kepengawasan_periode` ( `ID_KEPENGAWASAN_PERIODE` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_PENGAWAS` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `kepengurusan_periode` -- CREATE TABLE IF NOT EXISTS `kepengurusan_periode` ( `ID_KEPENGURUSAN_PERIODE` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PENGURUS` varchar(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `kepengurusan_periode` -- INSERT INTO `kepengurusan_periode` (`ID_KEPENGURUSAN_PERIODE`, `ID_PERIODE`, `ID_KOPERASI`, `ID_PENGURUS`) VALUES ('KPG-0001', 'PER-0001', 'KOP-0001', 'PGR-0001'), ('KPG-0002', 'PER-0002', 'KOP-0001', 'PGR-0002'), ('KPG-0003', 'PER-0001', 'KOP-0001', 'PGR-0001'); -- -------------------------------------------------------- -- -- Struktur dari tabel `ketaatan_membayar_pajak` -- CREATE TABLE IF NOT EXISTS `ketaatan_membayar_pajak` ( `ID_KETAATAN_MEMBAYAR_PAJAK` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `NPWP_KOPERASI` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `keterkaitan_usaha_koperasi_dengan_anggota` -- CREATE TABLE IF NOT EXISTS `keterkaitan_usaha_koperasi_dengan_anggota` ( `ID_KETERKAITAN_USAHA_KOPERASI_DENGAN_ANGGOTA` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `JUMLAH_USAHA_KOPERASI` varchar(5) DEFAULT NULL, `JUMLAH_JENIS_USAHA_KESELURUHAN` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `kinerja_kepengurusan` -- CREATE TABLE IF NOT EXISTS `kinerja_kepengurusan` ( `ID_KINERJA_KEPENGURUSAN` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `JUMLAH_NILAI_KINERJA_KEPENGURUSAN` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `komunikasi_bisnis_ke_masyarakat` -- CREATE TABLE IF NOT EXISTS `komunikasi_bisnis_ke_masyarakat` ( `ID_KOMUNIKASI_BISNIS_KE_MASYARAKAT` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `JUMLAH_JENIS_INFORMASI_BISNIS_KE_MASYARAKAT` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `koperasi` -- CREATE TABLE IF NOT EXISTS `koperasi` ( `ID_KOPERASI` varchar(10) NOT NULL, `NAMA_KOPERASI` varchar(35) DEFAULT NULL, `ALAMAT_KOPERASI` varchar(100) DEFAULT NULL, `BADAN_HUKUM_KOPERASI` varchar(100) DEFAULT NULL, `JENIS_KOPERASI` varchar(30) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `koperasi` -- INSERT INTO `koperasi` (`ID_KOPERASI`, `NAMA_KOPERASI`, `ALAMAT_KOPERASI`, `BADAN_HUKUM_KOPERASI`, `JENIS_KOPERASI`) VALUES ('KOP-0001', 'UTM', 'Telang', 'ss', 'ggg'), ('KOP-0002', 'socah', 'socah', 'ggg', 'hg'); -- -------------------------------------------------------- -- -- Struktur dari tabel `layanan_usaha_koperasi` -- CREATE TABLE IF NOT EXISTS `layanan_usaha_koperasi` ( `ID_LAYANAN_USAHA_KOPERASI` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `BANYAKNYA_JENIS_USAHA_KOPERASI` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `manajemen_pengawasan` -- CREATE TABLE IF NOT EXISTS `manajemen_pengawasan` ( `ID_MANAJEMEN_PENGAWASAN` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `DILAKUKAN_PENGAWAS` tinyint(1) DEFAULT NULL, `HASIL_INDEPENDENT_MENOLAK_MEMBERIKAN_OPINI` tinyint(1) DEFAULT NULL, `HASIL_INDEPENDENT_TANPA_PENDAPAT` tinyint(1) DEFAULT NULL, `HASIL_INDEPENDENT_WAJAR_DENGAN_CATATAN` tinyint(1) DEFAULT NULL, `HASIL_INDEPENDENT_WAJAR_TANPA_SYARAT` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `model_pendidikan_dan_pelatihan_pengurus` -- CREATE TABLE IF NOT EXISTS `model_pendidikan_dan_pelatihan_pengurus` ( `ID_MODEL_PENDIDIKAN_DAN_PELATIHAN_PENGURUS` varchar(8) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `PROGRAM_KERJA_KOPERASI` tinyint(1) DEFAULT NULL, `REALISASI_PELATIHAN` tinyint(1) DEFAULT NULL, `BANYAKNYA_PELATIHAN` varchar(5) DEFAULT NULL, `JUMLAH_ANGGOTA_YANG_MENGIKUTI_PELATIHAN` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `pelayanan_sosial` -- CREATE TABLE IF NOT EXISTS `pelayanan_sosial` ( `ID_PELAYANAN_SOSIAL` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `JUMLAH_DANA_PELAYANAN_SOSIAL` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `pengawas` -- CREATE TABLE IF NOT EXISTS `pengawas` ( `ID_PENGAWAS` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `NAMA_PENGAWAS` varchar(35) DEFAULT NULL, `JENIS_KELAMIN_PENGAWAS` varchar(10) DEFAULT NULL, `JABATAN_PENGAWAS` varchar(15) DEFAULT NULL, `MASA_BAKTI_PENGAWAS` varchar(10) DEFAULT NULL, `PEKERJAAN_PENGAWAS` varchar(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `pengawas` -- INSERT INTO `pengawas` (`ID_PENGAWAS`, `ID_KOPERASI`, `NAMA_PENGAWAS`, `JENIS_KELAMIN_PENGAWAS`, `JABATAN_PENGAWAS`, `MASA_BAKTI_PENGAWAS`, `PEKERJAAN_PENGAWAS`) VALUES ('PGW-0001', 'KOP-0001', 'santii', 'Laki-laki', 'Ketua', '2', 'PNS'); -- -------------------------------------------------------- -- -- Struktur dari tabel `pengurus` -- CREATE TABLE IF NOT EXISTS `pengurus` ( `ID_PENGURUS` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `NAMA_PENGURUS` varchar(30) DEFAULT NULL, `JENIS_KELAMIN_PENGURUS` varchar(10) DEFAULT NULL, `JABATAN_PENGURUS` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `pengurus` -- INSERT INTO `pengurus` (`ID_PENGURUS`, `ID_KOPERASI`, `NAMA_PENGURUS`, `JENIS_KELAMIN_PENGURUS`, `JABATAN_PENGURUS`) VALUES ('PGR-0001', 'KOP-0001', 'santii', 'Perempuan', 'Sekretaris'), ('PGR-0002', 'KOP-0001', 'santii', 'Perempuan', 'Ketua'), ('PGR-0003', 'KOP-0001', 'Susi', 'Laki-laki', 'Ketua'); -- -------------------------------------------------------- -- -- Struktur dari tabel `penilaian_periode` -- CREATE TABLE IF NOT EXISTS `penilaian_periode` ( `ID_PENILAIAN_PERIODE` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_TIM_INDEPENDENT` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `peningkatan_penyertaan_modal_koperasi` -- CREATE TABLE IF NOT EXISTS `peningkatan_penyertaan_modal_koperasi` ( `ID_PENINGKATAN_PENYERTAAN_MODAL_KOPERASI` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `PENYERTAAN_MODAL_KOPERASI_TAHUN_SESUDAH` varchar(15) DEFAULT NULL, `PENYERTAAN_MODAL_KOPERASI_TAHUN_SEBELUM` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `penyerapan_tenaga_kerja` -- CREATE TABLE IF NOT EXISTS `penyerapan_tenaga_kerja` ( `ID_PENYERAPAN_TENAGA_KERJA` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `TENAGA_KERJA_TAHUN_SESUDAHNYA` varchar(5) DEFAULT NULL, `TENAGA_KERJA_TAHUN_SEBELUMNYA` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `periode` -- CREATE TABLE IF NOT EXISTS `periode` ( `ID_PERIODE` varchar(10) NOT NULL, `TAHUN_PERIODE` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `periode` -- INSERT INTO `periode` (`ID_PERIODE`, `TAHUN_PERIODE`) VALUES ('PER-0001', '2017'), ('PER-0002', '2018'), ('PER-0003', '2019'); -- -------------------------------------------------------- -- -- Struktur dari tabel `pinjaman` -- CREATE TABLE IF NOT EXISTS `pinjaman` ( `ID_PINJAMAN` varchar(10) NOT NULL, `ID_ANGGOTA` varchar(10) DEFAULT NULL, `ID_KAT_PIN` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `TANGGAL_PINJAMAN` datetime DEFAULT NULL, `JUMLAH_PINJAMAN` varchar(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `pola_pengkaderan` -- CREATE TABLE IF NOT EXISTS `pola_pengkaderan` ( `ID_POLA_PENGKADERAN` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `POLA_KADERISASI` tinyint(1) DEFAULT NULL, `SISTEM_REKRUITMEN_KADER` tinyint(1) DEFAULT NULL, `SISTEM_PEMBINAAN_KADER` tinyint(1) DEFAULT NULL, `JUMLAH_KADER_PENGURUS` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `prosentase_besaran_simpanan_sukarela` -- CREATE TABLE IF NOT EXISTS `prosentase_besaran_simpanan_sukarela` ( `ID_PROSENTASE_BESARAN_SIMPANAN_SUKARELA` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `JUMLAH_SIMPANAN_SUKARELA_TAHUN_SESUDAH` varchar(15) DEFAULT NULL, `JUMLAH_SIMPANAN_SUKARELA_TAHUN_SEBELUM` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `prosentase_pelunasan_simpanan_wajib` -- CREATE TABLE IF NOT EXISTS `prosentase_pelunasan_simpanan_wajib` ( `ID_PROSENTASE_PELUNASAN_SIMPANAN_WAJIB` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `BESAR_SIMPANAN_WAJIB_PER_ANGGOTA` varchar(15) DEFAULT NULL, `BESAR_SIMPANAN_WAJIB_YANG_TERKUMPUL` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `rapat_koperasi` -- CREATE TABLE IF NOT EXISTS `rapat_koperasi` ( `ID_RAPAT_KOPERASI` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `RAPAT_ANGGOTA_TAHUNAN` tinyint(1) DEFAULT NULL, `RAPAT_PENGURUS` tinyint(1) DEFAULT NULL, `RAPAT_PENGAWAS` tinyint(1) DEFAULT NULL, `RAPAT_GABUNGAN` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `rasio_kondisi_operasional_usaha` -- CREATE TABLE IF NOT EXISTS `rasio_kondisi_operasional_usaha` ( `ID_MANFAAT_` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `BANYAK_UNIT_USAHA_YANG_MASIH_BERJALAN` tinyint(1) DEFAULT NULL, `BANYAK_UNIT_USAHA_KESELURUHAN` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `rasio_peningkatan_jumlah_anggota` -- CREATE TABLE IF NOT EXISTS `rasio_peningkatan_jumlah_anggota` ( `ID_RASIO_PENINGKATAN_JUMLAH_ANGGOTA` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `JUMLAH_ANGGOTA_TAHUN_SESUDAHNYA` varchar(5) DEFAULT NULL, `JUMLAH_ANGGOTA_TAHUN_SEBELUMNYA` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `rasio_transaksi_anggota` -- CREATE TABLE IF NOT EXISTS `rasio_transaksi_anggota` ( `ID_RASIO_TRANSAKSI_ANGGOTA` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `NILAI_TRANSAKSI_ANGGOTA` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `shu` -- CREATE TABLE IF NOT EXISTS `shu` ( `ID_SHU` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `PENDAPATAN_JASA` varchar(20) DEFAULT NULL, `PENDAPATAN_BARANG` varchar(20) DEFAULT NULL, `PENDAPATAN_LAIN_LAIN` varchar(20) DEFAULT NULL, `BEBAN_HONOR_KARYAWAN` varchar(20) DEFAULT NULL, `BEBAN_ADMINISTRASI_UMUM` varchar(20) DEFAULT NULL, `BEBAN_KOPERASI` varchar(20) DEFAULT NULL, `BEBAN_PENYUSUTAN` varchar(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `simpanan` -- CREATE TABLE IF NOT EXISTS `simpanan` ( `ID_SIMPANAN` varchar(10) NOT NULL, `ID_ANGGOTA` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_KATEGORI` varchar(10) DEFAULT NULL, `TANGGAL_SIMPANAN` datetime DEFAULT NULL, `JUMLAH_SIMPANAN` varchar(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `strategi_bersaing_koperasi` -- CREATE TABLE IF NOT EXISTS `strategi_bersaing_koperasi` ( `ID_STRATEGI_BERSAING_KOPERASI` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `PRODUK_KOPERASI` tinyint(1) DEFAULT NULL, `HARGA_PRODUK_KOPERASI` tinyint(1) DEFAULT NULL, `KESESUAIAN_PRODUK_KOPERASI` tinyint(1) DEFAULT NULL, `FOKUS_PRODUK_KOPERASI` tinyint(1) DEFAULT NULL, `KEBUTUHAN_PRODUK_KOPERASI` tinyint(1) DEFAULT NULL, `KERJA_SAMA_KOPERASI` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `struktur_permodalan` -- CREATE TABLE IF NOT EXISTS `struktur_permodalan` ( `ID_STRUKTUR_PERMODALAN` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `JUMLAH_MODAL_PINJAMAN` varchar(15) DEFAULT NULL, `JUMLAH_MODAL_SENDIRI` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `survey_kepuasan_anggota` -- CREATE TABLE IF NOT EXISTS `survey_kepuasan_anggota` ( `ID_SURVEY_KEPUASAN_ANGGOTA` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `JUMLAH_NILAI_SURVEY_KEPUASAN_ANGGOTA` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `tertib_administrasi` -- CREATE TABLE IF NOT EXISTS `tertib_administrasi` ( `ID_TERTIB_ADMINISTRASI` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `BUKU_DAFTAR_ANGGOTA` tinyint(1) DEFAULT NULL, `BUKU_DAFTAR_SIMPANAN_ANGGOTA` tinyint(1) DEFAULT NULL, `BUKU_DAFTAR_PENGURUS` tinyint(1) DEFAULT NULL, `BUKU_DAFTAR_PENGAWAS` tinyint(1) DEFAULT NULL, `BUKU_NOTULEN_RAPAT_ANGGOTA` tinyint(1) DEFAULT NULL, `BUKU_NOTULEN_RAPAT_PENGURUS` tinyint(1) DEFAULT NULL, `BUKU_NOTULEN_RAPAT_PENGAWAS` tinyint(1) DEFAULT NULL, `BUKU_DAFTAR_INVENTARIS_KOPERASI` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `tim_independent` -- CREATE TABLE IF NOT EXISTS `tim_independent` ( `ID_TIM_INDEPENDENT` varchar(10) NOT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `NAMA_TIM_INDEPENDENT` varchar(35) DEFAULT NULL, `ALAMAT_TIM_INDEPENDENT` varchar(10) DEFAULT NULL, `JK_TIM_INDEPENDENT` varchar(10) DEFAULT NULL, `JABATAN_TIM_INDEPENDENT` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `tingkat_kesehatan_kondisi_keuangan` -- CREATE TABLE IF NOT EXISTS `tingkat_kesehatan_kondisi_keuangan` ( `ID_TINGKAT_KESEHATAN_KONDISI_KEUANGAN` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `TOTAL_AKTIVA_LANCAR` varchar(15) DEFAULT NULL, `TOTAL_KEWAJIBAN_LANCAR` varchar(15) DEFAULT NULL, `TOTAL_AKTIVA` varchar(15) DEFAULT NULL, `TOTAL_KEWAJIBAN` varchar(15) DEFAULT NULL, `SHU` varchar(15) DEFAULT NULL, `PENDAPATAN_TOTAL` varchar(15) DEFAULT NULL, `PIUTANG_RATA_RATA` varchar(15) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `tingkat_pemanfaatan_layanan_koperasi_oleh_anggota` -- CREATE TABLE IF NOT EXISTS `tingkat_pemanfaatan_layanan_koperasi_oleh_anggota` ( `ID_TINGKAT_PEMANFAATAN_LAYANAN_KOPERASI_OLEH_ANGGOTA` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `JUMLAH_ANGGOTA_YANG_DILAYANI_PERHARI` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `tingkat_upah_karyawan` -- CREATE TABLE IF NOT EXISTS `tingkat_upah_karyawan` ( `ID_TINGKAT_UPAH_KARYAWAN` varchar(10) NOT NULL, `ID_PERIODE` varchar(10) DEFAULT NULL, `ID_KOPERASI` varchar(10) DEFAULT NULL, `JUMLAH_UMR` varchar(5) DEFAULT NULL, `JUMLAH_UPAH_KARYAWAN_RATA_RATA` varchar(5) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `user` -- CREATE TABLE IF NOT EXISTS `user` ( `USERNAME` varchar(10) NOT NULL, `PASSWORD` varchar(10) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Indexes for dumped tables -- -- -- Indexes for table `anggota` -- ALTER TABLE `anggota` ADD PRIMARY KEY (`ID_ANGGOTA`), ADD KEY `FK_RELATIONSHIP_16` (`ID_PERIODE`); -- -- Indexes for table `angsuran` -- ALTER TABLE `angsuran` ADD PRIMARY KEY (`ID_ANGSURAN`), ADD KEY `FK_RELATIONSHIP_24` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_4` (`ID_ANGGOTA`); -- -- Indexes for table `inovasi_koperasi` -- ALTER TABLE `inovasi_koperasi` ADD PRIMARY KEY (`ID_INOVASI_KOPERASI`), ADD KEY `FK_RELATIONSHIP_43` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_81` (`ID_PERIODE`); -- -- Indexes for table `jasa` -- ALTER TABLE `jasa` ADD PRIMARY KEY (`ID_JASA`), ADD KEY `FK_RELATIONSHIP_5` (`ID_ANGSURAN`); -- -- Indexes for table `kategori_pinjaman` -- ALTER TABLE `kategori_pinjaman` ADD PRIMARY KEY (`ID_KAT_PIN`); -- -- Indexes for table `kategori_simpanan` -- ALTER TABLE `kategori_simpanan` ADD PRIMARY KEY (`ID_KATEGORI`); -- -- Indexes for table `keberadaan_rk_dan_rapbn` -- ALTER TABLE `keberadaan_rk_dan_rapbn` ADD PRIMARY KEY (`ID_KEBERADAAN_RK_DAN_RAPBN`), ADD KEY `FK_RELATIONSHIP_25` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_67` (`ID_PERIODE`); -- -- Indexes for table `keberadaan_sistem_informasi` -- ALTER TABLE `keberadaan_sistem_informasi` ADD PRIMARY KEY (`ID_KEBERADAAN_SISTEM_INFORMASI`), ADD KEY `FK_RELATIONSHIP_29` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_87` (`ID_PERIODE`); -- -- Indexes for table `kemampuan_bersaing_koperasi` -- ALTER TABLE `kemampuan_bersaing_koperasi` ADD PRIMARY KEY (`ID_KEMAMPUAN_BERSAING_KOPERASI`), ADD KEY `FK_RELATIONSHIP_33` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_90` (`ID_PERIODE`); -- -- Indexes for table `kemudahan_akses_informasi` -- ALTER TABLE `kemudahan_akses_informasi` ADD PRIMARY KEY (`ID_KEMUDAHAN_AKSES_INFORMASI`), ADD KEY `FK_RELATIONSHIP_30` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_96` (`ID_PERIODE`); -- -- Indexes for table `kepengawasan_periode` -- ALTER TABLE `kepengawasan_periode` ADD PRIMARY KEY (`ID_KEPENGAWASAN_PERIODE`), ADD KEY `FK_RELATIONSHIP_58` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_59` (`ID_PENGAWAS`), ADD KEY `FK_RELATIONSHIP_61` (`ID_PERIODE`); -- -- Indexes for table `kepengurusan_periode` -- ALTER TABLE `kepengurusan_periode` ADD PRIMARY KEY (`ID_KEPENGURUSAN_PERIODE`), ADD KEY `FK_RELATIONSHIP_56` (`ID_PENGURUS`), ADD KEY `FK_RELATIONSHIP_57` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_60` (`ID_PERIODE`); -- -- Indexes for table `ketaatan_membayar_pajak` -- ALTER TABLE `ketaatan_membayar_pajak` ADD PRIMARY KEY (`ID_KETAATAN_MEMBAYAR_PAJAK`), ADD KEY `FK_RELATIONSHIP_40` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_78` (`ID_PERIODE`); -- -- Indexes for table `keterkaitan_usaha_koperasi_dengan_anggota` -- ALTER TABLE `keterkaitan_usaha_koperasi_dengan_anggota` ADD PRIMARY KEY (`ID_KETERKAITAN_USAHA_KOPERASI_DENGAN_ANGGOTA`), ADD KEY `FK_RELATIONSHIP_35` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_92` (`ID_PERIODE`); -- -- Indexes for table `kinerja_kepengurusan` -- ALTER TABLE `kinerja_kepengurusan` ADD PRIMARY KEY (`ID_KINERJA_KEPENGURUSAN`), ADD KEY `FK_RELATIONSHIP_15` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_69` (`ID_PERIODE`); -- -- Indexes for table `komunikasi_bisnis_ke_masyarakat` -- ALTER TABLE `komunikasi_bisnis_ke_masyarakat` ADD PRIMARY KEY (`ID_KOMUNIKASI_BISNIS_KE_MASYARAKAT`), ADD KEY `FK_RELATIONSHIP_39` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_77` (`ID_PERIODE`); -- -- Indexes for table `koperasi` -- ALTER TABLE `koperasi` ADD PRIMARY KEY (`ID_KOPERASI`); -- -- Indexes for table `layanan_usaha_koperasi` -- ALTER TABLE `layanan_usaha_koperasi` ADD PRIMARY KEY (`ID_LAYANAN_USAHA_KOPERASI`), ADD KEY `FK_RELATIONSHIP_37` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_75` (`ID_PERIODE`); -- -- Indexes for table `manajemen_pengawasan` -- ALTER TABLE `manajemen_pengawasan` ADD PRIMARY KEY (`ID_MANAJEMEN_PENGAWASAN`), ADD KEY `FK_RELATIONSHIP_12` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_66` (`ID_PERIODE`); -- -- Indexes for table `model_pendidikan_dan_pelatihan_pengurus` -- ALTER TABLE `model_pendidikan_dan_pelatihan_pengurus` ADD PRIMARY KEY (`ID_MODEL_PENDIDIKAN_DAN_PELATIHAN_PENGURUS`), ADD KEY `FK_RELATIONSHIP_47` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_85` (`ID_PERIODE`); -- -- Indexes for table `pelayanan_sosial` -- ALTER TABLE `pelayanan_sosial` ADD PRIMARY KEY (`ID_PELAYANAN_SOSIAL`), ADD KEY `FK_RELATIONSHIP_52` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_76` (`ID_PERIODE`); -- -- Indexes for table `pengawas` -- ALTER TABLE `pengawas` ADD PRIMARY KEY (`ID_PENGAWAS`), ADD KEY `ID_KOPERASI` (`ID_KOPERASI`); -- -- Indexes for table `pengurus` -- ALTER TABLE `pengurus` ADD PRIMARY KEY (`ID_PENGURUS`), ADD KEY `ID_KOPERASI` (`ID_KOPERASI`); -- -- Indexes for table `penilaian_periode` -- ALTER TABLE `penilaian_periode` ADD PRIMARY KEY (`ID_PENILAIAN_PERIODE`), ADD KEY `FK_RELATIONSHIP_62` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_63` (`ID_TIM_INDEPENDENT`), ADD KEY `FK_RELATIONSHIP_64` (`ID_PERIODE`); -- -- Indexes for table `peningkatan_penyertaan_modal_koperasi` -- ALTER TABLE `peningkatan_penyertaan_modal_koperasi` ADD PRIMARY KEY (`ID_PENINGKATAN_PENYERTAAN_MODAL_KOPERASI`), ADD KEY `FK_RELATIONSHIP_50` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_72` (`ID_PERIODE`); -- -- Indexes for table `penyerapan_tenaga_kerja` -- ALTER TABLE `penyerapan_tenaga_kerja` ADD PRIMARY KEY (`ID_PENYERAPAN_TENAGA_KERJA`), ADD KEY `FK_RELATIONSHIP_41` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_79` (`ID_PERIODE`); -- -- Indexes for table `periode` -- ALTER TABLE `periode` ADD PRIMARY KEY (`ID_PERIODE`); -- -- Indexes for table `pinjaman` -- ALTER TABLE `pinjaman` ADD PRIMARY KEY (`ID_PINJAMAN`), ADD KEY `FK_RELATIONSHIP_23` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_27` (`ID_KAT_PIN`), ADD KEY `FK_RELATIONSHIP_3` (`ID_ANGGOTA`); -- -- Indexes for table `pola_pengkaderan` -- ALTER TABLE `pola_pengkaderan` ADD PRIMARY KEY (`ID_POLA_PENGKADERAN`), ADD KEY `FK_RELATIONSHIP_46` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_84` (`ID_PERIODE`); -- -- Indexes for table `prosentase_besaran_simpanan_sukarela` -- ALTER TABLE `prosentase_besaran_simpanan_sukarela` ADD PRIMARY KEY (`ID_PROSENTASE_BESARAN_SIMPANAN_SUKARELA`), ADD KEY `FK_RELATIONSHIP_49` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_71` (`ID_PERIODE`); -- -- Indexes for table `prosentase_pelunasan_simpanan_wajib` -- ALTER TABLE `prosentase_pelunasan_simpanan_wajib` ADD PRIMARY KEY (`ID_PROSENTASE_PELUNASAN_SIMPANAN_WAJIB`), ADD KEY `FK_RELATIONSHIP_48` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_70` (`ID_PERIODE`); -- -- Indexes for table `rapat_koperasi` -- ALTER TABLE `rapat_koperasi` ADD PRIMARY KEY (`ID_RAPAT_KOPERASI`), ADD KEY `FK_RELATIONSHIP_11` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_65` (`ID_PERIODE`); -- -- Indexes for table `rasio_kondisi_operasional_usaha` -- ALTER TABLE `rasio_kondisi_operasional_usaha` ADD PRIMARY KEY (`ID_MANFAAT_`), ADD KEY `FK_RELATIONSHIP_14` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_68` (`ID_PERIODE`); -- -- Indexes for table `rasio_peningkatan_jumlah_anggota` -- ALTER TABLE `rasio_peningkatan_jumlah_anggota` ADD PRIMARY KEY (`ID_RASIO_PENINGKATAN_JUMLAH_ANGGOTA`), ADD KEY `FK_RELATIONSHIP_45` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_83` (`ID_PERIODE`); -- -- Indexes for table `rasio_transaksi_anggota` -- ALTER TABLE `rasio_transaksi_anggota` ADD PRIMARY KEY (`ID_RASIO_TRANSAKSI_ANGGOTA`), ADD KEY `FK_RELATIONSHIP_44` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_82` (`ID_PERIODE`); -- -- Indexes for table `shu` -- ALTER TABLE `shu` ADD PRIMARY KEY (`ID_SHU`), ADD KEY `FK_RELATIONSHIP_20` (`ID_PERIODE`), ADD KEY `FK_RELATIONSHIP_6` (`ID_KOPERASI`); -- -- Indexes for table `simpanan` -- ALTER TABLE `simpanan` ADD PRIMARY KEY (`ID_SIMPANAN`), ADD KEY `FK_RELATIONSHIP_21` (`ID_KATEGORI`), ADD KEY `FK_RELATIONSHIP_22` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_26` (`ID_ANGGOTA`); -- -- Indexes for table `strategi_bersaing_koperasi` -- ALTER TABLE `strategi_bersaing_koperasi` ADD PRIMARY KEY (`ID_STRATEGI_BERSAING_KOPERASI`), ADD KEY `FK_RELATIONSHIP_34` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_91` (`ID_PERIODE`); -- -- Indexes for table `struktur_permodalan` -- ALTER TABLE `struktur_permodalan` ADD PRIMARY KEY (`ID_STRUKTUR_PERMODALAN`), ADD KEY `FK_RELATIONSHIP_31` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_94` (`ID_PERIODE`); -- -- Indexes for table `survey_kepuasan_anggota` -- ALTER TABLE `survey_kepuasan_anggota` ADD PRIMARY KEY (`ID_SURVEY_KEPUASAN_ANGGOTA`), ADD KEY `FK_RELATIONSHIP_36` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_74` (`ID_PERIODE`); -- -- Indexes for table `tertib_administrasi` -- ALTER TABLE `tertib_administrasi` ADD PRIMARY KEY (`ID_TERTIB_ADMINISTRASI`), ADD KEY `FK_RELATIONSHIP_28` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_86` (`ID_PERIODE`); -- -- Indexes for table `tim_independent` -- ALTER TABLE `tim_independent` ADD PRIMARY KEY (`ID_TIM_INDEPENDENT`), ADD KEY `FK_RELATIONSHIP_55` (`ID_KOPERASI`); -- -- Indexes for table `tingkat_kesehatan_kondisi_keuangan` -- ALTER TABLE `tingkat_kesehatan_kondisi_keuangan` ADD PRIMARY KEY (`ID_TINGKAT_KESEHATAN_KONDISI_KEUANGAN`), ADD KEY `FK_RELATIONSHIP_32` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_89` (`ID_PERIODE`); -- -- Indexes for table `tingkat_pemanfaatan_layanan_koperasi_oleh_anggota` -- ALTER TABLE `tingkat_pemanfaatan_layanan_koperasi_oleh_anggota` ADD PRIMARY KEY (`ID_TINGKAT_PEMANFAATAN_LAYANAN_KOPERASI_OLEH_ANGGOTA`), ADD KEY `FK_RELATIONSHIP_51` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_73` (`ID_PERIODE`); -- -- Indexes for table `tingkat_upah_karyawan` -- ALTER TABLE `tingkat_upah_karyawan` ADD PRIMARY KEY (`ID_TINGKAT_UPAH_KARYAWAN`), ADD KEY `FK_RELATIONSHIP_42` (`ID_KOPERASI`), ADD KEY `FK_RELATIONSHIP_80` (`ID_PERIODE`); -- -- Indexes for table `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`USERNAME`); -- -- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables) -- -- -- Ketidakleluasaan untuk tabel `anggota` -- ALTER TABLE `anggota` ADD CONSTRAINT `FK_RELATIONSHIP_16` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `angsuran` -- ALTER TABLE `angsuran` ADD CONSTRAINT `FK_RELATIONSHIP_24` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_4` FOREIGN KEY (`ID_ANGGOTA`) REFERENCES `anggota` (`ID_ANGGOTA`); -- -- Ketidakleluasaan untuk tabel `inovasi_koperasi` -- ALTER TABLE `inovasi_koperasi` ADD CONSTRAINT `FK_RELATIONSHIP_43` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_81` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `jasa` -- ALTER TABLE `jasa` ADD CONSTRAINT `FK_RELATIONSHIP_5` FOREIGN KEY (`ID_ANGSURAN`) REFERENCES `angsuran` (`ID_ANGSURAN`); -- -- Ketidakleluasaan untuk tabel `keberadaan_rk_dan_rapbn` -- ALTER TABLE `keberadaan_rk_dan_rapbn` ADD CONSTRAINT `FK_RELATIONSHIP_25` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_67` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `keberadaan_sistem_informasi` -- ALTER TABLE `keberadaan_sistem_informasi` ADD CONSTRAINT `FK_RELATIONSHIP_29` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_87` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `kemampuan_bersaing_koperasi` -- ALTER TABLE `kemampuan_bersaing_koperasi` ADD CONSTRAINT `FK_RELATIONSHIP_33` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_90` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `kemudahan_akses_informasi` -- ALTER TABLE `kemudahan_akses_informasi` ADD CONSTRAINT `FK_RELATIONSHIP_30` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_96` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `kepengawasan_periode` -- ALTER TABLE `kepengawasan_periode` ADD CONSTRAINT `FK_RELATIONSHIP_58` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_59` FOREIGN KEY (`ID_PENGAWAS`) REFERENCES `pengawas` (`ID_PENGAWAS`), ADD CONSTRAINT `FK_RELATIONSHIP_61` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `kepengurusan_periode` -- ALTER TABLE `kepengurusan_periode` ADD CONSTRAINT `FK_RELATIONSHIP_56` FOREIGN KEY (`ID_PENGURUS`) REFERENCES `pengurus` (`ID_PENGURUS`), ADD CONSTRAINT `FK_RELATIONSHIP_57` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_60` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `ketaatan_membayar_pajak` -- ALTER TABLE `ketaatan_membayar_pajak` ADD CONSTRAINT `FK_RELATIONSHIP_40` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_78` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `keterkaitan_usaha_koperasi_dengan_anggota` -- ALTER TABLE `keterkaitan_usaha_koperasi_dengan_anggota` ADD CONSTRAINT `FK_RELATIONSHIP_35` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_92` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `kinerja_kepengurusan` -- ALTER TABLE `kinerja_kepengurusan` ADD CONSTRAINT `FK_RELATIONSHIP_15` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_69` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `komunikasi_bisnis_ke_masyarakat` -- ALTER TABLE `komunikasi_bisnis_ke_masyarakat` ADD CONSTRAINT `FK_RELATIONSHIP_39` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_77` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `layanan_usaha_koperasi` -- ALTER TABLE `layanan_usaha_koperasi` ADD CONSTRAINT `FK_RELATIONSHIP_37` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_75` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `manajemen_pengawasan` -- ALTER TABLE `manajemen_pengawasan` ADD CONSTRAINT `FK_RELATIONSHIP_12` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_66` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `model_pendidikan_dan_pelatihan_pengurus` -- ALTER TABLE `model_pendidikan_dan_pelatihan_pengurus` ADD CONSTRAINT `FK_RELATIONSHIP_47` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_85` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `pelayanan_sosial` -- ALTER TABLE `pelayanan_sosial` ADD CONSTRAINT `FK_RELATIONSHIP_52` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_76` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `pengawas` -- ALTER TABLE `pengawas` ADD CONSTRAINT `pengawas_ibfk_1` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Ketidakleluasaan untuk tabel `pengurus` -- ALTER TABLE `pengurus` ADD CONSTRAINT `pengurus_ibfk_1` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Ketidakleluasaan untuk tabel `penilaian_periode` -- ALTER TABLE `penilaian_periode` ADD CONSTRAINT `FK_RELATIONSHIP_62` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_63` FOREIGN KEY (`ID_TIM_INDEPENDENT`) REFERENCES `tim_independent` (`ID_TIM_INDEPENDENT`), ADD CONSTRAINT `FK_RELATIONSHIP_64` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `peningkatan_penyertaan_modal_koperasi` -- ALTER TABLE `peningkatan_penyertaan_modal_koperasi` ADD CONSTRAINT `FK_RELATIONSHIP_50` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_72` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `penyerapan_tenaga_kerja` -- ALTER TABLE `penyerapan_tenaga_kerja` ADD CONSTRAINT `FK_RELATIONSHIP_41` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_79` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `pinjaman` -- ALTER TABLE `pinjaman` ADD CONSTRAINT `FK_RELATIONSHIP_23` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_27` FOREIGN KEY (`ID_KAT_PIN`) REFERENCES `kategori_pinjaman` (`ID_KAT_PIN`), ADD CONSTRAINT `FK_RELATIONSHIP_3` FOREIGN KEY (`ID_ANGGOTA`) REFERENCES `anggota` (`ID_ANGGOTA`); -- -- Ketidakleluasaan untuk tabel `pola_pengkaderan` -- ALTER TABLE `pola_pengkaderan` ADD CONSTRAINT `FK_RELATIONSHIP_46` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_84` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `prosentase_besaran_simpanan_sukarela` -- ALTER TABLE `prosentase_besaran_simpanan_sukarela` ADD CONSTRAINT `FK_RELATIONSHIP_49` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_71` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `prosentase_pelunasan_simpanan_wajib` -- ALTER TABLE `prosentase_pelunasan_simpanan_wajib` ADD CONSTRAINT `FK_RELATIONSHIP_48` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_70` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `rapat_koperasi` -- ALTER TABLE `rapat_koperasi` ADD CONSTRAINT `FK_RELATIONSHIP_11` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_65` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `rasio_kondisi_operasional_usaha` -- ALTER TABLE `rasio_kondisi_operasional_usaha` ADD CONSTRAINT `FK_RELATIONSHIP_14` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_68` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `rasio_peningkatan_jumlah_anggota` -- ALTER TABLE `rasio_peningkatan_jumlah_anggota` ADD CONSTRAINT `FK_RELATIONSHIP_45` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_83` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `rasio_transaksi_anggota` -- ALTER TABLE `rasio_transaksi_anggota` ADD CONSTRAINT `FK_RELATIONSHIP_44` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_82` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `shu` -- ALTER TABLE `shu` ADD CONSTRAINT `FK_RELATIONSHIP_20` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`), ADD CONSTRAINT `FK_RELATIONSHIP_6` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`); -- -- Ketidakleluasaan untuk tabel `simpanan` -- ALTER TABLE `simpanan` ADD CONSTRAINT `FK_RELATIONSHIP_21` FOREIGN KEY (`ID_KATEGORI`) REFERENCES `kategori_simpanan` (`ID_KATEGORI`), ADD CONSTRAINT `FK_RELATIONSHIP_22` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_26` FOREIGN KEY (`ID_ANGGOTA`) REFERENCES `anggota` (`ID_ANGGOTA`); -- -- Ketidakleluasaan untuk tabel `strategi_bersaing_koperasi` -- ALTER TABLE `strategi_bersaing_koperasi` ADD CONSTRAINT `FK_RELATIONSHIP_34` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_91` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `struktur_permodalan` -- ALTER TABLE `struktur_permodalan` ADD CONSTRAINT `FK_RELATIONSHIP_31` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_94` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `survey_kepuasan_anggota` -- ALTER TABLE `survey_kepuasan_anggota` ADD CONSTRAINT `FK_RELATIONSHIP_36` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_74` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `tertib_administrasi` -- ALTER TABLE `tertib_administrasi` ADD CONSTRAINT `FK_RELATIONSHIP_28` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_86` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `tim_independent` -- ALTER TABLE `tim_independent` ADD CONSTRAINT `FK_RELATIONSHIP_55` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`); -- -- Ketidakleluasaan untuk tabel `tingkat_kesehatan_kondisi_keuangan` -- ALTER TABLE `tingkat_kesehatan_kondisi_keuangan` ADD CONSTRAINT `FK_RELATIONSHIP_32` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_89` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `tingkat_pemanfaatan_layanan_koperasi_oleh_anggota` -- ALTER TABLE `tingkat_pemanfaatan_layanan_koperasi_oleh_anggota` ADD CONSTRAINT `FK_RELATIONSHIP_51` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_73` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); -- -- Ketidakleluasaan untuk tabel `tingkat_upah_karyawan` -- ALTER TABLE `tingkat_upah_karyawan` ADD CONSTRAINT `FK_RELATIONSHIP_42` FOREIGN KEY (`ID_KOPERASI`) REFERENCES `koperasi` (`ID_KOPERASI`), ADD CONSTRAINT `FK_RELATIONSHIP_80` FOREIGN KEY (`ID_PERIODE`) REFERENCES `periode` (`ID_PERIODE`); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
DROP DATABASE biblioteca; CREATE DATABASE biblioteca; SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; -- ----------------------------------------------------- -- Schema biblioteca -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `biblioteca` DEFAULT CHARACTER SET latin1 ; USE `biblioteca` ; -- ----------------------------------------------------- -- Table `biblioteca`.`Autor` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Autor` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Autor` ( `id_autor` INT(11) NOT NULL AUTO_INCREMENT, `nombre_autor` VARCHAR(30) NOT NULL, `apaterno_autor` VARCHAR(30) NOT NULL, PRIMARY KEY (`id_autor`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Region` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Region` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Region` ( `id_region` INT(11) NOT NULL AUTO_INCREMENT, `region` VARCHAR(30) NOT NULL, PRIMARY KEY (`id_region`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Comuna` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Comuna` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Comuna` ( `id_comuna` INT(11) NOT NULL AUTO_INCREMENT, `comuna` VARCHAR(50) NOT NULL, `id_region` INT(11) NOT NULL, PRIMARY KEY (`id_comuna`), INDEX `region_comuna` (`id_region` ASC), CONSTRAINT `region_comuna` FOREIGN KEY (`id_region`) REFERENCES `biblioteca`.`Region` (`id_region`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Editorial` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Editorial` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Editorial` ( `id_editorial` INT(11) NOT NULL AUTO_INCREMENT, `editorial` VARCHAR(30) NOT NULL, PRIMARY KEY (`id_editorial`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Recurso` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Recurso` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Recurso` ( `id_recurso` INT(11) NOT NULL AUTO_INCREMENT, `titulo` VARCHAR(50) NOT NULL, `tipo_recurso` INT(11) NOT NULL, `tipo_texto` INT(11) NOT NULL, `id_editorial` INT(11) NOT NULL, `total_paginas` INT(11) NULL DEFAULT NULL, PRIMARY KEY (`id_recurso`), INDEX `recurso_editorial` (`id_editorial` ASC), CONSTRAINT `recurso_editorial` FOREIGN KEY (`id_editorial`) REFERENCES `biblioteca`.`Editorial` (`id_editorial`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Usuario` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Usuario` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Usuario` ( `id_usuario` INT(11) NOT NULL AUTO_INCREMENT, `nombre` VARCHAR(30) NOT NULL, `usuario` VARCHAR(30) NOT NULL, `clave` VARCHAR(30) NOT NULL, `es_miembro` TINYINT(1) DEFAULT '0', `apellido` VARCHAR(30) NOT NULL, `correo` VARCHAR(100) NOT NULL, `activo` TINYINT(1) NOT NULL, `cod_sucursal` INTEGER NOT NULL, PRIMARY KEY (`id_usuario`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Sucursal` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Sucursal` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Sucursal` ( `cod_sucursal` INT(11) NOT NULL AUTO_INCREMENT, `nombre` VARCHAR(50) NOT NULL, `es_central` TINYINT(1) NULL DEFAULT '0', `dir_calle` VARCHAR(40) NOT NULL, `dir_numero` INT(11) NOT NULL, `id_usuario` INT(11) NOT NULL, `id_comuna` INT(11) NOT NULL, PRIMARY KEY (`cod_sucursal`), UNIQUE INDEX `sucursal__idx` (`id_usuario` ASC), INDEX `sucursal_comuna` (`id_comuna` ASC), CONSTRAINT `sucursal_comuna` FOREIGN KEY (`id_comuna`) REFERENCES `biblioteca`.`Comuna` (`id_comuna`), CONSTRAINT `sucursal_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `biblioteca`.`Usuario` (`id_usuario`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Copia_Recurso` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Copia_Recurso` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Copia_Recurso` ( `id_copia` INT(11) NOT NULL AUTO_INCREMENT, `estado_copia` INT(11) NOT NULL, `id_recurso` INT(11) NOT NULL, `cod_sucursal` INT(11) NOT NULL, PRIMARY KEY (`id_copia`), INDEX `recurso_copia` (`id_recurso` ASC), INDEX `sucursal_copia_recurso` (`cod_sucursal` ASC), CONSTRAINT `recurso_copia` FOREIGN KEY (`id_recurso`) REFERENCES `biblioteca`.`Recurso` (`id_recurso`), CONSTRAINT `sucursal_copia_recurso` FOREIGN KEY (`cod_sucursal`) REFERENCES `biblioteca`.`Sucursal` (`cod_sucursal`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Cuenta` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Cuenta` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Cuenta` ( `id` INT(11) NOT NULL AUTO_INCREMENT, `usuario` VARCHAR(30) NOT NULL, `clave` VARCHAR(30) NOT NULL, `es_miembro` TINYINT(1) NULL DEFAULT '0', `nombre` VARCHAR(30) NOT NULL, `apellido` VARCHAR(30) NOT NULL, `correo` VARCHAR(50) NULL DEFAULT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Proveedor` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Proveedor` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Proveedor` ( `id_proveedor` INT(11) NOT NULL AUTO_INCREMENT, `nombre_proveedor` VARCHAR(30) NOT NULL, `dir_calle` VARCHAR(40) NOT NULL, `dir_numero` INT(11) NOT NULL, `id_comuna` INT(11) NOT NULL, PRIMARY KEY (`id_proveedor`), INDEX `comuna_proveedor` (`id_comuna` ASC), CONSTRAINT `comuna_proveedor` FOREIGN KEY (`id_comuna`) REFERENCES `biblioteca`.`Comuna` (`id_comuna`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Factura` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Factura` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Factura` ( `id_factura` INT(11) NOT NULL AUTO_INCREMENT, `tipo_factura` INT(11) NOT NULL, `cod_sucursal` INT(11) NOT NULL, `sucursal_destino` INT(11) NOT NULL, `sucursal_origen` INT(11) NOT NULL, `id_proveedor` INT(11) NOT NULL, `total` INT(11) NULL DEFAULT NULL, PRIMARY KEY (`id_factura`), INDEX `actura_proveedor` (`id_proveedor` ASC), INDEX `sucursal_compra` (`cod_sucursal` ASC), INDEX `factura_destino` (`sucursal_destino` ASC), INDEX `factura_origen` (`sucursal_origen` ASC), CONSTRAINT `actura_proveedor` FOREIGN KEY (`id_proveedor`) REFERENCES `biblioteca`.`Proveedor` (`id_proveedor`), CONSTRAINT `factura_destino` FOREIGN KEY (`sucursal_destino`) REFERENCES `biblioteca`.`Sucursal` (`cod_sucursal`), CONSTRAINT `factura_origen` FOREIGN KEY (`sucursal_origen`) REFERENCES `biblioteca`.`Sucursal` (`cod_sucursal`), CONSTRAINT `sucursal_compra` FOREIGN KEY (`cod_sucursal`) REFERENCES `biblioteca`.`Sucursal` (`cod_sucursal`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Pedido` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Pedido` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Pedido` ( `id_pedido` INT(11) NOT NULL AUTO_INCREMENT, `total` INT(11) NOT NULL, `id_recurso` INT(11) NOT NULL, PRIMARY KEY (`id_pedido`), INDEX `recurso_pedido` (`id_recurso` ASC), CONSTRAINT `recurso_pedido` FOREIGN KEY (`id_recurso`) REFERENCES `biblioteca`.`Recurso` (`id_recurso`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Detalle_Factura` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Detalle_Factura` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Detalle_Factura` ( `id_detalle_factura` INT(11) NOT NULL AUTO_INCREMENT, `id_factura` INT(11) NOT NULL, `id_pedido` INT(11) NOT NULL, PRIMARY KEY (`id_detalle_factura`), INDEX `compra_detalle` (`id_factura` ASC), INDEX `pedido_factura` (`id_pedido` ASC), CONSTRAINT `compra_detalle` FOREIGN KEY (`id_factura`) REFERENCES `biblioteca`.`Factura` (`id_factura`), CONSTRAINT `pedido_factura` FOREIGN KEY (`id_pedido`) REFERENCES `biblioteca`.`Pedido` (`id_pedido`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Prestamo` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Prestamo` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Prestamo` ( `cod_prestamo` INT(11) NOT NULL AUTO_INCREMENT, `uso_total` DATE NOT NULL, `cod_sucursal` INT(11) NOT NULL, `id_usuario` INT(11) NOT NULL, `fecha_prestamo` DATE NOT NULL, `fecha_devolución` DATE NOT NULL, PRIMARY KEY (`cod_prestamo`), INDEX `prestamo_sucursal` (`cod_sucursal` ASC), INDEX `usuario_prestamo` (`id_usuario` ASC), CONSTRAINT `prestamo_sucursal` FOREIGN KEY (`cod_sucursal`) REFERENCES `biblioteca`.`Sucursal` (`cod_sucursal`), CONSTRAINT `usuario_prestamo` FOREIGN KEY (`id_usuario`) REFERENCES `biblioteca`.`Usuario` (`id_usuario`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Detalle_Prestamo` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Detalle_Prestamo` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Detalle_Prestamo` ( `id_detalle_prestamo` INT(11) NOT NULL AUTO_INCREMENT, `estado_prestamo` INT(11) NOT NULL, `cod_prestamo` INT(11) NOT NULL, `id_copia` INT(11) NOT NULL, `cod_sucursal` INT(11) NOT NULL, PRIMARY KEY (`id_detalle_prestamo`), INDEX `biblioteca_devolucion` (`cod_sucursal` ASC), INDEX `copia_prestamo` (`id_copia` ASC), INDEX `libro_prestamo` (`cod_prestamo` ASC), CONSTRAINT `biblioteca_devolucion` FOREIGN KEY (`cod_sucursal`) REFERENCES `biblioteca`.`Sucursal` (`cod_sucursal`), CONSTRAINT `copia_prestamo` FOREIGN KEY (`id_copia`) REFERENCES `biblioteca`.`Copia_Recurso` (`id_copia`), CONSTRAINT `libro_prestamo` FOREIGN KEY (`cod_prestamo`) REFERENCES `biblioteca`.`Prestamo` (`cod_prestamo`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Libro` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Libro` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Libro` ( `id_recurso` INT(11) NOT NULL, `isbn` VARCHAR(30) NOT NULL, `lomo` VARCHAR(30) NULL DEFAULT NULL, `contraportada` VARCHAR(30) NULL DEFAULT NULL, `portada` VARCHAR(30) NULL DEFAULT NULL, PRIMARY KEY (`id_recurso`), CONSTRAINT `libro_recurso_fk` FOREIGN KEY (`id_recurso`) REFERENCES `biblioteca`.`Recurso` (`id_recurso`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Multa` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Multa` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Multa` ( `id_multa` INT(11) NOT NULL AUTO_INCREMENT, `valor_multa` INT(11) NOT NULL, PRIMARY KEY (`id_multa`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Periodico` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Periodico` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Periodico` ( `id_recurso` INT(11) NOT NULL, `lema` VARCHAR(50) NULL DEFAULT NULL, `fecha_publicacion` DATE NOT NULL, PRIMARY KEY (`id_recurso`), CONSTRAINT `periodico_recurso_fk` FOREIGN KEY (`id_recurso`) REFERENCES `biblioteca`.`Recurso` (`id_recurso`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Recurso_Autor` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Recurso_Autor` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Recurso_Autor` ( `id_autor` INT(11) NOT NULL, `id_recurso` INT(11) NOT NULL, INDEX `autor_libro_autor` (`id_autor` ASC), INDEX `recurso_autor` (`id_recurso` ASC), CONSTRAINT `autor_libro_autor` FOREIGN KEY (`id_autor`) REFERENCES `biblioteca`.`Autor` (`id_autor`) ON DELETE NO ACTION, CONSTRAINT `recurso_autor` FOREIGN KEY (`id_recurso`) REFERENCES `biblioteca`.`Recurso` (`id_recurso`) ON DELETE CASCADE ON UPDATE NO ACTION) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Revista` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Revista` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Revista` ( `id_recurso` INT(11) NOT NULL, PRIMARY KEY (`id_recurso`), CONSTRAINT `revista_recurso_fk` FOREIGN KEY (`id_recurso`) REFERENCES `biblioteca`.`Recurso` (`id_recurso`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Topico` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Topico` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Topico` ( `id_topico` INT(11) NOT NULL AUTO_INCREMENT, `topico` VARCHAR(30) NOT NULL, PRIMARY KEY (`id_topico`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Topico_Recurso` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Topico_Recurso` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Topico_Recurso` ( `id_topico` INT(11) NOT NULL, `id_recurso` INT(11) NOT NULL, INDEX `recurso_topico_idx` (`id_recurso` ASC), INDEX `topico_libro` (`id_topico` ASC), CONSTRAINT `recurso_topico` FOREIGN KEY (`id_recurso`) REFERENCES `biblioteca`.`Recurso` (`id_recurso`) ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT `topico_libro` FOREIGN KEY (`id_topico`) REFERENCES `biblioteca`.`Topico` (`id_topico`) ON DELETE CASCADE ON UPDATE NO ACTION) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Usuario_Multa` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Usuario_Multa` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Usuario_Multa` ( `id_usuario_multa` INT(11) NOT NULL AUTO_INCREMENT, `activo` TINYINT(1) NOT NULL, `id_multa` INT(11) NOT NULL, `id_usuario` INT(11) NOT NULL, PRIMARY KEY (`id_usuario_multa`), INDEX `multa_usuario` (`id_multa` ASC), INDEX `usuario_multa` (`id_usuario` ASC), CONSTRAINT `multa_usuario` FOREIGN KEY (`id_multa`) REFERENCES `biblioteca`.`Multa` (`id_multa`), CONSTRAINT `usuario_multa` FOREIGN KEY (`id_usuario`) REFERENCES `biblioteca`.`Usuario` (`id_usuario`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; -- ----------------------------------------------------- -- Table `biblioteca`.`Usuario_Rol` -- ----------------------------------------------------- DROP TABLE IF EXISTS `biblioteca`.`Usuario_Rol` ; CREATE TABLE IF NOT EXISTS `biblioteca`.`Usuario_Rol` ( `rol` INT(11) NOT NULL, `id_usuario` INT(11) NOT NULL, INDEX `usuario_rol` (`id_usuario` ASC), CONSTRAINT `usuario_rol` FOREIGN KEY (`id_usuario`) REFERENCES `biblioteca`.`Usuario` (`id_usuario`)) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
CREATE TABLE trans ( id_trans RAW(16) DEFAULT SYS_GUID() NOT NULL , trans_date DATE , customer_id_customer RAW(16) NOT NULL , item_id_item RAW(16) NOT NULL ) ; ALTER TABLE trans ADD CONSTRAINT trans_PK PRIMARY KEY ( id_trans ) ;
-- phpMyAdmin SQL Dump -- version 4.8.3 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Tempo de geração: 18/01/2020 às 11:25 -- Versão do servidor: 5.7.23-23 -- Versão do PHP: 7.2.7 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Banco de dados: `creche26_vofilomena` -- CREATE DATABASE IF NOT EXISTS `creche26_vofilomena` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; USE `creche26_vofilomena`; -- -------------------------------------------------------- -- -- Estrutura para tabela `album` -- CREATE TABLE `album` ( `id_album` int(11) NOT NULL, `titulo_album` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, `img_album` text COLLATE utf8_unicode_ci, `pasta_album` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `create_album` datetime DEFAULT NULL, `alter_album` datetime DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Fazendo dump de dados para tabela `album` -- INSERT INTO `album` (`id_album`, `titulo_album`, `img_album`, `pasta_album`, `create_album`, `alter_album`) VALUES (23, 'NOSSOS EVENTOS', 'assets/img/albuns/nossos_eventos_05122019024607/capa_05122019024607.jpg', 'nossos_eventos_05122019024607', '2019-12-05 14:12:07', '2019-12-18 09:12:07'); -- -------------------------------------------------------- -- -- Estrutura para tabela `banners` -- CREATE TABLE `banners` ( `id_banner` int(11) NOT NULL, `titulo_banner` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `img_banner` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `create_banner` datetime DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Estrutura para tabela `contatos` -- CREATE TABLE `contatos` ( `id_contato` int(2) NOT NULL, `nome_contato` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `email_contato` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `assunto_contato` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `msg_contato` text COLLATE utf8_unicode_ci, `data_contato` date NOT NULL, `hora_contato` time NOT NULL, `create_contato` datetime NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Fazendo dump de dados para tabela `contatos` -- INSERT INTO `contatos` (`id_contato`, `nome_contato`, `email_contato`, `assunto_contato`, `msg_contato`, `data_contato`, `hora_contato`, `create_contato`) VALUES (2, '<NAME>', '<EMAIL>', 'Orçamento bercário', 'Olá, bom dia.\r\n\r\nGostaria de ter acesso as informações sobre as disponibilidades para bercário (horários, custos, vagas...). Tenha uma filha de 4 meses.\r\n\r\nObrigado.\r\n\r\n<NAME>', '2020-01-14', '11:01:06', '2020-01-14 11:01:06'); -- -------------------------------------------------------- -- -- Estrutura para tabela `fotos_album` -- CREATE TABLE `fotos_album` ( `id_foto` int(11) NOT NULL, `fk_id_album` int(11) DEFAULT '0', `img_foto` text COLLATE utf8_unicode_ci, `create_foto` datetime DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Fazendo dump de dados para tabela `fotos_album` -- INSERT INTO `fotos_album` (`id_foto`, `fk_id_album`, `img_foto`, `create_foto`) VALUES (46, 23, 'assets/img/albuns/nossos_eventos_05122019024607/foto5_23_05122019024616.jpg', '2019-12-05 14:12:16'), (45, 23, 'assets/img/albuns/nossos_eventos_05122019024607/foto4_23_05122019024616.jpg', '2019-12-05 14:12:16'), (44, 23, 'assets/img/albuns/nossos_eventos_05122019024607/foto3_23_05122019024616.jpg', '2019-12-05 14:12:16'), (43, 23, 'assets/img/albuns/nossos_eventos_05122019024607/foto2_23_05122019024616.jpg', '2019-12-05 14:12:16'), (42, 23, 'assets/img/albuns/nossos_eventos_05122019024607/foto1_23_05122019024616.jpg', '2019-12-05 14:12:16'), (41, 23, 'assets/img/albuns/nossos_eventos_05122019024607/foto0_23_05122019024616.jpg', '2019-12-05 14:12:16'); -- -------------------------------------------------------- -- -- Estrutura para tabela `noticias` -- CREATE TABLE `noticias` ( `id_noticia` int(11) NOT NULL, `titulo_noticia` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `texto_noticia` text COLLATE utf8_unicode_ci, `img_noticia` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `data_noticia` date DEFAULT NULL, `create_noticia` datetime DEFAULT NULL, `alter_noticia` datetime DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Fazendo dump de dados para tabela `noticias` -- INSERT INTO `noticias` (`id_noticia`, `titulo_noticia`, `texto_noticia`, `img_noticia`, `data_noticia`, `create_noticia`, `alter_noticia`) VALUES (1, 'Teste', 'asdsd asd asd asda asdasdasd asdaasd asd ', 'assets/img/noticias/teste_25122019085716.jpg', '2019-12-25', '2019-12-25 20:12:16', NULL); -- -------------------------------------------------------- -- -- Estrutura para tabela `quem_somos` -- CREATE TABLE `quem_somos` ( `id_quemsomos` int(11) NOT NULL, `titulo_quemsomos` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `texto_quemsomos` text COLLATE utf8_unicode_ci, `img_quemsomos` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `create_quemsomos` datetime DEFAULT NULL, `alter_quemsomos` datetime DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Fazendo dump de dados para tabela `quem_somos` -- INSERT INTO `quem_somos` (`id_quemsomos`, `titulo_quemsomos`, `texto_quemsomos`, `img_quemsomos`, `create_quemsomos`, `alter_quemsomos`) VALUES (2, '<NAME> VÓ FILOMENA', 'A Creche Núcleo Bandeirante Vó Filomena busca proporcionar uma integração constante entre aluno-família-escola, fortalecendo os vínculos familiares, por considerar a comunidade parte integrante e fundamental do processo educacional.', 'assets/img/capa_12122019102141.jpg', '2019-11-18 01:11:49', '2019-11-22 10:11:49'); -- -------------------------------------------------------- -- -- Estrutura para tabela `resposta_contato` -- CREATE TABLE `resposta_contato` ( `id_resposta` int(11) NOT NULL, `fk_id_contato` int(11) NOT NULL, `msg_resposta` text COLLATE utf8_unicode_ci, `data_resposta` date NOT NULL, `hora_resposta` time NOT NULL, `create_resposta` datetime NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Estrutura para tabela `usuarios` -- CREATE TABLE `usuarios` ( `id_usuario` int(11) NOT NULL, `nome_usuario` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `email_usuario` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `cpf_usuario` varchar(14) COLLATE utf8_unicode_ci DEFAULT NULL, `login_usuario` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `senha_usuario` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `create_usuario` datetime DEFAULT NULL, `alter_usuario` datetime DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Fazendo dump de dados para tabela `usuarios` -- INSERT INTO `usuarios` (`id_usuario`, `nome_usuario`, `email_usuario`, `cpf_usuario`, `login_usuario`, `senha_usuario`, `create_usuario`, `alter_usuario`) VALUES (1, 'Administrador do Sistema', '<EMAIL>', '000.000.000-00', 'administrador', 'af79a8227f6f020dac98afce2a06d061', '2019-11-17 10:22:32', '2019-12-18 09:12:32'), (11, '<NAME>', '<EMAIL>', '', 'eliz', '53ee8dee22fcfa3736e2e8508180f7cb', '2019-11-22 00:11:59', NULL); -- -- Índices de tabelas apagadas -- -- -- Índices de tabela `album` -- ALTER TABLE `album` ADD PRIMARY KEY (`id_album`), ADD KEY `id_album` (`id_album`); -- -- Índices de tabela `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id_banner`); -- -- Índices de tabela `contatos` -- ALTER TABLE `contatos` ADD PRIMARY KEY (`id_contato`); -- -- Índices de tabela `fotos_album` -- ALTER TABLE `fotos_album` ADD PRIMARY KEY (`id_foto`); -- -- Índices de tabela `noticias` -- ALTER TABLE `noticias` ADD PRIMARY KEY (`id_noticia`); -- -- Índices de tabela `quem_somos` -- ALTER TABLE `quem_somos` ADD PRIMARY KEY (`id_quemsomos`); -- -- Índices de tabela `resposta_contato` -- ALTER TABLE `resposta_contato` ADD PRIMARY KEY (`id_resposta`); -- -- Índices de tabela `usuarios` -- ALTER TABLE `usuarios` ADD PRIMARY KEY (`id_usuario`); -- -- AUTO_INCREMENT de tabelas apagadas -- -- -- AUTO_INCREMENT de tabela `album` -- ALTER TABLE `album` MODIFY `id_album` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24; -- -- AUTO_INCREMENT de tabela `banners` -- ALTER TABLE `banners` MODIFY `id_banner` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT de tabela `contatos` -- ALTER TABLE `contatos` MODIFY `id_contato` int(2) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT de tabela `fotos_album` -- ALTER TABLE `fotos_album` MODIFY `id_foto` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47; -- -- AUTO_INCREMENT de tabela `noticias` -- ALTER TABLE `noticias` MODIFY `id_noticia` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT de tabela `quem_somos` -- ALTER TABLE `quem_somos` MODIFY `id_quemsomos` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT de tabela `resposta_contato` -- ALTER TABLE `resposta_contato` MODIFY `id_resposta` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT de tabela `usuarios` -- ALTER TABLE `usuarios` MODIFY `id_usuario` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<reponame>Sleeya/DatabasesBasics-MSSQL-Server SELECT TOP(3) c.CustomerID, CONCAT(c.FirstName,' ',c.LastName) AS FullName, t.Price AS TicketPrice, a.AirportName AS Destination FROM Customers AS c JOIN Tickets AS t ON c.CustomerID = t.CustomerID JOIN Flights AS f ON t.FlightID = f.FlightID JOIN Airports AS a ON f.DestinationAirportID = a.AirportID WHERE f.Status = 'Delayed' ORDER BY TicketPrice DESC,CustomerID
<filename>Java-Kotlin/resource/183.sql SELECT c.NAME AS Customers FROM Customers c WHERE c.Id NOT IN ( SELECT o.CustomerId FROM Orders o ); select c.`Name` as Customers from Customers c left join Orders o on c.Id = o.CustomerId where o.CustomerId is NULL; select `Name` as `Customers` from Customers where Id not in (select CustomerId from Orders);
# Write your MySQL query statement below select Email from Person GROUP BY Email HAVING count(Email) > 1
<filename>src/main/resources/db/migration/V33__Migrate_to_innsendingshjemmel.sql ALTER TABLE klage.mottak_hjemmel ALTER COLUMN lov DROP NOT NULL; ALTER TABLE klage.mottak_hjemmel ADD COLUMN hjemmel_id TEXT; --migrere det som finnes i prod fra K9 update klage.mottak_hjemmel set hjemmel_id = '1000.009' where kapittel = 9 and paragraf is null; update klage.mottak_hjemmel set hjemmel_id = '1000.009.002' where kapittel = 9 and paragraf = 2; update klage.mottak_hjemmel set hjemmel_id = '1000.009.003' where kapittel = 9 and paragraf = 3; update klage.mottak_hjemmel set hjemmel_id = '1000.009.005' where kapittel = 9 and paragraf = 5; update klage.mottak_hjemmel set hjemmel_id = '1000.009.006' where kapittel = 9 and paragraf = 6; update klage.mottak_hjemmel set hjemmel_id = '1000.009.008' where kapittel = 9 and paragraf = 8; update klage.mottak_hjemmel set hjemmel_id = '1000.009.009' where kapittel = 9 and paragraf = 9; update klage.mottak_hjemmel set hjemmel_id = '1000.009.010' where kapittel = 9 and paragraf = 10; update klage.mottak_hjemmel set hjemmel_id = '1000.009.011' where kapittel = 9 and paragraf = 11; update klage.mottak_hjemmel set hjemmel_id = '1000.009.013' where kapittel = 9 and paragraf = 13; update klage.mottak_hjemmel set hjemmel_id = '1000.009.014' where kapittel = 9 and paragraf = 14; update klage.mottak_hjemmel set hjemmel_id = '1000.009.015' where kapittel = 9 and paragraf = 15; update klage.mottak_hjemmel set hjemmel_id = '1000.022.013' where kapittel = 22 and paragraf = 13; update klage.mottak_hjemmel set hjemmel_id = '1000.022.015' where kapittel = 22 and paragraf = 15; update klage.mottak_hjemmel set hjemmel_id = '1002' where lov = 'UKJENT' and kapittel is null and paragraf is null; --migrere til noe OK i dev update klage.mottak_hjemmel set hjemmel_id = '1000.008.004' where kapittel = 8; --leftovers update klage.mottak_hjemmel set hjemmel_id = '1002' where hjemmel_id is null; ALTER TABLE klage.mottak_hjemmel ALTER COLUMN hjemmel_id SET NOT NULL;
<gh_stars>1-10 USE [ANTERO] GO /****** Object: View [dw].[v_virta_otp_kvliikkuvuus] Script Date: 20.3.2020 11:23:58 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER VIEW [dw].[v_virta_otp_kvliikkuvuus] AS SELECT f.tilastovuosi ,d4.sukupuoli_fi AS 'Sukupuoli' ,d8.maatjavaltiot2_fi AS 'Kansalaisuus' ,d8.maanosa_fi AS 'Kansalaisuuden maanosa' ,d3.koulutussektori_fi AS 'Koulutussektori' ,case when d3.koulutusluokitus_koodi = '899999' and d3.koulutusastetaso2_fi like 'tohtori%' then 'Lisensiaatin tai tohtorin tutkinto' else d3.koulutusastetaso2_fi end AS 'Koulutusaste (taso 2)' ,d3.koulutusalataso1_fi AS 'Koulutusala (taso 1)' ,d3.koulutusalataso2_fi AS 'Koulutusala (taso 2)' ,d3.koulutusalataso3_fi AS 'Koulutusala (taso 3)' ,d3.koulutusluokitus_fi AS 'Koulutusnimike' ,coalesce((case when d12.selite_fi = 'Tuntematon' then NULL else d12.selite_fi end), d3.koulutusala2002_fi,'Tuntematon') as 'Koulutusala 2002' ,coalesce((case when d13.selite_fi = 'Tuntematon' then NULL else d13.selite_fi end), d3.opintoala1995_fi,'Tuntematon') as 'Koulutusala 1995' ,d2.ohjauksenala_nimi_fi AS 'OKM Ohjauksen ala' ,d6.maatjavaltiot2_fi AS 'Lähtömaa' ,d7.maatjavaltiot2_fi AS 'Kohdemaa' ,d6.maanosa_fi AS 'Lähtömaan maanosa' ,d7.maanosa_fi AS 'Kohdemaan maanosa' ,d5.liikkuvuudentyyppi_fi AS 'Liikkuvuuden tyyppi' ,d9.liikkuvuusohjelma_fi AS 'Liikkuvuusohjelma' ,d10.liikkuvuudensuunta_fi AS 'Liikkuvuuden suunta' ,d11.liikkuvuudenkesto_fi as 'Liikkuvuuden Kesto' ,d1.oppilaitostyyppi_fi AS 'Sektori' ,d1.organisaatio_fi AS 'Oppilaitos' ,d1.organisaatio_vanha_fi AS 'Oppilaitos historia' ,d1.latitude AS 'Leveyskoordinaatti' ,d1.longitude AS 'Pituuskoordinaatti' ,f.cimo_opintoaste ,f.opiskelijaavain ,f.opiskeluoikeusavain ,f.liikkuvuusjaksoavain ,f.jaksoAlkupvm ,f.jaksoLoppupvm ,f.kesto ,f.lukumaara ,f.tilannepvm ,case when cast((cast((f.tilastovuosi + 1) as varchar(4)) + '-03-20') as date) <= convert(date, getdate()) then 1 else 0 end AS 'tilannepvm_tilasto' --RUOTSI ,f.tilastovuosi AS 'Statistikår' ,d4.sukupuoli_sv AS 'Kön' ,d8.maatjavaltiot2_sv AS 'Medborgarskap' ,d8.maanosa_sv AS 'Medborgarskap (världsdel)' ,d3.koulutussektori_sv AS 'Utbildningssektor' ,case when d3.koulutusluokitus_koodi = '899999' and d3.koulutusastetaso2_fi like 'tohtori%' then 'Licentiatexamen eller doktorexamen' else d3.koulutusastetaso2_sv end AS 'Utbildningsnivå, nivå 2' ,d3.koulutusalataso1_sv AS 'Utbildningsområde, nivå 1' ,d3.koulutusalataso2_sv AS 'Utbildningsområde, nivå 2' ,d3.koulutusalataso3_sv AS 'Utbildningsområde, nivå 3' ,d3.koulutusluokitus_sv AS 'Utbildningsbenämning' ,coalesce((case when d12.selite_sv = 'Okänd' then NULL else d12.selite_sv end), d3.koulutusala2002_sv,'Okänd') as 'Utbildningsområde 2002' ,coalesce((case when d13.selite_sv = 'Okänd' then NULL else d13.selite_sv end), d3.opintoala1995_sv,'Okänd') as 'Utbildningsområde 1995' ,d2.ohjauksenala_nimi_sv AS 'UKM-styrningsområde' ,d6.maatjavaltiot2_sv AS 'Det land från vilket man flyttat' ,d7.maatjavaltiot2_sv AS 'Det land till vilket man flyttat' ,d6.maanosa_sv AS 'Den världsdel från vilken man flyttat' ,d7.maanosa_sv AS 'Den världsdel till vilken man flyttat' ,case when d5.liikkuvuudentyyppi_sv = 'Opiskelijavaihto' then 'Studentutbyte' when d5.liikkuvuudentyyppi_sv = 'Kansainvälinen harjoittelu' then 'Internationell praktik' else d5.liikkuvuudentyyppi_sv end AS 'Typ av mobilitet' ,d9.liikkuvuusohjelma_sv AS 'Mobilitetsprogram' ,d10.liikkuvuudensuunta_sv AS 'Mobilitetens rikting' ,d11.liikkuvuudenkesto_sv as 'Mobilitetens längd' ,d1.oppilaitostyyppi_sv AS 'Sektor' ,d1.organisaatio_sv AS 'Läroanstalt' ,d1.organisaatio_vanha_sv AS 'Läröanstalt (historia)' ,d1.latitude AS 'Latitud' ,d1.longitude AS 'Longitud' --KOODIMUUTTUJAT ,d1.organisaatio_nykyinen_koodi AS 'Koodit Oppilaitos' ,d1.organisaatio_koodi AS 'Koodit Oppilaitos historia' ,d2.ohjauksenala_koodi AS 'Koodit OKM Ohjauksen ala' ,d3.koulutusastetaso2_koodi AS 'Koodit Koulutusaste, taso 2' ,d3.koulutusalataso1_koodi AS 'Koodit Koulutusala, taso 1' ,d3.koulutusalataso2_koodi AS 'Koodit Koulutusala, taso 2' ,d3.koulutusalataso3_koodi AS 'Koodit Koulutusala, taso 3' ,coalesce((case when d12.koodi = '-1' then NULL else d12.koodi end),d3.koulutusala2002_koodi,'-1') AS 'Koodit Koulutusala 2002' ,coalesce((case when d13.koodi = '-1' then NULL else d13.koodi end),d3.opintoala1995_koodi,'-1') AS 'Koodit Koulutusala 1995' ,d3.koulutusluokitus_koodi AS 'Koodit Koulutus' ,d4.sukupuoli_koodi AS 'Koodit Sukupuoli' ,d5.liikkuvuudentyyppi_koodi AS 'Koodit Liikkuvuuden tyyppi' ,d6.maatjavaltiot2_koodi AS 'Koodit Lähtömaa' ,d7.maatjavaltiot2_koodi AS 'Koodit Kohdemaa' ,d8.maatjavaltiot2_koodi AS 'Koodit Kansalaisuus' ,d3.koulutussektori_koodi AS 'Koodit Koulutussektori' ,d1.oppilaitostyyppi_koodi AS 'Koodit Sektori' ,d6.maanosa_koodi AS 'Koodit Lähtömaan maanosa' ,d7.maanosa_koodi AS 'Koodit Kohdemaan maanosa' ,d8.maanosa_koodi AS 'Koodit Kansalaisuuden maanosa' ,d9.liikkuvuusohjelma_koodi AS 'Koodit Liikkuvuusohjelma' ,d10.liikkuvuudensuunta_koodi AS 'Koodit Liikkuvuuden suunta' ,d11.liikkuvuudenkesto_koodi AS 'Koodit Liikkuvuudenkesto' --JÄRJESTYSMUUTTUJAT ,d2.jarjestys_ohjauksenala_koodi ,d3.jarjestys_koulutusastetaso2_koodi ,d3.jarjestys_koulutusalataso1_koodi ,d3.jarjestys_koulutusalataso2_koodi ,d3.jarjestys_koulutusalataso3_koodi ,d4.jarjestys_sukupuoli_koodi -- TODO: add translations with aliases -- ,d1.organisaatio_sv -- ,d1.organisaatio_en -- ,d2.ohjauksenala_nimi_sv -- ,d2.ohjauksenala_nimi_en -- ,case when d3.koulutusluokitus_koodi = '899999' and d3.koulutusastetaso2_fi like 'tohtori%' then 'Licentiatexamen eller Doktorsexamen' -- else d3.koulutusastetaso2_en end as 'Utbildn.nivå, nivå 2' -- ,case when d3.koulutusluokitus_koodi = '899999' and d3.koulutusastetaso2_fi like 'tohtori%' then concat('Licentiate', char(39), 's degree or Doctoral degree') -- else d3.koulutusastetaso2_en end as 'Level of ed., tier 2' -- ,d3.koulutusalataso1_sv -- ,d3.koulutusalataso1_en -- ,d3.koulutusalataso2_sv -- ,d3.koulutusalataso2_en -- ,d3.koulutusalataso3_sv -- ,d3.koulutusalataso3_en -- ,d3.koulutusluokitus_sv -- ,d3.koulutusluokitus_en -- ,d4.sukupuoli_sv -- ,d4.sukupuoli_en -- ,d5.liikkuvuudentyyppi_sv -- ,d5.liikkuvuudentyyppi_en -- ,d6.maatjavaltiot2_sv AS 'Lähtömaa SV' -- ,d6.maatjavaltiot2_en AS 'Lähtömaa EN' -- ,d7.maatjavaltiot2_sv AS 'Kohdemaa SV' -- ,d7.maatjavaltiot2_en AS 'Kohdemaa EN' -- ,d8.maatjavaltiot2_sv AS 'Kansalaisuus SV' -- ,d8.maatjavaltiot2_en AS 'Kansalaisuus EN' -- ,d9.liikkuvuusohjelma_sv -- ,d9.liikkuvuusohjelma_en -- ,d10.liikkuvuudensuunta_sv -- ,d10.liikkuvuudensuunta_en FROM dw.f_virta_otp_kvliikkuvuus f LEFT JOIN dw.d_organisaatioluokitus d1 ON d1.id=f.d_organisaatio_id LEFT JOIN dw.d_ohjauksenala d2 ON d2.id=f.d_ohjauksenala_id LEFT JOIN dw.d_koulutusluokitus d3 ON d3.id=f.d_koulutusluokitus_id LEFT JOIN dw.d_sukupuoli d4 ON d4.id=f.d_sukupuoli_id LEFT JOIN dw.d_liikkuvuudentyyppi d5 ON d5.id=f.d_liikkuvuudentyyppi_id LEFT JOIN dw.d_maatjavaltiot2 d6 ON d6.id=f.d_lahtomaa_id LEFT JOIN dw.d_maatjavaltiot2 d7 ON d7.id=f.d_kohdemaa_id LEFT JOIN dw.d_maatjavaltiot2 d8 ON d8.id=f.d_kansalaisuus_id LEFT JOIN dw.d_liikkuvuusohjelma d9 ON d9.id=f.d_liikkuvuusohjelma_id LEFT JOIN dw.d_liikkuvuudensuunta d10 ON d10.id=f.d_liikkuvuudensuunta_id LEFT JOIN dw.d_liikkuvuudenkesto d11 ON d11.id = f.d_liikkuvuudenkesto_id LEFT JOIN dw.d_koulutusala_2002 d12 ON d12.id = f.d_koulutusala_2002_id LEFT JOIN dw.d_koulutusala_1995 d13 ON d13.id = f.d_koulutusala_1995_id
--Problem 17 ALTER TABLE Employees ADD FOREIGN KEY (AddressId) REFERENCES Addresses(Id) ALTER TABLE Employees ADD FOREIGN KEY (DepartmentId) REFERENCES Departments(Id) ALTER TABLE Addresses ADD FOREIGN KEY (TownId) REFERENCES Towns(Id)
-- This query extracts weights for adult ICU patients on their first ICU day. -- It does *not* use any information after the first ICU day, as weight is -- sometimes used to monitor fluid balance. -- ** Requires the echodata view, generated by etc/echo-data.sql DROP MATERIALIZED VIEW IF EXISTS weightfirstday CASCADE; CREATE MATERIALIZED VIEW weightfirstday as with ce as ( SELECT c.icustay_id -- we take the median value from roughly first day -- TODO: eliminate obvious outliers if there is a reasonable weight -- (e.g. weight of 180kg and 90kg would remove 180kg instead of taking the median) , percentile_cont(0.5) WITHIN GROUP (ORDER BY valuenum) as Weight_Admit FROM mimiciii.chartevents c inner join mimiciii.icustays ie on c.icustay_id = ie.icustay_id and c.charttime <= ie.intime + interval '1' day and c.charttime > ie.intime - interval '1' day -- some fuzziness for admit time WHERE c.valuenum IS NOT NULL AND c.itemid in (762,226512) -- Admit Wt AND c.valuenum != 0 -- exclude rows marked as error AND c.error IS DISTINCT FROM 1 group by c.icustay_id ) , dwt as ( SELECT c.icustay_id , percentile_cont(0.5) WITHIN GROUP (ORDER BY valuenum) as Weight_Daily FROM mimiciii.chartevents c INNER JOIN mimiciii.icustays ie on c.icustay_id = ie.icustay_id and c.charttime <= ie.intime + interval '1' day and c.charttime > ie.intime - interval '1' day -- some fuzziness for admit time WHERE c.valuenum IS NOT NULL AND c.itemid in (763,224639) -- Daily Weight AND c.valuenum != 0 -- exclude rows marked as error AND c.error IS DISTINCT FROM 1 group by c.icustay_id ) -- we split in-hospital/out of hospital echoes as we would like to prioritize in-hospital data , echo_hadm as ( select ie.icustay_id , 0.453592*percentile_cont(0.5) WITHIN GROUP (ORDER BY weight) as Weight_EchoInHosp from echodata ec inner join mimiciii.icustays ie on ec.hadm_id = ie.hadm_id and ec.charttime < ie.intime + interval '1' day where ec.HADM_ID is not null and ec.weight is not null group by ie.icustay_id ) , echo_nohadm as ( select ie.icustay_id , 0.453592*percentile_cont(0.5) WITHIN GROUP (ORDER BY weight) as Weight_EchoPreHosp from echodata ec inner join mimiciii.icustays ie on ie.subject_id = ec.subject_id and ie.intime < ec.charttime + interval '1' month and ie.intime > ec.charttime where ec.HADM_ID is null and ec.weight is not null group by ie.icustay_id ) select ie.icustay_id , round(cast( case when ce.icustay_id is not null then ce.Weight_Admit when dwt.icustay_id is not null then dwt.Weight_Daily when eh.icustay_id is not null then eh.Weight_EchoInHosp when enh.icustay_id is not null then enh.Weight_EchoPreHosp else null end as numeric), 2) as Weight -- components , ce.Weight_Admit , dwt.Weight_Daily , eh.Weight_EchoInHosp , enh.Weight_EchoPreHosp from mimiciii.icustays ie -- filter to only adults inner join mimiciii.patients pat on ie.subject_id = pat.subject_id and ie.intime > pat.dob + interval '1' year -- admission weight left join ce on ie.icustay_id = ce.icustay_id -- daily weights left join dwt on ie.icustay_id = dwt.icustay_id -- in-hospital echo weight left join echo_hadm eh on ie.icustay_id = eh.icustay_id -- pre-hospitalization echo weights left join echo_nohadm enh on ie.icustay_id = enh.icustay_id order by ie.icustay_id;
-- POUR CHARGER DANS SQLite3 : -- sqlite3 join_algorithms_versus_sqlite3.db -- .timer on -- .read join_algorithms_schema.sql drop table if exists Table1; drop table if exists Table2; -- Un schéma très simple, qui reprend le benchmark des 3 algos en Python qu'on rappelle ici : -- -- def benchmark(size_1=1000, nb_val_1=100, -- size_2=1000, nb_val_2=100, -- nb_repeat=100, -- bench_loop=True, bench_hash=True, bench_merge=True): -- -- sample_1 = [(i, randrange(nb_val_1)) for i in range(size_1)] -- sample_2 = [(randrange(nb_val_2), 'A'+str(j)) for j in range(size_2)] -- Activation des clefs étrangères PRAGMA foreign_keys=1; create table Table1( idA INTEGER PRIMARY KEY, -- un ID entier val INTEGER -- l'attribut de jointure ); create table Table2( val INTEGER, -- pas REFERENCES Table1(val), mais ca ne changerait rien idB INTEGER ); -- On va remplir les tables avec 10.000 lignes pour A et autant pour B WITH RECURSIVE data_1(val) AS ( SELECT 1 UNION ALL SELECT val+1 FROM data_1 WHERE val+1 <= 10000 ) INSERT INTO Table1 SELECT val, ABS(RANDOM() % 1000) FROM data_1; WITH RECURSIVE data_2(val) AS ( SELECT 1 UNION ALL SELECT val+1 FROM data_2 WHERE val+1 <= 10000 ) INSERT INTO Table2 SELECT ABS(RANDOM() % 1000), 'A' || val FROM data_2;
<gh_stars>0 CREATE DATABASE item_db; CREATE TABLE role ( id serial PRIMARY KEY, name VARCHAR (2000) ); CREATE TABLE rules ( id serial PRIMARY KEY, name VARCHAR (2000) ); CREATE TABLE role_rules ( id serial PRIMARY KEY, role_id INT REFERENCES role(id), rules_id INT REFERENCES rules(id) ); CREATE TABLE user ( id serial primary key, login VARCHAR (2000), password VARCHAR (2000), role_id IS NOT NULL INT REFERENCES role(id) ); CREATE TABLE category ( id serial PRIMARY KEY, name VARCHAR (2000) ); CREATE TABLE state ( id serial PRIMARY KEY, name VARCHAR(2000) ); CREATE TABLE item ( id serial PRIMARY KEY, name VARCHAR(2000), description VARCHAR (2000), created TIMESTAMP, user_id int REFERENCES user(id), category_id INT REFERENCES category(id), state_id INT REFERENCES state(id) ); CREATE TABLE comments ( id serial PRIMARY KEY, data MESSAGE_TEXT, item_id IS NOT NULL INT REFERENCES item(id) ); CREATE TABLE attachs ( id serial PRIMARY KEY, path VARCHAR(2000), item_id INT REFERENCES item(id) ); INSERT INTO role VALUES ('autor'); INSERT INTO rules VALUES ('write'), ('reed'); INSERT INTO user VALUES ('admin', 'admin', '1'), ('aleksandr', '<PASSWORD>', '2'); INSERT INTO category VALUES (''); INSERT INTO state VALUES ('open'), ('pause'), ('done');
CREATE TABLE ipc_drug_presc_h( ID STRING, HEALTH_SERVICE_ORG_ID STRING, CHARGE_DATE STRING )WITH( type ='kafka11', bootstrapServers ='slave2:9092', zookeeperQuorum ='master:2181,slave2:2181,slave3:2181/kafka', offsetReset ='latest', topic ='ipc_drug_presc_h', groupId='CDXT', parallelism ='1', timezone='Asia/Shanghai', sourcedatatype ='json' ); CREATE TABLE ipc_drug_presc_d( DRUG_PRESC_H_ID STRING, TOTAL_AMT DECIMAL )WITH( type ='kafka11', bootstrapServers ='slave2:9092', zookeeperQuorum ='master:2181,slave2:2181,slave3:2181/kafka', offsetReset ='latest', topic ='ipc_drug_presc_d', groupId='CDXT', parallelism ='1', timezone='Asia/Shanghai', sourcedatatype ='json' ); CREATE TABLE ipc_diag_service_h( ID STRING, HEALTH_SERVICE_ORG_ID STRING, CHARGE_DATE STRING )WITH( type ='kafka11', bootstrapServers ='slave2:9092', zookeeperQuorum ='master:2181,slave2:2181,slave3:2181/kafka', offsetReset ='latest', topic ='ipc_diag_service_h', groupId='CDXT', parallelism ='1', timezone='Asia/Shanghai', sourcedatatype ='json' ); CREATE TABLE ipc_diag_service_d( TOTAL_AMT DECIMAL, DIAG_SERVICE_H_ID STRING )WITH( type ='kafka11', bootstrapServers ='slave2:9092', zookeeperQuorum ='master:2181,slave2:2181,slave3:2181/kafka', offsetReset ='latest', topic ='ipc_diag_service_d', groupId='CDXT', parallelism ='1', timezone='Asia/Shanghai', sourcedatatype ='json' ); -- 在院人数 使用 WATERMARK 时需要设置环境变量 "time.characteristic":"eventTime" -- 默认是 PROCTIME 使用 WATERMARK 后该框架会设置 ROWTIME 2 选1 CREATE TABLE ipi_registration( ID STRING, S_BRZTBH_DM STRING, HEALTH_SERVICE_ORG_ID STRING, REGISTRATION_DATE timestamp, WATERMARK FOR REGISTRATION_DATE AS withOffset( REGISTRATION_DATE , 200 ) )WITH( type ='kafka11', bootstrapServers ='slave2:9092', zookeeperQuorum ='master:2181,slave2:2181,slave3:2181/kafka', offsetReset ='latest', topic ='ipi_registration', groupId='CDXT', parallelism ='1', timezone='Asia/Shanghai', sourcedatatype ='json' ); --SINK CREATE TABLE sink_result_1( PRO_NAME STRING, CODE STRING, LABEL STRING, DATA DECIMAL, DT STRING, REMARK STRING )WITH( type ='kafka10', bootstrapServers ='slave2:9092', zookeeperQuorum ='master:2181,slave2:2181,slave3:2181/kafka', offsetReset ='latest', topic ='sink_result_1', groupId='CDXT', parallelism ='1', timezone='Asia/Shanghai', updateMode='upsert', sourcedatatype ='json' ); -- sink 费用 insert into sink_result_1 select 'big_screen' as PRO_NAME, 'ipc_charge_fee' as CODE, '住院费用' as LABEL, sum(a.AMT) as DATA, PROC_DATE as DT, HEALTH_SERVICE_ORG_ID as REMARK from( SELECT SUM(D.TOTAL_AMT) AMT, DATE_FORMAT(H.PROCTIME, 'yyyy-MM-dd') as PROC_DATE, H.HEALTH_SERVICE_ORG_ID FROM ipc_drug_presc_h H INNER JOIN ipc_drug_presc_d D ON D.DRUG_PRESC_H_ID=H.ID GROUP BY H.HEALTH_SERVICE_ORG_ID ,DATE_FORMAT(H.PROCTIME, 'yyyy-MM-dd') UNION ALL SELECT SUM(D.TOTAL_AMT) AMT, DATE_FORMAT(H.PROCTIME, 'yyyy-MM-dd') as PROC_DATE, H.HEALTH_SERVICE_ORG_ID FROM ipc_diag_service_h H INNER JOIN ipc_diag_service_d D ON D.DIAG_SERVICE_H_ID=H.ID GROUP BY H.HEALTH_SERVICE_ORG_ID,DATE_FORMAT(H.PROCTIME, 'yyyy-MM-dd') )a GROUP BY HEALTH_SERVICE_ORG_ID,PROC_DATE; -- 住院Reich 窗口函数TUMBLE(ROWTIME, INTERVAL '1' DAY ) insert into sink_result_1 select 'big_screen' as PRO_NAME, 'ipi_count' as CODE, '住院人次' as LABEL, count(1) as DATA, DATE_FORMAT(ipi.ROWTIME, 'yyyy-MM-dd') as DT, HEALTH_SERVICE_ORG_ID as REMARK from ipi_registration ipi where S_BRZTBH_DM in('20','30','65') group by HEALTH_SERVICE_ORG_ID, DATE_FORMAT(ipi.ROWTIME, 'yyyy-MM-dd')
<gh_stars>0 CREATE TABLE `tb_qdjqayreum` ( `col_gqvgqzlgna` set('enum_or_set_0','enum_or_set_1','enum_or_set_2') DEFAULT NULL, `col_xnynymrwbx` decimal(8, 1) DEFAULT NULL, UNIQUE KEY `symb_znikarajci` (`<KEY>`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--create table REG_CLUSTER_LOCK IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_CLUSTER_LOCK]') AND TYPE IN (N'U')) CREATE TABLE REG_CLUSTER_LOCK ( REG_LOCK_NAME VARCHAR (20), REG_LOCK_STATUS VARCHAR (20), REG_LOCKED_TIME DATETIME, REG_TENANT_ID INTEGER DEFAULT 0, PRIMARY KEY (REG_LOCK_NAME) ); --create table REG_LOG IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_LOG]') AND TYPE IN (N'U')) CREATE TABLE REG_LOG ( REG_LOG_ID INTEGER IDENTITY(1,1) NOT NULL, REG_PATH VARCHAR (2000), REG_USER_ID VARCHAR (31) NOT NULL, REG_LOGGED_TIME DATETIME NOT NULL, REG_ACTION INTEGER NOT NULL, REG_ACTION_DATA VARCHAR (500), REG_TENANT_ID INTEGER DEFAULT 0, PRIMARY KEY (REG_LOG_ID, REG_TENANT_ID) ); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_LOG_IND_BY_REG_LOGTIME') DROP INDEX REG_LOG.REG_LOG_IND_BY_REG_LOGTIME CREATE INDEX REG_LOG_IND_BY_REG_LOGTIME ON REG_LOG(REG_LOGGED_TIME, REG_TENANT_ID); --create table regpath IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_PATH]') AND TYPE IN (N'U')) CREATE TABLE REG_PATH( REG_PATH_ID INTEGER IDENTITY(1,1) NOT NULL, REG_PATH_VALUE VARCHAR(895) NOT NULL, REG_PATH_PARENT_ID INTEGER, REG_TENANT_ID INTEGER DEFAULT 0, CONSTRAINT PK_REG_PATH PRIMARY KEY(REG_PATH_ID, REG_TENANT_ID) ); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_PATH_IND_BY_PATH_VALUE') DROP INDEX REG_PATH.REG_PATH_IND_BY_PATH_VALUE CREATE INDEX REG_PATH_IND_BY_PATH_VALUE ON REG_PATH(REG_PATH_VALUE, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_PATH_IND_BY_PARENT_ID') DROP INDEX REG_PATH.REG_PATH_IND_BY_PARENT_ID CREATE INDEX REG_PATH_IND_BY_PARENT_ID ON REG_PATH(REG_PATH_PARENT_ID, REG_TENANT_ID); --create table regcontent IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_CONTENT]') AND TYPE IN (N'U')) CREATE TABLE REG_CONTENT ( REG_CONTENT_ID INTEGER IDENTITY(1,1) NOT NULL, REG_CONTENT_DATA VARBINARY(MAX), REG_TENANT_ID INTEGER DEFAULT 0, CONSTRAINT PK_REG_CONTENT PRIMARY KEY(REG_CONTENT_ID, REG_TENANT_ID) ); --create table REG_CONTENT_HISTORY IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_CONTENT_HISTORY]') AND TYPE IN (N'U')) CREATE TABLE REG_CONTENT_HISTORY ( REG_CONTENT_ID INTEGER NOT NULL, REG_CONTENT_DATA VARBINARY(MAX), REG_DELETED SMALLINT, REG_TENANT_ID INTEGER DEFAULT 0, CONSTRAINT PK_REG_CONTENT_HISTORY PRIMARY KEY(REG_CONTENT_ID, REG_TENANT_ID) ); --create table REG_RESOURCE IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_RESOURCE]') AND TYPE IN (N'U')) CREATE TABLE REG_RESOURCE ( REG_PATH_ID INTEGER NOT NULL, REG_NAME VARCHAR(256), REG_VERSION INTEGER IDENTITY(1,1) NOT NULL, REG_MEDIA_TYPE VARCHAR(500), REG_CREATOR VARCHAR(31) NOT NULL, REG_CREATED_TIME DATETIME NOT NULL, REG_LAST_UPDATOR VARCHAR(31), REG_LAST_UPDATED_TIME DATETIME NOT NULL, REG_DESCRIPTION VARCHAR(1000), REG_CONTENT_ID INTEGER, REG_TENANT_ID INTEGER DEFAULT 0, REG_UUID VARCHAR(100) NOT NULL, CONSTRAINT PK_REG_RESOURCE PRIMARY KEY(REG_VERSION, REG_TENANT_ID) ); IF NOT EXISTS (SELECT * FROM SYS.FOREIGN_KEYS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_RESOURCE_FK_BY_PATH_ID]') AND PARENT_OBJECT_ID = OBJECT_ID(N'DBO.[REG_RESOURCE]')) ALTER TABLE REG_RESOURCE ADD CONSTRAINT REG_RESOURCE_FK_BY_PATH_ID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); --This foriegn key constrainst is maintained from the code level --IF NOT EXISTS (SELECT * FROM SYS.FOREIGN_KEYS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_RESOURCE_FK_BY_CONTENT_ID]') AND PARENT_OBJECT_ID = OBJECT_ID(N'[DBO].[REG_RESOURCE]')) --ALTER TABLE REG_RESOURCE ADD CONSTRAINT REG_RESOURCE_FK_BY_CONTENT_ID FOREIGN KEY (REG_CONTENT_ID, REG_TENANT_ID) REFERENCES REG_CONTENT (REG_CONTENT_ID, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_IND_BY_NAME') DROP INDEX REG_RESOURCE.REG_RESOURCE_IND_BY_NAME CREATE INDEX REG_RESOURCE_IND_BY_NAME ON REG_RESOURCE(REG_NAME, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_IND_BY_PATH_ID_NAME') DROP INDEX REG_RESOURCE.REG_RESOURCE_IND_BY_PATH_ID_NAME CREATE INDEX REG_RESOURCE_IND_BY_PATH_ID_NAME ON REG_RESOURCE(REG_PATH_ID, REG_NAME, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_IND_BY_UUID') DROP INDEX REG_RESOURCE.REG_RESOURCE_IND_BY_UUID CREATE INDEX REG_RESOURCE_IND_BY_UUID ON REG_RESOURCE(REG_UUID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_IND_BY_TENANT') DROP INDEX REG_RESOURCE.REG_RESOURCE_IND_BY_TENANT CREATE INDEX REG_RESOURCE_IND_BY_TENANT ON REG_RESOURCE(REG_TENANT_ID, REG_UUID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_IND_BY_TYPE') DROP INDEX REG_RESOURCE.REG_RESOURCE_IND_BY_TYPE CREATE INDEX REG_RESOURCE_IND_BY_TYPE ON REG_RESOURCE(REG_TENANT_ID, REG_MEDIA_TYPE); --create table REG_RESOURCE_HISTORY IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_RESOURCE_HISTORY]') AND TYPE IN (N'U')) CREATE TABLE REG_RESOURCE_HISTORY ( REG_PATH_ID INTEGER NOT NULL, REG_NAME VARCHAR(256), REG_VERSION INTEGER NOT NULL, REG_MEDIA_TYPE VARCHAR(500), REG_CREATOR VARCHAR(31) NOT NULL, REG_CREATED_TIME DATETIME NOT NULL, REG_LAST_UPDATOR VARCHAR(31), REG_LAST_UPDATED_TIME DATETIME NOT NULL, REG_DESCRIPTION VARCHAR(1000), REG_CONTENT_ID INTEGER, REG_DELETED SMALLINT, REG_TENANT_ID INTEGER DEFAULT 0, REG_UUID VARCHAR(100) NOT NULL, CONSTRAINT PK_REG_RESOURCE_HISTORY PRIMARY KEY(REG_VERSION, REG_TENANT_ID) ); IF NOT EXISTS (SELECT * FROM SYS.FOREIGN_KEYS WHERE object_id = OBJECT_ID(N'[dbo].[REG_RESOURCE_HIST_FK_BY_PATHID]') AND parent_object_id = OBJECT_ID(N'[dbo].[REG_RESOURCE_HISTORY]')) ALTER TABLE REG_RESOURCE_HISTORY ADD CONSTRAINT REG_RESOURCE_HIST_FK_BY_PATHID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); IF NOT EXISTS (SELECT * FROM SYS.FOREIGN_KEYS WHERE object_id = OBJECT_ID(N'[dbo].[REG_RESOURCE_HIST_FK_BY_CONTENT_ID]') AND parent_object_id = OBJECT_ID(N'[dbo].[REG_RESOURCE_HISTORY]')) ALTER TABLE REG_RESOURCE_HISTORY ADD CONSTRAINT REG_RESOURCE_HIST_FK_BY_CONTENT_ID FOREIGN KEY (REG_CONTENT_ID, REG_TENANT_ID) REFERENCES REG_CONTENT_HISTORY (REG_CONTENT_ID, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_HISTORY_IND_BY_NAME') DROP INDEX REG_RESOURCE_HISTORY.REG_RESOURCE_HISTORY_IND_BY_NAME CREATE INDEX REG_RESOURCE_HISTORY_IND_BY_NAME ON REG_RESOURCE_HISTORY(REG_NAME, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_HISTORY_IND_BY_PATH_ID_NAME') DROP INDEX REG_RESOURCE_HISTORY.REG_RESOURCE_HISTORY_IND_BY_PATH_ID_NAME CREATE INDEX REG_RESOURCE_HISTORY_IND_BY_PATH_ID_NAME ON REG_RESOURCE_HISTORY(REG_PATH_ID, REG_NAME, REG_TENANT_ID); --create table REG_COMMENT IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_COMMENT]') AND TYPE IN (N'U')) CREATE TABLE REG_COMMENT ( REG_ID INTEGER IDENTITY(1,1) NOT NULL, REG_COMMENT_TEXT VARCHAR(500) NOT NULL, REG_USER_ID VARCHAR(31) NOT NULL, REG_COMMENTED_TIME DATETIME NOT NULL, REG_TENANT_ID INTEGER DEFAULT 0, CONSTRAINT PK_REG_COMMENT PRIMARY KEY(REG_ID, REG_TENANT_ID) ); --create table REG_RESOURCE_COMMENT IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_RESOURCE_COMMENT]') AND TYPE IN (N'U')) CREATE TABLE REG_RESOURCE_COMMENT ( REG_COMMENT_ID INTEGER NOT NULL, REG_VERSION INTEGER DEFAULT 0, REG_PATH_ID INTEGER, REG_RESOURCE_NAME VARCHAR(256), REG_TENANT_ID INTEGER DEFAULT 0 ); IF NOT EXISTS (SELECT * FROM SYS.FOREIGN_KEYS WHERE OBJECT_ID = OBJECT_ID(N'[dbo].REG_RESOURCE_COMMENT_FK_BY_PATH_ID') AND PARENT_OBJECT_ID = OBJECT_ID(N'[DBO].REG_RESOURCE_COMMENT')) ALTER TABLE REG_RESOURCE_COMMENT ADD CONSTRAINT REG_RESOURCE_COMMENT_FK_BY_PATH_ID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); IF NOT EXISTS (SELECT * FROM SYS.FOREIGN_KEYS WHERE OBJECT_ID = OBJECT_ID(N'[dbo].REG_RESOURCE_COMMENT_FK_BY_COMMENT_ID') AND PARENT_OBJECT_ID = OBJECT_ID(N'[DBO].REG_RESOURCE_COMMENT')) ALTER TABLE REG_RESOURCE_COMMENT ADD CONSTRAINT REG_RESOURCE_COMMENT_FK_BY_COMMENT_ID FOREIGN KEY (REG_COMMENT_ID, REG_TENANT_ID) REFERENCES REG_COMMENT (REG_ID, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_COMMENT_IND_BY_PATH_ID_AND_RESOURCE_NAME') DROP INDEX REG_RESOURCE_COMMENT.REG_RESOURCE_COMMENT_IND_BY_PATH_ID_AND_RESOURCE_NAME CREATE INDEX REG_RESOURCE_COMMENT_IND_BY_PATH_ID_AND_RESOURCE_NAME ON REG_RESOURCE_COMMENT(REG_PATH_ID, REG_RESOURCE_NAME, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_COMMENT_IND_BY_VERSION') DROP INDEX REG_RESOURCE_COMMENT.REG_RESOURCE_COMMENT_IND_BY_VERSION CREATE INDEX REG_RESOURCE_COMMENT_IND_BY_VERSION ON REG_RESOURCE_COMMENT(REG_VERSION, REG_TENANT_ID); --create table REG_RATING IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_RATING]') AND TYPE IN (N'U')) CREATE TABLE REG_RATING ( REG_ID INTEGER IDENTITY(1,1) NOT NULL, REG_RATING INTEGER NOT NULL, REG_USER_ID VARCHAR(31) NOT NULL, REG_RATED_TIME DATETIME NOT NULL, REG_TENANT_ID INTEGER DEFAULT 0, CONSTRAINT PK_REG_RATING PRIMARY KEY(REG_ID, REG_TENANT_ID) ); --create table REG_RESOURCE_RATING IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_RESOURCE_RATING]') AND TYPE IN (N'U')) CREATE TABLE REG_RESOURCE_RATING ( REG_RATING_ID INTEGER NOT NULL, REG_VERSION INTEGER, REG_PATH_ID INTEGER, REG_RESOURCE_NAME VARCHAR(256), REG_TENANT_ID INTEGER DEFAULT 0 ); IF NOT EXISTS (SELECT * FROM SYS.FOREIGN_KEYS WHERE OBJECT_ID = OBJECT_ID(N'[dbo].REG_RESOURCE_RATING_FK_BY_PATH_ID') AND PARENT_OBJECT_ID = OBJECT_ID(N'[dbo].REG_RESOURCE_RATING')) ALTER TABLE REG_RESOURCE_RATING ADD CONSTRAINT REG_RESOURCE_RATING_FK_BY_PATH_ID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); IF NOT EXISTS (SELECT * FROM SYS.FOREIGN_KEYS WHERE OBJECT_ID = OBJECT_ID(N'[dbo].REG_RESOURCE_RATING_FK_BY_RATING_ID') AND PARENT_OBJECT_ID = OBJECT_ID(N'[dbo].REG_RESOURCE_RATING')) ALTER TABLE REG_RESOURCE_RATING ADD CONSTRAINT REG_RESOURCE_RATING_FK_BY_RATING_ID FOREIGN KEY (REG_RATING_ID, REG_TENANT_ID) REFERENCES REG_RATING (REG_ID, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_RATING_IND_BY_PATH_ID_AND_RESOURCE_NAME') DROP INDEX REG_RESOURCE_RATING.REG_RESOURCE_RATING_IND_BY_PATH_ID_AND_RESOURCE_NAME CREATE INDEX REG_RESOURCE_RATING_IND_BY_PATH_ID_AND_RESOURCE_NAME ON REG_RESOURCE_RATING(REG_PATH_ID, REG_RESOURCE_NAME, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_RATING_IND_BY_VERSION') DROP INDEX REG_RESOURCE_RATING.REG_RESOURCE_RATING_IND_BY_VERSION CREATE INDEX REG_RESOURCE_RATING_IND_BY_VERSION ON REG_RESOURCE_RATING(REG_VERSION, REG_TENANT_ID); --create table REG_TAG IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_TAG]') AND TYPE IN (N'U')) CREATE TABLE REG_TAG ( REG_ID INTEGER IDENTITY(1,1) NOT NULL, REG_TAG_NAME VARCHAR(500) NOT NULL, REG_USER_ID VARCHAR(31) NOT NULL, REG_TAGGED_TIME DATETIME NOT NULL, REG_TENANT_ID INTEGER DEFAULT 0, CONSTRAINT PK_REG_TAG PRIMARY KEY(REG_ID, REG_TENANT_ID) ); --create table REG_RESOURCE_TAG IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_RESOURCE_TAG]') AND TYPE IN (N'U')) CREATE TABLE REG_RESOURCE_TAG ( REG_TAG_ID INTEGER NOT NULL, REG_VERSION INTEGER DEFAULT 0, REG_PATH_ID INTEGER, REG_RESOURCE_NAME VARCHAR(256), REG_TENANT_ID INTEGER DEFAULT 0 ); IF NOT EXISTS (SELECT * FROM SYS.FOREIGN_KEYS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].REG_RESOURCE_TAG_FK_BY_PATH_ID') AND PARENT_OBJECT_ID = OBJECT_ID(N'[DBO].REG_RESOURCE_TAG')) ALTER TABLE REG_RESOURCE_TAG ADD CONSTRAINT REG_RESOURCE_TAG_FK_BY_PATH_ID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); IF NOT EXISTS (SELECT * FROM SYS.FOREIGN_KEYS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].REG_RESOURCE_TAG_FK_BY_TAG_ID') AND PARENT_OBJECT_ID = OBJECT_ID(N'[DBO].REG_RESOURCE_TAG')) ALTER TABLE REG_RESOURCE_TAG ADD CONSTRAINT REG_RESOURCE_TAG_FK_BY_TAG_ID FOREIGN KEY (REG_TAG_ID, REG_TENANT_ID) REFERENCES REG_TAG (REG_ID, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_TAG_IND_BY_PATH_ID_AND_RESOURCE_NAME') DROP INDEX REG_RESOURCE_TAG.REG_RESOURCE_TAG_IND_BY_PATH_ID_AND_RESOURCE_NAME CREATE INDEX REG_RESOURCE_TAG_IND_BY_PATH_ID_AND_RESOURCE_NAME ON REG_RESOURCE_TAG(REG_PATH_ID, REG_RESOURCE_NAME, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_TAG_IND_BY_VERSION') DROP INDEX REG_RESOURCE_TAG.REG_RESOURCE_TAG_IND_BY_VERSION CREATE INDEX REG_RESOURCE_TAG_IND_BY_VERSION ON REG_RESOURCE_TAG(REG_VERSION, REG_TENANT_ID); --CREATE TABLE REG_PROPERTY IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_PROPERTY]') AND TYPE IN (N'U')) CREATE TABLE REG_PROPERTY ( REG_ID INTEGER IDENTITY(1,1) NOT NULL, REG_NAME VARCHAR(100) NOT NULL, REG_VALUE VARCHAR(1000), REG_TENANT_ID INTEGER DEFAULT 0, CONSTRAINT PK_REG_PROPERTY PRIMARY KEY(REG_ID, REG_TENANT_ID) ); --CREATE TABLE REG_RESOURCE_PROPERTY IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_RESOURCE_PROPERTY]') AND TYPE IN (N'U')) CREATE TABLE REG_RESOURCE_PROPERTY ( REG_PROPERTY_ID INTEGER NOT NULL, REG_VERSION INTEGER, REG_PATH_ID INTEGER, REG_RESOURCE_NAME VARCHAR(256), REG_TENANT_ID INTEGER DEFAULT 0 ); IF NOT EXISTS (SELECT * FROM SYS.FOREIGN_KEYS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].REG_RESOURCE_PROPERTY_FK_BY_PATH_ID') AND PARENT_OBJECT_ID = OBJECT_ID(N'[DBO].REG_RESOURCE_PROPERTY')) ALTER TABLE REG_RESOURCE_PROPERTY ADD CONSTRAINT REG_RESOURCE_PROPERTY_FK_BY_PATH_ID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); IF NOT EXISTS (SELECT * FROM SYS.FOREIGN_KEYS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].REG_RESOURCE_PROPERTY_FK_BY_TAG_ID') AND PARENT_OBJECT_ID = OBJECT_ID(N'[DBO].REG_RESOURCE_PROPERTY')) ALTER TABLE REG_RESOURCE_PROPERTY ADD CONSTRAINT REG_RESOURCE_PROPERTY_FK_BY_TAG_ID FOREIGN KEY (REG_PROPERTY_ID, REG_TENANT_ID) REFERENCES REG_PROPERTY (REG_ID, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_PROPERTY_IND_BY_PATH_ID_AND_RESOURCE_NAME') DROP INDEX REG_RESOURCE_PROPERTY.REG_RESOURCE_PROPERTY_IND_BY_PATH_ID_AND_RESOURCE_NAME CREATE INDEX REG_RESOURCE_PROPERTY_IND_BY_PATH_ID_AND_RESOURCE_NAME ON REG_RESOURCE_PROPERTY(REG_PATH_ID, REG_RESOURCE_NAME, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_RESOURCE_PROPERTY_IND_BY_VERSION') DROP INDEX REG_RESOURCE_PROPERTY.REG_RESOURCE_PROPERTY_IND_BY_VERSION CREATE INDEX REG_RESOURCE_PROPERTY_IND_BY_VERSION ON REG_RESOURCE_PROPERTY(REG_VERSION, REG_TENANT_ID); --CREATE TABLE REG_ASSOCIATION IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_ASSOCIATION]') AND TYPE IN (N'U')) CREATE TABLE REG_ASSOCIATION ( REG_ASSOCIATION_ID INTEGER IDENTITY(1,1) NOT NULL, REG_SOURCEPATH VARCHAR (2000) NOT NULL, REG_TARGETPATH VARCHAR (2000) NOT NULL, REG_ASSOCIATION_TYPE VARCHAR (2000) NOT NULL, REG_TENANT_ID INTEGER DEFAULT 0, PRIMARY KEY (REG_ASSOCIATION_ID, REG_TENANT_ID) ); --CREATE TABLE REG_SNAPSHOT IF NOT EXISTS (SELECT * FROM SYS.OBJECTS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].[REG_SNAPSHOT]') AND TYPE IN (N'U')) CREATE TABLE REG_SNAPSHOT ( REG_SNAPSHOT_ID INTEGER IDENTITY(1,1) NOT NULL, REG_PATH_ID INTEGER NOT NULL, REG_RESOURCE_NAME VARCHAR (256), REG_RESOURCE_VIDS VARBINARY(MAX) NOT NULL, REG_TENANT_ID INTEGER DEFAULT 0, CONSTRAINT PK_REG_SNAPSHOT PRIMARY KEY(REG_SNAPSHOT_ID, REG_TENANT_ID) ); IF NOT EXISTS (SELECT * FROM SYS.FOREIGN_KEYS WHERE OBJECT_ID = OBJECT_ID(N'[DBO].REG_SNAPSHOT_FK_BY_PATH_ID') AND PARENT_OBJECT_ID = OBJECT_ID(N'[DBO].REG_SNAPSHOT')) ALTER TABLE REG_SNAPSHOT ADD CONSTRAINT REG_SNAPSHOT_FK_BY_PATH_ID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); IF EXISTS (SELECT NAME FROM SYSINDEXES WHERE NAME = 'REG_SNAPSHOT_IND_BY_PATH_ID_AND_RESOURCE_NAME') DROP INDEX REG_SNAPSHOT.REG_SNAPSHOT_IND_BY_PATH_ID_AND_RESOURCE_NAME CREATE INDEX REG_SNAPSHOT_IND_BY_PATH_ID_AND_RESOURCE_NAME ON REG_SNAPSHOT(REG_PATH_ID, REG_RESOURCE_NAME, REG_TENANT_ID);
<gh_stars>1-10 CREATE INDEX "IX_BIOL_RELATION_COLLOBJID" ON "BIOL_INDIV_RELATIONS" ("COLLECTION_OBJECT_ID")
/* Warnings: - The values [CREATEANY,READANY,UPDATEANY,DELETEANY,DELETEOWN,UPDATEOWN] on the enum `PermissionAction` will be removed. If these variants are still used in the database, this will fail. */ -- AlterEnum BEGIN; CREATE TYPE "PermissionAction_new" AS ENUM ('update:any', 'read:any', 'delete:own', 'delete:any', 'create:any', 'update:own'); ALTER TABLE "Permission" ALTER COLUMN "action" TYPE "PermissionAction_new" USING ("action"::text::"PermissionAction_new"); ALTER TYPE "PermissionAction" RENAME TO "PermissionAction_old"; ALTER TYPE "PermissionAction_new" RENAME TO "PermissionAction"; DROP TYPE "PermissionAction_old"; COMMIT;
set allow_suspicious_low_cardinality_types = 1; CREATE TABLE lc_null_int8_defnull (val LowCardinality(Nullable(Int8)) DEFAULT NULL) ENGINE = MergeTree order by tuple(); SELECT ignore(10, ignore(*), ignore(ignore(-2, 1025, *)), NULL, *), * FROM lc_null_int8_defnull AS values; SELECT ignore(toLowCardinality(1), toLowCardinality(2), 3); DROP TABLE lc_null_int8_defnull;
ALTER TABLE versions DROP COLUMN version_int;
CREATE TYPE my_crosstab_float8_5_cols AS ( my_row_name text, my_category_1 float8, my_category_2 float8, my_category_3 float8, my_category_4 float8, my_category_5 float8 ); CREATE OR REPLACE FUNCTION crosstab_float8_5_cols(text) RETURNS setof my_crosstab_float8_5_cols AS '$libdir/tablefunc','crosstab' LANGUAGE C STABLE STRICT;
autocommit off; insert into rdb.employees_v (ssn, name, dept_no, salary, location) values (555555555, '<NAME>', 5, $50000, 'birmingham'); rollback;
<filename>sql/_01_object/_09_partition/_005_reorganization/cases/1232.sql<gh_stars>1-10 -- alter table which create using int,time,date,timestamp to add 1 range partition on time field create table range_test(id int not null , test_time time, test_date date, test_timestamp timestamp,primary key(id,test_time)); ALTER TABLE range_test PARTITION BY RANGE (test_time) ( PARTITION p0 VALUES LESS THAN ('09:00:00 AM') ); select * from db_class where class_name like 'range_test%' order by class_name; drop table range_test;
-- phpMyAdmin SQL Dump -- version 4.9.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Dec 02, 2019 at 05:43 AM -- Server version: 10.4.8-MariaDB -- PHP Version: 7.3.11 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `w4c_official` -- -- -------------------------------------------------------- -- -- Table structure for table `achievement` -- CREATE TABLE `achievement` ( `achievement_id` int(11) NOT NULL, `service_id` int(11) DEFAULT NULL, `achievement_name` varchar(255) DEFAULT NULL, `achievement_count` varchar(255) DEFAULT NULL, `achievement_unit` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `achievement` -- INSERT INTO `achievement` (`achievement_id`, `service_id`, `achievement_name`, `achievement_count`, `achievement_unit`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 'lorem-ipsum', '9999', '', '0000-00-00 00:00:00', '2019-11-24 03:20:55', NULL), (2, 1, 'lorem-ipsum', '9999', '', '0000-00-00 00:00:00', '2019-11-24 03:20:55', NULL), (3, 1, 'lorem-ipsum', '9999', '', '0000-00-00 00:00:00', '2019-11-24 03:20:56', NULL); -- -------------------------------------------------------- -- -- Table structure for table `benefit` -- CREATE TABLE `benefit` ( `benefit_id` int(11) NOT NULL, `service_id` int(11) DEFAULT NULL, `benefit_name` varchar(255) DEFAULT NULL, `benefit_icon` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `benefit` -- INSERT INTO `benefit` (`benefit_id`, `service_id`, `benefit_name`, `benefit_icon`, `created_at`, `updated_at`, `deleted_at`) VALUES (25, 1, '100-holistic-approach-on-waste-management', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (26, 1, '100-holistic-approach-on-waste-management', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (27, 1, 'support-and-in-line-with-perpres-no-97-tahun-2017', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (28, 1, 'support-and-in-line-with-perpres-no-97-tahun-2017', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (29, 1, 'increasing-staff’s-awareness-of-waste-issues', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (30, 2, '100-holistic-approach-on-waste-management', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (31, 2, '100-holistic-approach-on-waste-management', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (32, 2, 'support-and-in-line-with-perpres-no-97-tahun-2017', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (33, 2, 'support-and-in-line-with-perpres-no-97-tahun-2017', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (34, 2, 'increasing-staff’s-awareness-of-waste-issues', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (35, 3, '100-holistic-approach-on-waste-management', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (36, 3, 'reduce-waste-to-landfill', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (37, 3, 'support-and-in-line-with-perpres-no-97-tahun-2017', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (38, 3, 'support-and-in-line-with-perpres-no-97-tahun-2017', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (39, 3, 'increasing-staff’s-awareness-of-waste-issues', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (40, 4, '100-holistic-approach-on-waste-management', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (41, 4, 'reduce-waste-to-landfill', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (42, 4, 'support-and-in-line-with-perpres-no-97-tahun-2017', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (43, 4, 'support-and-in-line-with-perpres-no-97-tahun-2017', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (44, 4, 'increasing-staff’s-awareness-of-waste-issues', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (45, 5, 'zero-waste-to-landfill', NULL, '2019-11-24 03:23:39', '2019-12-01 15:35:18', NULL), (46, 5, 'prevent-your-brand-labelled-products-for-being-mis', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (47, 5, 'waste-journey-report', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL), (48, 5, 'help-to-increase-recycling-rate', NULL, '2019-11-24 03:23:39', '2019-11-24 03:23:39', NULL); -- -------------------------------------------------------- -- -- Table structure for table `client` -- CREATE TABLE `client` ( `client_id` int(11) NOT NULL, `service_id` int(11) DEFAULT NULL, `client_name` varchar(255) DEFAULT NULL, `client_logo` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `client` -- INSERT INTO `client` (`client_id`, `service_id`, `client_name`, `client_logo`, `created_at`, `updated_at`, `deleted_at`) VALUES (2, 1, 'Binus School', 'Binus-School.jpg', '2019-11-24 03:27:24', '2019-11-28 00:43:29', NULL), (3, 1, 'Javara', 'Javara.jpg', '2019-11-24 03:27:24', '2019-11-27 22:48:09', NULL), (4, 1, '<NAME>', 'Mang-Kabayan.jpg', '2019-11-24 03:27:24', '2019-11-28 00:43:29', NULL), (5, 1, 'Seniman Pangan', 'Seniman-Pangan.jpg', '2019-11-24 03:27:24', '2019-11-28 00:43:29', NULL), (6, 1, 'W<NAME>', 'Wisma-Barito.jpg', '2019-11-24 03:27:24', '2019-11-28 00:43:29', NULL), (7, 2, 'Danone', 'Danone.jpg', '2019-11-24 03:27:24', '2019-11-28 00:18:14', NULL), (8, 2, 'DBS', 'DBS.jpg', '2019-11-24 03:27:24', '2019-11-28 00:18:14', NULL), (9, 2, 'Decathlon', 'Decathlon.jpg', '2019-11-28 00:18:17', '2019-11-28 00:18:17', NULL), (10, 2, 'Gojek', 'Gojek.jpg', '2019-11-28 00:18:17', '2019-11-28 00:18:17', NULL), (11, 2, 'IKEA', 'IKEA.jpg', '2019-11-28 00:18:17', '2019-11-28 00:18:17', NULL), (12, 2, 'L Oreal', 'L-Oreal.jpg', '2019-11-28 00:18:17', '2019-11-28 00:43:29', NULL), (13, 2, 'Potato Head', 'Potato-Head.jpg', '2019-11-28 00:18:17', '2019-11-28 00:40:12', NULL), (14, 2, 'PUPR', 'PUPR.jpg', '2019-11-28 00:18:17', '2019-11-28 00:18:17', NULL), (15, 2, 'RSPO', 'RSPO.jpg', '2019-11-28 00:18:17', '2019-11-28 00:18:17', NULL), (16, 2, 'Ruang Selatan', 'Ruang-Selatan.jpg', '2019-11-28 00:18:17', '2019-11-28 00:43:29', NULL), (17, 2, 'Sudarman 7.8', 'Sudarman-7.8.jpg', '2019-11-28 00:18:17', '2019-11-28 00:43:29', NULL), (18, 2, 'The Body Shop ', 'The-Body-Shop-.jpg', '2019-11-28 00:18:17', '2019-11-28 00:43:29', NULL), (19, 2, 'World Bank', 'World-Bank.jpg', '2019-11-28 00:18:17', '2019-11-28 00:43:29', NULL), (20, 2, 'Young Living', 'Young-Living.jpg', '2019-11-28 00:18:17', '2019-11-28 00:43:29', NULL), (21, 3, 'Climate Policy Initiative', 'Climate-Policy-Initiative.jpg', '2019-11-28 01:07:46', '2019-11-28 01:07:46', NULL), (22, 3, 'Jakarta Land', 'Jakarta-Land.jpg', '2019-11-28 01:07:46', '2019-11-28 01:07:46', NULL), (23, 3, '<NAME>', 'Kemenko-Maritim.jpg', '2019-11-28 01:07:46', '2019-11-28 01:07:46', NULL), (24, 3, '<NAME>', 'The-Vida-Kebon-Jeruk.jpg', '2019-11-28 01:07:46', '2019-11-28 01:07:46', NULL), (25, 3, 'Think Web', 'Think-Web.jpg', '2019-11-28 01:07:46', '2019-11-28 01:07:46', NULL), (26, 4, '<NAME>', 'Cimb-Niaga.jpg', '2019-11-28 01:39:28', '2019-11-28 01:39:28', NULL), (27, 4, 'Ismaya Group', 'Ismaya-Group.jpg', '2019-11-28 01:39:28', '2019-11-28 01:39:28', NULL), (28, 4, 'Jakarta Fashion Week', 'Jakarta-Fashion-Week.jpg', '2019-11-28 01:39:28', '2019-11-28 01:39:28', NULL), (29, 4, 'Jakpro', 'Jakpro.jpg', '2019-11-28 01:39:28', '2019-11-28 01:39:28', NULL), (30, 4, 'Narasi TV ', 'Narasi-TV-.jpg', '2019-11-28 01:39:28', '2019-11-28 01:39:28', NULL), (31, 4, 'Nestle', 'Nestle.jpg', '2019-11-28 01:39:28', '2019-11-28 01:39:28', NULL), (32, 4, 'Pertamina', 'Pertamina.jpg', '2019-11-28 01:39:28', '2019-11-28 01:39:28', NULL), (33, 4, 'The Body Shop ', 'The-Body-Shop-.jpg', '2019-11-28 01:39:28', '2019-11-28 01:39:28', NULL), (34, 4, 'Wardah', 'Wardah.jpg', '2019-11-28 01:39:28', '2019-11-28 01:39:28', NULL), (35, 5, 'By <NAME>', 'By-Lizzie-Parra.jpg', '2019-11-28 01:50:10', '2019-11-28 01:50:10', NULL), (36, 5, 'Djournal', 'Djournal.jpg', '2019-11-28 01:50:10', '2019-11-28 01:50:10', NULL), (37, 5, 'Gojek', 'Gojek.jpg', '2019-11-28 01:50:10', '2019-11-28 01:50:10', NULL), (38, 5, 'Love Beauty Planet', 'Love-Beauty-Planet.jpg', '2019-11-28 01:50:10', '2019-11-28 01:50:10', NULL), (39, 5, 'N<NAME>', 'Nescafe-Dolce-Gusto.jpg', '2019-11-28 01:50:10', '2019-11-28 01:50:10', NULL), (40, 5, 'POtato Head', 'POtato-Head.jpg', '2019-11-28 01:50:10', '2019-11-28 01:50:10', NULL), (41, 5, 'Tetrapak', 'Tetrapak.jpg', '2019-11-28 01:50:10', '2019-11-28 01:50:10', NULL), (42, 5, 'The Body Shop ', 'The-Body-Shop-.jpg', '2019-11-28 01:50:10', '2019-11-28 01:50:10', NULL), (43, 5, 'Trave', 'Trave.jpg', '2019-11-28 01:50:10', '2019-11-28 01:50:10', NULL), (44, 5, 'Wardah', 'Wardah.jpg', '2019-11-28 01:50:10', '2019-11-28 01:50:10', NULL), (45, 5, 'Yara', 'Yara.jpg', '2019-11-28 01:50:10', '2019-11-28 01:50:10', NULL), (46, 5, 'Young Living', 'Young-Living.jpg', '2019-11-28 01:50:10', '2019-11-28 01:50:10', NULL); -- -------------------------------------------------------- -- -- Table structure for table `dictionary` -- CREATE TABLE `dictionary` ( `dictionary_id` int(11) NOT NULL, `dictionar_type_id` int(11) DEFAULT NULL, `dictionary_slug` varchar(255) DEFAULT NULL, `language_code` varchar(255) DEFAULT NULL, `dictionary_content` text DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `dictionary` -- INSERT INTO `dictionary` (`dictionary_id`, `dictionar_type_id`, `dictionary_slug`, `language_code`, `dictionary_content`) VALUES (1, NULL, 'brand', 'en', 'Brand'), (2, NULL, 'brand', 'id', 'Merek'), (3, NULL, 'bussiness-actor', 'en', 'Bussiness Actor'), (4, NULL, 'bussiness-actor', 'id', 'Bussiness Aktor'), (5, NULL, 'company', 'en', 'Company'), (6, NULL, 'company', 'id', 'Perusahaan'), (7, NULL, 'companys-csr', 'en', 'Company\'s CSR'), (8, NULL, 'companys-csr', 'id', 'Csr Perusahaan'), (9, NULL, 'consultant', 'en', 'Consultant'), (10, NULL, 'consultant', 'id', 'Konsultan'), (11, NULL, 'distributor', 'en', 'Distributor'), (12, NULL, 'distributor', 'id', 'Distribut'), (13, NULL, 'event', 'en', 'Event'), (14, NULL, 'event', 'id', 'Peristiwa'), (15, NULL, 'foundation', 'en', 'Foundation'), (16, NULL, 'foundation', 'id', 'Dasar'), (17, NULL, 'government', 'en', 'Government'), (18, NULL, 'government', 'id', 'Pemerintah'), (19, NULL, 'hotels', 'en', 'Hotels'), (20, NULL, 'hotels', 'id', 'Hotel'), (21, NULL, 'individual', 'en', 'Individual'), (22, NULL, 'individual', 'id', 'Individu'), (23, NULL, 'office-blocks', 'en', 'Office Blocks'), (24, NULL, 'office-blocks', 'id', 'Kantor Blok'), (25, NULL, 'product', 'en', 'Product'), (26, NULL, 'product', 'id', 'Produk'), (27, NULL, 'researcher', 'en', 'Researcher'), (28, NULL, 'researcher', 'id', 'Peneliti'), (29, NULL, 'residential-area/housing', 'en', 'Residential Area/Housing'), (30, NULL, 'residential-area/housing', 'id', 'Residential Area / Perumahan'), (31, NULL, 'restaurants', 'en', 'Restaurants'), (32, NULL, 'restaurants', 'id', 'Restoran'), (33, NULL, 'school', 'en', 'School'), (34, NULL, 'school', 'id', 'Sekolah'), (35, NULL, 'hse-division', 'en', 'HSE Division'), (36, NULL, 'hse-division', 'id', 'Divisi HSE'), (37, NULL, 'sustainability-division', 'en', 'Sustainability Division'), (38, NULL, 'sustainability-division', 'id', 'Divisi keberlanjutan'), (39, NULL, 'csr-division', 'en', 'CSR Division'), (40, NULL, 'csr-division', 'id', 'Divisi CSR'), (41, NULL, 'no-more-mixed-waste', 'en', 'No More Mixed Waste'), (42, NULL, 'no-more-mixed-waste', 'id', 'Tidak Ada Limbah Campur'), (43, NULL, 'no-more-waste-that-end-up-in-landfills', 'en', 'No More Waste That End Up In Landfills'), (44, NULL, 'no-more-waste-that-end-up-in-landfills', 'id', 'Tidak ada Limbah Lebih Itu berakhir di landfill'), (45, NULL, 'from-waste-to-useful-materials', 'en', 'From Waste to Useful Materials'), (46, NULL, 'from-waste-to-useful-materials', 'id', 'Dari Limbah ke Bahan Berguna'), (47, NULL, 'great-event-planned-their-waste-management-beforeh', 'en', 'Great Event Planned Their Waste Management Beforehand'), (48, NULL, 'great-event-planned-their-waste-management-beforeh', 'id', 'Great Event Rencana Pengelolaan Limbah mereka Terlebih dahulu'), (49, NULL, 'support-the-recycling-of-your-brand-labeled-waste', 'en', 'Support the Recycling of Your Brand-Labeled Waste'), (50, NULL, 'support-the-recycling-of-your-brand-labeled-waste', 'id', 'Mendukung Daur Ulang Limbah Brand-Berlabel Anda'), (51, NULL, 'research-and-planning-with-environment-in-mind', 'en', 'Research and Planning with Environment in Mind'), (52, NULL, 'research-and-planning-with-environment-in-mind', 'id', 'Penelitian dan Perencanaan dengan Lingkungan di Mind'), (53, NULL, 'solid-effort-to-reduce-waste-generation-from-the-s', 'en', 'Solid Effort to Reduce Waste Generation From The Source'), (54, NULL, 'solid-effort-to-reduce-waste-generation-from-the-s', 'id', 'Upaya yang solid untuk Mengurangi Generasi Sampah Dari Source'), (55, NULL, 'optimal-implementation-of-3r-reduce-reuse-recycle', 'en', 'Optimal Implementation of 3R (Reduce-Reuse-Recycle) Principles'), (56, NULL, 'optimal-implementation-of-3r-reduce-reuse-recycle', 'id', 'Pelaksanaan optimal 3R (Reduce-Reuse-Recycle) Prinsip'), (57, NULL, 'take-a-closer-look-at-waste-management-facts-and-s', 'en', 'Take a Closer Look at Waste Management Facts and Solutions'), (58, NULL, 'take-a-closer-look-at-waste-management-facts-and-s', 'id', 'Ambil Closer Look di Fakta Pengelolaan Limbah dan Solusi'), (59, NULL, 'effective-organic-waste-solution', 'en', 'Effective Organic Waste Solution'), (60, NULL, 'effective-organic-waste-solution', 'id', 'Solusi Sampah Organik efektif'), (61, NULL, 'a-100-holistic-waste-management-for-companies-bu', 'en', 'A 100% holistic waste management for companies, buildings, and businesses to reduce the number of waste that piles up in the landfill.'), (62, NULL, 'a-100-holistic-waste-management-for-companies-bu', 'id', 'Sebuah pengelolaan limbah holistik 100% bagi perusahaan, bangunan, dan bisnis untuk mengurangi jumlah sampah yang menumpuk di TPA.'), (63, NULL, 'take-an-active-part-in-preventing-our-local-landfi', 'en', 'Take an active part in preventing our local landfills from becoming overcapacity! Through our waste collection and waste recycling program: Zero Waste to Landfill, we will ensure that none of your waste ends up in the landfill!'), (64, NULL, 'take-an-active-part-in-preventing-our-local-landfi', 'id', 'Mengambil bagian aktif dalam mencegah pembuangan sampah lokal kami dari menjadi kelebihan kapasitas! Melalui pengumpulan sampah dan limbah Program daur ulang: Zero Waste ke TPA, kami akan memastikan bahwa tidak ada limbah Anda berakhir di TPA!'), (65, NULL, 'treat-your-inorganic-waste-the-right-way-and-make-', 'en', 'Treat your inorganic waste the right way and make sure that your inorganic waste are recycled and included in the sustainable circular system.'), (66, NULL, 'treat-your-inorganic-waste-the-right-way-and-make-', 'id', 'Perlakukan sampah anorganik Anda dengan cara yang benar dan memastikan bahwa sampah anorganik Anda didaur ulang dan termasuk dalam sistem melingkar yang berkelanjutan.'), (67, NULL, 'through-the-placement-of-segregated-waste-bins-in-', 'en', 'Through the placement of segregated waste bins in strategic places, as well as segregated waste collection for all of the waste that are produced during your event, we will help your event’s waste management to be more well-prepared and responsible!'), (68, NULL, 'through-the-placement-of-segregated-waste-bins-in-', 'id', 'Melalui penempatan tempat sampah terpisah di tempat-tempat strategis, serta pengumpulan sampah terpisah untuk semua limbah yang dihasilkan selama acara Anda, kami akan membantu pengelolaan sampah acara Anda menjadi lebih disiapkan dan bertanggung jawab!'), (69, NULL, 'increase-the-material-processing-of-brand-labelled', 'en', 'Increase the material processing of brand-labelled waste throughout your company’s business line. Whether it’s in-store recycling or app-based recycling program, we provide both the system and solution!'), (70, NULL, 'increase-the-material-processing-of-brand-labelled', 'id', 'Meningkatkan pengolahan bahan limbah merek berlabel seluruh lini bisnis perusahaan Anda. Apakah itu di dalam toko daur ulang atau program daur ulang berbasis aplikasi-, kami menyediakan sistem dan solusi!'), (71, NULL, 'improve-your-solid-waste-management-by-conducting-', 'en', 'Improve your solid waste management by conducting a thorough analysis and identifying the most appropriate system and programs.'), (72, NULL, 'improve-your-solid-waste-management-by-conducting-', 'id', 'Meningkatkan pengelolaan limbah padat Anda dengan melakukan analisis menyeluruh dan mengidentifikasi paling sistem dan program yang tepat.'), (73, NULL, 'we-help-our-clients-to-implement-programs-that-enc', 'en', 'We help our clients to implement programs that encourage the community to act and provide real contributions to the waste crisis in Indonesia.'), (74, NULL, 'we-help-our-clients-to-implement-programs-that-enc', 'id', 'Kami membantu klien kami untuk melaksanakan program-program yang mendorong masyarakat untuk bertindak dan memberikan kontribusi nyata untuk krisis sampah di Indonesia.'), (75, NULL, 'designed-to-encourage-the-increasing-awareness-of-', 'en', 'Designed to encourage the increasing awareness of school residents to apply 3R Principles (Reduce, Reuse, Recycle) for the creation of responsible waste management in schools.'), (76, NULL, 'designed-to-encourage-the-increasing-awareness-of-', 'id', 'Dirancang untuk mendorong meningkatnya kesadaran warga sekolah untuk menerapkan Prinsip 3R (Reduce, Reuse, Recycle) untuk penciptaan pengelolaan sampah yang bertanggung jawab di sekolah-sekolah.'), (77, NULL, 'waste-management-education-program-that-includes-a', 'en', 'Waste management education program that includes a visit to local landfill and Waste4Change’s waste management facilities that stimulates all 4 senses (sight, touch, smell, and hearing).'), (78, NULL, 'waste-management-education-program-that-includes-a', 'id', 'Limbah Program pendidikan manajemen yang mencakup kunjungan ke TPA lokal dan fasilitas pengelolaan limbah Waste4Change yang merangsang semua indera 4 (penglihatan, sentuhan, bau, dan pendengaran).'), (79, NULL, 'receive-in-depth-information-regarding-organic-was', 'en', 'Receive in-depth information regarding organic waste processing using Black Soldier Fly (BSF), as well as the cultivation and breeding methods of BSF.'), (80, NULL, 'receive-in-depth-information-regarding-organic-was', 'id', 'Menerima informasi mendalam mengenai pengolahan sampah organik menggunakan Hitam Soldier Fly (BSF), serta budidaya dan metode pemuliaan dari BSF.'), (81, NULL, 'we-provide-black-soldier-fly-larvae-that-is-high-i', 'en', 'We provide Black Soldier Fly larvae that is high in protein and considered as a great animal feed. For any of you who wishes to build your own BSF nursery, we have all the necessary tools and starter kit.'), (82, NULL, 'we-provide-black-soldier-fly-larvae-that-is-high-i', 'id', 'Kami menyediakan Hitam Soldier Fly larva yang tinggi protein dan dianggap sebagai pakan ternak besar. Untuk setiap dari Anda yang ingin membangun pembibitan BSF sendiri, kita memiliki semua alat yang diperlukan dan starter kit.'), (83, NULL, 'send-your-inorganic-waste-to-waste4change-and-let-', 'en', 'Send your inorganic waste to Waste4Change and let us recycle it for you.'), (84, NULL, 'send-your-inorganic-waste-to-waste4change-and-let-', 'id', 'Kirim sampah anorganik untuk Waste4Change dan biarkan kami mendaur ulang untuk Anda.'), (85, NULL, 'deposit-your-inorganic-waste-in-waste4changes-dro', 'en', 'Deposit your inorganic waste in Waste4Change\'s dropbox and let us recycle it for you.'), (86, NULL, 'deposit-your-inorganic-waste-in-waste4changes-dro', 'id', 'Deposit sampah anorganik Anda di dropbox Waste4Change dan mari kita mendaur ulang untuk Anda.'), (87, NULL, 'send-your-used-pet-bottles-of-various-sizes-and-br', 'en', 'Send your used PET bottles of various sizes and brands with GoSend to get many benefits from Ades.'), (88, NULL, 'send-your-used-pet-bottles-of-various-sizes-and-br', 'id', 'Kirim botol PET Anda digunakan berbagai ukuran dan merek dengan GoSend untuk mendapatkan banyak manfaat dari Ades.'), (89, NULL, 'deposit-your-used-packaging-through-our-partners-t', 'en', 'Deposit your used packaging through our partners throughout Indonesia and get reward points when shopping for various digital products.'), (90, NULL, 'deposit-your-used-packaging-through-our-partners-t', 'id', 'Deposit kemasan yang digunakan melalui mitra kami di seluruh Indonesia dan mendapatkan poin reward saat berbelanja untuk berbagai produk digital.'), (91, NULL, 'process-your-organic-waste-at-home-with-waste4cha', 'en', 'Process your organic waste at home with Waste4Change’s special composting bag and other home composting tools and equipment!'), (92, NULL, 'process-your-organic-waste-at-home-with-waste4cha', 'id', 'Mengolah sampah organik di rumah dengan tas Waste4Change ini khusus kompos dan kompos alat rumah lainnya dan peralatan!'), (93, NULL, 'waste-generation-is-inevitable-its-not-easy-to-r', 'en', 'Waste generation is inevitable. It\'s not easy to reduce waste in our everyday lives. The simplest, easiest and most important thing that we can do after generating waste is separating our organic and inorganic waste. <br>Through our service Responsible Wa'), (94, NULL, 'waste-generation-is-inevitable-its-not-easy-to-r', 'id', 'timbulan sampah tidak bisa dihindari. Ini tidak mudah untuk mengurangi limbah dalam kehidupan kita sehari-hari. Yang paling sederhana, paling mudah dan paling penting hal yang bisa kita lakukan setelah limbah pembangkit adalah memisahkan sampah organik da'), (95, NULL, 'every-day-indonesians-are-generating-175000-tons', 'en', 'Every day, Indonesians are generating 175,000 tons of waste. This caused Jakarta and many areas in Indonesia to suffer from landfill emergencies. Even the Bantar Gebang landfill that holds the residual waste of Jakarta residents is predicted to be overcap'), (96, NULL, 'every-day-indonesians-are-generating-175000-tons', 'id', 'Setiap hari, orang Indonesia menghasilkan 175.000 ton limbah. Hal ini menyebabkan Jakarta dan banyak daerah di Indonesia menderita keadaan darurat TPA. Bahkan TPA Bantar Gebang yang memegang limbah sisa warga Jakarta diprediksi akan kelebihan kapasitas di'), (97, NULL, 'waste-is-a-relative-term-that-can-be-applied-diffe', 'en', 'Waste is a relative term that can be applied differently to each person, especially inorganic waste. Once it is treated in the right way, inorganic waste can solve our problems on the scarcity of raw materials.<br>Through our Inorganic Waste Management (I'), (98, NULL, 'waste-is-a-relative-term-that-can-be-applied-diffe', 'id', 'Limbah adalah istilah relatif yang dapat diterapkan secara berbeda untuk setiap orang, terutama sampah anorganik. Setelah itu diperlakukan dengan cara yang benar, sampah anorganik bisa memecahkan masalah kita pada kelangkaan bahan baku. <br> Melalui anorg'), (99, NULL, 'waste-generation-during-an-event-is-inevitable-in', 'en', 'Waste generation during an event is inevitable. In a place where participants\' are allowed to take notes, to drink and eat, especially in a crowded event, it\'s not easy to make sure that everyone\'s taking their time and energy to be responsible for their '), (100, NULL, 'waste-generation-during-an-event-is-inevitable-in', 'id', 'timbulan sampah selama acara tidak bisa dihindari. Di tempat di mana peserta diperbolehkan untuk mengambil catatan, untuk minum dan makan, terutama dalam acara ramai, itu tidak mudah untuk memastikan bahwa semua orang mengambil waktu dan energi mereka unt'), (101, NULL, 'designed-to-increase-the-material-processing-from-', 'en', 'Designed to increase the material processing from brand-labeled waste throughout your companys business line. What we define as brand-labeled waste might resulted from the following:<ul><li>Production process that resulted in product defect, reject, or residue from production process</li><li>Distribution process such as expired or defect products</li><li>Warehouse such as returns, second-hand, or broken</li><li>Consumer such as empty packaging or used products</li></ul>'), (102, NULL, 'designed-to-increase-the-material-processing-from-', 'id', 'Designed to increase the material processing from brand-labeled waste throughout your companys business line. What we define as brand-labeled waste might resulted from the following:<ul><li>Production process that resulted in product defect, reject, or residue from production process</li><li>Distribution process such as expired or defect products</li><li>Warehouse such as returns, second-hand, or broken</li><li>Consumer such as empty packaging or used products</li></ul>'), (103, NULL, 'waste4change-provides-consultation-through-solid-w', 'en', 'Waste4Change provides consultation through Solid Waste Management (SWM) Research that aims to improve solid waste management by conducting a thorough analysis and identifying the most appropriate system and programs in cities, regions, building, or any ot'), (104, NULL, 'waste4change-provides-consultation-through-solid-w', 'id', 'Waste4Change menyediakan konsultasi melalui Pengelolaan Limbah Padat (SWM) Penelitian yang bertujuan untuk meningkatkan pengelolaan limbah padat dengan melakukan analisis menyeluruh dan mengidentifikasi paling sistem dan program yang tepat di kota, daerah'), (105, NULL, 'according-to-recent-bps-statistics-waste-manageme', 'en', 'According to recent BPS statistics, waste management ranks the lowest when compared to other environmental issues (energy, air pollution, transportation).<br>At Waste4Change, we see this as a challenge to implement programs that encourages the community t'), (106, NULL, 'according-to-recent-bps-statistics-waste-manageme', 'id', 'Menurut statistik BPS baru-baru ini, pengelolaan sampah peringkat terendah bila dibandingkan dengan isu-isu lain lingkungan (energi, polusi udara, transportasi). <br> Pada Waste4Change, kami melihat ini sebagai tantangan untuk melaksanakan program-program'), (107, NULL, '3r-school-program-is-a-program-designed-to-encoura', 'en', '3R School Program is a program designed to encourage the increasing awareness of school residents to apply 3R Principles (Reduce, Reuse, Recycle) for the creation of responsible waste management system in schools. The aims of this program is to assist sch'), (108, NULL, '3r-school-program-is-a-program-designed-to-encoura', 'id', 'Program Sekolah 3R adalah program yang dirancang untuk mendorong meningkatnya kesadaran warga sekolah untuk menerapkan Prinsip 3R (Reduce, Reuse, Recycle) untuk penciptaan sistem pengelolaan sampah yang bertanggung jawab di sekolah-sekolah. Tujuan dari pr'), (109, NULL, 'akademi-bijak-sampah-akabis-is-an-education-mode', 'en', 'Akademi Bijak Sampah (AKABIS) is an education model created by Waste4Change to raise awareness on the importance of protecting the environment, especially in responsible waste management. If your institution is willing to experience first-hand field visit'), (110, NULL, 'akademi-bijak-sampah-akabis-is-an-education-mode', 'id', 'Akademi Bijak Sampah (AKABIS) merupakan model pendidikan yang dibuat oleh Waste4Change untuk meningkatkan kesadaran tentang pentingnya menjaga lingkungan, terutama dalam pengelolaan sampah yang bertanggung jawab. Jika institusi Anda bersedia untuk mengala'), (111, NULL, 'through-bsf-learning-center-you-will-receive-in-d', 'en', 'Through BSF Learning Center, you will receive in-depth information regarding organic waste processing using Black Soldier Flies (BSF), as well as the cultivation and breeding methods of BSF.'), (112, NULL, 'through-bsf-learning-center-you-will-receive-in-d', 'id', 'Melalui BSF Learning Center, Anda akan menerima informasi mendalam mengenai sampah organik pengolahan menggunakan Lalat Soldier Hitam (BSF), serta budidaya dan metode pemuliaan dari BSF.'), (113, NULL, '100-holistic-approach-on-waste-management', 'en', '100% holistic-approach on waste management'), (114, NULL, '100-holistic-approach-on-waste-management', 'id', 'Zero waste to landfill'), (115, NULL, 'support-and-in-line-with-perpres-no-97-tahun-2017', 'en', 'Support and in line with Perpres No. 97 Tahun 2017 (JAKSTRANAS)'), (116, NULL, 'support-and-in-line-with-perpres-no-97-tahun-2017', 'id', 'Adding sustainable and environmental-friendly value to client\'s brand image'), (117, NULL, 'increasing-staff’s-awareness-of-waste-issues', 'en', 'Increasing staff\'s awareness of waste issues'), (118, NULL, 'increasing-staff’s-awareness-of-waste-issues', 'id', '100% holistic-approach on waste management'), (119, NULL, 'zero-waste-to-landfill', 'en', 'Zero waste to landfill'), (120, NULL, 'zero-waste-to-landfill', 'id', 'Support and in line with Perpres No. 97 Tahun 2017 (JAKSTRANAS)'), (121, NULL, 'adding-sustainable-and-environmental-friendly-valu', 'en', 'Adding sustainable and environmental-friendly value to client\'s brand image'), (122, NULL, 'adding-sustainable-and-environmental-friendly-valu', 'id', 'Increasing staff\'s awareness of waste issues'), (123, NULL, '100-holistik-pendekatan-pengelolaan-sampah', 'en', '100% holistik-pendekatan pengelolaan sampah'), (124, NULL, '100-holistik-pendekatan-pengelolaan-sampah', 'id', 'zero waste ke TPA'), (125, NULL, 'dukungan-dan-sejalan-dengan-perpres-no-97-tahun-2', 'en', 'Dukungan dan sejalan dengan Perpres No. 97 Tahun 2017 (JAKSTRANAS)'), (126, NULL, 'dukungan-dan-sejalan-dengan-perpres-no-97-tahun-2', 'id', 'Menambahkan nilai yang berkelanjutan dan ramah lingkungan untuk citra merek klien'), (127, NULL, 'meningkatkan-kesadaran-staf-masalah-limbah', 'en', 'Meningkatkan kesadaran staf masalah limbah'), (128, NULL, 'meningkatkan-kesadaran-staf-masalah-limbah', 'id', '100% holistik-pendekatan pengelolaan sampah'), (129, NULL, 'zero-waste-ke-tpa', 'en', 'zero waste ke TPA'), (130, NULL, 'zero-waste-ke-tpa', 'id', 'Dukungan dan sejalan dengan Perpres No. 97 Tahun 2017 (JAKSTRANAS)'), (131, NULL, 'mengurangi-sampah-ke-tpa', 'en', 'Mengurangi sampah ke TPA'), (132, NULL, 'mengurangi-sampah-ke-tpa', 'id', 'Dukungan dan sejalan dengan Perpres No. 97 Tahun 2017 (JAKSTRANAS)'), (133, NULL, 'menambahkan-nilai-yang-berkelanjutan-dan-ramah-lin', 'en', 'Menambahkan nilai yang berkelanjutan dan ramah lingkungan untuk citra merek klien'), (134, NULL, 'menambahkan-nilai-yang-berkelanjutan-dan-ramah-lin', 'id', 'Meningkatkan kesadaran staf masalah limbah'), (135, NULL, 'limbah-journey-laporan', 'en', 'Limbah Journey Laporan'), (136, NULL, 'limbah-journey-laporan', 'id', 'Bantuan untuk tingkat daur ulang meningkat'), (137, NULL, 'reduce-waste-to-landfill', 'en', 'Reduce waste to landfill'), (138, NULL, 'reduce-waste-to-landfill', 'id', 'Mengurangi sampah ke TPA'), (139, NULL, 'prevent-your-brand-labelled-products-for-being-mis', 'en', 'Prevent your brand-labelled products for being misused, imitated or forged'), (140, NULL, 'prevent-your-brand-labelled-products-for-being-mis', 'id', 'Mencegah merek produk berlabel Anda untuk disalahgunakan, ditiru atau dipalsukan'), (141, NULL, 'help-to-increase-recycling-rate', 'en', 'Help to increase recycling rate'), (142, NULL, 'help-to-increase-recycling-rate', 'id', 'Bantuan untuk tingkat daur ulang meningkat'), (143, NULL, 'technical-operational-analysis-?', 'en', 'Technical Operational Analysis ?'), (144, NULL, 'technical-operational-analysis-?', 'id', 'Analisis Operasional Teknis'), (145, NULL, 'waste-audit?', 'en', 'Waste Audit?'), (146, NULL, 'waste-audit?', 'id', 'limbah Audit'), (147, NULL, 'financial-analysis-?', 'en', 'Financial Analysis ?'), (148, NULL, 'financial-analysis-?', 'id', 'Analisis keuangan'), (149, NULL, 'swm-regulatory-analysis-?', 'en', 'SWM Regulatory Analysis ?'), (150, NULL, 'swm-regulatory-analysis-?', 'id', 'Analisis Regulasi SWM'), (151, NULL, 'social-participation-analysis-?', 'en', 'Social Participation Analysis ?'), (152, NULL, 'social-participation-analysis-?', 'id', 'Analisis Partisipasi sosial'), (153, NULL, 'institutional-analysis?', 'en', 'Institutional Analysis?'), (154, NULL, 'institutional-analysis?', 'id', 'Analisis Kelembagaan'), (155, NULL, 'stakeholders-mapping-?', 'en', 'Stakeholders Mapping ?'), (156, NULL, 'stakeholders-mapping-?', 'id', 'stakeholder Pemetaan'), (157, NULL, 'recycling-value-chain-analysis-?', 'en', 'Recycling Value Chain Analysis, ?'), (158, NULL, 'recycling-value-chain-analysis-?', 'id', 'Daur ulang Analisis Rantai Nilai,'), (159, NULL, 'material-flow-analysis-?', 'en', 'Material Flow Analysis ?'), (160, NULL, 'material-flow-analysis-?', 'id', 'Analisis Arus Material'), (161, NULL, 'behavior-change-analysis-?', 'en', 'Behavior Change Analysis ?'), (162, NULL, 'behavior-change-analysis-?', 'id', 'Analisis Perubahan perilaku'), (163, NULL, 'marine-debris-study-?', 'en', 'Marine Debris Study ?'), (164, NULL, 'marine-debris-study-?', 'id', 'Laut Puing Studi'), (165, NULL, 'waste-to-energy-feasibility-study-and-due-diligenc', 'en', 'Waste to Energy Feasibility Study and Due Diligence?'), (166, NULL, 'waste-to-energy-feasibility-study-and-due-diligenc', 'id', 'Limbah untuk Energi Studi Kelayakan dan Due Diligence'), (167, NULL, 'trash-bag-designated-to-support-waste-segregation', 'en', 'Trash bag designated to support waste segregation'), (168, NULL, 'trash-bag-designated-to-support-waste-segregation', 'id', 'kantong sampah yang ditunjuk untuk dukungan pemilahan sampah'), (169, NULL, 'waste-collection-in-a-segregated-state', 'en', 'Waste collection in a segregated state'), (170, NULL, 'waste-collection-in-a-segregated-state', 'id', 'Limbah koleksi dalam keadaan terpisah'), (171, NULL, 'one-time-technical-induction-training', 'en', 'One-time Technical Induction Training'), (172, NULL, 'one-time-technical-induction-training', 'id', 'Satu kali Teknis Induction Training'), (173, NULL, 'waste-journey-report', 'en', 'Waste Journey Report'), (174, NULL, 'waste-journey-report', 'id', 'Limbah Journey Laporan'), (175, NULL, 'inorganic-trash-bag', 'en', 'Inorganic Trash Bag'), (176, NULL, 'inorganic-trash-bag', 'id', 'Sampah anorganik Bag'), (177, NULL, 'comprehensive-waste-management-system-in-the-distr', 'en', 'Comprehensive waste management system in the distribution line'), (178, NULL, 'comprehensive-waste-management-system-in-the-distr', 'id', 'sistem pengelolaan sampah yang komprehensif dalam jalur distribusi'), (179, NULL, 'responsible-waste-management-for-residual-waste-w', 'en', 'Responsible waste management for residual waste (waste that are difficult to be recycled) without sending it to the landfills (on demand)'), (180, NULL, 'responsible-waste-management-for-residual-waste-w', 'id', 'pengelolaan sampah yang bertanggung jawab untuk limbah sisa (limbah yang sulit didaur ulang) tanpa mengirimnya ke tempat pembuangan sampah (on demand)'), (181, NULL, 'increase-the-number-of-waste-that-can-be-further-p', 'en', 'Increase the number of waste that can be further processed through recycling method'), (182, NULL, 'increase-the-number-of-waste-that-can-be-further-p', 'id', 'Meningkatkan jumlah sampah yang bisa diolah lebih lanjut melalui metode daur ulang'), (183, NULL, 'waste-processing-in-w4c’s-material-recovery-facili', 'en', 'Waste processing in W4C’s Material Recovery Facility'), (184, NULL, 'waste-processing-in-w4c’s-material-recovery-facili', 'id', 'Limbah pengolahan di Fasilitas Bahan Pemulihan W4C ini'), (185, NULL, 'waste-segregation-by-client', 'en', 'Waste segregation by client'), (186, NULL, 'waste-segregation-by-client', 'id', 'Buang segregasi oleh klien'), (187, NULL, 'waste-storage-in-transfer-point/-tpst', 'en', 'Waste storage in transfer point/ TPST'), (188, NULL, 'waste-storage-in-transfer-point/-tpst', 'id', 'Limbah penyimpanan di titik transfer / TPST'), (189, NULL, 'segregated-waste-collection', 'en', 'Segregated waste collection'), (190, NULL, 'segregated-waste-collection', 'id', 'pengumpulan sampah Segregated'), (191, NULL, 'waste-processing-in-w4c’s-material-recivery-facili', 'en', 'Waste processing in W4C’s Material Recivery Facility'), (192, NULL, 'waste-processing-in-w4c’s-material-recivery-facili', 'id', 'Limbah pengolahan di Fasilitas Material Recivery W4C ini'), (193, NULL, 'residue-being-sent-to-the-landfill', 'en', 'Residue being sent to the landfill'), (194, NULL, 'residue-being-sent-to-the-landfill', 'id', 'makhluk residu dikirim ke TPA'), (195, NULL, 'swm-research-in-institutions', 'en', 'SWM RESEARCH IN INSTITUTIONS'), (196, NULL, 'swm-research-in-institutions', 'id', 'SWM PENELITIAN DI LEMBAGA'), (197, NULL, 'swm-research-in-municipalities', 'en', 'SWM RESEARCH IN MUNICIPALITIES'), (198, NULL, 'swm-research-in-municipalities', 'id', 'KOTA SWM RESEARCH IN'), (199, NULL, 'waste-to-energy-study', 'en', 'WASTE TO ENERGY STUDY'), (200, NULL, 'waste-to-energy-study', 'id', 'STUDI LIMBAH UNTUK ENERGI'), (201, NULL, 'value-chain-analysis', 'en', 'VALUE CHAIN ANALYSIS'), (202, NULL, 'value-chain-analysis', 'id', '<NAME>'), (203, NULL, 'marine-debris-study', 'en', 'MARINE DEBRIS STUDY'), (204, NULL, 'marine-debris-study', 'id', 'STUDI sampah laut'), (205, NULL, 'community-assistance-in-institutions', 'en', 'COMMUNITY ASSISTANCE IN INSTITUTIONS'), (206, NULL, 'community-assistance-in-institutions', 'id', 'COMMUNITY BANTUAN LEMBAGA'), (207, NULL, 'community-assistance-in-municipalities', 'en', 'COMMUNITY ASSISTANCE IN MUNICIPALITIES'), (208, NULL, 'community-assistance-in-municipalities', 'id', 'COMMUNITY BANTUAN KOTA'), (209, NULL, 'community-assistance-in-tourism-sites', 'en', 'COMMUNITY ASSISTANCE IN TOURISM SITES'), (210, NULL, 'community-assistance-in-tourism-sites', 'id', 'COMMUNITY BANTUAN SITUS PARIWISATA'), (211, NULL, 'capacity-building', 'en', 'CAPACITY BUILDING'), (212, NULL, 'capacity-building', 'id', 'KAPASITAS'), (213, NULL, '3r-school-program', 'en', '3R SCHOOL PROGRAM'), (214, NULL, '3r-school-program', 'id', '3R SCHOOL PROGRAM'), (215, NULL, 'akabis-class-for-public', 'en', 'AKABIS CLASS FOR PUBLIC'), (216, NULL, 'akabis-class-for-public', 'id', 'AKABIS KELAS UNTUK UMUM'), (217, NULL, 'akabis-class-for-institution', 'en', 'AKABIS CLASS FOR INSTITUTION'), (218, NULL, 'akabis-class-for-institution', 'id', 'AKABIS KELAS UNTUK LEMBAGA'), (219, NULL, 'akabis-xperience-for-public', 'en', 'AKABIS XPERIENCE FOR PUBLIC'), (220, NULL, 'akabis-xperience-for-public', 'id', 'AKABIS Xperience UNTUK UMUM'), (221, NULL, 'akabis-xperience-for-institution', 'en', 'AKABIS XPERIENCE FOR INSTITUTION'), (222, NULL, 'akabis-xperience-for-institution', 'id', 'AKABIS Xperience UNTUK LEMBAGA'), (223, NULL, 'solid-waste-management-study-at-pelabuhan-indonesi', 'en', 'Solid Waste Management Study at Pelabuhan Indonesia II HQ?'), (224, NULL, 'solid-waste-management-study-at-pelabuhan-indonesi', 'id', 'Solid Waste Management Design for Revitalisation at Jami’ Mosque and Kampung Beting Settlements in Pontianak'), (225, NULL, 'feasibility-study-of-pyrolysis-for-plastic-packagi', 'en', 'Feasibility Study of Pyrolysis for Plastic Packaging in Lombok and Batam'), (226, NULL, 'feasibility-study-of-pyrolysis-for-plastic-packagi', 'id', 'Waste Management Scouting Study – Stakeholders Mapping and Waste Flow in Jakarta and Surabaya'), (227, NULL, 'riverine-plastic-monitoring-project-in-jakarta', 'en', 'Riverine Plastic Monitoring Project in Jakarta'), (228, NULL, 'riverine-plastic-monitoring-project-in-jakarta', 'id', '3R Program Suralaya'), (229, NULL, 'tps-3r-advisory', 'en', 'TPS 3R Advisory'), (230, NULL, 'tps-3r-advisory', 'id', 'Ecoranger in Pulau Merah Banyuwangi'), (231, NULL, 'capacity-building-in-indonesia’s-frontline-territo', 'en', 'Capacity Building in Indonesia’s Frontline Territories'), (232, NULL, 'capacity-building-in-indonesia’s-frontline-territo', 'id', '3R Green School'), (233, NULL, 'akabis-class-for-students-of-binus-school-al-izha', 'en', 'AKABIS-CLASS for Students of Binus School, Al-Izhar High School and SMKN 3 Bekasi'), (234, NULL, 'akabis-class-for-students-of-binus-school-al-izha', 'id', 'AKABIS-CLASS for The Embassy of Finland - Jakarta'), (235, NULL, 'akabis-xperience-for-yseali', 'en', 'AKABIS-XPERIENCE for YSEALI'), (236, NULL, 'akabis-xperience-for-yseali', 'id', 'AKABIS-XPERIENCE for World Bank Jakarta'), (237, NULL, 'studi-pengelolaan-sampah-di-pelabuhan-indonesia-ii', 'en', 'Studi Pengelolaan Sampah di Pelabuhan Indonesia II HQ'), (238, NULL, 'studi-pengelolaan-sampah-di-pelabuhan-indonesia-ii', 'id', 'Desain Pengelolaan Sampah Revitalisasi di Jami\' \r\nMasjid dan Kampung Beting Pemukiman di Pontianak'), (239, NULL, 'studi-kelayakan-pirolisis-untuk-kemasan-plastik-di', 'en', 'Studi Kelayakan Pirolisis untuk Kemasan Plastik di Lombok dan Batam'), (240, NULL, 'studi-kelayakan-pirolisis-untuk-kemasan-plastik-di', 'id', 'Limbah Manajemen Pramuka Studi - Stakeholder Mapping dan Aliran Limbah di Jakarta dan Surabaya'), (241, NULL, 'sungai-plastik-pemantauan-proyek-di-jakarta', 'en', 'Sungai Plastik Pemantauan Proyek di Jakarta'), (242, NULL, 'sungai-plastik-pemantauan-proyek-di-jakarta', 'id', '3R Program Suralaya'), (243, NULL, 'tps-3r-penasehat', 'en', 'TPS 3R Penasehat'), (244, NULL, 'tps-3r-penasehat', 'id', 'Ecoranger di Pulau Merah Banyuwangi'), (245, NULL, 'kapasitas-di-frontline-teritorial-di-indonesia', 'en', 'Kapasitas di Frontline Teritorial di Indonesia'), (246, NULL, 'kapasitas-di-frontline-teritorial-di-indonesia', 'id', '3R Green School'), (247, NULL, 'akabis-class-untuk-mahasiswa-binus-school-al-izha', 'en', 'AKABIS-CLASS untuk Mahasiswa Binus School, Al-Izhar Sekolah Tinggi dan SMKN 3 Bekasi'), (248, NULL, 'akabis-class-untuk-mahasiswa-binus-school-al-izha', 'id', 'AKABIS-CLASS untuk The Kedutaan Finlandia - Jakarta'), (249, NULL, 'akabis-xperience-untuk-yseali', 'en', 'AKABIS-Xperience untuk YSEALI'), (250, NULL, 'akabis-xperience-untuk-yseali', 'id', 'AKABIS-Xperience untuk Bank Dunia Jakarta'), (251, NULL, 'lorem-ipsum', 'en', 'Lorem Ipsum'), (252, NULL, 'lorem-ipsum', 'id', 'Lorem Ipsum'), (253, NULL, 'welcome', 'en', 'Welcome'), (254, NULL, 'welcome', 'id', 'Selamat datang'), (255, NULL, 'our-achievement', 'en', 'Our Achievement'), (256, NULL, 'our-achievement', 'id', 'Prestasi kami'), (257, NULL, 'about', 'en', 'About'), (258, NULL, 'about', 'id', 'Tentang'), (259, NULL, 'activities', 'en', 'Activities'), (260, NULL, 'activities', 'id', 'Kegiatan'), (261, NULL, 'benefit', 'en', 'Benefit'), (262, NULL, 'benefit', 'id', 'Manfaat'), (263, NULL, 'expertise-and-experience', 'en', 'Expertise And Experience'), (264, NULL, 'expertise-and-experience', 'id', 'Keahlian Dan Pengalaman'), (265, NULL, 'what-you-get', 'en', 'What You Get'), (266, NULL, 'what-you-get', 'id', 'Apa yang kau dapatkan'), (267, NULL, 'waste-flow', 'en', 'Waste Flow'), (268, NULL, 'waste-flow', 'id', '<NAME>'), (269, NULL, 'portofolio-highlight', 'en', 'Portofolio Highlight'), (270, NULL, 'portofolio-highlight', 'id', 'portofolio Highlight'), (271, NULL, 'project-hightlight', 'en', 'Project Hightlight'), (272, NULL, 'project-hightlight', 'id', 'proyek Hightlight'), (273, NULL, 'our-client', 'en', 'Our Client'), (274, NULL, 'our-client', 'id', '<NAME>'), (275, NULL, 'recomended-for', 'en', 'Recomended For'), (276, NULL, 'recomended-for', 'id', 'Recomended Untuk'), (277, NULL, 'our-coverage', 'en', 'Our Coverage'), (278, NULL, 'our-coverage', 'id', '<NAME>'), (279, NULL, 'cta', 'en', 'CTA'), (280, NULL, 'cta', 'id', 'CTA'), (281, NULL, 'expertise-and-experiences', 'en', 'Expertise and Experiences'), (282, NULL, 'expertise-and-experiences', 'id', 'Keahlian dan Pengalaman'), (283, NULL, 'highlight', 'en', 'Highlight'), (284, NULL, 'highlight', 'id', 'Menyoroti'), (285, NULL, 'client', 'en', 'Client'), (286, NULL, 'client', 'id', 'Klien'), (287, NULL, 'coverage', 'en', 'Coverage'), (288, NULL, 'coverage', 'id', 'liputan'), (289, NULL, 'responsible-waste-management', 'en', 'Responsible Waste Management'), (290, NULL, 'responsible-waste-management', 'id', 'Pengelolaan Limbah bertanggung jawab'), (291, NULL, 'extended-producer-responsibility', 'en', 'Extended Producer Responsibility'), (292, NULL, 'extended-producer-responsibility', 'id', 'Extended Producer Responsibility'), (293, NULL, 'solid-waste-management-research', 'en', 'Solid Waste Management Research'), (294, NULL, 'solid-waste-management-research', 'id', 'Penelitian Pengelolaan Limbah Padat'), (295, NULL, 'community-development', 'en', 'Community Development'), (296, NULL, 'community-development', 'id', 'Pengembangan masyarakat'), (297, NULL, 'training', 'en', 'Training'), (298, NULL, 'training', 'id', 'Latihan'), (299, NULL, 'general', 'en', 'General'), (300, NULL, 'general', 'id', 'Umum'), (301, NULL, 'achievement/-deverables', 'en', 'Achievement/ Deverables'), (302, NULL, 'achievement/-deverables', 'id', 'Achievement/ Deverables'), (303, NULL, 'description', 'en', 'Description'), (304, NULL, 'description', 'id', 'Deskripsi'), (305, NULL, 'similar-project', 'en', 'Similar Project'), (306, NULL, 'similar-project', 'id', 'Proyek Lainnya'), (307, NULL, 'solid-waste-management-study-at-pelabuhan-indonesi', 'en', 'Solid Waste Management Study at Pelabuhan Indonesia II HQ'), (308, NULL, 'solid-waste-management-study-at-pelabuhan-indonesi', 'id', 'Solid Waste Management Study at Pelabuhan Indonesia II HQ'), (309, NULL, 'swm-research-in-institutions', 'en', 'SWM RESEARCH IN INSTITUTIONS'), (310, NULL, 'swm-research-in-institutions', 'id', 'SWM RESEARCH IN INSTITUTIONS'), (311, NULL, 'swm-research-in-municipalities', 'en', 'SWM RESEARCH IN MUNICIPALITIES'), (312, NULL, 'swm-research-in-municipalities', 'id', 'SWM RESEARCH IN MUNICIPALITIES'), (313, NULL, 'solid-waste-management-design-for-revitalisation-a', 'en', 'Solid Waste Management Design for Revitalisation at Jami\' Mosque and Kampung Beting Settlements in Pontianak'), (314, NULL, 'solid-waste-management-design-for-revitalisation-a', 'id', 'Solid Waste Management Design for Revitalisation at Jami\' Mosque and Kampung Beting Settlements in Pontianak'); -- -------------------------------------------------------- -- -- Table structure for table `dictionary_type` -- CREATE TABLE `dictionary_type` ( `dictionary_type_id` int(11) NOT NULL, `dictionary_type_name` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -------------------------------------------------------- -- -- Table structure for table `expertise` -- CREATE TABLE `expertise` ( `expertise_id` int(11) NOT NULL, `service_id` int(11) DEFAULT NULL, `expertise_name` varchar(255) DEFAULT NULL, `expertise_icon` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `expertise` -- INSERT INTO `expertise` (`expertise_id`, `service_id`, `expertise_name`, `expertise_icon`, `created_at`, `updated_at`, `deleted_at`) VALUES (2, 6, 'technical-operational-analysis-?', NULL, '2019-11-24 03:25:37', '2019-11-24 03:25:37', NULL), (3, 6, 'waste-audit?', NULL, '2019-11-24 03:25:37', '2019-11-24 03:25:37', NULL), (4, 6, 'financial-analysis-?', NULL, '2019-11-24 03:25:37', '2019-11-24 03:25:37', NULL), (5, 6, 'swm-regulatory-analysis-?', NULL, '2019-11-24 03:25:37', '2019-11-24 03:25:37', NULL), (6, 6, 'social-participation-analysis-?', NULL, '2019-11-24 03:25:37', '2019-11-24 03:25:37', NULL), (7, 6, 'institutional-analysis?', NULL, '2019-11-24 03:25:37', '2019-11-24 03:25:37', NULL), (8, 6, 'stakeholders-mapping-?', NULL, '2019-11-24 03:25:37', '2019-11-24 03:25:37', NULL), (9, 6, 'recycling-value-chain-analysis-?', NULL, '2019-11-24 03:25:37', '2019-11-24 03:25:37', NULL), (10, 6, 'material-flow-analysis-?', NULL, '2019-11-24 03:25:37', '2019-11-24 03:25:37', NULL), (11, 6, 'behavior-change-analysis-?', NULL, '2019-11-24 03:25:37', '2019-11-24 03:25:37', NULL), (12, 6, 'marine-debris-study-?', NULL, '2019-11-24 03:25:37', '2019-11-24 03:25:37', NULL), (13, 6, 'waste-to-energy-feasibility-study-and-due-diligenc', NULL, '2019-11-24 03:25:37', '2019-11-24 03:25:37', NULL); -- -------------------------------------------------------- -- -- Table structure for table `facility` -- CREATE TABLE `facility` ( `facility_id` int(11) NOT NULL, `service_id` int(11) DEFAULT NULL, `facility_name` varchar(255) DEFAULT NULL, `facility_icon` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `deleted_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `facility` -- INSERT INTO `facility` (`facility_id`, `service_id`, `facility_name`, `facility_icon`, `created_at`, `deleted_at`, `updated_at`) VALUES (1, 1, 'trash-bag-designated-to-support-waste-segregation', 'wastebin-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 00:07:00'), (2, 1, 'waste-collection-in-a-segregated-state', 'mark-location-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 00:07:08'), (3, 1, 'one-time-technical-induction-training', 'loadspeaker-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 00:07:16'), (4, 1, 'waste-journey-report', 'report-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 00:07:21'), (5, 2, 'trash-bag-designated-to-support-waste-segregation', 'wastebin-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 00:07:25'), (6, 2, 'waste-collection-in-a-segregated-state', 'mark-location-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 00:07:25'), (7, 2, 'one-time-technical-induction-training', 'loadspeaker-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 00:07:25'), (8, 2, 'waste-journey-report', 'report-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 00:07:25'), (9, 3, 'inorganic-trash-bag', 'wastebin-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 00:07:31'), (10, 3, 'waste-collection-in-a-segregated-state', 'mark-location-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 00:07:31'), (11, 3, 'one-time-technical-induction-training', 'loadspeaker-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 00:07:31'), (12, 3, 'waste-journey-report', 'report-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 00:07:31'), (13, 4, 'trash-bag-designated-to-support-waste-segregation', 'wastebin-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 00:07:44'), (14, 4, 'waste-collection-in-a-segregated-state', 'segregation-bin-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 01:42:12'), (15, 4, 'waste-journey-report', 'report-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 01:42:13'), (16, 5, 'comprehensive-waste-management-system-in-the-distr', 'distribution-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 01:43:43'), (17, 5, 'responsible-waste-management-for-residual-waste-w', 'residue-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 01:53:21'), (18, 5, 'increase-the-number-of-waste-that-can-be-further-p', 'chart-m.png', '2019-11-19 09:09:42', NULL, '2019-11-28 01:44:13'); -- -------------------------------------------------------- -- -- Table structure for table `flow` -- CREATE TABLE `flow` ( `flow_id` int(11) NOT NULL, `service_id` int(11) DEFAULT NULL, `flow_name` varchar(255) DEFAULT NULL, `flow_icon` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `flow` -- INSERT INTO `flow` (`flow_id`, `service_id`, `flow_name`, `flow_icon`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 'waste-segregation-by-client', 'drop.png', '2019-11-19 09:10:01', '2019-12-01 11:57:07', NULL), (2, 1, 'waste-storage-in-transfer-point/-tpst', 'storage.png', '2019-11-19 09:10:01', '2019-12-01 11:57:25', NULL), (3, 1, 'segregated-waste-collection', 'transfer.png', '2019-11-19 09:10:01', '2019-12-01 11:56:44', NULL), (4, 1, 'waste-processing-in-w4c’s-material-recovery-facili', 'process.png', '2019-11-19 09:10:01', '2019-12-01 11:56:57', NULL), (5, 1, 'residue-being-sent-to-the-landfill', 'landfill.png', '2019-11-19 09:10:01', '2019-12-01 11:57:42', NULL), (6, 2, 'waste-segregation-by-client', 'drop.png', '2019-11-19 09:10:01', '2019-12-01 11:57:07', NULL), (7, 2, 'waste-storage-in-transfer-point/-tpst', 'storage.png', '2019-11-19 09:10:01', '2019-12-01 11:57:25', NULL), (8, 2, 'segregated-waste-collection', 'transfer.png', '2019-11-19 09:10:01', '2019-12-01 11:56:44', NULL), (9, 2, 'waste-processing-in-w4c’s-material-recovery-facili', 'process.png', '2019-11-19 09:10:01', '2019-12-01 11:56:57', NULL), (10, 2, 'residue-being-sent-to-the-landfill', 'landfill.png', '2019-11-19 09:10:01', '2019-12-01 11:57:48', NULL), (11, 3, 'waste-segregation-by-client', 'drop.png', '2019-11-19 09:10:01', '2019-12-01 11:57:07', NULL), (12, 3, 'waste-storage-in-transfer-point/-tpst', 'storage.png', '2019-11-19 09:10:01', '2019-12-01 11:57:25', NULL), (13, 3, 'segregated-waste-collection', 'transfer.png', '2019-11-19 09:10:01', '2019-12-01 11:56:44', NULL), (14, 3, 'waste-processing-in-w4c’s-material-recivery-facili', 'process.png', '2019-11-19 09:10:01', '2019-12-01 11:56:57', NULL), (15, 3, 'residue-being-sent-to-the-landfill', 'recycling.png', '2019-11-19 09:10:01', '2019-12-01 12:23:29', NULL), (16, 4, 'waste-segregation-by-client', 'drop.png', '2019-11-19 09:10:01', '2019-12-01 11:57:07', NULL), (17, 4, 'waste-storage-in-transfer-point/-tpst', 'storage.png', '2019-11-19 09:10:01', '2019-12-01 11:57:25', NULL), (18, 4, 'segregated-waste-collection', 'transfer.png', '2019-11-19 09:10:01', '2019-12-01 11:56:44', NULL), (19, 4, 'waste-processing-in-w4c’s-material-recivery-facili', 'process.png', '2019-11-19 09:10:01', '2019-12-01 11:56:57', NULL), (20, 4, 'residue-being-sent-to-the-landfill', 'landfill.png', '2019-11-19 09:10:01', '2019-12-01 14:50:37', NULL), (21, 5, 'waste-segregation-by-client', 'drop.png', '2019-11-19 09:10:01', '2019-12-01 11:57:07', NULL), (22, 5, 'waste-storage-in-transfer-point/-tpst', 'storage.png', '2019-11-19 09:10:01', '2019-12-01 11:57:25', NULL), (23, 5, 'segregated-waste-collection', 'transfer.png', '2019-11-19 09:10:01', '2019-12-01 11:56:44', NULL), (24, 5, 'waste-processing-in-w4c’s-material-recivery-facili', 'process.png', '2019-11-19 09:10:01', '2019-12-01 11:56:57', NULL), (25, 5, 'residue-being-sent-to-the-landfill', 'landfill.png', '2019-11-19 09:10:01', '2019-12-01 15:36:06', NULL); -- -------------------------------------------------------- -- -- Table structure for table `language` -- CREATE TABLE `language` ( `language_id` int(11) NOT NULL, `language_code` varchar(255) DEFAULT NULL, `language_name` varchar(255) DEFAULT NULL, `language_flag` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `language` -- INSERT INTO `language` (`language_id`, `language_code`, `language_name`, `language_flag`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'id', 'Indonesia', 'assets/img/icons/flag_indonesia.png', '2019-11-16 18:56:12', '2019-11-16 18:56:30', NULL), (2, 'en', 'English', 'assets/img/icons/flag_english.png', '2019-11-16 18:56:53', '2019-11-16 18:56:59', NULL); -- -------------------------------------------------------- -- -- Table structure for table `page` -- CREATE TABLE `page` ( `page_id` int(11) NOT NULL, `page_slug` varchar(255) DEFAULT NULL, `page_name` varchar(255) DEFAULT NULL, `publised_at` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -------------------------------------------------------- -- -- Table structure for table `photofolio` -- CREATE TABLE `photofolio` ( `photofolio_id` int(11) NOT NULL, `service_id` int(11) DEFAULT NULL, `photofolio_client` varchar(255) DEFAULT NULL, `photofolio_client_logo` varchar(255) DEFAULT NULL, `photofolio_client_address` varchar(255) DEFAULT NULL, `photofolio_image` varchar(255) DEFAULT NULL, `photofolio_start` date DEFAULT NULL, `photofolio_end` date DEFAULT NULL, `photofolio_duration` varchar(255) DEFAULT NULL, `photofolio_collection_schedulle` varchar(255) DEFAULT NULL, `photofolio_waste_collected` varchar(255) DEFAULT NULL, `photofolio_audience` varchar(255) DEFAULT NULL, `photofolio_mou` date DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `photofolio` -- INSERT INTO `photofolio` (`photofolio_id`, `service_id`, `photofolio_client`, `photofolio_client_logo`, `photofolio_client_address`, `photofolio_image`, `photofolio_start`, `photofolio_end`, `photofolio_duration`, `photofolio_collection_schedulle`, `photofolio_waste_collected`, `photofolio_audience`, `photofolio_mou`, `created_at`, `updated_at`, `deleted_at`) VALUES (12, 1, '<NAME>', 'vida.jpg', 'Jl. <NAME> No. 1, Bumiwedari, Bantar Gebang, Kota Bekasi, Jawa Barat 1715', 'vida.jpg', NULL, NULL, '', '3 days per week', '112.000 kg/month', '', '2014-01-01', '2019-11-28 01:35:47', '2019-11-28 01:36:03', NULL), (13, 1, '<NAME>', 'barito.jpg', 'Jl. <NAME>. 62-63, Slipi, Jakarta Barat, DKI Jakarta 11410', 'barito.jpg', NULL, NULL, '1 year', '3 days per week', '6.922 kg/month', '', '2019-02-01', '2019-11-28 01:35:47', '2019-11-28 01:36:03', NULL), (14, 2, 'The Body Shop', 'tbs.jpg', 'Sentosa Building 2 Lt. 1, Bintaro Jaya Central Business District, Kota Tangerang Selatan, Banten 15224', 'tbs.jpg', NULL, NULL, '1 year', 'Every day', '776,5 kg/month', '', '2018-12-01', '2019-11-28 01:35:47', '2019-11-28 01:36:03', NULL), (15, 2, 'PUPR', 'pupr.jpg', 'Jalan Pattimura No. 20,Jakarta Selatan 12110', 'pupr.jpg', NULL, NULL, '4 month', 'Every day', '26,575 kg/month', '', '2019-09-01', '2019-11-28 01:35:47', '2019-11-28 01:36:03', NULL), (16, 3, 'Jakarta Land', '', 'World Trade Centre - WTC 5, 8th floor, Jl. Jend. Sudirman Kav. 29 Jakarta 12920', '', NULL, NULL, '1 year', '1 day per week', '192 kg/month', '', '2018-04-01', '2019-11-28 01:35:47', '2019-11-28 01:37:05', NULL), (17, 4, 'Playfest 2019', 'playfest2019.jpg', '', 'playfest2019.jpg', '2019-08-24', '2019-08-25', '', '', '1.141 kg', '6000', NULL, '2019-11-28 01:35:47', '2019-11-28 01:37:10', NULL), (18, 4, 'Milo Jakarta International 10K 2018', 'milo.jpg', '', 'milo.jpg', '2018-07-15', NULL, '', '', '646,2 kg', '16000', NULL, '2019-11-28 01:35:47', '2019-11-28 01:35:59', NULL), (19, 5, 'The Body Shop - Bring Back Our Bottle (BBOB) Program', 'tbs.jpg', '', 'tbs.jpg', NULL, NULL, '2015 until present', '', '33447 kg', '', NULL, '2019-11-28 01:35:47', '2019-11-28 01:35:59', NULL), (20, 5, 'By <NAME> - There is a Box for That (TIBFT)', 'lizzy.jpg', '', 'lizzy.jpg', NULL, NULL, 'Agustus - November 2019', '', '', '', NULL, '2019-11-28 01:35:47', '2019-11-28 01:35:59', NULL); -- -------------------------------------------------------- -- -- Table structure for table `project` -- CREATE TABLE `project` ( `project_id` int(11) NOT NULL, `service_id` int(11) DEFAULT NULL, `project_slug` varchar(255) NOT NULL, `project_category` varchar(255) DEFAULT NULL, `project_name` varchar(255) DEFAULT NULL, `project_client` varchar(255) DEFAULT NULL, `project_url` varchar(255) NOT NULL, `project_thumbnail` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `project` -- INSERT INTO `project` (`project_id`, `service_id`, `project_slug`, `project_category`, `project_name`, `project_client`, `project_url`, `project_thumbnail`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 6, 'solid-waste-management-study-at-pelabuhan-indonesia-ii-hq', 'swm-research-in-institutions', 'solid-waste-management-study-at-pelabuhan-indonesi', 'PT. Pelabuhan Indonesia II (Persero)', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:08:34', NULL), (2, 6, 'solid-waste-management-design-for-revitalisation-at-jami\'\r\n-mosque-and-kampung-beting-settlements-in-pontianak', 'swm-research-in-municipalities', 'solid-waste-management-study-at-pelabuhan-indonesi', 'Ministry of Public Works and Housings', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:19:43', NULL), (3, 6, 'feasibility-study-of-pyrolysis-for-plastic-packaging-in-lombok-and-batam', 'waste-to-energy-study', 'feasibility-study-of-pyrolysis-for-plastic-packagi', 'GA Circular', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:08:55', NULL), (4, 6, 'waste-management-scouting-study-stakeholders-mapping-and-waste-flow-in-jakarta-and-surabaya', 'value-chain-analysis', 'feasibility-study-of-pyrolysis-for-plastic-packagi', 'PT. Deloitte Konsultan Indonesia', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:09:03', NULL), (5, 6, 'riverine-plastic-monitoring-project-in-jakarta', 'marine-debris-study', 'riverine-plastic-monitoring-project-in-jakarta', 'The Ocean Cleanup', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:09:11', NULL), (6, 7, '3r-program-suralaya', 'community-assistance-in-institutions', 'riverine-plastic-monitoring-project-in-jakarta', 'T. Indonesia Power Up Suralaya', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:09:21', NULL), (7, 7, 'tps-3r-advisory', 'community-assistance-in-municipalities', 'tps-3r-advisory', 'PT. Sarana Multi Daya, PT. Multi Karadiguna Jasa, PT. Prismamita Cipta Kreasi', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:09:26', NULL), (8, 7, 'ecoranger-in-pulau-merah-banyuwangi', 'community-assistance-in-tourism-sites', 'tps-3r-advisory', 'Greeneration Foundation and Coca Cola Foundation Indonesia', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:09:31', NULL), (9, 7, 'capacity-building-in-indonesia’s-frontline-territories', 'capacity-building', 'capacity-building-in-indonesia’s-frontline-territo', 'Ministry of Public Works and Housing', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:09:36', NULL), (10, 8, '3r-green-school', '3r-school-program', 'capacity-building-in-indonesia’s-frontline-territo', 'Yayasan Unilever Indonesia', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:09:43', NULL), (11, 9, 'akabis-class-for-students-of-binus-school-al-izhar-high-school-and-smkn-3-bekasi', 'akabis-class-for-public', 'akabis-class-for-students-of-binus-school-al-izha', 'PT. Epson Indonesia', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:09:50', NULL), (12, 9, 'akabis-class-for-the-embassy-of-finland-jakarta', 'akabis-class-for-institution', 'akabis-class-for-students-of-binus-school-al-izha', 'Embassy of Finland', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:09:54', NULL), (13, 9, 'akabis-xperience-for-yseali', 'akabis-xperience-for-public', 'akabis-xperience-for-yseali', 'YSEALI (Young Southeast Asian Leader Initiative) Organized by Divers Clean Action and US Embassy?', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:09:59', NULL), (14, 9, 'akabis-xperience-for-world-bank-jakarta', 'akabis-xperience-for-institution', 'akabis-xperience-for-yseali', 'World Bank', '', NULL, '2019-11-24 03:27:02', '2019-12-01 16:10:06', NULL); -- -------------------------------------------------------- -- -- Table structure for table `recomendation` -- CREATE TABLE `recomendation` ( `recomendation_id` int(11) NOT NULL, `recomendation_name` varchar(255) DEFAULT NULL, `recomendation_color` varchar(255) DEFAULT NULL, `recomendation_icon` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `recomendation` -- INSERT INTO `recomendation` (`recomendation_id`, `recomendation_name`, `recomendation_color`, `recomendation_icon`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'brand', '#a24495', 'icon-medical-022 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:32:41', NULL), (2, 'bussiness-actor', '#a29244', 'icon-finance-024 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:32:53', NULL), (3, 'company', '#a24444', 'icon-real-estate-052 u-line-icon-pro)', '2019-11-24 03:28:16', '2019-11-27 23:33:02', NULL), (4, 'companys-csr', '#a24444', 'icon-medical-022 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:33:35', NULL), (5, 'consultant', '#a29244', 'icon-finance-218 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:33:05', NULL), (6, 'distributor', '#a24444', 'icon-real-estate-088 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:43:35', NULL), (7, 'event', '#a24495', 'icon-hotel-restaurant-056 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:33:52', NULL), (8, 'foundation', '#68a244', 'icon-real-estate-009 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:34:00', NULL), (9, 'government', '#68a244', 'icon-hotel-restaurant-136 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:34:12', NULL), (10, 'hotels', '#4489a2', 'icon-travel-079 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:34:29', NULL), (11, 'individual', '#68a244', 'icon-real-estate-014 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-24 03:28:16', NULL), (12, 'office-blocks', '#68a244', 'icon-hotel-restaurant-172 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:34:37', NULL), (13, 'product', '#a24495', 'icon-education-031 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:34:47', NULL), (14, 'researcher', '#a29244', 'icon-finance-002 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:37:01', NULL), (15, 'residential-area/housing', '#4489a2', 'icon-real-estate-070 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:37:17', NULL), (16, 'restaurants', '#a24444', 'icon-hotel-restaurant-020 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:37:27', NULL), (17, 'school', '#4489a2', 'icon-education-001 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:43:16', NULL), (18, 'hse-division', '#4489a2', 'icon-medical-031 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:34:20', NULL), (19, 'sustainability-division', '#a24444', 'icon-hotel-restaurant-132 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:32:19', NULL), (20, 'csr-division', '#4489a2', 'icon-medical-022 u-line-icon-pro', '2019-11-24 03:28:16', '2019-11-27 23:43:11', NULL); -- -------------------------------------------------------- -- -- Table structure for table `section` -- CREATE TABLE `section` ( `section_id` int(11) NOT NULL, `section_slug` varchar(255) DEFAULT NULL, `section_name` varchar(255) DEFAULT NULL, `section_menu_name` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `section` -- INSERT INTO `section` (`section_id`, `section_slug`, `section_name`, `section_menu_name`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'welcome', 'welcome', '', '2019-10-01 00:00:00', '2019-12-01 20:18:19', NULL), (2, 'our-achievement', 'our-achievement', '', '2019-10-02 03:28:01', '2019-12-01 20:18:29', NULL), (3, 'about', 'about', 'about', '2019-10-03 03:28:01', '2019-12-01 20:18:37', NULL), (4, 'activities', 'activities', 'activities', '2019-10-05 03:28:01', '2019-12-01 20:33:47', NULL), (5, 'benefit', 'benefit', 'benefit', '2019-10-06 03:28:01', '2019-12-01 20:34:14', NULL), (6, 'expertise', 'expertise', 'expertise-and-experiences', '2019-10-06 03:28:01', '2019-12-01 20:34:07', NULL), (7, 'what-you-get', 'what-you-get', 'what-you-get', '2019-10-07 03:28:01', '2019-12-01 20:37:21', NULL), (8, 'waste-flow', 'waste-flow', 'waste-flow', '2019-10-07 03:28:01', '2019-12-01 20:36:17', NULL), (9, 'photofolio-highlight', 'photofolio-highlight', 'highlight', '2019-10-08 03:28:01', '2019-12-01 20:36:26', NULL), (10, 'project-highlight', 'project-highlight', 'highlight', '2019-10-08 03:28:01', '2019-12-01 20:36:31', NULL), (11, 'our-client', 'our-client', 'client', '2019-10-09 03:28:01', '2019-12-01 20:37:45', NULL), (12, 'recomended-for', 'recomended-for', 'recomended-for', '2019-10-10 03:28:01', '2019-12-01 20:37:39', NULL), (13, 'our-coverage', 'our-coverage', 'coverage', '2019-10-11 03:28:01', '2019-12-01 20:37:50', NULL), (14, 'cta', 'cta', '', '2019-10-12 03:28:01', '2019-12-01 20:37:55', NULL), (15, 'project-header', 'project-header', NULL, '2019-10-01 00:00:00', '2019-12-01 20:15:36', NULL), (16, 'description', 'description', 'description', '2019-10-03 00:00:00', '2019-12-01 20:15:36', NULL), (17, 'similar-project', 'similar-project', 'similar-project', '2019-10-08 20:15:59', '2019-12-01 20:37:30', NULL), (18, 'achievement-deliverables', 'achievement-deliverables', 'achievement-deliverables', '2019-10-04 20:22:17', '2019-12-01 20:54:37', NULL), (19, 'we-offer', 'we-offer', 'offer', '2019-10-05 20:33:27', '2019-12-01 20:33:55', NULL), (20, 'output', 'output-benefit', 'output-benefit', '2019-10-06 20:33:27', '2019-12-01 20:34:56', NULL); -- -------------------------------------------------------- -- -- Table structure for table `service` -- CREATE TABLE `service` ( `service_id` int(11) NOT NULL, `service_category_id` int(11) DEFAULT NULL, `service_parent_id` int(11) DEFAULT NULL, `service_subcategory_name` varchar(255) NOT NULL, `service_slug` text NOT NULL, `service_name` varchar(255) NOT NULL, `service_slogan` varchar(255) DEFAULT NULL, `service_description` text DEFAULT NULL, `service_about` text DEFAULT NULL, `service_client_name` text NOT NULL, `service_about_image` varchar(255) DEFAULT NULL, `service_header_image` varchar(255) DEFAULT NULL, `service_thumbnail` varchar(255) DEFAULT NULL, `service_page_url` varchar(255) DEFAULT NULL, `service_join_url` varchar(255) DEFAULT NULL, `service_proposal_url` varchar(255) DEFAULT NULL, `service_portofolio_url` varchar(255) DEFAULT NULL, `has_page` int(11) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `service` -- INSERT INTO `service` (`service_id`, `service_category_id`, `service_parent_id`, `service_subcategory_name`, `service_slug`, `service_name`, `service_slogan`, `service_description`, `service_about`, `service_client_name`, `service_about_image`, `service_header_image`, `service_thumbnail`, `service_page_url`, `service_join_url`, `service_proposal_url`, `service_portofolio_url`, `has_page`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, NULL, '', 'responsible-waste-management-basic', 'Responsible Waste Management - Basic', 'no-more-mixed-waste', 'a-100-holistic-waste-management-for-companies-bu', 'waste-generation-is-inevitable-its-not-easy-to-r', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'official/service/responsible-waste-management-basic', 'https://waste4change.com/official/join', 'https://docs.google.com/forms/d/e/1FAIpQLSdydu6Ar9mGKppAI4V2fevcWkLSpTpiSwdbpv0moPU4-_o3NQ/viewform', '', 1, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (2, 1, NULL, '', 'zero-waste-to-landfill', 'Zero Waste to Landfill', 'no-more-waste-that-end-up-in-landfills', 'take-an-active-part-in-preventing-our-local-landfi', 'every-day-indonesians-are-generating-175000-tons', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'official/service/zero-waste-to-landfill', 'https://waste4change.com/official/join', 'https://docs.google.com/forms/d/e/1FAIpQLSemrcuqzCk4wFUtMPFFwLkJOsYSlCjoJ8GHCDdXcM7Or5YlQg/', '', 1, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (3, 1, NULL, '', 'inorganic-waste-management', 'Inorganic Waste Management', 'from-waste-to-useful-materials', 'treat-your-inorganic-waste-the-right-way-and-make-', 'waste-is-a-relative-term-that-can-be-applied-diffe', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'official/service/inorganic-waste-management', 'https://waste4change.com/official/join', 'https://docs.google.com/forms/d/e/1FAIpQLSfgzkfJXMhuTUO4sgwpkF1PINvH7_XNBrZ84PWJD6OqghV_Eg/viewform', '', 1, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (4, 1, NULL, '', 'event-waste-management', 'Event Waste Management', 'great-event-planned-their-waste-management-beforeh', 'through-the-placement-of-segregated-waste-bins-in-', 'waste-generation-during-an-event-is-inevitable-in', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'official/service/event-waste-management', 'https://waste4change.com/official/join', 'https://docs.google.com/forms/d/e/1FAIpQLScFEwvyBaouF85RuuJSQpDCmGmkIIf4Hby9uo6HrZHJVSRBvw', '', 1, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (5, 2, NULL, '', 'in-store-recycling', 'In-Store Recycling', 'support-the-recycling-of-your-brand-labeled-waste', 'increase-the-material-processing-of-brand-labelled', 'designed-to-increase-the-material-processing-from-', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'official/service/in-store-recycling', 'https://waste4change.com/official/join', 'https://docs.google.com/forms/d/e/1FAIpQLSd8QsQoYbyTb5-8dD6r5KUFCz9BhTmBvh1c2Lla2HdlrDHFQg/viewform', '', 1, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (6, 3, NULL, '', 'solid-waste-management-research', 'Solid Waste Management Research', 'research-and-planning-with-environment-in-mind', 'improve-your-solid-waste-management-by-conducting-', 'waste4change-provides-consultation-through-solid-w', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'official/service/solid-waste-management-research', 'https://waste4change.com/official/join', 'https://docs.google.com/forms/d/e/1FAIpQLScGCw668xdQjji7zRsCRQ-50524A4XLOWS7-up1q4F_KDWhNw/viewform', '', 1, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (7, 4, NULL, '', 'community-based-implementation', 'Community-Based Implementation', 'solid-effort-to-reduce-waste-generation-from-the-s', 'we-help-our-clients-to-implement-programs-that-enc', 'according-to-recent-bps-statistics-waste-manageme', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'official/service/community-based-implementation', 'https://waste4change.com/official/join', '', '', 1, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (8, 4, NULL, '', '3r-school-program', '3R School Program', 'optimal-implementation-of-3r-reduce-reuse-recycle', 'designed-to-encourage-the-increasing-awareness-of-', '3r-school-program-is-a-program-designed-to-encoura', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'official/service/3r-school-program', 'https://waste4change.com/official/join', 'https://docs.google.com/forms/d/e/1FAIpQLScmBjcHJhsI1OIOM-So0VQNhsbIGUJeKuovMe2QzVeYMnUU0g/viewform', '', 1, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (9, 5, NULL, '', 'akabis-waste-management-academy', 'AKABIS (Waste Management Academy)', 'take-a-closer-look-at-waste-management-facts-and-s', 'waste-management-education-program-that-includes-a', 'akademi-bijak-sampah-akabis-is-an-education-mode', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'official/service/akabis-waste-management-academy', 'https://waste4change.com/official/join', 'https://docs.google.com/forms/d/e/1FAIpQLSeSk3TroFAjonCgvBQcOjv5jSIS8elOVSyt_BVlUHoL_7k_gw/viewform', '', 1, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (10, 5, NULL, '', 'black-soldier-fly-learning-center', 'Black Soldier Fly Learning Center', 'effective-organic-waste-solution', 'receive-in-depth-information-regarding-organic-was', 'through-bsf-learning-center-you-will-receive-in-d', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'official/service/black-soldier-fly-learning-center', 'https://waste4change.com/official/join', 'https://docs.google.com/forms/d/e/1FAIpQLSc7hGAdWLlFqt5qa38-7fMwA9Nsp2ev9lUk7Qi8Xwe_z3lYfg/viewform', '', 1, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (11, 5, NULL, '', 'black-soldier-fly-tools-products', 'Black Soldier Fly Tools & Products', '', 'we-provide-black-soldier-fly-larvae-that-is-high-i', '', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'official/service/black-soldier-fly-tools-products', 'https://waste4change.com/official/join', '', '', 0, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (12, 6, NULL, '', 'send-your-waste', 'Send Your Waste', '', 'send-your-inorganic-waste-to-waste4change-and-let-', '', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'official/service/sendyourwaste', 'https://waste4change.com/official/join', '', '', 1, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (13, 6, NULL, '', 'dropbox', 'Dropbox', '', 'deposit-your-inorganic-waste-in-waste4changes-dro', '', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'dropbox', 'https://waste4change.com/official/join', '', '', 1, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (14, 6, NULL, '', 'sinergi-adesniatmurni-dan-gojek', 'Sinergi #AdesNiatMurni dan Gojek', '', 'send-your-used-pet-bottles-of-various-sizes-and-br', '', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'poin/home/sinergi-ades-niat-murni-dan-gojek', 'https://waste4change.com/official/join', '', '', 1, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (15, 6, NULL, '', 'merchant', 'Merchant', '', 'deposit-your-used-packaging-through-our-partners-t', '', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'https://waste4change.com/official/service/merchant', 'https://waste4change.com/official/join', '', '', 0, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (16, 6, NULL, '', 'home-composting', 'Home Composting', '', 'process-your-organic-waste-at-home-with-waste4cha', '', '', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'https://waste4change.com/official/service/home-composting', 'https://waste4change.com/official/join', '', '', 0, '2019-11-16 18:53:26', '2019-11-16 18:53:26', NULL), (17, NULL, 6, 'swm-research-in-institutions', 'solid-waste-management-study-at-pelabuhan-indonesia-ii-hq', 'solid-waste-management-study-at-pelabuhan-indonesi', NULL, NULL, NULL, 'PT. Pelabuhan Indonesia II (Persero)', 'about.jpg', 'header.jpg', 'thumbnail.jpg\r\n', 'project/solid-waste-management-study-at-pelabuhan-indonesia-ii-hq', NULL, NULL, NULL, 1, '2019-12-01 20:06:45', '2019-12-01 20:06:45', NULL), (18, NULL, 6, 'swm-research-in-municipalities', 'solid-waste-management-design-for-revitalisation-at-jami-mosque-and-kampung-beting-settlements-in-pontianak', 'solid-waste-management-design-for-revitalisation-a', NULL, NULL, NULL, 'Ministry of Public Works and Housings', 'about.jpg', 'header.jpg', 'thumbnail.jpg', 'project/solid-waste-management-design-for-revitalisation-at-jami-mosque-and-kampung-beting-settlements-in-pontianak', NULL, NULL, NULL, 1, '2019-12-01 20:06:45', '2019-12-01 20:06:45', NULL); -- -------------------------------------------------------- -- -- Table structure for table `service_category` -- CREATE TABLE `service_category` ( `service_category_id` int(11) NOT NULL, `service_target_id` int(11) DEFAULT NULL, `service_category_name` varchar(255) DEFAULT NULL, `service_category_icon` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `service_category` -- INSERT INTO `service_category` (`service_category_id`, `service_target_id`, `service_category_name`, `service_category_icon`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 'responsible-waste-management', '', '2019-11-16 18:52:03', '2019-11-24 07:52:36', NULL), (2, 1, 'extended-producer-responsibility', '', '2019-11-16 18:52:03', '2019-11-24 07:52:36', NULL), (3, 1, 'solid-waste-management-research', '', '2019-11-16 18:52:03', '2019-11-24 07:52:36', NULL), (4, 1, 'community-development', '', '2019-11-16 18:52:03', '2019-11-24 07:52:36', NULL), (5, 1, 'training', '', '2019-11-16 18:52:03', '2019-11-24 07:52:36', NULL), (6, 2, 'general', '', '2019-11-16 18:52:03', '2019-11-24 07:52:36', NULL); -- -------------------------------------------------------- -- -- Table structure for table `service_recomendation` -- CREATE TABLE `service_recomendation` ( `service_recomendation_id` int(11) NOT NULL, `service_id` int(11) DEFAULT NULL, `recomendation_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `service_recomendation` -- INSERT INTO `service_recomendation` (`service_recomendation_id`, `service_id`, `recomendation_id`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 12, '2019-11-24 03:27:46', '2019-11-24 03:27:46', NULL), (2, 1, 16, '2019-11-24 03:27:46', '2019-11-24 03:27:46', NULL), (3, 1, 10, '2019-11-24 03:27:46', '2019-11-24 03:27:46', NULL), (4, 1, 15, '2019-11-24 03:27:46', '2019-11-24 03:27:46', NULL), (5, 2, 12, '2019-11-24 03:27:46', '2019-11-24 03:27:46', NULL), (6, 2, 16, '2019-11-24 03:27:46', '2019-11-24 03:27:46', NULL), (7, 2, 10, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (8, 2, 15, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (9, 3, 12, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (10, 3, 16, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (11, 3, 10, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (12, 3, 15, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (13, 4, 1, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (14, 4, 7, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (15, 4, 10, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (16, 4, 12, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (17, 5, 6, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (18, 5, 1, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (19, 5, 13, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (20, 6, 18, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (21, 6, 19, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (22, 6, 20, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (23, 6, 9, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (24, 6, 5, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (25, 6, 15, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (26, 6, 12, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (27, 7, 18, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (28, 7, 19, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (29, 7, 20, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (30, 7, 9, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (31, 7, 5, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (32, 7, 15, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (33, 7, 12, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (34, 8, 9, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (35, 8, 5, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (36, 9, 4, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (37, 9, 8, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (38, 9, 3, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (39, 9, 17, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (40, 10, 2, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (41, 10, 14, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (42, 11, 2, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (43, 11, 14, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (44, 12, 11, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (45, 13, 11, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (46, 14, 11, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (47, 15, 11, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL), (48, 16, 11, '2019-11-24 03:27:47', '2019-11-24 03:27:47', NULL); -- -------------------------------------------------------- -- -- Table structure for table `service_section` -- CREATE TABLE `service_section` ( `service_section_id` int(11) NOT NULL, `section_id` int(11) DEFAULT NULL, `service_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `service_section` -- INSERT INTO `service_section` (`service_section_id`, `section_id`, `service_id`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 1, 1, '2019-11-24 03:19:46', '2019-11-24 03:19:59', NULL), (2, 2, 1, '2019-11-24 03:19:46', '2019-12-01 13:58:34', NULL), (3, 3, 1, '2019-11-24 03:19:46', '2019-12-01 14:01:16', NULL), (4, 4, 1, '2019-11-24 03:19:46', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (5, 5, 1, '2019-11-24 03:19:46', '2019-11-26 01:22:19', NULL), (6, 6, 1, '2019-11-24 03:19:46', '2019-11-26 01:22:13', '2019-11-19 09:10:01'), (7, 7, 1, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (8, 8, 1, '2019-11-24 03:19:46', '2019-11-26 01:48:18', NULL), (9, 9, 1, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (10, 10, 1, '2019-11-24 03:19:46', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (11, 11, 1, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (12, 12, 1, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (13, 13, 1, '2019-11-24 03:19:46', '2019-11-26 03:35:12', '2019-11-19 09:10:01'), (14, 14, 1, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (15, 1, 2, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (16, 2, 2, '2019-11-24 03:19:46', '2019-11-24 03:19:59', NULL), (17, 3, 2, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (18, 4, 2, '2019-11-24 03:19:46', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (19, 5, 2, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (20, 6, 2, '2019-11-24 03:19:46', '2019-11-28 01:14:20', '2019-11-19 09:10:01'), (21, 7, 2, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (22, 8, 2, '2019-11-24 03:19:46', '2019-11-26 01:23:00', '2019-11-19 09:10:01'), (23, 9, 2, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (24, 10, 2, '2019-11-24 03:19:46', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (25, 11, 2, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (26, 12, 2, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (27, 13, 2, '2019-11-24 03:19:46', '2019-11-26 03:35:12', '2019-11-19 09:10:01'), (28, 14, 2, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (29, 1, 3, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (30, 2, 3, '2019-11-24 03:19:46', '2019-11-28 01:13:25', '2019-11-19 09:10:01'), (31, 3, 3, '2019-11-24 03:19:46', '2019-11-24 03:19:59', NULL), (32, 4, 3, '2019-11-24 03:19:46', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (33, 5, 3, '2019-11-24 03:19:46', '2019-11-28 01:14:16', NULL), (34, 6, 3, '2019-11-24 03:19:46', '2019-11-28 01:14:18', '2019-11-19 09:10:01'), (35, 7, 3, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (36, 8, 3, '2019-11-24 03:19:46', '2019-11-26 01:23:02', '2019-11-19 09:10:01'), (37, 9, 3, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (38, 10, 3, '2019-11-24 03:19:46', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (39, 11, 3, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (40, 12, 3, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (41, 13, 3, '2019-11-24 03:19:46', '2019-11-26 03:35:12', '2019-11-19 09:10:01'), (42, 14, 3, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (43, 1, 4, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (44, 2, 4, '2019-11-24 03:19:46', '2019-11-28 01:52:09', '2019-11-19 09:10:01'), (45, 3, 4, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (46, 4, 4, '2019-11-24 03:19:46', '2019-11-24 03:19:46', '2019-11-19 09:10:01'), (47, 5, 4, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (48, 6, 4, '2019-11-24 03:19:46', '2019-11-28 01:40:05', '2019-11-19 09:10:01'), (49, 7, 4, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (50, 8, 4, '2019-11-24 03:19:46', '2019-11-28 01:40:13', NULL), (51, 9, 4, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (52, 10, 4, '2019-11-24 03:19:46', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (53, 11, 4, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (54, 12, 4, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (55, 13, 4, '2019-11-24 03:19:46', '2019-11-26 03:35:12', '2019-11-19 09:10:01'), (56, 14, 4, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (57, 1, 5, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (58, 2, 5, '2019-11-24 03:19:46', '2019-11-28 01:52:07', '2019-11-19 09:10:01'), (59, 3, 5, '2019-11-24 03:19:46', '2019-11-26 01:15:30', NULL), (60, 4, 5, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (61, 5, 5, '2019-11-24 03:19:47', '2019-12-01 15:33:42', NULL), (62, 6, 5, '2019-11-24 03:19:47', '2019-12-01 15:34:06', '2019-11-19 09:10:01'), (63, 7, 5, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (64, 8, 5, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (65, 9, 5, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (66, 10, 5, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (67, 11, 5, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (68, 12, 5, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (69, 13, 5, '2019-11-24 03:19:47', '2019-11-26 03:35:12', '2019-11-19 09:10:01'), (70, 14, 5, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (71, 1, 6, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (72, 2, 6, '2019-11-24 03:19:47', '2019-12-01 19:18:16', '2019-11-19 09:10:01'), (73, 3, 6, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (74, 4, 6, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (75, 5, 6, '2019-11-24 03:19:47', '2019-12-01 16:23:14', '2019-11-19 09:10:01'), (76, 6, 6, '2019-11-24 03:19:47', '2019-12-01 16:23:21', NULL), (77, 7, 6, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (78, 8, 6, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (79, 9, 6, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (80, 10, 6, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (81, 11, 6, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (82, 12, 6, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (83, 13, 6, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (84, 14, 6, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (85, 1, 7, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (86, 2, 7, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (87, 3, 7, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (88, 4, 7, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (89, 5, 7, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (90, 6, 7, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (91, 7, 7, '2019-11-24 03:19:47', '2019-11-24 03:19:59', NULL), (92, 8, 7, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (93, 9, 7, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (94, 10, 7, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (95, 11, 7, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (96, 12, 7, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (97, 13, 7, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (98, 14, 7, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (99, 1, 8, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (100, 2, 8, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (101, 3, 8, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (102, 4, 8, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (103, 5, 8, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (104, 6, 8, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (105, 7, 8, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (106, 8, 8, '2019-11-24 03:19:47', '2019-11-24 03:19:47', '2019-11-19 09:10:01'), (107, 9, 8, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (108, 10, 8, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (109, 11, 8, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (110, 12, 8, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (111, 13, 8, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (112, 14, 8, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (113, 1, 9, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (114, 2, 9, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (115, 3, 9, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (116, 4, 9, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (117, 5, 9, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (118, 6, 9, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (119, 7, 9, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (120, 8, 9, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (121, 9, 9, '2019-11-24 03:19:47', '2019-11-24 03:19:47', '2019-11-19 09:10:01'), (122, 10, 9, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (123, 11, 9, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (124, 12, 9, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (125, 13, 9, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (126, 14, 9, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (127, 1, 10, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (128, 2, 10, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (129, 3, 10, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (130, 4, 10, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (131, 5, 10, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (132, 6, 10, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (133, 7, 10, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (134, 8, 10, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (135, 9, 10, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (136, 10, 10, '2019-11-24 03:19:47', '2019-11-24 03:19:47', '2019-11-19 09:10:01'), (137, 11, 10, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (138, 12, 10, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (139, 13, 10, '2019-11-24 03:19:47', '2019-11-26 01:15:30', '2019-11-19 09:10:01'), (140, 14, 10, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (141, 1, 11, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (142, 2, 11, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (143, 3, 11, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (144, 4, 11, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (145, 5, 11, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (146, 6, 11, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (147, 7, 11, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (148, 8, 11, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (149, 9, 11, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (150, 10, 11, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (151, 11, 11, '2019-11-24 03:19:47', '2019-11-24 03:19:58', NULL), (152, 12, 11, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (153, 13, 11, '2019-11-24 03:19:47', '2019-11-26 03:35:12', '2019-11-19 09:10:01'), (154, 14, 11, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (155, 1, 12, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (156, 2, 12, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (157, 3, 12, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (158, 4, 12, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (159, 5, 12, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (160, 6, 12, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (161, 7, 12, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (162, 8, 12, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (163, 9, 12, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (164, 10, 12, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (165, 11, 12, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (166, 12, 12, '2019-11-24 03:19:47', '2019-11-24 03:19:58', NULL), (167, 13, 12, '2019-11-24 03:19:47', '2019-11-26 03:35:12', '2019-11-19 09:10:01'), (168, 14, 12, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (169, 1, 13, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (170, 2, 13, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (171, 3, 13, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (172, 4, 13, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (173, 5, 13, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (174, 6, 13, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (175, 7, 13, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (176, 8, 13, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (177, 9, 13, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (178, 10, 13, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (179, 11, 13, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (180, 12, 13, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (181, 13, 13, '2019-11-24 03:19:47', '2019-11-26 03:35:12', '2019-11-19 09:10:01'), (182, 14, 13, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (183, 1, 14, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (184, 2, 14, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (185, 3, 14, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (186, 4, 14, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (187, 5, 14, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (188, 6, 14, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (189, 7, 14, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (190, 8, 14, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (191, 9, 14, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (192, 10, 14, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (193, 11, 14, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (194, 12, 14, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (195, 13, 14, '2019-11-24 03:19:47', '2019-11-26 03:35:12', '2019-11-19 09:10:01'), (196, 14, 14, '2019-11-24 03:19:47', '2019-11-24 03:19:59', NULL), (197, 1, 15, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (198, 2, 15, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (199, 3, 15, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (200, 4, 15, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (201, 5, 15, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (202, 6, 15, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (203, 7, 15, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (204, 8, 15, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (205, 9, 15, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (206, 10, 15, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (207, 11, 15, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (208, 12, 15, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (209, 13, 15, '2019-11-24 03:19:47', '2019-11-26 03:35:12', '2019-11-19 09:10:01'), (210, 14, 15, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (211, 1, 16, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (212, 2, 16, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (213, 3, 16, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (214, 4, 16, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (215, 5, 16, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (216, 6, 16, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (217, 7, 16, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (218, 8, 16, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (219, 9, 16, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (220, 10, 16, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (221, 11, 16, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (222, 12, 16, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (223, 13, 16, '2019-11-24 03:19:47', '2019-11-26 03:35:12', '2019-11-19 09:10:01'), (224, 14, 16, '2019-11-24 03:19:47', '2019-11-26 01:15:30', NULL), (225, 15, 17, '2019-12-01 20:48:04', '2019-12-01 20:48:04', NULL), (226, 16, 17, '2019-12-01 20:48:26', '2019-12-01 20:48:26', NULL), (227, 18, 17, '2019-12-01 20:48:39', '2019-12-01 20:49:33', NULL), (228, 6, 17, '2019-12-01 20:50:12', '2019-12-01 20:50:12', NULL), (229, 17, 17, '2019-12-01 20:50:24', '2019-12-01 20:50:24', NULL), (230, 14, 17, '2019-12-01 20:50:36', '2019-12-01 20:50:36', NULL); -- -------------------------------------------------------- -- -- Table structure for table `service_target` -- CREATE TABLE `service_target` ( `service_target_id` int(11) NOT NULL, `service_target_name` varchar(255) DEFAULT NULL, `service_target_icon` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data for table `service_target` -- INSERT INTO `service_target` (`service_target_id`, `service_target_name`, `service_target_icon`, `created_at`, `updated_at`, `deleted_at`) VALUES (1, 'company', 'icon-real-estate-066', '2019-11-16 20:18:11', '2019-11-16 20:18:34', NULL), (2, 'individual', 'icon-real-estate-003', '2019-11-16 20:18:16', '2019-11-16 20:18:39', NULL); -- -------------------------------------------------------- -- -- Table structure for table `testimoni` -- CREATE TABLE `testimoni` ( `testimony_id` int(11) NOT NULL, `service_id` int(11) DEFAULT NULL, `testimony_name` varchar(255) DEFAULT NULL, `testimony_role` varchar(255) DEFAULT NULL, `testimony_company` varchar(255) DEFAULT NULL, `testimony_content` varchar(255) DEFAULT NULL, `testimony_photo` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Indexes for dumped tables -- -- -- Indexes for table `achievement` -- ALTER TABLE `achievement` ADD PRIMARY KEY (`achievement_id`) USING BTREE; -- -- Indexes for table `benefit` -- ALTER TABLE `benefit` ADD PRIMARY KEY (`benefit_id`) USING BTREE; -- -- Indexes for table `client` -- ALTER TABLE `client` ADD PRIMARY KEY (`client_id`) USING BTREE; -- -- Indexes for table `dictionary` -- ALTER TABLE `dictionary` ADD PRIMARY KEY (`dictionary_id`) USING BTREE; -- -- Indexes for table `dictionary_type` -- ALTER TABLE `dictionary_type` ADD PRIMARY KEY (`dictionary_type_id`) USING BTREE; -- -- Indexes for table `expertise` -- ALTER TABLE `expertise` ADD PRIMARY KEY (`expertise_id`) USING BTREE; -- -- Indexes for table `facility` -- ALTER TABLE `facility` ADD PRIMARY KEY (`facility_id`) USING BTREE; -- -- Indexes for table `flow` -- ALTER TABLE `flow` ADD PRIMARY KEY (`flow_id`) USING BTREE; -- -- Indexes for table `language` -- ALTER TABLE `language` ADD PRIMARY KEY (`language_id`) USING BTREE; -- -- Indexes for table `page` -- ALTER TABLE `page` ADD PRIMARY KEY (`page_id`) USING BTREE; -- -- Indexes for table `photofolio` -- ALTER TABLE `photofolio` ADD PRIMARY KEY (`photofolio_id`) USING BTREE; -- -- Indexes for table `project` -- ALTER TABLE `project` ADD PRIMARY KEY (`project_id`); -- -- Indexes for table `recomendation` -- ALTER TABLE `recomendation` ADD PRIMARY KEY (`recomendation_id`) USING BTREE; -- -- Indexes for table `section` -- ALTER TABLE `section` ADD PRIMARY KEY (`section_id`) USING BTREE; -- -- Indexes for table `service` -- ALTER TABLE `service` ADD PRIMARY KEY (`service_id`) USING BTREE, ADD KEY `fk_service_service_category_1` (`service_category_id`) USING BTREE; -- -- Indexes for table `service_category` -- ALTER TABLE `service_category` ADD PRIMARY KEY (`service_category_id`) USING BTREE, ADD KEY `fk_service_category_service_for_1` (`service_target_id`) USING BTREE; -- -- Indexes for table `service_recomendation` -- ALTER TABLE `service_recomendation` ADD PRIMARY KEY (`service_recomendation_id`) USING BTREE, ADD KEY `fk_service_recomendation_service_1` (`service_id`) USING BTREE; -- -- Indexes for table `service_section` -- ALTER TABLE `service_section` ADD PRIMARY KEY (`service_section_id`) USING BTREE; -- -- Indexes for table `service_target` -- ALTER TABLE `service_target` ADD PRIMARY KEY (`service_target_id`) USING BTREE; -- -- Indexes for table `testimoni` -- ALTER TABLE `testimoni` ADD PRIMARY KEY (`testimony_id`) USING BTREE; -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `achievement` -- ALTER TABLE `achievement` MODIFY `achievement_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `benefit` -- ALTER TABLE `benefit` MODIFY `benefit_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=49; -- -- AUTO_INCREMENT for table `client` -- ALTER TABLE `client` MODIFY `client_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=47; -- -- AUTO_INCREMENT for table `dictionary` -- ALTER TABLE `dictionary` MODIFY `dictionary_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=315; -- -- AUTO_INCREMENT for table `dictionary_type` -- ALTER TABLE `dictionary_type` MODIFY `dictionary_type_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `expertise` -- ALTER TABLE `expertise` MODIFY `expertise_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `facility` -- ALTER TABLE `facility` MODIFY `facility_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT for table `flow` -- ALTER TABLE `flow` MODIFY `flow_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26; -- -- AUTO_INCREMENT for table `language` -- ALTER TABLE `language` MODIFY `language_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `page` -- ALTER TABLE `page` MODIFY `page_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `photofolio` -- ALTER TABLE `photofolio` MODIFY `photofolio_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `project` -- ALTER TABLE `project` MODIFY `project_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `recomendation` -- ALTER TABLE `recomendation` MODIFY `recomendation_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `section` -- ALTER TABLE `section` MODIFY `section_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `service` -- ALTER TABLE `service` MODIFY `service_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT for table `service_category` -- ALTER TABLE `service_category` MODIFY `service_category_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `service_recomendation` -- ALTER TABLE `service_recomendation` MODIFY `service_recomendation_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=49; -- -- AUTO_INCREMENT for table `service_section` -- ALTER TABLE `service_section` MODIFY `service_section_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=231; -- -- AUTO_INCREMENT for table `service_target` -- ALTER TABLE `service_target` MODIFY `service_target_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `testimoni` -- ALTER TABLE `testimoni` MODIFY `testimony_id` int(11) NOT NULL AUTO_INCREMENT; -- -- Constraints for dumped tables -- -- -- Constraints for table `service` -- ALTER TABLE `service` ADD CONSTRAINT `fk_service_service_category_1` FOREIGN KEY (`service_category_id`) REFERENCES `service_category` (`service_category_id`); -- -- Constraints for table `service_category` -- ALTER TABLE `service_category` ADD CONSTRAINT `fk_service_category_service_for_1` FOREIGN KEY (`service_target_id`) REFERENCES `service_target` (`service_target_id`); -- -- Constraints for table `service_recomendation` -- ALTER TABLE `service_recomendation` ADD CONSTRAINT `fk_service_recomendation_service_1` FOREIGN KEY (`service_id`) REFERENCES `service` (`service_id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<reponame>Musab-Nazir/HomesForGnomes -- File: favourites.sql -- Author: Group 24 -- <NAME> -- <NAME> -- <NAME> -- <NAME> -- Date: 2018/12/07 -- Description: SQL file to create favourites property/value table DROP TABLE IF EXISTS favourites; CREATE TABLE favourites( user_id VARCHAR(20) NOT NULL REFERENCES users(user_id), listing_id VARCHAR(10) NOT NULL ); ALTER TABLE favourites OWNER TO group24_admin;
prompt --application/shared_components/user_interface/template_options begin -- Manifest -- THEME OPTIONS: 105814 -- Manifest End wwv_flow_api.component_begin ( p_version_yyyy_mm_dd=>'2021.04.15' ,p_release=>'21.1.2' ,p_default_workspace_id=>32532315908301997117 ,p_default_application_id=>105814 ,p_default_id_offset=>0 ,p_default_owner=>'WKSP_PERSONALWEBSITE' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835938661948656391) ,p_theme_id=>42 ,p_name=>'STICKY_HEADER_ON_MOBILE' ,p_display_name=>'Sticky Header on Mobile' ,p_display_sequence=>100 ,p_page_template_id=>wwv_flow_api.id(32835935905378656388) ,p_css_classes=>'js-pageStickyMobileHeader' ,p_template_types=>'PAGE' ,p_help_text=>'This will position the contents of the Breadcrumb Bar region position so it sticks to the top of the screen for small screens.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835941763329656393) ,p_theme_id=>42 ,p_name=>'STICKY_HEADER_ON_MOBILE' ,p_display_name=>'Sticky Header on Mobile' ,p_display_sequence=>100 ,p_page_template_id=>wwv_flow_api.id(32835938774082656391) ,p_css_classes=>'js-pageStickyMobileHeader' ,p_template_types=>'PAGE' ,p_help_text=>'This will position the contents of the Breadcrumb Bar region position so it sticks to the top of the screen for small screens.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835943289761656393) ,p_theme_id=>42 ,p_name=>'PAGE_BACKGROUND_1' ,p_display_name=>'Background 1' ,p_display_sequence=>10 ,p_page_template_id=>wwv_flow_api.id(32835941830898656393) ,p_css_classes=>'t-LoginPage--bg1' ,p_group_id=>wwv_flow_api.id(32835943072337656393) ,p_template_types=>'PAGE' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835943482193656393) ,p_theme_id=>42 ,p_name=>'PAGE_BACKGROUND_2' ,p_display_name=>'Background 2' ,p_display_sequence=>20 ,p_page_template_id=>wwv_flow_api.id(32835941830898656393) ,p_css_classes=>'t-LoginPage--bg2' ,p_group_id=>wwv_flow_api.id(32835943072337656393) ,p_template_types=>'PAGE' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835943644229656393) ,p_theme_id=>42 ,p_name=>'PAGE_BACKGROUND_3' ,p_display_name=>'Background 3' ,p_display_sequence=>30 ,p_page_template_id=>wwv_flow_api.id(32835941830898656393) ,p_css_classes=>'t-LoginPage--bg3' ,p_group_id=>wwv_flow_api.id(32835943072337656393) ,p_template_types=>'PAGE' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835944074737656394) ,p_theme_id=>42 ,p_name=>'PAGE_LAYOUT_SPLIT' ,p_display_name=>'Split' ,p_display_sequence=>1 ,p_page_template_id=>wwv_flow_api.id(32835941830898656393) ,p_css_classes=>'t-LoginPage--split' ,p_group_id=>wwv_flow_api.id(32835943869745656394) ,p_template_types=>'PAGE' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835947186564656395) ,p_theme_id=>42 ,p_name=>'STICKY_HEADER_ON_MOBILE' ,p_display_name=>'Sticky Header on Mobile' ,p_display_sequence=>100 ,p_page_template_id=>wwv_flow_api.id(32835944141126656394) ,p_css_classes=>'js-pageStickyMobileHeader' ,p_template_types=>'PAGE' ,p_help_text=>'This will position the contents of the Breadcrumb Bar region position so it sticks to the top of the screen for small screens.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835949618925656396) ,p_theme_id=>42 ,p_name=>'STICKY_HEADER_ON_MOBILE' ,p_display_name=>'Sticky Header on Mobile' ,p_display_sequence=>100 ,p_page_template_id=>wwv_flow_api.id(32835947270951656395) ,p_css_classes=>'js-pageStickyMobileHeader' ,p_template_types=>'PAGE' ,p_help_text=>'This will position the contents of the Breadcrumb Bar region position so it sticks to the top of the screen for small screens.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835950963398656397) ,p_theme_id=>42 ,p_name=>'REMOVE_BODY_PADDING' ,p_display_name=>'Remove Body Padding' ,p_display_sequence=>20 ,p_page_template_id=>wwv_flow_api.id(32835949751339656396) ,p_css_classes=>'t-Dialog--noPadding' ,p_template_types=>'PAGE' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835951188583656397) ,p_theme_id=>42 ,p_name=>'STRETCH_TO_FIT_WINDOW' ,p_display_name=>'Stretch to Fit Window' ,p_display_sequence=>1 ,p_page_template_id=>wwv_flow_api.id(32835949751339656396) ,p_css_classes=>'ui-dialog--stretch' ,p_template_types=>'PAGE' ,p_help_text=>'Stretch the dialog to fit the browser window.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835953921523656398) ,p_theme_id=>42 ,p_name=>'STICKY_HEADER_ON_MOBILE' ,p_display_name=>'Sticky Header on Mobile' ,p_display_sequence=>100 ,p_page_template_id=>wwv_flow_api.id(32835951254037656397) ,p_css_classes=>'js-pageStickyMobileHeader' ,p_template_types=>'PAGE' ,p_help_text=>'This will position the contents of the Breadcrumb Bar region position so it sticks to the top of the screen for small screens.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835956428204656399) ,p_theme_id=>42 ,p_name=>'STICKY_HEADER_ON_MOBILE' ,p_display_name=>'Sticky Header on Mobile' ,p_display_sequence=>100 ,p_page_template_id=>wwv_flow_api.id(32835954074822656398) ,p_css_classes=>'js-pageStickyMobileHeader' ,p_template_types=>'PAGE' ,p_help_text=>'This will position the contents of the Breadcrumb Bar region position so it sticks to the top of the screen for small screens.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835957788124656400) ,p_theme_id=>42 ,p_name=>'REMOVE_BODY_PADDING' ,p_display_name=>'Remove Body Padding' ,p_display_sequence=>20 ,p_page_template_id=>wwv_flow_api.id(32835956576353656399) ,p_css_classes=>'t-Dialog--noPadding' ,p_template_types=>'PAGE' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835957955090656400) ,p_theme_id=>42 ,p_name=>'STRETCH_TO_FIT_WINDOW' ,p_display_name=>'Stretch to Fit Window' ,p_display_sequence=>10 ,p_page_template_id=>wwv_flow_api.id(32835956576353656399) ,p_css_classes=>'ui-dialog--stretch' ,p_template_types=>'PAGE' ,p_help_text=>'Stretch the dialog to fit the browser window.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835958693586656401) ,p_theme_id=>42 ,p_name=>'COLOREDBACKGROUND' ,p_display_name=>'Highlight Background' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32835958047298656400) ,p_css_classes=>'t-Alert--colorBG' ,p_template_types=>'REGION' ,p_help_text=>'Set alert background color to that of the alert type (warning, success, etc.)' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835959042858656401) ,p_theme_id=>42 ,p_name=>'DANGER' ,p_display_name=>'Danger' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835958047298656400) ,p_css_classes=>'t-Alert--danger' ,p_group_id=>wwv_flow_api.id(32835958815200656401) ,p_template_types=>'REGION' ,p_help_text=>'Show an error or danger alert.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835959408695656401) ,p_theme_id=>42 ,p_name=>'HIDDENHEADER' ,p_display_name=>'Hidden but Accessible' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835958047298656400) ,p_css_classes=>'t-Alert--accessibleHeading' ,p_group_id=>wwv_flow_api.id(32835959225380656401) ,p_template_types=>'REGION' ,p_help_text=>'Visually hides the alert title, but assistive technologies can still read it.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835959668020656401) ,p_theme_id=>42 ,p_name=>'HIDDENHEADERNOAT' ,p_display_name=>'Hidden' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835958047298656400) ,p_css_classes=>'t-Alert--removeHeading js-removeLandmark' ,p_group_id=>wwv_flow_api.id(32835959225380656401) ,p_template_types=>'REGION' ,p_help_text=>'Hides the Alert Title from being displayed.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835960027560656401) ,p_theme_id=>42 ,p_name=>'HIDE_ICONS' ,p_display_name=>'Hide Icons' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835958047298656400) ,p_css_classes=>'t-Alert--noIcon' ,p_group_id=>wwv_flow_api.id(32835959805924656401) ,p_template_types=>'REGION' ,p_help_text=>'Hides alert icons' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835960482399656402) ,p_theme_id=>42 ,p_name=>'HORIZONTAL' ,p_display_name=>'Horizontal' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835958047298656400) ,p_css_classes=>'t-Alert--horizontal' ,p_group_id=>wwv_flow_api.id(32835960247400656401) ,p_template_types=>'REGION' ,p_help_text=>'Show horizontal alert with buttons to the right.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835960668219656402) ,p_theme_id=>42 ,p_name=>'INFORMATION' ,p_display_name=>'Information' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835958047298656400) ,p_css_classes=>'t-Alert--info' ,p_group_id=>wwv_flow_api.id(32835958815200656401) ,p_template_types=>'REGION' ,p_help_text=>'Show informational alert.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835960830235656402) ,p_theme_id=>42 ,p_name=>'SHOW_CUSTOM_ICONS' ,p_display_name=>'Show Custom Icons' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835958047298656400) ,p_css_classes=>'t-Alert--customIcons' ,p_group_id=>wwv_flow_api.id(32835959805924656401) ,p_template_types=>'REGION' ,p_help_text=>'Set custom icons by modifying the Alert Region''s Icon CSS Classes property.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835961034323656402) ,p_theme_id=>42 ,p_name=>'SUCCESS' ,p_display_name=>'Success' ,p_display_sequence=>40 ,p_region_template_id=>wwv_flow_api.id(32835958047298656400) ,p_css_classes=>'t-Alert--success' ,p_group_id=>wwv_flow_api.id(32835958815200656401) ,p_template_types=>'REGION' ,p_help_text=>'Show success alert.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835961265944656402) ,p_theme_id=>42 ,p_name=>'USEDEFAULTICONS' ,p_display_name=>'Show Default Icons' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835958047298656400) ,p_css_classes=>'t-Alert--defaultIcons' ,p_group_id=>wwv_flow_api.id(32835959805924656401) ,p_template_types=>'REGION' ,p_help_text=>'Uses default icons for alert types.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835961441863656402) ,p_theme_id=>42 ,p_name=>'WARNING' ,p_display_name=>'Warning' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835958047298656400) ,p_css_classes=>'t-Alert--warning' ,p_group_id=>wwv_flow_api.id(32835958815200656401) ,p_template_types=>'REGION' ,p_help_text=>'Show a warning alert.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835961639922656402) ,p_theme_id=>42 ,p_name=>'WIZARD' ,p_display_name=>'Wizard' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835958047298656400) ,p_css_classes=>'t-Alert--wizard' ,p_group_id=>wwv_flow_api.id(32835960247400656401) ,p_template_types=>'REGION' ,p_help_text=>'Show the alert in a wizard style region.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835963878688656403) ,p_theme_id=>42 ,p_name=>'BORDERLESS' ,p_display_name=>'Borderless' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32835962767827656402) ,p_css_classes=>'t-ButtonRegion--noBorder' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835964257240656403) ,p_theme_id=>42 ,p_name=>'NOPADDING' ,p_display_name=>'No Padding' ,p_display_sequence=>3 ,p_region_template_id=>wwv_flow_api.id(32835962767827656402) ,p_css_classes=>'t-ButtonRegion--noPadding' ,p_group_id=>wwv_flow_api.id(32835964063059656403) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835964498584656403) ,p_theme_id=>42 ,p_name=>'REMOVEUIDECORATION' ,p_display_name=>'Remove UI Decoration' ,p_display_sequence=>4 ,p_region_template_id=>wwv_flow_api.id(32835962767827656402) ,p_css_classes=>'t-ButtonRegion--noUI' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835964673601656403) ,p_theme_id=>42 ,p_name=>'SLIMPADDING' ,p_display_name=>'Slim Padding' ,p_display_sequence=>5 ,p_region_template_id=>wwv_flow_api.id(32835962767827656402) ,p_css_classes=>'t-ButtonRegion--slimPadding' ,p_group_id=>wwv_flow_api.id(32835964063059656403) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835964815794656403) ,p_theme_id=>42 ,p_name=>'STICK_TO_BOTTOM' ,p_display_name=>'Stick to Bottom for Mobile' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835962767827656402) ,p_css_classes=>'t-ButtonRegion--stickToBottom' ,p_template_types=>'REGION' ,p_help_text=>'This will position the button container region to the bottom of the screen for small screens.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835965228627656404) ,p_theme_id=>42 ,p_name=>'APPLY_THEME_COLORS' ,p_display_name=>'Apply Theme Colors' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32835964998864656403) ,p_css_classes=>'u-colors' ,p_template_types=>'REGION' ,p_help_text=>'Applies the colors from the theme''s color palette to the icons or initials within cards.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835965422607656404) ,p_theme_id=>42 ,p_name=>'STYLE_A' ,p_display_name=>'Style A' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835964998864656403) ,p_css_classes=>'t-CardsRegion--styleA' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835965675424656404) ,p_theme_id=>42 ,p_name=>'STYLE_B' ,p_display_name=>'Style B' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835964998864656403) ,p_css_classes=>'t-CardsRegion--styleB' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835965887493656404) ,p_theme_id=>42 ,p_name=>'STYLE_C' ,p_display_name=>'Style C' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835964998864656403) ,p_css_classes=>'t-CardsRegion--styleC' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835967091177656404) ,p_theme_id=>42 ,p_name=>'10_SECONDS' ,p_display_name=>'10 Seconds' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'js-cycle10s' ,p_group_id=>wwv_flow_api.id(32835966844128656404) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835967281278656404) ,p_theme_id=>42 ,p_name=>'15_SECONDS' ,p_display_name=>'15 Seconds' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'js-cycle15s' ,p_group_id=>wwv_flow_api.id(32835966844128656404) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835967490099656404) ,p_theme_id=>42 ,p_name=>'20_SECONDS' ,p_display_name=>'20 Seconds' ,p_display_sequence=>40 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'js-cycle20s' ,p_group_id=>wwv_flow_api.id(32835966844128656404) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835967867812656405) ,p_theme_id=>42 ,p_name=>'240PX' ,p_display_name=>'240px' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'i-h240' ,p_group_id=>wwv_flow_api.id(32835967619675656405) ,p_template_types=>'REGION' ,p_help_text=>'Sets region body height to 240px.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835968018821656405) ,p_theme_id=>42 ,p_name=>'320PX' ,p_display_name=>'320px' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'i-h320' ,p_group_id=>wwv_flow_api.id(32835967619675656405) ,p_template_types=>'REGION' ,p_help_text=>'Sets region body height to 320px.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835968226605656405) ,p_theme_id=>42 ,p_name=>'480PX' ,p_display_name=>'480px' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'i-h480' ,p_group_id=>wwv_flow_api.id(32835967619675656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835968483465656405) ,p_theme_id=>42 ,p_name=>'5_SECONDS' ,p_display_name=>'5 Seconds' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'js-cycle5s' ,p_group_id=>wwv_flow_api.id(32835966844128656404) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835968662615656405) ,p_theme_id=>42 ,p_name=>'640PX' ,p_display_name=>'640px' ,p_display_sequence=>40 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'i-h640' ,p_group_id=>wwv_flow_api.id(32835967619675656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835969061213656405) ,p_theme_id=>42 ,p_name=>'ACCENT_1' ,p_display_name=>'Accent 1' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--accent1' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835969279445656405) ,p_theme_id=>42 ,p_name=>'ACCENT_2' ,p_display_name=>'Accent 2' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--accent2' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835969452733656405) ,p_theme_id=>42 ,p_name=>'ACCENT_3' ,p_display_name=>'Accent 3' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--accent3' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835969689630656405) ,p_theme_id=>42 ,p_name=>'ACCENT_4' ,p_display_name=>'Accent 4' ,p_display_sequence=>40 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--accent4' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835969849288656405) ,p_theme_id=>42 ,p_name=>'ACCENT_5' ,p_display_name=>'Accent 5' ,p_display_sequence=>50 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--accent5' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835970227571656405) ,p_theme_id=>42 ,p_name=>'HIDDENHEADERNOAT' ,p_display_name=>'Hidden' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--removeHeader' ,p_group_id=>wwv_flow_api.id(32835970024598656405) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835970646485656406) ,p_theme_id=>42 ,p_name=>'HIDEOVERFLOW' ,p_display_name=>'Hide' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--hiddenOverflow' ,p_group_id=>wwv_flow_api.id(32835970446634656406) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835970838507656406) ,p_theme_id=>42 ,p_name=>'HIDEREGIONHEADER' ,p_display_name=>'Hidden but accessible' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--hideHeader' ,p_group_id=>wwv_flow_api.id(32835970024598656405) ,p_template_types=>'REGION' ,p_help_text=>'This option will hide the region header. Note that the region title will still be audible for Screen Readers. Buttons placed in the region header will be hidden and inaccessible.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835971049231656406) ,p_theme_id=>42 ,p_name=>'NOBODYPADDING' ,p_display_name=>'Remove Body Padding' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--noPadding' ,p_template_types=>'REGION' ,p_help_text=>'Removes padding from region body.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835971293997656406) ,p_theme_id=>42 ,p_name=>'NOBORDER' ,p_display_name=>'Remove Borders' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--noBorder' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ,p_help_text=>'Removes borders from the region.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835971427174656406) ,p_theme_id=>42 ,p_name=>'REMEMBER_CAROUSEL_SLIDE' ,p_display_name=>'Remember Carousel Slide' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'js-useLocalStorage' ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835971609809656406) ,p_theme_id=>42 ,p_name=>'SCROLLBODY' ,p_display_name=>'Scroll' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--scrollBody' ,p_group_id=>wwv_flow_api.id(32835970446634656406) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835971845187656406) ,p_theme_id=>42 ,p_name=>'SHOW_MAXIMIZE_BUTTON' ,p_display_name=>'Show Maximize Button' ,p_display_sequence=>40 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'js-showMaximizeButton' ,p_template_types=>'REGION' ,p_help_text=>'Displays a button in the Region Header to maximize the region. Clicking this button will toggle the maximize state and stretch the region to fill the screen.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835972012089656406) ,p_theme_id=>42 ,p_name=>'SHOW_NEXT_AND_PREVIOUS_BUTTONS' ,p_display_name=>'Show Next and Previous Buttons' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--showCarouselControls' ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835972298018656406) ,p_theme_id=>42 ,p_name=>'SHOW_REGION_ICON' ,p_display_name=>'Show Region Icon' ,p_display_sequence=>50 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--showIcon' ,p_template_types=>'REGION' ,p_help_text=>'Displays the region icon in the region header beside the region title' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835972650052656406) ,p_theme_id=>42 ,p_name=>'SLIDE' ,p_display_name=>'Slide' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--carouselSlide' ,p_group_id=>wwv_flow_api.id(32835972479369656406) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835972808913656406) ,p_theme_id=>42 ,p_name=>'SPIN' ,p_display_name=>'Spin' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--carouselSpin' ,p_group_id=>wwv_flow_api.id(32835972479369656406) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835973003601656406) ,p_theme_id=>42 ,p_name=>'STACKED' ,p_display_name=>'Stack Region' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835965990390656404) ,p_css_classes=>'t-Region--stacked' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ,p_help_text=>'Removes side borders and shadows, and can be useful for accordions and regions that need to be grouped together vertically.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835974164064656407) ,p_theme_id=>42 ,p_name=>'240PX' ,p_display_name=>'240px' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'i-h240' ,p_group_id=>wwv_flow_api.id(32835967619675656405) ,p_template_types=>'REGION' ,p_help_text=>'Sets region body height to 240px.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835974862431656407) ,p_theme_id=>42 ,p_name=>'320PX' ,p_display_name=>'320px' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'i-h320' ,p_group_id=>wwv_flow_api.id(32835967619675656405) ,p_template_types=>'REGION' ,p_help_text=>'Sets region body height to 320px.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835975072522656407) ,p_theme_id=>42 ,p_name=>'480PX' ,p_display_name=>'480px' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'i-h480' ,p_group_id=>wwv_flow_api.id(32835967619675656405) ,p_template_types=>'REGION' ,p_help_text=>'Sets body height to 480px.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835975218490656407) ,p_theme_id=>42 ,p_name=>'640PX' ,p_display_name=>'640px' ,p_display_sequence=>40 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'i-h640' ,p_group_id=>wwv_flow_api.id(32835967619675656405) ,p_template_types=>'REGION' ,p_help_text=>'Sets body height to 640px.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835975427195656407) ,p_theme_id=>42 ,p_name=>'ACCENT_1' ,p_display_name=>'Accent 1' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent1' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835975662142656407) ,p_theme_id=>42 ,p_name=>'ACCENT_10' ,p_display_name=>'Accent 10' ,p_display_sequence=>100 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent10' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835975889150656407) ,p_theme_id=>42 ,p_name=>'ACCENT_11' ,p_display_name=>'Accent 11' ,p_display_sequence=>110 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent11' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835976098972656408) ,p_theme_id=>42 ,p_name=>'ACCENT_12' ,p_display_name=>'Accent 12' ,p_display_sequence=>120 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent12' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835976291512656408) ,p_theme_id=>42 ,p_name=>'ACCENT_13' ,p_display_name=>'Accent 13' ,p_display_sequence=>130 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent13' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835976483197656408) ,p_theme_id=>42 ,p_name=>'ACCENT_14' ,p_display_name=>'Accent 14' ,p_display_sequence=>140 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent14' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835976605319656408) ,p_theme_id=>42 ,p_name=>'ACCENT_15' ,p_display_name=>'Accent 15' ,p_display_sequence=>150 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent15' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835976828777656408) ,p_theme_id=>42 ,p_name=>'ACCENT_2' ,p_display_name=>'Accent 2' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent2' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835977044910656408) ,p_theme_id=>42 ,p_name=>'ACCENT_3' ,p_display_name=>'Accent 3' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent3' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835977262181656408) ,p_theme_id=>42 ,p_name=>'ACCENT_4' ,p_display_name=>'Accent 4' ,p_display_sequence=>40 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent4' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835977487276656408) ,p_theme_id=>42 ,p_name=>'ACCENT_5' ,p_display_name=>'Accent 5' ,p_display_sequence=>50 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent5' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835977608380656408) ,p_theme_id=>42 ,p_name=>'ACCENT_6' ,p_display_name=>'Accent 6' ,p_display_sequence=>60 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent6' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835977834755656408) ,p_theme_id=>42 ,p_name=>'ACCENT_7' ,p_display_name=>'Accent 7' ,p_display_sequence=>70 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent7' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835978007370656408) ,p_theme_id=>42 ,p_name=>'ACCENT_8' ,p_display_name=>'Accent 8' ,p_display_sequence=>80 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent8' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835978219128656408) ,p_theme_id=>42 ,p_name=>'ACCENT_9' ,p_display_name=>'Accent 9' ,p_display_sequence=>90 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--accent9' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835978685711656408) ,p_theme_id=>42 ,p_name=>'COLLAPSED' ,p_display_name=>'Collapsed' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'is-collapsed' ,p_group_id=>wwv_flow_api.id(32835978458924656408) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835979055694656409) ,p_theme_id=>42 ,p_name=>'CONRTOLS_POSITION_END' ,p_display_name=>'End' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--controlsPosEnd' ,p_group_id=>wwv_flow_api.id(32835978895965656409) ,p_template_types=>'REGION' ,p_help_text=>'Position the expand / collapse button to the end of the region header.' ); wwv_flow_api.component_end; end; / begin wwv_flow_api.component_begin ( p_version_yyyy_mm_dd=>'2021.04.15' ,p_release=>'21.1.2' ,p_default_workspace_id=>32532315908301997117 ,p_default_application_id=>105814 ,p_default_id_offset=>0 ,p_default_owner=>'WKSP_PERSONALWEBSITE' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835979229667656409) ,p_theme_id=>42 ,p_name=>'EXPANDED' ,p_display_name=>'Expanded' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'is-expanded' ,p_group_id=>wwv_flow_api.id(32835978458924656408) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835979413082656409) ,p_theme_id=>42 ,p_name=>'HIDEOVERFLOW' ,p_display_name=>'Hide' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--hiddenOverflow' ,p_group_id=>wwv_flow_api.id(32835970446634656406) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835979861809656409) ,p_theme_id=>42 ,p_name=>'ICONS_PLUS_OR_MINUS' ,p_display_name=>'Plus or Minus' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--hideShowIconsMath' ,p_group_id=>wwv_flow_api.id(32835979646571656409) ,p_template_types=>'REGION' ,p_help_text=>'Use the plus and minus icons for the expand and collapse button.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835980029057656409) ,p_theme_id=>42 ,p_name=>'NOBODYPADDING' ,p_display_name=>'Remove Body Padding' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--noPadding' ,p_template_types=>'REGION' ,p_help_text=>'Removes padding from region body.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835980295341656409) ,p_theme_id=>42 ,p_name=>'NOBORDER' ,p_display_name=>'Remove Borders' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--noBorder' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ,p_help_text=>'Removes borders from the region.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835980432020656409) ,p_theme_id=>42 ,p_name=>'REMEMBER_COLLAPSIBLE_STATE' ,p_display_name=>'Remember Collapsible State' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'js-useLocalStorage' ,p_template_types=>'REGION' ,p_help_text=>'This option saves the current state of the collapsible region for the duration of the session.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835980643707656409) ,p_theme_id=>42 ,p_name=>'REMOVE_UI_DECORATION' ,p_display_name=>'Remove UI Decoration' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--noUI' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ,p_help_text=>'Removes UI decoration (borders, backgrounds, shadows, etc) from the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835980801399656409) ,p_theme_id=>42 ,p_name=>'SCROLLBODY' ,p_display_name=>'Scroll - Default' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--scrollBody' ,p_group_id=>wwv_flow_api.id(32835970446634656406) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835981004532656409) ,p_theme_id=>42 ,p_name=>'STACKED' ,p_display_name=>'Stack Region' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835973186119656406) ,p_css_classes=>'t-Region--stacked' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ,p_help_text=>'Removes side borders and shadows, and can be useful for accordions and regions that need to be grouped together vertically.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835981499388656410) ,p_theme_id=>42 ,p_name=>'ADD_BODY_PADDING' ,p_display_name=>'Add Body Padding' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835981135118656409) ,p_css_classes=>'t-ContentBlock--padded' ,p_template_types=>'REGION' ,p_help_text=>'Adds padding to the region''s body container.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835981865234656410) ,p_theme_id=>42 ,p_name=>'CONTENT_TITLE_H1' ,p_display_name=>'Large' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835981135118656409) ,p_css_classes=>'t-ContentBlock--h1' ,p_group_id=>wwv_flow_api.id(32835981661204656410) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835982015651656410) ,p_theme_id=>42 ,p_name=>'CONTENT_TITLE_H2' ,p_display_name=>'Medium' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835981135118656409) ,p_css_classes=>'t-ContentBlock--h2' ,p_group_id=>wwv_flow_api.id(32835981661204656410) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835982299718656410) ,p_theme_id=>42 ,p_name=>'CONTENT_TITLE_H3' ,p_display_name=>'Small' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835981135118656409) ,p_css_classes=>'t-ContentBlock--h3' ,p_group_id=>wwv_flow_api.id(32835981661204656410) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835982663456656410) ,p_theme_id=>42 ,p_name=>'HEADING_FONT_ALTERNATIVE' ,p_display_name=>'Alternative' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32835981135118656409) ,p_css_classes=>'t-ContentBlock--headingFontAlt' ,p_group_id=>wwv_flow_api.id(32835982444365656410) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835983056569656410) ,p_theme_id=>42 ,p_name=>'LIGHT_BACKGROUND' ,p_display_name=>'Light Background' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835981135118656409) ,p_css_classes=>'t-ContentBlock--lightBG' ,p_group_id=>wwv_flow_api.id(32835982884779656410) ,p_template_types=>'REGION' ,p_help_text=>'Gives the region body a slightly lighter background.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835983257173656410) ,p_theme_id=>42 ,p_name=>'SHADOW_BACKGROUND' ,p_display_name=>'Shadow Background' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835981135118656409) ,p_css_classes=>'t-ContentBlock--shadowBG' ,p_group_id=>wwv_flow_api.id(32835982884779656410) ,p_template_types=>'REGION' ,p_help_text=>'Gives the region body a slightly darker background.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835983431373656410) ,p_theme_id=>42 ,p_name=>'SHOW_REGION_ICON' ,p_display_name=>'Show Region Icon' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835981135118656409) ,p_css_classes=>'t-ContentBlock--showIcon' ,p_template_types=>'REGION' ,p_help_text=>'Displays the region icon in the region header beside the region title' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835984371768656411) ,p_theme_id=>42 ,p_name=>'DISPLAY_ICON_NO' ,p_display_name=>'No' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835983535445656410) ,p_css_classes=>'t-HeroRegion--hideIcon' ,p_group_id=>wwv_flow_api.id(32835984116283656411) ,p_template_types=>'REGION' ,p_help_text=>'Hide the Hero Region icon.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835984514833656411) ,p_theme_id=>42 ,p_name=>'FEATURED' ,p_display_name=>'Featured' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835983535445656410) ,p_css_classes=>'t-HeroRegion--featured' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835984748212656411) ,p_theme_id=>42 ,p_name=>'HEADING_FONT_ALTERNATIVE' ,p_display_name=>'Alternative' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32835983535445656410) ,p_css_classes=>'t-HeroRegion--headingFontAlt' ,p_group_id=>wwv_flow_api.id(32835982444365656410) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835985172319656411) ,p_theme_id=>42 ,p_name=>'ICONS_CIRCULAR' ,p_display_name=>'Circle' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835983535445656410) ,p_css_classes=>'t-HeroRegion--iconsCircle' ,p_group_id=>wwv_flow_api.id(32835984932500656411) ,p_template_types=>'REGION' ,p_help_text=>'The icons are displayed within a circle.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835985383625656411) ,p_theme_id=>42 ,p_name=>'ICONS_SQUARE' ,p_display_name=>'Square' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835983535445656410) ,p_css_classes=>'t-HeroRegion--iconsSquare' ,p_group_id=>wwv_flow_api.id(32835984932500656411) ,p_template_types=>'REGION' ,p_help_text=>'The icons are displayed within a square.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835985561183656411) ,p_theme_id=>42 ,p_name=>'REMOVE_BODY_PADDING' ,p_display_name=>'Remove Body Padding' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835983535445656410) ,p_css_classes=>'t-HeroRegion--noPadding' ,p_template_types=>'REGION' ,p_help_text=>'Removes the padding around the hero region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835985749165656411) ,p_theme_id=>42 ,p_name=>'STACKED_FEATURED' ,p_display_name=>'Stacked Featured' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835983535445656410) ,p_css_classes=>'t-HeroRegion--featured t-HeroRegion--centered' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835986473451656412) ,p_theme_id=>42 ,p_name=>'AUTO_HEIGHT_INLINE_DIALOG' ,p_display_name=>'Auto Height' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32835985829810656411) ,p_css_classes=>'js-dialog-autoheight' ,p_template_types=>'REGION' ,p_help_text=>'This option will set the height of the dialog to fit its contents.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835986608176656412) ,p_theme_id=>42 ,p_name=>'DRAGGABLE' ,p_display_name=>'Draggable' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835985829810656411) ,p_css_classes=>'js-draggable' ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835987056602656412) ,p_theme_id=>42 ,p_name=>'LARGE_720X480' ,p_display_name=>'Large (720x480)' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835985829810656411) ,p_css_classes=>'js-dialog-size720x480' ,p_group_id=>wwv_flow_api.id(32835986884059656412) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835987227732656412) ,p_theme_id=>42 ,p_name=>'MEDIUM_600X400' ,p_display_name=>'Medium (600x400)' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835985829810656411) ,p_css_classes=>'js-dialog-size600x400' ,p_group_id=>wwv_flow_api.id(32835986884059656412) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835987409700656412) ,p_theme_id=>42 ,p_name=>'MODAL' ,p_display_name=>'Modal' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835985829810656411) ,p_css_classes=>'js-modal' ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835987632908656412) ,p_theme_id=>42 ,p_name=>'REMOVE_BODY_PADDING' ,p_display_name=>'Remove Body Padding' ,p_display_sequence=>5 ,p_region_template_id=>wwv_flow_api.id(32835985829810656411) ,p_css_classes=>'t-DialogRegion--noPadding' ,p_template_types=>'REGION' ,p_help_text=>'Removes the padding around the region body.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835987821789656412) ,p_theme_id=>42 ,p_name=>'RESIZABLE' ,p_display_name=>'Resizable' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835985829810656411) ,p_css_classes=>'js-resizable' ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835988099292656412) ,p_theme_id=>42 ,p_name=>'SMALL_480X320' ,p_display_name=>'Small (480x320)' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835985829810656411) ,p_css_classes=>'js-dialog-size480x320' ,p_group_id=>wwv_flow_api.id(32835986884059656412) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835988911225656413) ,p_theme_id=>42 ,p_name=>'ABOVE' ,p_display_name=>'Above' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835988171330656412) ,p_css_classes=>'js-popup-pos-above' ,p_group_id=>wwv_flow_api.id(32835988789937656413) ,p_template_types=>'REGION' ,p_help_text=>'Positions the callout above or typically on top of the parent.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835989115820656413) ,p_theme_id=>42 ,p_name=>'AFTER' ,p_display_name=>'After' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835988171330656412) ,p_css_classes=>'js-popup-pos-after' ,p_group_id=>wwv_flow_api.id(32835988789937656413) ,p_template_types=>'REGION' ,p_help_text=>'Positions the callout after or typically to the right of the parent.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835989329408656413) ,p_theme_id=>42 ,p_name=>'AUTO_HEIGHT_INLINE_DIALOG' ,p_display_name=>'Auto Height' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32835988171330656412) ,p_css_classes=>'js-dialog-autoheight' ,p_template_types=>'REGION' ,p_help_text=>'This option will set the height of the dialog to fit its contents.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835989503625656413) ,p_theme_id=>42 ,p_name=>'BEFORE' ,p_display_name=>'Before' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835988171330656412) ,p_css_classes=>'js-popup-pos-before' ,p_group_id=>wwv_flow_api.id(32835988789937656413) ,p_template_types=>'REGION' ,p_help_text=>'Positions the callout before or typically to the left of the parent.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835989794844656413) ,p_theme_id=>42 ,p_name=>'BELOW' ,p_display_name=>'Below' ,p_display_sequence=>40 ,p_region_template_id=>wwv_flow_api.id(32835988171330656412) ,p_css_classes=>'js-popup-pos-below' ,p_group_id=>wwv_flow_api.id(32835988789937656413) ,p_template_types=>'REGION' ,p_help_text=>'Positions the callout below or typically to the bottom of the parent.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835989911572656413) ,p_theme_id=>42 ,p_name=>'DISPLAY_POPUP_CALLOUT' ,p_display_name=>'Display Popup Callout' ,p_display_sequence=>40 ,p_region_template_id=>wwv_flow_api.id(32835988171330656412) ,p_css_classes=>'js-popup-callout' ,p_template_types=>'REGION' ,p_help_text=>'Use this option to add display a callout for the popup. Note that callout will only be displayed if the data-parent-element custom attribute is defined.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835990129376656413) ,p_theme_id=>42 ,p_name=>'INSIDE' ,p_display_name=>'Inside' ,p_display_sequence=>50 ,p_region_template_id=>wwv_flow_api.id(32835988171330656412) ,p_css_classes=>'js-popup-pos-inside' ,p_group_id=>wwv_flow_api.id(32835988789937656413) ,p_template_types=>'REGION' ,p_help_text=>'Positions the callout inside of the parent. This is useful when the parent is sufficiently large, such as a report or large region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835990356700656414) ,p_theme_id=>42 ,p_name=>'LARGE_720X480' ,p_display_name=>'Large (720x480)' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835988171330656412) ,p_css_classes=>'js-dialog-size720x480' ,p_group_id=>wwv_flow_api.id(32835986884059656412) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835990591376656414) ,p_theme_id=>42 ,p_name=>'MEDIUM_600X400' ,p_display_name=>'Medium (600x400)' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835988171330656412) ,p_css_classes=>'js-dialog-size600x400' ,p_group_id=>wwv_flow_api.id(32835986884059656412) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835990751510656414) ,p_theme_id=>42 ,p_name=>'NONE' ,p_display_name=>'None' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32835988171330656412) ,p_css_classes=>'js-dialog-nosize' ,p_group_id=>wwv_flow_api.id(32835986884059656412) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835990977531656414) ,p_theme_id=>42 ,p_name=>'REMOVE_BODY_PADDING' ,p_display_name=>'Remove Body Padding' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835988171330656412) ,p_css_classes=>'t-DialogRegion--noPadding' ,p_template_types=>'REGION' ,p_help_text=>'Removes the padding around the region body.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835991155721656414) ,p_theme_id=>42 ,p_name=>'REMOVE_PAGE_OVERLAY' ,p_display_name=>'Remove Page Overlay' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835988171330656412) ,p_css_classes=>'js-popup-noOverlay' ,p_template_types=>'REGION' ,p_help_text=>'This option will display the inline dialog without an overlay on the background.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835991364151656414) ,p_theme_id=>42 ,p_name=>'SMALL_480X320' ,p_display_name=>'Small (480x320)' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835988171330656412) ,p_css_classes=>'js-dialog-size480x320' ,p_group_id=>wwv_flow_api.id(32835986884059656412) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835991721027656414) ,p_theme_id=>42 ,p_name=>'REMOVEBORDERS' ,p_display_name=>'Remove Borders' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835991444824656414) ,p_css_classes=>'t-IRR-region--noBorders' ,p_template_types=>'REGION' ,p_help_text=>'Removes borders around the Interactive Report' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835991939675656414) ,p_theme_id=>42 ,p_name=>'SHOW_MAXIMIZE_BUTTON' ,p_display_name=>'Show Maximize Button' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835991444824656414) ,p_css_classes=>'js-showMaximizeButton' ,p_template_types=>'REGION' ,p_help_text=>'Displays a button in the Interactive Reports toolbar to maximize the report. Clicking this button will toggle the maximize state and stretch the report to fill the screen.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835992802077656415) ,p_theme_id=>42 ,p_name=>'LOGIN_HEADER_ICON' ,p_display_name=>'Icon' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835992034242656414) ,p_css_classes=>'t-Login-region--headerIcon' ,p_group_id=>wwv_flow_api.id(32835992622537656415) ,p_template_types=>'REGION' ,p_help_text=>'Displays only the Region Icon in the Login region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835993040586656415) ,p_theme_id=>42 ,p_name=>'LOGIN_HEADER_TITLE' ,p_display_name=>'Title' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835992034242656414) ,p_css_classes=>'t-Login-region--headerTitle js-removeLandmark' ,p_group_id=>wwv_flow_api.id(32835992622537656415) ,p_template_types=>'REGION' ,p_help_text=>'Displays only the Region Title in the Login region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835993223431656415) ,p_theme_id=>42 ,p_name=>'LOGO_HEADER_HIDDEN' ,p_display_name=>'Hidden' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835992034242656414) ,p_css_classes=>'t-Login-region--headerHidden js-removeLandmark' ,p_group_id=>wwv_flow_api.id(32835992622537656415) ,p_template_types=>'REGION' ,p_help_text=>'Hides both the Region Icon and Title from the Login region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835994263138656415) ,p_theme_id=>42 ,p_name=>'240PX' ,p_display_name=>'240px' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'i-h240' ,p_group_id=>wwv_flow_api.id(32835967619675656405) ,p_template_types=>'REGION' ,p_help_text=>'Sets region body height to 240px.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835994446945656415) ,p_theme_id=>42 ,p_name=>'320PX' ,p_display_name=>'320px' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'i-h320' ,p_group_id=>wwv_flow_api.id(32835967619675656405) ,p_template_types=>'REGION' ,p_help_text=>'Sets region body height to 320px.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835994675050656415) ,p_theme_id=>42 ,p_name=>'480PX' ,p_display_name=>'480px' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'i-h480' ,p_group_id=>wwv_flow_api.id(32835967619675656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835994812508656416) ,p_theme_id=>42 ,p_name=>'640PX' ,p_display_name=>'640px' ,p_display_sequence=>40 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'i-h640' ,p_group_id=>wwv_flow_api.id(32835967619675656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835995093001656416) ,p_theme_id=>42 ,p_name=>'ACCENT_1' ,p_display_name=>'Accent 1' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent1' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835995209078656416) ,p_theme_id=>42 ,p_name=>'ACCENT_10' ,p_display_name=>'Accent 10' ,p_display_sequence=>100 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent10' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835995488274656416) ,p_theme_id=>42 ,p_name=>'ACCENT_11' ,p_display_name=>'Accent 11' ,p_display_sequence=>110 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent11' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835995635227656416) ,p_theme_id=>42 ,p_name=>'ACCENT_12' ,p_display_name=>'Accent 12' ,p_display_sequence=>120 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent12' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835995897519656416) ,p_theme_id=>42 ,p_name=>'ACCENT_13' ,p_display_name=>'Accent 13' ,p_display_sequence=>130 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent13' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835996028525656416) ,p_theme_id=>42 ,p_name=>'ACCENT_14' ,p_display_name=>'Accent 14' ,p_display_sequence=>140 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent14' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835996278858656416) ,p_theme_id=>42 ,p_name=>'ACCENT_15' ,p_display_name=>'Accent 15' ,p_display_sequence=>150 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent15' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835996434006656416) ,p_theme_id=>42 ,p_name=>'ACCENT_2' ,p_display_name=>'Accent 2' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent2' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835996682178656416) ,p_theme_id=>42 ,p_name=>'ACCENT_3' ,p_display_name=>'Accent 3' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent3' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835996836785656416) ,p_theme_id=>42 ,p_name=>'ACCENT_4' ,p_display_name=>'Accent 4' ,p_display_sequence=>40 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent4' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835997011908656416) ,p_theme_id=>42 ,p_name=>'ACCENT_5' ,p_display_name=>'Accent 5' ,p_display_sequence=>50 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent5' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835997297842656416) ,p_theme_id=>42 ,p_name=>'ACCENT_6' ,p_display_name=>'Accent 6' ,p_display_sequence=>60 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent6' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835997430389656416) ,p_theme_id=>42 ,p_name=>'ACCENT_7' ,p_display_name=>'Accent 7' ,p_display_sequence=>70 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent7' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835997633090656417) ,p_theme_id=>42 ,p_name=>'ACCENT_8' ,p_display_name=>'Accent 8' ,p_display_sequence=>80 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent8' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835997822168656417) ,p_theme_id=>42 ,p_name=>'ACCENT_9' ,p_display_name=>'Accent 9' ,p_display_sequence=>90 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--accent9' ,p_group_id=>wwv_flow_api.id(32835968842529656405) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835998090167656417) ,p_theme_id=>42 ,p_name=>'HIDDENHEADERNOAT' ,p_display_name=>'Hidden' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--removeHeader js-removeLandmark' ,p_group_id=>wwv_flow_api.id(32835970024598656405) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835998211656656417) ,p_theme_id=>42 ,p_name=>'HIDEOVERFLOW' ,p_display_name=>'Hide' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--hiddenOverflow' ,p_group_id=>wwv_flow_api.id(32835970446634656406) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835998492582656417) ,p_theme_id=>42 ,p_name=>'HIDEREGIONHEADER' ,p_display_name=>'Hidden but accessible' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--hideHeader' ,p_group_id=>wwv_flow_api.id(32835970024598656405) ,p_template_types=>'REGION' ,p_help_text=>'This option will hide the region header. Note that the region title will still be audible for Screen Readers. Buttons placed in the region header will be hidden and inaccessible.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835998622084656417) ,p_theme_id=>42 ,p_name=>'NOBODYPADDING' ,p_display_name=>'Remove Body Padding' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--noPadding' ,p_template_types=>'REGION' ,p_help_text=>'Removes padding from region body.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835998820246656417) ,p_theme_id=>42 ,p_name=>'NOBORDER' ,p_display_name=>'Remove Borders' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--noBorder' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ,p_help_text=>'Removes borders from the region.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835999049156656417) ,p_theme_id=>42 ,p_name=>'REMOVE_UI_DECORATION' ,p_display_name=>'Remove UI Decoration' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--noUI' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ,p_help_text=>'Removes UI decoration (borders, backgrounds, shadows, etc) from the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835999250245656417) ,p_theme_id=>42 ,p_name=>'SCROLLBODY' ,p_display_name=>'Scroll - Default' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--scrollBody' ,p_group_id=>wwv_flow_api.id(32835970446634656406) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835999472650656417) ,p_theme_id=>42 ,p_name=>'SHOW_MAXIMIZE_BUTTON' ,p_display_name=>'Show Maximize Button' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'js-showMaximizeButton' ,p_template_types=>'REGION' ,p_help_text=>'Displays a button in the Region Header to maximize the region. Clicking this button will toggle the maximize state and stretch the region to fill the screen.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835999613615656417) ,p_theme_id=>42 ,p_name=>'SHOW_REGION_ICON' ,p_display_name=>'Show Region Icon' ,p_display_sequence=>30 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--showIcon' ,p_template_types=>'REGION' ,p_help_text=>'Displays the region icon in the region header beside the region title' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32835999839326656417) ,p_theme_id=>42 ,p_name=>'STACKED' ,p_display_name=>'Stack Region' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--stacked' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ,p_help_text=>'Removes side borders and shadows, and can be useful for accordions and regions that need to be grouped together vertically.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836000025722656418) ,p_theme_id=>42 ,p_name=>'TEXT_CONTENT' ,p_display_name=>'Text Content' ,p_display_sequence=>40 ,p_region_template_id=>wwv_flow_api.id(32835993383207656415) ,p_css_classes=>'t-Region--textContent' ,p_group_id=>wwv_flow_api.id(32835963676371656403) ,p_template_types=>'REGION' ,p_help_text=>'Useful for displaying primarily text-based content, such as FAQs and more.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836001311762656418) ,p_theme_id=>42 ,p_name=>'FILL_TAB_LABELS' ,p_display_name=>'Fill Tab Labels' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32836000176688656418) ,p_css_classes=>'t-TabsRegion-mod--fillLabels' ,p_group_id=>wwv_flow_api.id(32836001099672656418) ,p_template_types=>'REGION' ); wwv_flow_api.component_end; end; / begin wwv_flow_api.component_begin ( p_version_yyyy_mm_dd=>'2021.04.15' ,p_release=>'21.1.2' ,p_default_workspace_id=>32532315908301997117 ,p_default_application_id=>105814 ,p_default_id_offset=>0 ,p_default_owner=>'WKSP_PERSONALWEBSITE' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836001731933656418) ,p_theme_id=>42 ,p_name=>'PILL' ,p_display_name=>'Pill' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32836000176688656418) ,p_css_classes=>'t-TabsRegion-mod--pill' ,p_group_id=>wwv_flow_api.id(32836001525112656418) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836001920725656418) ,p_theme_id=>42 ,p_name=>'REMEMBER_ACTIVE_TAB' ,p_display_name=>'Remember Active Tab' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32836000176688656418) ,p_css_classes=>'js-useLocalStorage' ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836002154710656418) ,p_theme_id=>42 ,p_name=>'SIMPLE' ,p_display_name=>'Simple' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32836000176688656418) ,p_css_classes=>'t-TabsRegion-mod--simple' ,p_group_id=>wwv_flow_api.id(32836001525112656418) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836002569526656419) ,p_theme_id=>42 ,p_name=>'TABSLARGE' ,p_display_name=>'Large' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32836000176688656418) ,p_css_classes=>'t-TabsRegion-mod--large' ,p_group_id=>wwv_flow_api.id(32836002375108656419) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836002729551656419) ,p_theme_id=>42 ,p_name=>'TABS_SMALL' ,p_display_name=>'Small' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32836000176688656418) ,p_css_classes=>'t-TabsRegion-mod--small' ,p_group_id=>wwv_flow_api.id(32836002375108656419) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836003131897656419) ,p_theme_id=>42 ,p_name=>'GET_TITLE_FROM_BREADCRUMB' ,p_display_name=>'Use Current Breadcrumb Entry' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32836002884483656419) ,p_css_classes=>'t-BreadcrumbRegion--useBreadcrumbTitle' ,p_group_id=>wwv_flow_api.id(32835981661204656410) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836003344058656419) ,p_theme_id=>42 ,p_name=>'HEADING_FONT_ALTERNATIVE' ,p_display_name=>'Alternative' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32836002884483656419) ,p_css_classes=>'t-BreadcrumbRegion--headingFontAlt' ,p_group_id=>wwv_flow_api.id(32835982444365656410) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836003536082656419) ,p_theme_id=>42 ,p_name=>'HIDE_BREADCRUMB' ,p_display_name=>'Show Breadcrumbs' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32836002884483656419) ,p_css_classes=>'t-BreadcrumbRegion--showBreadcrumb' ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836003740881656419) ,p_theme_id=>42 ,p_name=>'REGION_HEADER_VISIBLE' ,p_display_name=>'Use Region Title' ,p_display_sequence=>1 ,p_region_template_id=>wwv_flow_api.id(32836002884483656419) ,p_css_classes=>'t-BreadcrumbRegion--useRegionTitle' ,p_group_id=>wwv_flow_api.id(32835981661204656410) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836003949348656419) ,p_theme_id=>42 ,p_name=>'USE_COMPACT_STYLE' ,p_display_name=>'Use Compact Style' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32836002884483656419) ,p_css_classes=>'t-BreadcrumbRegion--compactTitle' ,p_template_types=>'REGION' ,p_help_text=>'Uses a compact style for the breadcrumbs.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836004805981656420) ,p_theme_id=>42 ,p_name=>'HIDESMALLSCREENS' ,p_display_name=>'Small Screens (Tablet)' ,p_display_sequence=>20 ,p_region_template_id=>wwv_flow_api.id(32836004021173656419) ,p_css_classes=>'t-Wizard--hideStepsSmall' ,p_group_id=>wwv_flow_api.id(32836004634707656420) ,p_template_types=>'REGION' ,p_help_text=>'Hides the wizard progress steps for screens that are smaller than 768px wide.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836005035110656420) ,p_theme_id=>42 ,p_name=>'HIDEXSMALLSCREENS' ,p_display_name=>'X Small Screens (Mobile)' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32836004021173656419) ,p_css_classes=>'t-Wizard--hideStepsXSmall' ,p_group_id=>wwv_flow_api.id(32836004634707656420) ,p_template_types=>'REGION' ,p_help_text=>'Hides the wizard progress steps for screens that are smaller than 768px wide.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836005278409656420) ,p_theme_id=>42 ,p_name=>'SHOW_TITLE' ,p_display_name=>'Show Title' ,p_display_sequence=>10 ,p_region_template_id=>wwv_flow_api.id(32836004021173656419) ,p_css_classes=>'t-Wizard--showTitle' ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836006047128656422) ,p_theme_id=>42 ,p_name=>'128PX' ,p_display_name=>'128px' ,p_display_sequence=>50 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--xxlarge' ,p_group_id=>wwv_flow_api.id(32836005863688656422) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836006427454656422) ,p_theme_id=>42 ,p_name=>'2COLUMNGRID' ,p_display_name=>'2 Column Grid' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--cols' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ,p_help_text=>'Arrange badges in a two column grid' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836006647375656422) ,p_theme_id=>42 ,p_name=>'32PX' ,p_display_name=>'32px' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--small' ,p_group_id=>wwv_flow_api.id(32836005863688656422) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836006846133656423) ,p_theme_id=>42 ,p_name=>'3COLUMNGRID' ,p_display_name=>'3 Column Grid' ,p_display_sequence=>30 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--cols t-BadgeList--3cols' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ,p_help_text=>'Arrange badges in a 3 column grid' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836007079637656423) ,p_theme_id=>42 ,p_name=>'48PX' ,p_display_name=>'48px' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--medium' ,p_group_id=>wwv_flow_api.id(32836005863688656422) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836007234120656423) ,p_theme_id=>42 ,p_name=>'4COLUMNGRID' ,p_display_name=>'4 Column Grid' ,p_display_sequence=>40 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--cols t-BadgeList--4cols' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836007447833656423) ,p_theme_id=>42 ,p_name=>'5COLUMNGRID' ,p_display_name=>'5 Column Grid' ,p_display_sequence=>50 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--cols t-BadgeList--5cols' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836007693458656423) ,p_theme_id=>42 ,p_name=>'64PX' ,p_display_name=>'64px' ,p_display_sequence=>30 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--large' ,p_group_id=>wwv_flow_api.id(32836005863688656422) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836007829643656423) ,p_theme_id=>42 ,p_name=>'96PX' ,p_display_name=>'96px' ,p_display_sequence=>40 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--xlarge' ,p_group_id=>wwv_flow_api.id(32836005863688656422) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836008083121656423) ,p_theme_id=>42 ,p_name=>'APPLY_THEME_COLORS' ,p_display_name=>'Apply Theme Colors' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'u-colors' ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836008432708656423) ,p_theme_id=>42 ,p_name=>'CIRCULAR' ,p_display_name=>'Circular' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--circular' ,p_group_id=>wwv_flow_api.id(32836008243022656423) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836008678084656423) ,p_theme_id=>42 ,p_name=>'FIXED' ,p_display_name=>'Span Horizontally' ,p_display_sequence=>60 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--fixed' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836008862894656424) ,p_theme_id=>42 ,p_name=>'FLEXIBLEBOX' ,p_display_name=>'Flexible Box' ,p_display_sequence=>80 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--flex' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836009071006656424) ,p_theme_id=>42 ,p_name=>'FLOATITEMS' ,p_display_name=>'Float Items' ,p_display_sequence=>70 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--float' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836009225401656424) ,p_theme_id=>42 ,p_name=>'GRID' ,p_display_name=>'Grid' ,p_display_sequence=>30 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--dash' ,p_group_id=>wwv_flow_api.id(32836008243022656423) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836009412572656424) ,p_theme_id=>42 ,p_name=>'STACKED' ,p_display_name=>'Stacked' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836005520075656422) ,p_css_classes=>'t-BadgeList--stacked' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836009856101656424) ,p_theme_id=>42 ,p_name=>'2_COLUMNS' ,p_display_name=>'2 Columns' ,p_display_sequence=>15 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--cols' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836010224345656424) ,p_theme_id=>42 ,p_name=>'2_LINES' ,p_display_name=>'2 Lines' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--desc-2ln' ,p_group_id=>wwv_flow_api.id(32836010020924656424) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836010480575656424) ,p_theme_id=>42 ,p_name=>'3_COLUMNS' ,p_display_name=>'3 Columns' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--3cols' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836010659266656424) ,p_theme_id=>42 ,p_name=>'3_LINES' ,p_display_name=>'3 Lines' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--desc-3ln' ,p_group_id=>wwv_flow_api.id(32836010020924656424) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836010837427656424) ,p_theme_id=>42 ,p_name=>'4_COLUMNS' ,p_display_name=>'4 Columns' ,p_display_sequence=>30 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--4cols' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836011058586656425) ,p_theme_id=>42 ,p_name=>'4_LINES' ,p_display_name=>'4 Lines' ,p_display_sequence=>30 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--desc-4ln' ,p_group_id=>wwv_flow_api.id(32836010020924656424) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836011278840656425) ,p_theme_id=>42 ,p_name=>'5_COLUMNS' ,p_display_name=>'5 Columns' ,p_display_sequence=>50 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--5cols' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836011413655656425) ,p_theme_id=>42 ,p_name=>'BASIC' ,p_display_name=>'Basic' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--basic' ,p_group_id=>wwv_flow_api.id(32836008243022656423) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836011614744656425) ,p_theme_id=>42 ,p_name=>'BLOCK' ,p_display_name=>'Block' ,p_display_sequence=>40 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--featured t-Cards--block force-fa-lg' ,p_group_id=>wwv_flow_api.id(32836008243022656423) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836012089142656425) ,p_theme_id=>42 ,p_name=>'CARDS_COLOR_FILL' ,p_display_name=>'Color Fill' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--animColorFill' ,p_group_id=>wwv_flow_api.id(32836011891871656425) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836012264178656425) ,p_theme_id=>42 ,p_name=>'CARD_RAISE_CARD' ,p_display_name=>'Raise Card' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--animRaiseCard' ,p_group_id=>wwv_flow_api.id(32836011891871656425) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836012449826656425) ,p_theme_id=>42 ,p_name=>'COMPACT' ,p_display_name=>'Compact' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--compact' ,p_group_id=>wwv_flow_api.id(32836008243022656423) ,p_template_types=>'REPORT' ,p_help_text=>'Use this option when you want to show smaller cards.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836012826334656425) ,p_theme_id=>42 ,p_name=>'DISPLAY_ICONS' ,p_display_name=>'Display Icons' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--displayIcons' ,p_group_id=>wwv_flow_api.id(32836012653996656425) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836013022192656425) ,p_theme_id=>42 ,p_name=>'DISPLAY_INITIALS' ,p_display_name=>'Display Initials' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--displayInitials' ,p_group_id=>wwv_flow_api.id(32836012653996656425) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836013216793656425) ,p_theme_id=>42 ,p_name=>'DISPLAY_SUBTITLE' ,p_display_name=>'Display Subtitle' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--displaySubtitle' ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836013438478656425) ,p_theme_id=>42 ,p_name=>'FEATURED' ,p_display_name=>'Featured' ,p_display_sequence=>30 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--featured force-fa-lg' ,p_group_id=>wwv_flow_api.id(32836008243022656423) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836013655669656425) ,p_theme_id=>42 ,p_name=>'FLOAT' ,p_display_name=>'Float' ,p_display_sequence=>60 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--float' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836013899261656426) ,p_theme_id=>42 ,p_name=>'HIDDEN_BODY_TEXT' ,p_display_name=>'Hidden' ,p_display_sequence=>50 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--hideBody' ,p_group_id=>wwv_flow_api.id(32836010020924656424) ,p_template_types=>'REPORT' ,p_help_text=>'This option hides the card body which contains description and subtext.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836014240287656426) ,p_theme_id=>42 ,p_name=>'ICONS_ROUNDED' ,p_display_name=>'Rounded Corners' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--iconsRounded' ,p_group_id=>wwv_flow_api.id(32836014073978656426) ,p_template_types=>'REPORT' ,p_help_text=>'The icons are displayed within a square with rounded corners.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836014456057656426) ,p_theme_id=>42 ,p_name=>'ICONS_SQUARE' ,p_display_name=>'Square' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--iconsSquare' ,p_group_id=>wwv_flow_api.id(32836014073978656426) ,p_template_types=>'REPORT' ,p_help_text=>'The icons are displayed within a square shape.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836014634274656426) ,p_theme_id=>42 ,p_name=>'SPAN_HORIZONTALLY' ,p_display_name=>'Span Horizontally' ,p_display_sequence=>70 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'t-Cards--spanHorizontally' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836014889782656426) ,p_theme_id=>42 ,p_name=>'USE_THEME_COLORS' ,p_display_name=>'Apply Theme Colors' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836009597080656424) ,p_css_classes=>'u-colors' ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836015466194656426) ,p_theme_id=>42 ,p_name=>'BASIC' ,p_display_name=>'Basic' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836014908886656426) ,p_css_classes=>'t-Comments--basic' ,p_group_id=>wwv_flow_api.id(32836015299156656426) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836015620851656426) ,p_theme_id=>42 ,p_name=>'ICONS_ROUNDED' ,p_display_name=>'Rounded Corners' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836014908886656426) ,p_css_classes=>'t-Comments--iconsRounded' ,p_group_id=>wwv_flow_api.id(32836014073978656426) ,p_template_types=>'REPORT' ,p_help_text=>'The icons are displayed within a square with rounded corners.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836015849410656426) ,p_theme_id=>42 ,p_name=>'ICONS_SQUARE' ,p_display_name=>'Square' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836014908886656426) ,p_css_classes=>'t-Comments--iconsSquare' ,p_group_id=>wwv_flow_api.id(32836014073978656426) ,p_template_types=>'REPORT' ,p_help_text=>'The icons are displayed within a square shape.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836016014162656426) ,p_theme_id=>42 ,p_name=>'SPEECH_BUBBLES' ,p_display_name=>'Speech Bubbles' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836014908886656426) ,p_css_classes=>'t-Comments--chat' ,p_group_id=>wwv_flow_api.id(32836015299156656426) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836016692989656427) ,p_theme_id=>42 ,p_name=>'ACTIONS_HIDDEN' ,p_display_name=>'Hidden' ,p_display_sequence=>60 ,p_report_template_id=>wwv_flow_api.id(32836016125337656426) ,p_css_classes=>'t-ContentRow--hideActions' ,p_group_id=>wwv_flow_api.id(32836016423367656427) ,p_template_types=>'REPORT' ,p_help_text=>'Hides the Actions column from being rendered on the screen.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836017055730656427) ,p_theme_id=>42 ,p_name=>'ALIGNMENT_TOP' ,p_display_name=>'Top' ,p_display_sequence=>100 ,p_report_template_id=>wwv_flow_api.id(32836016125337656426) ,p_css_classes=>'t-ContentRow--alignTop' ,p_group_id=>wwv_flow_api.id(32836016842772656427) ,p_template_types=>'REPORT' ,p_help_text=>'Aligns the content to the top of the row. This is useful when you expect that yours rows will vary in height (e.g. some rows will have longer descriptions than others).' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836017417266656427) ,p_theme_id=>42 ,p_name=>'DESCRIPTION_HIDDEN' ,p_display_name=>'Hidden' ,p_display_sequence=>40 ,p_report_template_id=>wwv_flow_api.id(32836016125337656426) ,p_css_classes=>'t-ContentRow--hideDescription' ,p_group_id=>wwv_flow_api.id(32836017227056656427) ,p_template_types=>'REPORT' ,p_help_text=>'Hides the Description from being rendered on the screen.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836017821362656427) ,p_theme_id=>42 ,p_name=>'ICON_HIDDEN' ,p_display_name=>'Hidden' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836016125337656426) ,p_css_classes=>'t-ContentRow--hideIcon' ,p_group_id=>wwv_flow_api.id(32836017681658656427) ,p_template_types=>'REPORT' ,p_help_text=>'Hides the Icon from being rendered on the screen.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836018210863656427) ,p_theme_id=>42 ,p_name=>'MISC_HIDDEN' ,p_display_name=>'Hidden' ,p_display_sequence=>50 ,p_report_template_id=>wwv_flow_api.id(32836016125337656426) ,p_css_classes=>'t-ContentRow--hideMisc' ,p_group_id=>wwv_flow_api.id(32836018085211656427) ,p_template_types=>'REPORT' ,p_help_text=>'Hides the Misc column from being rendered on the screen.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836018690592656428) ,p_theme_id=>42 ,p_name=>'SELECTION_HIDDEN' ,p_display_name=>'Hidden' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836016125337656426) ,p_css_classes=>'t-ContentRow--hideSelection' ,p_group_id=>wwv_flow_api.id(32836018441317656428) ,p_template_types=>'REPORT' ,p_help_text=>'Hides the Selection column from being rendered on the screen.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836018889974656428) ,p_theme_id=>42 ,p_name=>'STYLE_COMPACT' ,p_display_name=>'Compact' ,p_display_sequence=>1 ,p_report_template_id=>wwv_flow_api.id(32836016125337656426) ,p_css_classes=>'t-ContentRow--styleCompact' ,p_group_id=>wwv_flow_api.id(32836008243022656423) ,p_template_types=>'REPORT' ,p_help_text=>'This option reduces the padding and font sizes to present a compact display of the same information.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836019224490656428) ,p_theme_id=>42 ,p_name=>'TITLE_HIDDEN' ,p_display_name=>'Hidden' ,p_display_sequence=>30 ,p_report_template_id=>wwv_flow_api.id(32836016125337656426) ,p_css_classes=>'t-ContentRow--hideTitle' ,p_group_id=>wwv_flow_api.id(32836019080025656428) ,p_template_types=>'REPORT' ,p_help_text=>'Hides the Title from being rendered on the screen.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836019869368656428) ,p_theme_id=>42 ,p_name=>'DISPLAY_ITEMS_STACKED' ,p_display_name=>'Stacked' ,p_display_sequence=>1 ,p_report_template_id=>wwv_flow_api.id(32836019302709656428) ,p_css_classes=>'t-ContextualInfo-item--stacked' ,p_group_id=>wwv_flow_api.id(32836019620733656428) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836020213518656428) ,p_theme_id=>42 ,p_name=>'DISPLAY_LABELS_STACKED' ,p_display_name=>'Stacked' ,p_display_sequence=>1 ,p_report_template_id=>wwv_flow_api.id(32836019302709656428) ,p_css_classes=>'t-ContextualInfo-label--stacked' ,p_group_id=>wwv_flow_api.id(32836020013338656428) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836020628050656428) ,p_theme_id=>42 ,p_name=>'2_COLUMN_GRID' ,p_display_name=>'2 Column Grid' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836020366648656428) ,p_css_classes=>'t-MediaList--cols t-MediaList--2cols' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836020806312656429) ,p_theme_id=>42 ,p_name=>'3_COLUMN_GRID' ,p_display_name=>'3 Column Grid' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836020366648656428) ,p_css_classes=>'t-MediaList--cols t-MediaList--3cols' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836021070005656429) ,p_theme_id=>42 ,p_name=>'4_COLUMN_GRID' ,p_display_name=>'4 Column Grid' ,p_display_sequence=>30 ,p_report_template_id=>wwv_flow_api.id(32836020366648656428) ,p_css_classes=>'t-MediaList--cols t-MediaList--4cols' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836021258028656429) ,p_theme_id=>42 ,p_name=>'5_COLUMN_GRID' ,p_display_name=>'5 Column Grid' ,p_display_sequence=>40 ,p_report_template_id=>wwv_flow_api.id(32836020366648656428) ,p_css_classes=>'t-MediaList--cols t-MediaList--5cols' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836021448287656429) ,p_theme_id=>42 ,p_name=>'APPLY_THEME_COLORS' ,p_display_name=>'Apply Theme Colors' ,p_display_sequence=>40 ,p_report_template_id=>wwv_flow_api.id(32836020366648656428) ,p_css_classes=>'u-colors' ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836021694510656429) ,p_theme_id=>42 ,p_name=>'ICONS_ROUNDED' ,p_display_name=>'Rounded Corners' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836020366648656428) ,p_css_classes=>'t-MediaList--iconsRounded' ,p_group_id=>wwv_flow_api.id(32836014073978656426) ,p_template_types=>'REPORT' ,p_help_text=>'The icons are displayed within a square with rounded corners.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836021814210656429) ,p_theme_id=>42 ,p_name=>'ICONS_SQUARE' ,p_display_name=>'Square' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836020366648656428) ,p_css_classes=>'t-MediaList--iconsSquare' ,p_group_id=>wwv_flow_api.id(32836014073978656426) ,p_template_types=>'REPORT' ,p_help_text=>'The icons are displayed within a square shape.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836022250496656429) ,p_theme_id=>42 ,p_name=>'LARGE' ,p_display_name=>'Large' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836020366648656428) ,p_css_classes=>'t-MediaList--large force-fa-lg' ,p_group_id=>wwv_flow_api.id(32836022063345656429) ,p_template_types=>'REPORT' ,p_help_text=>'Increases the size of the text and icons in the list.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836022485374656429) ,p_theme_id=>42 ,p_name=>'SHOW_BADGES' ,p_display_name=>'Show Badges' ,p_display_sequence=>30 ,p_report_template_id=>wwv_flow_api.id(32836020366648656428) ,p_css_classes=>'t-MediaList--showBadges' ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836022659111656429) ,p_theme_id=>42 ,p_name=>'SHOW_DESCRIPTION' ,p_display_name=>'Show Description' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836020366648656428) ,p_css_classes=>'t-MediaList--showDesc' ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836022830528656429) ,p_theme_id=>42 ,p_name=>'SHOW_ICONS' ,p_display_name=>'Show Icons' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836020366648656428) ,p_css_classes=>'t-MediaList--showIcons' ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836023006111656429) ,p_theme_id=>42 ,p_name=>'SPAN_HORIZONTAL' ,p_display_name=>'Span Horizontal' ,p_display_sequence=>50 ,p_report_template_id=>wwv_flow_api.id(32836020366648656428) ,p_css_classes=>'t-MediaList--horizontal' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836023292141656429) ,p_theme_id=>42 ,p_name=>'STACK' ,p_display_name=>'Stack' ,p_display_sequence=>5 ,p_report_template_id=>wwv_flow_api.id(32836020366648656428) ,p_css_classes=>'t-MediaList--stack' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836024076433656430) ,p_theme_id=>42 ,p_name=>'ALTROWCOLORSDISABLE' ,p_display_name=>'Disable' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836023596274656430) ,p_css_classes=>'t-Report--staticRowColors' ,p_group_id=>wwv_flow_api.id(32836023884266656430) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836024239521656430) ,p_theme_id=>42 ,p_name=>'ALTROWCOLORSENABLE' ,p_display_name=>'Enable' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836023596274656430) ,p_css_classes=>'t-Report--altRowsDefault' ,p_group_id=>wwv_flow_api.id(32836023884266656430) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836024666493656430) ,p_theme_id=>42 ,p_name=>'ENABLE' ,p_display_name=>'Enable' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836023596274656430) ,p_css_classes=>'t-Report--rowHighlight' ,p_group_id=>wwv_flow_api.id(32836024460136656430) ,p_template_types=>'REPORT' ,p_help_text=>'Enable row highlighting on mouse over' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836025067321656430) ,p_theme_id=>42 ,p_name=>'HORIZONTALBORDERS' ,p_display_name=>'Horizontal Only' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836023596274656430) ,p_css_classes=>'t-Report--horizontalBorders' ,p_group_id=>wwv_flow_api.id(32836024813383656430) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836025259621656430) ,p_theme_id=>42 ,p_name=>'REMOVEALLBORDERS' ,p_display_name=>'No Borders' ,p_display_sequence=>30 ,p_report_template_id=>wwv_flow_api.id(32836023596274656430) ,p_css_classes=>'t-Report--noBorders' ,p_group_id=>wwv_flow_api.id(32836024813383656430) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836025429873656430) ,p_theme_id=>42 ,p_name=>'REMOVEOUTERBORDERS' ,p_display_name=>'No Outer Borders' ,p_display_sequence=>40 ,p_report_template_id=>wwv_flow_api.id(32836023596274656430) ,p_css_classes=>'t-Report--inline' ,p_group_id=>wwv_flow_api.id(32836024813383656430) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.component_end; end; / begin wwv_flow_api.component_begin ( p_version_yyyy_mm_dd=>'2021.04.15' ,p_release=>'21.1.2' ,p_default_workspace_id=>32532315908301997117 ,p_default_application_id=>105814 ,p_default_id_offset=>0 ,p_default_owner=>'WKSP_PERSONALWEBSITE' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836025658514656430) ,p_theme_id=>42 ,p_name=>'ROWHIGHLIGHTDISABLE' ,p_display_name=>'Disable' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836023596274656430) ,p_css_classes=>'t-Report--rowHighlightOff' ,p_group_id=>wwv_flow_api.id(32836024460136656430) ,p_template_types=>'REPORT' ,p_help_text=>'Disable row highlighting on mouse over' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836025879050656431) ,p_theme_id=>42 ,p_name=>'STRETCHREPORT' ,p_display_name=>'Stretch Report' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836023596274656430) ,p_css_classes=>'t-Report--stretch' ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836026081736656431) ,p_theme_id=>42 ,p_name=>'VERTICALBORDERS' ,p_display_name=>'Vertical Only' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836023596274656430) ,p_css_classes=>'t-Report--verticalBorders' ,p_group_id=>wwv_flow_api.id(32836024813383656430) ,p_template_types=>'REPORT' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836026496242656431) ,p_theme_id=>42 ,p_name=>'COMPACT' ,p_display_name=>'Compact' ,p_display_sequence=>1 ,p_report_template_id=>wwv_flow_api.id(32836026190249656431) ,p_css_classes=>'t-Timeline--compact' ,p_group_id=>wwv_flow_api.id(32836008243022656423) ,p_template_types=>'REPORT' ,p_help_text=>'Displays a compact version of timeline with smaller text and fewer columns.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836027012295656431) ,p_theme_id=>42 ,p_name=>'FIXED_LARGE' ,p_display_name=>'Fixed - Large' ,p_display_sequence=>30 ,p_report_template_id=>wwv_flow_api.id(32836026555624656431) ,p_css_classes=>'t-AVPList--fixedLabelLarge' ,p_group_id=>wwv_flow_api.id(32836026836928656431) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836027219854656431) ,p_theme_id=>42 ,p_name=>'FIXED_MEDIUM' ,p_display_name=>'Fixed - Medium' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836026555624656431) ,p_css_classes=>'t-AVPList--fixedLabelMedium' ,p_group_id=>wwv_flow_api.id(32836026836928656431) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836027406739656431) ,p_theme_id=>42 ,p_name=>'FIXED_SMALL' ,p_display_name=>'Fixed - Small' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836026555624656431) ,p_css_classes=>'t-AVPList--fixedLabelSmall' ,p_group_id=>wwv_flow_api.id(32836026836928656431) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836027668313656431) ,p_theme_id=>42 ,p_name=>'LEFT_ALIGNED_DETAILS' ,p_display_name=>'Left Aligned Details' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836026555624656431) ,p_css_classes=>'t-AVPList--leftAligned' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836027895858656431) ,p_theme_id=>42 ,p_name=>'RIGHT_ALIGNED_DETAILS' ,p_display_name=>'Right Aligned Details' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836026555624656431) ,p_css_classes=>'t-AVPList--rightAligned' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836028041954656432) ,p_theme_id=>42 ,p_name=>'VARIABLE_LARGE' ,p_display_name=>'Variable - Large' ,p_display_sequence=>60 ,p_report_template_id=>wwv_flow_api.id(32836026555624656431) ,p_css_classes=>'t-AVPList--variableLabelLarge' ,p_group_id=>wwv_flow_api.id(32836026836928656431) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836028248986656432) ,p_theme_id=>42 ,p_name=>'VARIABLE_MEDIUM' ,p_display_name=>'Variable - Medium' ,p_display_sequence=>50 ,p_report_template_id=>wwv_flow_api.id(32836026555624656431) ,p_css_classes=>'t-AVPList--variableLabelMedium' ,p_group_id=>wwv_flow_api.id(32836026836928656431) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836028426981656432) ,p_theme_id=>42 ,p_name=>'VARIABLE_SMALL' ,p_display_name=>'Variable - Small' ,p_display_sequence=>40 ,p_report_template_id=>wwv_flow_api.id(32836026555624656431) ,p_css_classes=>'t-AVPList--variableLabelSmall' ,p_group_id=>wwv_flow_api.id(32836026836928656431) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836028826948656432) ,p_theme_id=>42 ,p_name=>'FIXED_LARGE' ,p_display_name=>'Fixed - Large' ,p_display_sequence=>30 ,p_report_template_id=>wwv_flow_api.id(32836028500582656432) ,p_css_classes=>'t-AVPList--fixedLabelLarge' ,p_group_id=>wwv_flow_api.id(32836026836928656431) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836029031435656432) ,p_theme_id=>42 ,p_name=>'FIXED_MEDIUM' ,p_display_name=>'Fixed - Medium' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836028500582656432) ,p_css_classes=>'t-AVPList--fixedLabelMedium' ,p_group_id=>wwv_flow_api.id(32836026836928656431) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836029294832656432) ,p_theme_id=>42 ,p_name=>'FIXED_SMALL' ,p_display_name=>'Fixed - Small' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836028500582656432) ,p_css_classes=>'t-AVPList--fixedLabelSmall' ,p_group_id=>wwv_flow_api.id(32836026836928656431) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836029417062656432) ,p_theme_id=>42 ,p_name=>'LEFT_ALIGNED_DETAILS' ,p_display_name=>'Left Aligned Details' ,p_display_sequence=>10 ,p_report_template_id=>wwv_flow_api.id(32836028500582656432) ,p_css_classes=>'t-AVPList--leftAligned' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836029639339656432) ,p_theme_id=>42 ,p_name=>'RIGHT_ALIGNED_DETAILS' ,p_display_name=>'Right Aligned Details' ,p_display_sequence=>20 ,p_report_template_id=>wwv_flow_api.id(32836028500582656432) ,p_css_classes=>'t-AVPList--rightAligned' ,p_group_id=>wwv_flow_api.id(32836006240188656422) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836029801629656432) ,p_theme_id=>42 ,p_name=>'VARIABLE_LARGE' ,p_display_name=>'Variable - Large' ,p_display_sequence=>60 ,p_report_template_id=>wwv_flow_api.id(32836028500582656432) ,p_css_classes=>'t-AVPList--variableLabelLarge' ,p_group_id=>wwv_flow_api.id(32836026836928656431) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836030000325656432) ,p_theme_id=>42 ,p_name=>'VARIABLE_MEDIUM' ,p_display_name=>'Variable - Medium' ,p_display_sequence=>50 ,p_report_template_id=>wwv_flow_api.id(32836028500582656432) ,p_css_classes=>'t-AVPList--variableLabelMedium' ,p_group_id=>wwv_flow_api.id(32836026836928656431) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836030274069656432) ,p_theme_id=>42 ,p_name=>'VARIABLE_SMALL' ,p_display_name=>'Variable - Small' ,p_display_sequence=>40 ,p_report_template_id=>wwv_flow_api.id(32836028500582656432) ,p_css_classes=>'t-AVPList--variableLabelSmall' ,p_group_id=>wwv_flow_api.id(32836026836928656431) ,p_template_types=>'REPORT' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836030842316656433) ,p_theme_id=>42 ,p_name=>'2COLUMNGRID' ,p_display_name=>'2 Column Grid' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_help_text=>'Arrange badges in a two column grid' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836031072599656433) ,p_theme_id=>42 ,p_name=>'3COLUMNGRID' ,p_display_name=>'3 Column Grid' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--cols t-BadgeList--3cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_help_text=>'Arrange badges in a 3 column grid' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836031298379656433) ,p_theme_id=>42 ,p_name=>'4COLUMNGRID' ,p_display_name=>'4 Column Grid' ,p_display_sequence=>40 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--cols t-BadgeList--4cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_help_text=>'Arrange badges in 4 column grid' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836031492322656433) ,p_theme_id=>42 ,p_name=>'5COLUMNGRID' ,p_display_name=>'5 Column Grid' ,p_display_sequence=>50 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--cols t-BadgeList--5cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_help_text=>'Arrange badges in a 5 column grid' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836031655785656433) ,p_theme_id=>42 ,p_name=>'APPLY_THEME_COLORS' ,p_display_name=>'Apply Theme Colors' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'u-colors' ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836032005749656434) ,p_theme_id=>42 ,p_name=>'CIRCULAR' ,p_display_name=>'Circular' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--circular' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836032261200656434) ,p_theme_id=>42 ,p_name=>'FIXED' ,p_display_name=>'Span Horizontally' ,p_display_sequence=>60 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--fixed' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_help_text=>'Span badges horizontally' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836032449721656434) ,p_theme_id=>42 ,p_name=>'FLEXIBLEBOX' ,p_display_name=>'Flexible Box' ,p_display_sequence=>80 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--flex' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_help_text=>'Use flexbox to arrange items' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836032616191656434) ,p_theme_id=>42 ,p_name=>'FLOATITEMS' ,p_display_name=>'Float Items' ,p_display_sequence=>70 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--float' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_help_text=>'Float badges to left' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836032803734656434) ,p_theme_id=>42 ,p_name=>'GRID' ,p_display_name=>'Grid' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--dash' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836033231771656434) ,p_theme_id=>42 ,p_name=>'LARGE' ,p_display_name=>'64px' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--large' ,p_group_id=>wwv_flow_api.id(32836033045215656434) ,p_template_types=>'LIST' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836033444246656434) ,p_theme_id=>42 ,p_name=>'MEDIUM' ,p_display_name=>'48px' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--medium' ,p_group_id=>wwv_flow_api.id(32836033045215656434) ,p_template_types=>'LIST' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836033698177656434) ,p_theme_id=>42 ,p_name=>'SMALL' ,p_display_name=>'32px' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--small' ,p_group_id=>wwv_flow_api.id(32836033045215656434) ,p_template_types=>'LIST' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836033842012656434) ,p_theme_id=>42 ,p_name=>'STACKED' ,p_display_name=>'Stacked' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--stacked' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_help_text=>'Stack badges on top of each other' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836034005188656434) ,p_theme_id=>42 ,p_name=>'XLARGE' ,p_display_name=>'96px' ,p_display_sequence=>40 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--xlarge' ,p_group_id=>wwv_flow_api.id(32836033045215656434) ,p_template_types=>'LIST' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836034261421656434) ,p_theme_id=>42 ,p_name=>'XXLARGE' ,p_display_name=>'128px' ,p_display_sequence=>50 ,p_list_template_id=>wwv_flow_api.id(32836030302723656432) ,p_css_classes=>'t-BadgeList--xxlarge' ,p_group_id=>wwv_flow_api.id(32836033045215656434) ,p_template_types=>'LIST' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836034650782656435) ,p_theme_id=>42 ,p_name=>'2_COLUMNS' ,p_display_name=>'2 Columns' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836035025117656435) ,p_theme_id=>42 ,p_name=>'2_LINES' ,p_display_name=>'2 Lines' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--desc-2ln' ,p_group_id=>wwv_flow_api.id(32836034850746656435) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836035226959656435) ,p_theme_id=>42 ,p_name=>'3_COLUMNS' ,p_display_name=>'3 Columns' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--3cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836035429262656435) ,p_theme_id=>42 ,p_name=>'3_LINES' ,p_display_name=>'3 Lines' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--desc-3ln' ,p_group_id=>wwv_flow_api.id(32836034850746656435) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836035666845656435) ,p_theme_id=>42 ,p_name=>'4_COLUMNS' ,p_display_name=>'4 Columns' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--4cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836035803697656435) ,p_theme_id=>42 ,p_name=>'4_LINES' ,p_display_name=>'4 Lines' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--desc-4ln' ,p_group_id=>wwv_flow_api.id(32836034850746656435) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836036054842656435) ,p_theme_id=>42 ,p_name=>'5_COLUMNS' ,p_display_name=>'5 Columns' ,p_display_sequence=>50 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--5cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836036292393656435) ,p_theme_id=>42 ,p_name=>'BASIC' ,p_display_name=>'Basic' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--basic' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836036471514656435) ,p_theme_id=>42 ,p_name=>'BLOCK' ,p_display_name=>'Block' ,p_display_sequence=>40 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--featured t-Cards--block force-fa-lg' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836036631044656435) ,p_theme_id=>42 ,p_name=>'CARDS_STACKED' ,p_display_name=>'Stacked' ,p_display_sequence=>5 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--stacked' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_help_text=>'Stacks the cards on top of each other.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836037040750656436) ,p_theme_id=>42 ,p_name=>'COLOR_FILL' ,p_display_name=>'Color Fill' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--animColorFill' ,p_group_id=>wwv_flow_api.id(32836036879700656436) ,p_template_types=>'LIST' ,p_help_text=>'Fills the card background with the color of the icon or default link style.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836037238290656436) ,p_theme_id=>42 ,p_name=>'COMPACT' ,p_display_name=>'Compact' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--compact' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ,p_help_text=>'Use this option when you want to show smaller cards.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836037601032656436) ,p_theme_id=>42 ,p_name=>'DISPLAY_ICONS' ,p_display_name=>'Display Icons' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--displayIcons' ,p_group_id=>wwv_flow_api.id(32836037480848656436) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836037861614656436) ,p_theme_id=>42 ,p_name=>'DISPLAY_INITIALS' ,p_display_name=>'Display Initials' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--displayInitials' ,p_group_id=>wwv_flow_api.id(32836037480848656436) ,p_template_types=>'LIST' ,p_help_text=>'Initials come from List Attribute 3' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836038037651656436) ,p_theme_id=>42 ,p_name=>'DISPLAY_SUBTITLE' ,p_display_name=>'Display Subtitle' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--displaySubtitle' ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836038281040656436) ,p_theme_id=>42 ,p_name=>'FEATURED' ,p_display_name=>'Featured' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--featured force-fa-lg' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836038497265656436) ,p_theme_id=>42 ,p_name=>'FLOAT' ,p_display_name=>'Float' ,p_display_sequence=>60 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--float' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836038612644656436) ,p_theme_id=>42 ,p_name=>'HIDDEN_BODY_TEXT' ,p_display_name=>'Hidden' ,p_display_sequence=>50 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--hideBody' ,p_group_id=>wwv_flow_api.id(32836034850746656435) ,p_template_types=>'LIST' ,p_help_text=>'This option hides the card body which contains description and subtext.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836039024253656436) ,p_theme_id=>42 ,p_name=>'ICONS_ROUNDED' ,p_display_name=>'Rounded Corners' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--iconsRounded' ,p_group_id=>wwv_flow_api.id(32836038838297656436) ,p_template_types=>'LIST' ,p_help_text=>'The icons are displayed within a square with rounded corners.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836039259547656436) ,p_theme_id=>42 ,p_name=>'ICONS_SQUARE' ,p_display_name=>'Square' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--iconsSquare' ,p_group_id=>wwv_flow_api.id(32836038838297656436) ,p_template_types=>'LIST' ,p_help_text=>'The icons are displayed within a square shape.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836039490989656436) ,p_theme_id=>42 ,p_name=>'RAISE_CARD' ,p_display_name=>'Raise Card' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--animRaiseCard' ,p_group_id=>wwv_flow_api.id(32836036879700656436) ,p_template_types=>'LIST' ,p_help_text=>'Raises the card so it pops up.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836039667082656437) ,p_theme_id=>42 ,p_name=>'SPAN_HORIZONTALLY' ,p_display_name=>'Span Horizontally' ,p_display_sequence=>70 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'t-Cards--spanHorizontally' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836039851668656437) ,p_theme_id=>42 ,p_name=>'USE_THEME_COLORS' ,p_display_name=>'Apply Theme Colors' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836034354915656434) ,p_css_classes=>'u-colors' ,p_template_types=>'LIST' ,p_help_text=>'Applies the colors from the theme''s color palette to the icons or initials within cards.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836040209260656437) ,p_theme_id=>42 ,p_name=>'ACTIONS' ,p_display_name=>'Actions' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836039909410656437) ,p_css_classes=>'t-LinksList--actions' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ,p_help_text=>'Render as actions to be placed on the right side column.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836040474755656437) ,p_theme_id=>42 ,p_name=>'DISABLETEXTWRAPPING' ,p_display_name=>'Disable Text Wrapping' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836039909410656437) ,p_css_classes=>'t-LinksList--nowrap' ,p_template_types=>'LIST' ,p_help_text=>'Do not allow link text to wrap to new lines. Truncate with ellipsis.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836040687686656437) ,p_theme_id=>42 ,p_name=>'SHOWBADGES' ,p_display_name=>'Show Badges' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836039909410656437) ,p_css_classes=>'t-LinksList--showBadge' ,p_template_types=>'LIST' ,p_help_text=>'Show badge to right of link (requires Attribute 1 to be populated)' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836040853375656437) ,p_theme_id=>42 ,p_name=>'SHOWGOTOARROW' ,p_display_name=>'Show Right Arrow' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836039909410656437) ,p_css_classes=>'t-LinksList--showArrow' ,p_template_types=>'LIST' ,p_help_text=>'Show arrow to the right of link' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836041218952656437) ,p_theme_id=>42 ,p_name=>'SHOWICONS' ,p_display_name=>'For All Items' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836039909410656437) ,p_css_classes=>'t-LinksList--showIcons' ,p_group_id=>wwv_flow_api.id(32836041040257656437) ,p_template_types=>'LIST' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836041461666656437) ,p_theme_id=>42 ,p_name=>'SHOWTOPICONS' ,p_display_name=>'For Top Level Items Only' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836039909410656437) ,p_css_classes=>'t-LinksList--showTopIcons' ,p_group_id=>wwv_flow_api.id(32836041040257656437) ,p_template_types=>'LIST' ,p_help_text=>'This will show icons for top level items of the list only. It will not show icons for sub lists.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836041828645656438) ,p_theme_id=>42 ,p_name=>'2COLUMNGRID' ,p_display_name=>'2 Column Grid' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836041550587656437) ,p_css_classes=>'t-MediaList--cols t-MediaList--2cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836042066839656438) ,p_theme_id=>42 ,p_name=>'3COLUMNGRID' ,p_display_name=>'3 Column Grid' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836041550587656437) ,p_css_classes=>'t-MediaList--cols t-MediaList--3cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836042257704656438) ,p_theme_id=>42 ,p_name=>'4COLUMNGRID' ,p_display_name=>'4 Column Grid' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836041550587656437) ,p_css_classes=>'t-MediaList--cols t-MediaList--4cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836042407619656438) ,p_theme_id=>42 ,p_name=>'5COLUMNGRID' ,p_display_name=>'5 Column Grid' ,p_display_sequence=>40 ,p_list_template_id=>wwv_flow_api.id(32836041550587656437) ,p_css_classes=>'t-MediaList--cols t-MediaList--5cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836042641928656438) ,p_theme_id=>42 ,p_name=>'APPLY_THEME_COLORS' ,p_display_name=>'Apply Theme Colors' ,p_display_sequence=>40 ,p_list_template_id=>wwv_flow_api.id(32836041550587656437) ,p_css_classes=>'u-colors' ,p_template_types=>'LIST' ,p_help_text=>'Applies colors from the Theme''s color palette to icons in the list.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836042837937656438) ,p_theme_id=>42 ,p_name=>'ICONS_ROUNDED' ,p_display_name=>'Rounded Corners' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836041550587656437) ,p_css_classes=>'t-MediaList--iconsRounded' ,p_group_id=>wwv_flow_api.id(32836038838297656436) ,p_template_types=>'LIST' ,p_help_text=>'The icons are displayed within a square with rounded corners.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836043000869656438) ,p_theme_id=>42 ,p_name=>'ICONS_SQUARE' ,p_display_name=>'Square' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836041550587656437) ,p_css_classes=>'t-MediaList--iconsSquare' ,p_group_id=>wwv_flow_api.id(32836038838297656436) ,p_template_types=>'LIST' ,p_help_text=>'The icons are displayed within a square shape.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836043412977656438) ,p_theme_id=>42 ,p_name=>'LIST_SIZE_LARGE' ,p_display_name=>'Large' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836041550587656437) ,p_css_classes=>'t-MediaList--large force-fa-lg' ,p_group_id=>wwv_flow_api.id(32836043283013656438) ,p_template_types=>'LIST' ,p_help_text=>'Increases the size of the text and icons in the list.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836043680381656438) ,p_theme_id=>42 ,p_name=>'SHOW_BADGES' ,p_display_name=>'Show Badges' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836041550587656437) ,p_css_classes=>'t-MediaList--showBadges' ,p_template_types=>'LIST' ,p_help_text=>'Show a badge (Attribute 2) to the right of the list item.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836043888149656438) ,p_theme_id=>42 ,p_name=>'SHOW_DESCRIPTION' ,p_display_name=>'Show Description' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836041550587656437) ,p_css_classes=>'t-MediaList--showDesc' ,p_template_types=>'LIST' ,p_help_text=>'Shows the description (Attribute 1) for each list item.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836044127914656438) ,p_theme_id=>42 ,p_name=>'SHOW_ICONS' ,p_display_name=>'Show Icons' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836041550587656437) ,p_css_classes=>'t-MediaList--showIcons' ,p_template_types=>'LIST' ,p_help_text=>'Display an icon next to the list item.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836044349268656438) ,p_theme_id=>42 ,p_name=>'SPANHORIZONTAL' ,p_display_name=>'Span Horizontal' ,p_display_sequence=>50 ,p_list_template_id=>wwv_flow_api.id(32836041550587656437) ,p_css_classes=>'t-MediaList--horizontal' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_help_text=>'Show all list items in one horizontal row.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836044704333656439) ,p_theme_id=>42 ,p_name=>'ADD_ACTIONS' ,p_display_name=>'Add Actions' ,p_display_sequence=>40 ,p_list_template_id=>wwv_flow_api.id(32836044481619656439) ,p_css_classes=>'js-addActions' ,p_template_types=>'LIST' ,p_help_text=>'Use this option to add shortcuts for menu items. Note that actions.js must be included on your page to support this functionality.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836044943258656439) ,p_theme_id=>42 ,p_name=>'BEHAVE_LIKE_TABS' ,p_display_name=>'Behave Like Tabs' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836044481619656439) ,p_css_classes=>'js-tabLike' ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836045132750656439) ,p_theme_id=>42 ,p_name=>'DISPLAY_MENU_CALLOUT' ,p_display_name=>'Display Menu Callout' ,p_display_sequence=>50 ,p_list_template_id=>wwv_flow_api.id(32836044481619656439) ,p_css_classes=>'js-menu-callout' ,p_template_types=>'LIST' ,p_help_text=>'Use this option to add display a callout for the menu.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836045321406656439) ,p_theme_id=>42 ,p_name=>'SHOW_SUB_MENU_ICONS' ,p_display_name=>'Show Sub Menu Icons' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836044481619656439) ,p_css_classes=>'js-showSubMenuIcons' ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836045739620656439) ,p_theme_id=>42 ,p_name=>'ADD_ACTIONS' ,p_display_name=>'Add Actions' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836045424155656439) ,p_css_classes=>'js-addActions' ,p_template_types=>'LIST' ,p_help_text=>'Enables you to define a keyboard shortcut to activate the menu item.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836045957952656439) ,p_theme_id=>42 ,p_name=>'DISPLAY_MENU_CALLOUT' ,p_display_name=>'Display Menu Callout' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836045424155656439) ,p_css_classes=>'js-menu-callout' ,p_template_types=>'LIST' ,p_help_text=>'Use this option to add display a callout for the menu. Note that callout will only be displayed if the data-parent-element custom attribute is defined.' ); wwv_flow_api.component_end; end; / begin wwv_flow_api.component_begin ( p_version_yyyy_mm_dd=>'2021.04.15' ,p_release=>'21.1.2' ,p_default_workspace_id=>32532315908301997117 ,p_default_application_id=>105814 ,p_default_id_offset=>0 ,p_default_owner=>'WKSP_PERSONALWEBSITE' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836046370031656439) ,p_theme_id=>42 ,p_name=>'DISPLAY_MENU_CALLOUT' ,p_display_name=>'Display Menu Callout' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836046038125656439) ,p_css_classes=>'js-menu-callout' ,p_template_types=>'LIST' ,p_help_text=>'Use this option to add display a callout for the menu.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836046787232656440) ,p_theme_id=>42 ,p_name=>'ADD_ACTIONS' ,p_display_name=>'Add Actions' ,p_display_sequence=>1 ,p_list_template_id=>wwv_flow_api.id(32836046434285656439) ,p_css_classes=>'js-addActions' ,p_template_types=>'LIST' ,p_help_text=>'Use this option to add shortcuts for menu items. Note that actions.js must be included on your page to support this functionality.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836046920633656440) ,p_theme_id=>42 ,p_name=>'COLLAPSED_DEFAULT' ,p_display_name=>'Collapsed by Default' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836046434285656439) ,p_css_classes=>'js-defaultCollapsed' ,p_template_types=>'LIST' ,p_help_text=>'This option will load the side navigation menu in a collapsed state by default.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836047349296656440) ,p_theme_id=>42 ,p_name=>'COLLAPSE_STYLE_HIDDEN' ,p_display_name=>'Hidden' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836046434285656439) ,p_css_classes=>'js-navCollapsed--hidden' ,p_group_id=>wwv_flow_api.id(32836047107128656440) ,p_template_types=>'LIST' ,p_help_text=>'Completely hide the navigation menu when it is collapsed.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836047552349656440) ,p_theme_id=>42 ,p_name=>'ICON_DEFAULT' ,p_display_name=>'Icon (Default)' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836046434285656439) ,p_css_classes=>'js-navCollapsed--default' ,p_group_id=>wwv_flow_api.id(32836047107128656440) ,p_template_types=>'LIST' ,p_help_text=>'Display icons when the navigation menu is collapsed for large screens.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836047730099656440) ,p_theme_id=>42 ,p_name=>'STYLE_A' ,p_display_name=>'Style A' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836046434285656439) ,p_css_classes=>'t-TreeNav--styleA' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ,p_help_text=>'Style Variation A' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836047993970656440) ,p_theme_id=>42 ,p_name=>'STYLE_B' ,p_display_name=>'Style B' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836046434285656439) ,p_css_classes=>'t-TreeNav--styleB' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ,p_help_text=>'Style Variation B' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836048151098656440) ,p_theme_id=>42 ,p_name=>'STYLE_C' ,p_display_name=>'Classic' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836046434285656439) ,p_css_classes=>'t-TreeNav--classic' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ,p_help_text=>'Classic Style' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836048503572656441) ,p_theme_id=>42 ,p_name=>'ABOVE_LABEL' ,p_display_name=>'Above Label' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836048248837656440) ,p_css_classes=>'t-Tabs--iconsAbove' ,p_group_id=>wwv_flow_api.id(32836037480848656436) ,p_template_types=>'LIST' ,p_help_text=>'Places icons above tab label.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836048703432656441) ,p_theme_id=>42 ,p_name=>'FILL_LABELS' ,p_display_name=>'Fill Labels' ,p_display_sequence=>1 ,p_list_template_id=>wwv_flow_api.id(32836048248837656440) ,p_css_classes=>'t-Tabs--fillLabels' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ,p_help_text=>'Stretch tabs to fill to the width of the tabs container.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836048911058656441) ,p_theme_id=>42 ,p_name=>'INLINE_WITH_LABEL' ,p_display_name=>'Inline with Label' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836048248837656440) ,p_css_classes=>'t-Tabs--inlineIcons' ,p_group_id=>wwv_flow_api.id(32836037480848656436) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836049175190656441) ,p_theme_id=>42 ,p_name=>'LARGE' ,p_display_name=>'Large' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836048248837656440) ,p_css_classes=>'t-Tabs--large' ,p_group_id=>wwv_flow_api.id(32836043283013656438) ,p_template_types=>'LIST' ,p_help_text=>'Increases font size and white space around tab items.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836049323182656441) ,p_theme_id=>42 ,p_name=>'PILL' ,p_display_name=>'Pill' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836048248837656440) ,p_css_classes=>'t-Tabs--pill' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ,p_help_text=>'Displays tabs in a pill container.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836049531791656441) ,p_theme_id=>42 ,p_name=>'SIMPLE' ,p_display_name=>'Simple' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836048248837656440) ,p_css_classes=>'t-Tabs--simple' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ,p_help_text=>'A very simplistic tab UI.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836049764009656441) ,p_theme_id=>42 ,p_name=>'SMALL' ,p_display_name=>'Small' ,p_display_sequence=>5 ,p_list_template_id=>wwv_flow_api.id(32836048248837656440) ,p_css_classes=>'t-Tabs--small' ,p_group_id=>wwv_flow_api.id(32836043283013656438) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836050107285656441) ,p_theme_id=>42 ,p_name=>'2_COLUMNS' ,p_display_name=>'2 Columns' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836049808303656441) ,p_css_classes=>'t-MegaMenu--layout2Cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836050389868656442) ,p_theme_id=>42 ,p_name=>'3_COLUMNS' ,p_display_name=>'3 Columns' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836049808303656441) ,p_css_classes=>'t-MegaMenu--layout3Cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836050531086656442) ,p_theme_id=>42 ,p_name=>'4_COLUMNS' ,p_display_name=>'4 Columns' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836049808303656441) ,p_css_classes=>'t-MegaMenu--layout4Cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836050721982656442) ,p_theme_id=>42 ,p_name=>'5_COLUMNS' ,p_display_name=>'5 Columns' ,p_display_sequence=>40 ,p_list_template_id=>wwv_flow_api.id(32836049808303656441) ,p_css_classes=>'t-MegaMenu--layout5Cols' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836051001821656442) ,p_theme_id=>42 ,p_name=>'ADD_ACTIONS' ,p_display_name=>'Add Actions' ,p_display_sequence=>1 ,p_list_template_id=>wwv_flow_api.id(32836049808303656441) ,p_css_classes=>'js-addActions' ,p_template_types=>'LIST' ,p_help_text=>'Use this option to add shortcuts for menu items. Note that actions.js must be included on your page to support this functionality.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836051282573656442) ,p_theme_id=>42 ,p_name=>'CUSTOM' ,p_display_name=>'Custom' ,p_display_sequence=>60 ,p_list_template_id=>wwv_flow_api.id(32836049808303656441) ,p_css_classes=>'t-MegaMenu--layoutCustom' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836051403334656442) ,p_theme_id=>42 ,p_name=>'DISPLAY_MENU_CALLOUT' ,p_display_name=>'Display Menu Callout' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836049808303656441) ,p_css_classes=>'js-menu-callout' ,p_template_types=>'LIST' ,p_help_text=>'Displays a callout arrow that points to where the menu was activated from.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836051666132656442) ,p_theme_id=>42 ,p_name=>'FULL_WIDTH' ,p_display_name=>'Full Width' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836049808303656441) ,p_css_classes=>'t-MegaMenu--fullWidth' ,p_template_types=>'LIST' ,p_help_text=>'Stretches the menu to fill the width of the screen.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836051873055656442) ,p_theme_id=>42 ,p_name=>'STACKED' ,p_display_name=>'Stacked' ,p_display_sequence=>60 ,p_list_template_id=>wwv_flow_api.id(32836049808303656441) ,p_css_classes=>'t-MegaMenu--layoutStacked' ,p_group_id=>wwv_flow_api.id(32836030631005656433) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836052270402656442) ,p_theme_id=>42 ,p_name=>'ADD_ACTIONS' ,p_display_name=>'Add Actions' ,p_display_sequence=>1 ,p_list_template_id=>wwv_flow_api.id(32836051923839656442) ,p_css_classes=>'js-addActions' ,p_template_types=>'LIST' ,p_help_text=>'Use this option to add shortcuts for menu items. Note that actions.js must be included on your page to support this functionality.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836052480769656442) ,p_theme_id=>42 ,p_name=>'BEHAVE_LIKE_TABS' ,p_display_name=>'Behave Like Tabs' ,p_display_sequence=>1 ,p_list_template_id=>wwv_flow_api.id(32836051923839656442) ,p_css_classes=>'js-tabLike' ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836052612808656442) ,p_theme_id=>42 ,p_name=>'DISPLAY_MENU_CALLOUT' ,p_display_name=>'Display Menu Callout' ,p_display_sequence=>50 ,p_list_template_id=>wwv_flow_api.id(32836051923839656442) ,p_css_classes=>'js-menu-callout' ,p_template_types=>'LIST' ,p_help_text=>'Use this option to add display a callout for the menu.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836052843760656443) ,p_theme_id=>42 ,p_name=>'SHOW_SUB_MENU_ICONS' ,p_display_name=>'Show Sub Menu Icons' ,p_display_sequence=>1 ,p_list_template_id=>wwv_flow_api.id(32836051923839656442) ,p_css_classes=>'js-showSubMenuIcons' ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836053468130656443) ,p_theme_id=>42 ,p_name=>'DISPLAY_LABELS_SM' ,p_display_name=>'Display labels' ,p_display_sequence=>40 ,p_list_template_id=>wwv_flow_api.id(32836052912030656443) ,p_css_classes=>'t-NavTabs--displayLabels-sm' ,p_group_id=>wwv_flow_api.id(32836053270552656443) ,p_template_types=>'LIST' ,p_help_text=>'Displays the label for the list items below the icon' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836053651786656443) ,p_theme_id=>42 ,p_name=>'HIDE_LABELS_SM' ,p_display_name=>'Do not display labels' ,p_display_sequence=>50 ,p_list_template_id=>wwv_flow_api.id(32836052912030656443) ,p_css_classes=>'t-NavTabs--hiddenLabels-sm' ,p_group_id=>wwv_flow_api.id(32836053270552656443) ,p_template_types=>'LIST' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836054017069656443) ,p_theme_id=>42 ,p_name=>'LABEL_ABOVE_LG' ,p_display_name=>'Display labels above' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836052912030656443) ,p_css_classes=>'t-NavTabs--stacked' ,p_group_id=>wwv_flow_api.id(32836053833753656443) ,p_template_types=>'LIST' ,p_help_text=>'Display the label stacked above the icon and badge' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836054289841656443) ,p_theme_id=>42 ,p_name=>'LABEL_INLINE_LG' ,p_display_name=>'Display labels inline' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836052912030656443) ,p_css_classes=>'t-NavTabs--inlineLabels-lg' ,p_group_id=>wwv_flow_api.id(32836053833753656443) ,p_template_types=>'LIST' ,p_help_text=>'Display the label inline with the icon and badge' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836054402286656443) ,p_theme_id=>42 ,p_name=>'NO_LABEL_LG' ,p_display_name=>'Do not display labels' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836052912030656443) ,p_css_classes=>'t-NavTabs--hiddenLabels-lg' ,p_group_id=>wwv_flow_api.id(32836053833753656443) ,p_template_types=>'LIST' ,p_help_text=>'Hides the label for the list item' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836055003188656443) ,p_theme_id=>42 ,p_name=>'ALLSTEPS' ,p_display_name=>'All Steps' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836054590380656443) ,p_css_classes=>'t-WizardSteps--displayLabels' ,p_group_id=>wwv_flow_api.id(32836054825316656443) ,p_template_types=>'LIST' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836055250400656444) ,p_theme_id=>42 ,p_name=>'CURRENTSTEPONLY' ,p_display_name=>'Current Step Only' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(32836054590380656443) ,p_css_classes=>'t-WizardSteps--displayCurrentLabelOnly' ,p_group_id=>wwv_flow_api.id(32836054825316656443) ,p_template_types=>'LIST' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836055484468656444) ,p_theme_id=>42 ,p_name=>'HIDELABELS' ,p_display_name=>'Hide Labels' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(32836054590380656443) ,p_css_classes=>'t-WizardSteps--hideLabels' ,p_group_id=>wwv_flow_api.id(32836054825316656443) ,p_template_types=>'LIST' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836055699380656444) ,p_theme_id=>42 ,p_name=>'VERTICAL_LIST' ,p_display_name=>'Vertical Orientation' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(32836054590380656443) ,p_css_classes=>'t-WizardSteps--vertical' ,p_template_types=>'LIST' ,p_help_text=>'Displays the wizard progress list in a vertical orientation and is suitable for displaying within a side column of a page.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836055838327656444) ,p_theme_id=>42 ,p_name=>'WIZARD_PROGRESS_LINKS' ,p_display_name=>'Make Wizard Steps Clickable' ,p_display_sequence=>40 ,p_list_template_id=>wwv_flow_api.id(32836054590380656443) ,p_css_classes=>'js-wizardProgressLinks' ,p_template_types=>'LIST' ,p_help_text=>'This option will make the wizard steps clickable links.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836056723543656444) ,p_theme_id=>42 ,p_name=>'INDICATOR_ASTERISK' ,p_display_name=>'Asterisk' ,p_display_sequence=>10 ,p_field_template_id=>wwv_flow_api.id(32836056305124656444) ,p_css_classes=>'t-Form-fieldContainer--indicatorAsterisk' ,p_group_id=>wwv_flow_api.id(32836056594477656444) ,p_template_types=>'FIELD' ,p_help_text=>'Displays an asterisk * on required items.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836056943243656445) ,p_theme_id=>42 ,p_name=>'INDICATOR_LABEL' ,p_display_name=>'Inline Label' ,p_display_sequence=>20 ,p_field_template_id=>wwv_flow_api.id(32836056305124656444) ,p_css_classes=>'t-Form-fieldContainer--indicatorLabel' ,p_group_id=>wwv_flow_api.id(32836056594477656444) ,p_template_types=>'FIELD' ,p_help_text=>'Displays "Required" inline.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836057204023656445) ,p_theme_id=>42 ,p_name=>'INDICATOR_ASTERISK' ,p_display_name=>'Asterisk' ,p_display_sequence=>10 ,p_field_template_id=>wwv_flow_api.id(32836057003491656445) ,p_css_classes=>'t-Form-fieldContainer--indicatorAsterisk' ,p_group_id=>wwv_flow_api.id(32836056594477656444) ,p_template_types=>'FIELD' ,p_help_text=>'Displays an asterisk * on required items.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836057424833656445) ,p_theme_id=>42 ,p_name=>'INDICATOR_LABEL' ,p_display_name=>'Inline Label' ,p_display_sequence=>20 ,p_field_template_id=>wwv_flow_api.id(32836057003491656445) ,p_css_classes=>'t-Form-fieldContainer--indicatorLabel' ,p_group_id=>wwv_flow_api.id(32836056594477656444) ,p_template_types=>'FIELD' ,p_help_text=>'Displays "Required" inline.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836057704253656445) ,p_theme_id=>42 ,p_name=>'INDICATOR_ASTERISK' ,p_display_name=>'Asterisk' ,p_display_sequence=>10 ,p_field_template_id=>wwv_flow_api.id(32836057559451656445) ,p_css_classes=>'t-Form-fieldContainer--indicatorAsterisk' ,p_group_id=>wwv_flow_api.id(32836056594477656444) ,p_template_types=>'FIELD' ,p_help_text=>'Displays an asterisk * on required items.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836057998293656445) ,p_theme_id=>42 ,p_name=>'INDICATOR_LABEL' ,p_display_name=>'Inline Label' ,p_display_sequence=>20 ,p_field_template_id=>wwv_flow_api.id(32836057559451656445) ,p_css_classes=>'t-Form-fieldContainer--indicatorLabel' ,p_group_id=>wwv_flow_api.id(32836056594477656444) ,p_template_types=>'FIELD' ,p_help_text=>'Displays "Required" inline.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836058496901656446) ,p_theme_id=>42 ,p_name=>'PUSH' ,p_display_name=>'Push' ,p_display_sequence=>20 ,p_button_template_id=>wwv_flow_api.id(32836058048609656445) ,p_css_classes=>'t-Button--hoverIconPush' ,p_group_id=>wwv_flow_api.id(32836058228378656446) ,p_template_types=>'BUTTON' ,p_help_text=>'The icon will animate to the right or left on button hover or focus.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836058637308656446) ,p_theme_id=>42 ,p_name=>'SPIN' ,p_display_name=>'Spin' ,p_display_sequence=>10 ,p_button_template_id=>wwv_flow_api.id(32836058048609656445) ,p_css_classes=>'t-Button--hoverIconSpin' ,p_group_id=>wwv_flow_api.id(32836058228378656446) ,p_template_types=>'BUTTON' ,p_help_text=>'The icon will spin on button hover or focus.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836059021626656447) ,p_theme_id=>42 ,p_name=>'HIDE_LABEL_ON_MOBILE' ,p_display_name=>'Hide Label on Mobile' ,p_display_sequence=>10 ,p_button_template_id=>wwv_flow_api.id(32836058863771656446) ,p_css_classes=>'t-Button--mobileHideLabel' ,p_template_types=>'BUTTON' ,p_help_text=>'This template options hides the button label on small screens.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836059468090656447) ,p_theme_id=>42 ,p_name=>'LEFTICON' ,p_display_name=>'Left' ,p_display_sequence=>10 ,p_button_template_id=>wwv_flow_api.id(32836058863771656446) ,p_css_classes=>'t-Button--iconLeft' ,p_group_id=>wwv_flow_api.id(32836059201804656447) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836059669488656447) ,p_theme_id=>42 ,p_name=>'PUSH' ,p_display_name=>'Push' ,p_display_sequence=>20 ,p_button_template_id=>wwv_flow_api.id(32836058863771656446) ,p_css_classes=>'t-Button--hoverIconPush' ,p_group_id=>wwv_flow_api.id(32836058228378656446) ,p_template_types=>'BUTTON' ,p_help_text=>'The icon will animate to the right or left on button hover or focus.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836059823415656447) ,p_theme_id=>42 ,p_name=>'RIGHTICON' ,p_display_name=>'Right' ,p_display_sequence=>20 ,p_button_template_id=>wwv_flow_api.id(32836058863771656446) ,p_css_classes=>'t-Button--iconRight' ,p_group_id=>wwv_flow_api.id(32836059201804656447) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836060018712656447) ,p_theme_id=>42 ,p_name=>'SPIN' ,p_display_name=>'Spin' ,p_display_sequence=>10 ,p_button_template_id=>wwv_flow_api.id(32836058863771656446) ,p_css_classes=>'t-Button--hoverIconSpin' ,p_group_id=>wwv_flow_api.id(32836058228378656446) ,p_template_types=>'BUTTON' ,p_help_text=>'The icon will spin on button hover or focus.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836061954972656450) ,p_theme_id=>42 ,p_name=>'HEADING_LEVEL_H1' ,p_display_name=>'H1' ,p_display_sequence=>10 ,p_css_classes=>'js-headingLevel-1' ,p_group_id=>wwv_flow_api.id(32836061733324656450) ,p_template_types=>'REGION' ,p_help_text=>'H1' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836062107678656450) ,p_theme_id=>42 ,p_name=>'HEADING_LEVEL_H2' ,p_display_name=>'H2' ,p_display_sequence=>20 ,p_css_classes=>'js-headingLevel-2' ,p_group_id=>wwv_flow_api.id(32836061733324656450) ,p_template_types=>'REGION' ,p_help_text=>'H2' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836062303523656450) ,p_theme_id=>42 ,p_name=>'HEADING_LEVEL_H3' ,p_display_name=>'H3' ,p_display_sequence=>30 ,p_css_classes=>'js-headingLevel-3' ,p_group_id=>wwv_flow_api.id(32836061733324656450) ,p_template_types=>'REGION' ,p_help_text=>'H3' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836062522834656450) ,p_theme_id=>42 ,p_name=>'H4' ,p_display_name=>'H4' ,p_display_sequence=>40 ,p_css_classes=>'js-headingLevel-4' ,p_group_id=>wwv_flow_api.id(32836061733324656450) ,p_template_types=>'REGION' ,p_help_text=>'H4' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836062745463656450) ,p_theme_id=>42 ,p_name=>'HEADING_LEVEL_H5' ,p_display_name=>'H5' ,p_display_sequence=>50 ,p_css_classes=>'js-headingLevel-5' ,p_group_id=>wwv_flow_api.id(32836061733324656450) ,p_template_types=>'REGION' ,p_help_text=>'H5' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836062980026656450) ,p_theme_id=>42 ,p_name=>'HEADING_LEVEL_H6' ,p_display_name=>'H6' ,p_display_sequence=>60 ,p_css_classes=>'js-headingLevel-6' ,p_group_id=>wwv_flow_api.id(32836061733324656450) ,p_template_types=>'REGION' ,p_help_text=>'H6' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836063304196656450) ,p_theme_id=>42 ,p_name=>'FBM_LARGE' ,p_display_name=>'Large' ,p_display_sequence=>40 ,p_css_classes=>'margin-bottom-lg' ,p_group_id=>wwv_flow_api.id(32836063193414656450) ,p_template_types=>'FIELD' ,p_help_text=>'Adds a large bottom margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836063756240656450) ,p_theme_id=>42 ,p_name=>'RBM_LARGE' ,p_display_name=>'Large' ,p_display_sequence=>40 ,p_css_classes=>'margin-bottom-lg' ,p_group_id=>wwv_flow_api.id(32836063528190656450) ,p_template_types=>'REGION' ,p_help_text=>'Adds a large bottom margin to the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836063975606656450) ,p_theme_id=>42 ,p_name=>'FBM_MEDIUM' ,p_display_name=>'Medium' ,p_display_sequence=>30 ,p_css_classes=>'margin-bottom-md' ,p_group_id=>wwv_flow_api.id(32836063193414656450) ,p_template_types=>'FIELD' ,p_help_text=>'Adds a medium bottom margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836064144748656450) ,p_theme_id=>42 ,p_name=>'RBM_MEDIUM' ,p_display_name=>'Medium' ,p_display_sequence=>30 ,p_css_classes=>'margin-bottom-md' ,p_group_id=>wwv_flow_api.id(32836063528190656450) ,p_template_types=>'REGION' ,p_help_text=>'Adds a medium bottom margin to the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836064316165656451) ,p_theme_id=>42 ,p_name=>'FBM_NONE' ,p_display_name=>'None' ,p_display_sequence=>10 ,p_css_classes=>'margin-bottom-none' ,p_group_id=>wwv_flow_api.id(32836063193414656450) ,p_template_types=>'FIELD' ,p_help_text=>'Removes the bottom margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836064556813656451) ,p_theme_id=>42 ,p_name=>'RBM_NONE' ,p_display_name=>'None' ,p_display_sequence=>10 ,p_css_classes=>'margin-bottom-none' ,p_group_id=>wwv_flow_api.id(32836063528190656450) ,p_template_types=>'REGION' ,p_help_text=>'Removes the bottom margin for this region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836064729000656451) ,p_theme_id=>42 ,p_name=>'FBM_SMALL' ,p_display_name=>'Small' ,p_display_sequence=>20 ,p_css_classes=>'margin-bottom-sm' ,p_group_id=>wwv_flow_api.id(32836063193414656450) ,p_template_types=>'FIELD' ,p_help_text=>'Adds a small bottom margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836064938215656451) ,p_theme_id=>42 ,p_name=>'RBM_SMALL' ,p_display_name=>'Small' ,p_display_sequence=>20 ,p_css_classes=>'margin-bottom-sm' ,p_group_id=>wwv_flow_api.id(32836063528190656450) ,p_template_types=>'REGION' ,p_help_text=>'Adds a small bottom margin to the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836065386282656451) ,p_theme_id=>42 ,p_name=>'FLM_LARGE' ,p_display_name=>'Large' ,p_display_sequence=>40 ,p_css_classes=>'margin-left-lg' ,p_group_id=>wwv_flow_api.id(32836065192666656451) ,p_template_types=>'FIELD' ,p_help_text=>'Adds a large left margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836065728486656451) ,p_theme_id=>42 ,p_name=>'RLM_LARGE' ,p_display_name=>'Large' ,p_display_sequence=>40 ,p_css_classes=>'margin-left-lg' ,p_group_id=>wwv_flow_api.id(32836065564036656451) ,p_template_types=>'REGION' ,p_help_text=>'Adds a large right margin to the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836065997468656451) ,p_theme_id=>42 ,p_name=>'FLM_MEDIUM' ,p_display_name=>'Medium' ,p_display_sequence=>30 ,p_css_classes=>'margin-left-md' ,p_group_id=>wwv_flow_api.id(32836065192666656451) ,p_template_types=>'FIELD' ,p_help_text=>'Adds a medium left margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836066166438656451) ,p_theme_id=>42 ,p_name=>'RLM_MEDIUM' ,p_display_name=>'Medium' ,p_display_sequence=>30 ,p_css_classes=>'margin-left-md' ,p_group_id=>wwv_flow_api.id(32836065564036656451) ,p_template_types=>'REGION' ,p_help_text=>'Adds a medium right margin to the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836066378974656451) ,p_theme_id=>42 ,p_name=>'FLM_NONE' ,p_display_name=>'None' ,p_display_sequence=>10 ,p_css_classes=>'margin-left-none' ,p_group_id=>wwv_flow_api.id(32836065192666656451) ,p_template_types=>'FIELD' ,p_help_text=>'Removes the left margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836066517404656452) ,p_theme_id=>42 ,p_name=>'RLM_NONE' ,p_display_name=>'None' ,p_display_sequence=>10 ,p_css_classes=>'margin-left-none' ,p_group_id=>wwv_flow_api.id(32836065564036656451) ,p_template_types=>'REGION' ,p_help_text=>'Removes the left margin from the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836066716307656452) ,p_theme_id=>42 ,p_name=>'FLM_SMALL' ,p_display_name=>'Small' ,p_display_sequence=>20 ,p_css_classes=>'margin-left-sm' ,p_group_id=>wwv_flow_api.id(32836065192666656451) ,p_template_types=>'FIELD' ,p_help_text=>'Adds a small left margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836066993802656452) ,p_theme_id=>42 ,p_name=>'RLM_SMALL' ,p_display_name=>'Small' ,p_display_sequence=>20 ,p_css_classes=>'margin-left-sm' ,p_group_id=>wwv_flow_api.id(32836065564036656451) ,p_template_types=>'REGION' ,p_help_text=>'Adds a small left margin to the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836067308040656452) ,p_theme_id=>42 ,p_name=>'FRM_LARGE' ,p_display_name=>'Large' ,p_display_sequence=>40 ,p_css_classes=>'margin-right-lg' ,p_group_id=>wwv_flow_api.id(32836067170043656452) ,p_template_types=>'FIELD' ,p_help_text=>'Adds a large right margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836067704910656452) ,p_theme_id=>42 ,p_name=>'RRM_LARGE' ,p_display_name=>'Large' ,p_display_sequence=>40 ,p_css_classes=>'margin-right-lg' ,p_group_id=>wwv_flow_api.id(32836067589696656452) ,p_template_types=>'REGION' ,p_help_text=>'Adds a large right margin to the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836067940498656452) ,p_theme_id=>42 ,p_name=>'FRM_MEDIUM' ,p_display_name=>'Medium' ,p_display_sequence=>30 ,p_css_classes=>'margin-right-md' ,p_group_id=>wwv_flow_api.id(32836067170043656452) ,p_template_types=>'FIELD' ,p_help_text=>'Adds a medium right margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836068162067656452) ,p_theme_id=>42 ,p_name=>'RRM_MEDIUM' ,p_display_name=>'Medium' ,p_display_sequence=>30 ,p_css_classes=>'margin-right-md' ,p_group_id=>wwv_flow_api.id(32836067589696656452) ,p_template_types=>'REGION' ,p_help_text=>'Adds a medium right margin to the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836068332971656452) ,p_theme_id=>42 ,p_name=>'FRM_NONE' ,p_display_name=>'None' ,p_display_sequence=>10 ,p_css_classes=>'margin-right-none' ,p_group_id=>wwv_flow_api.id(32836067170043656452) ,p_template_types=>'FIELD' ,p_help_text=>'Removes the right margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836068558225656452) ,p_theme_id=>42 ,p_name=>'RRM_NONE' ,p_display_name=>'None' ,p_display_sequence=>10 ,p_css_classes=>'margin-right-none' ,p_group_id=>wwv_flow_api.id(32836067589696656452) ,p_template_types=>'REGION' ,p_help_text=>'Removes the right margin from the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836068731135656452) ,p_theme_id=>42 ,p_name=>'FRM_SMALL' ,p_display_name=>'Small' ,p_display_sequence=>20 ,p_css_classes=>'margin-right-sm' ,p_group_id=>wwv_flow_api.id(32836067170043656452) ,p_template_types=>'FIELD' ,p_help_text=>'Adds a small right margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836068944652656452) ,p_theme_id=>42 ,p_name=>'RRM_SMALL' ,p_display_name=>'Small' ,p_display_sequence=>20 ,p_css_classes=>'margin-right-sm' ,p_group_id=>wwv_flow_api.id(32836067589696656452) ,p_template_types=>'REGION' ,p_help_text=>'Adds a small right margin to the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836069307327656453) ,p_theme_id=>42 ,p_name=>'FTM_LARGE' ,p_display_name=>'Large' ,p_display_sequence=>40 ,p_css_classes=>'margin-top-lg' ,p_group_id=>wwv_flow_api.id(32836069134816656453) ,p_template_types=>'FIELD' ,p_help_text=>'Adds a large top margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836069776433656453) ,p_theme_id=>42 ,p_name=>'RTM_LARGE' ,p_display_name=>'Large' ,p_display_sequence=>40 ,p_css_classes=>'margin-top-lg' ,p_group_id=>wwv_flow_api.id(32836069505374656453) ,p_template_types=>'REGION' ,p_help_text=>'Adds a large top margin to the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836069927977656453) ,p_theme_id=>42 ,p_name=>'FTM_MEDIUM' ,p_display_name=>'Medium' ,p_display_sequence=>30 ,p_css_classes=>'margin-top-md' ,p_group_id=>wwv_flow_api.id(32836069134816656453) ,p_template_types=>'FIELD' ,p_help_text=>'Adds a medium top margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836070161860656453) ,p_theme_id=>42 ,p_name=>'RTM_MEDIUM' ,p_display_name=>'Medium' ,p_display_sequence=>30 ,p_css_classes=>'margin-top-md' ,p_group_id=>wwv_flow_api.id(32836069505374656453) ,p_template_types=>'REGION' ,p_help_text=>'Adds a medium top margin to the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836070383990656453) ,p_theme_id=>42 ,p_name=>'FTM_NONE' ,p_display_name=>'None' ,p_display_sequence=>10 ,p_css_classes=>'margin-top-none' ,p_group_id=>wwv_flow_api.id(32836069134816656453) ,p_template_types=>'FIELD' ,p_help_text=>'Removes the top margin for this field.' ); wwv_flow_api.component_end; end; / begin wwv_flow_api.component_begin ( p_version_yyyy_mm_dd=>'2021.04.15' ,p_release=>'21.1.2' ,p_default_workspace_id=>32532315908301997117 ,p_default_application_id=>105814 ,p_default_id_offset=>0 ,p_default_owner=>'WKSP_PERSONALWEBSITE' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836070525438656453) ,p_theme_id=>42 ,p_name=>'RTM_NONE' ,p_display_name=>'None' ,p_display_sequence=>10 ,p_css_classes=>'margin-top-none' ,p_group_id=>wwv_flow_api.id(32836069505374656453) ,p_template_types=>'REGION' ,p_help_text=>'Removes the top margin for this region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836070753404656453) ,p_theme_id=>42 ,p_name=>'FTM_SMALL' ,p_display_name=>'Small' ,p_display_sequence=>20 ,p_css_classes=>'margin-top-sm' ,p_group_id=>wwv_flow_api.id(32836069134816656453) ,p_template_types=>'FIELD' ,p_help_text=>'Adds a small top margin for this field.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836070984266656453) ,p_theme_id=>42 ,p_name=>'RTM_SMALL' ,p_display_name=>'Small' ,p_display_sequence=>20 ,p_css_classes=>'margin-top-sm' ,p_group_id=>wwv_flow_api.id(32836069505374656453) ,p_template_types=>'REGION' ,p_help_text=>'Adds a small top margin to the region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836071325795656453) ,p_theme_id=>42 ,p_name=>'DANGER' ,p_display_name=>'Danger' ,p_display_sequence=>30 ,p_css_classes=>'t-Button--danger' ,p_group_id=>wwv_flow_api.id(32836071195934656453) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836071706819656454) ,p_theme_id=>42 ,p_name=>'LARGEBOTTOMMARGIN' ,p_display_name=>'Large' ,p_display_sequence=>20 ,p_css_classes=>'t-Button--gapBottom' ,p_group_id=>wwv_flow_api.id(32836071539670656454) ,p_template_types=>'BUTTON' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836072153264656454) ,p_theme_id=>42 ,p_name=>'LARGELEFTMARGIN' ,p_display_name=>'Large' ,p_display_sequence=>20 ,p_css_classes=>'t-Button--gapLeft' ,p_group_id=>wwv_flow_api.id(32836071928655656454) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836072527112656454) ,p_theme_id=>42 ,p_name=>'LARGERIGHTMARGIN' ,p_display_name=>'Large' ,p_display_sequence=>20 ,p_css_classes=>'t-Button--gapRight' ,p_group_id=>wwv_flow_api.id(32836072368019656454) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836072974662656454) ,p_theme_id=>42 ,p_name=>'LARGETOPMARGIN' ,p_display_name=>'Large' ,p_display_sequence=>20 ,p_css_classes=>'t-Button--gapTop' ,p_group_id=>wwv_flow_api.id(32836072757265656454) ,p_template_types=>'BUTTON' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836073341259656454) ,p_theme_id=>42 ,p_name=>'LARGE' ,p_display_name=>'Large' ,p_display_sequence=>30 ,p_css_classes=>'t-Button--large' ,p_group_id=>wwv_flow_api.id(32836073116692656454) ,p_template_types=>'BUTTON' ,p_help_text=>'A large button.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836073790147656454) ,p_theme_id=>42 ,p_name=>'DISPLAY_AS_LINK' ,p_display_name=>'Display as Link' ,p_display_sequence=>30 ,p_css_classes=>'t-Button--link' ,p_group_id=>wwv_flow_api.id(32836073556048656454) ,p_template_types=>'BUTTON' ,p_help_text=>'This option makes the button appear as a text link.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836073971809656455) ,p_theme_id=>42 ,p_name=>'NOUI' ,p_display_name=>'Remove UI Decoration' ,p_display_sequence=>20 ,p_css_classes=>'t-Button--noUI' ,p_group_id=>wwv_flow_api.id(32836073556048656454) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836074184406656455) ,p_theme_id=>42 ,p_name=>'SMALLBOTTOMMARGIN' ,p_display_name=>'Small' ,p_display_sequence=>10 ,p_css_classes=>'t-Button--padBottom' ,p_group_id=>wwv_flow_api.id(32836071539670656454) ,p_template_types=>'BUTTON' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836074311469656455) ,p_theme_id=>42 ,p_name=>'SMALLLEFTMARGIN' ,p_display_name=>'Small' ,p_display_sequence=>10 ,p_css_classes=>'t-Button--padLeft' ,p_group_id=>wwv_flow_api.id(32836071928655656454) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836074589510656455) ,p_theme_id=>42 ,p_name=>'SMALLRIGHTMARGIN' ,p_display_name=>'Small' ,p_display_sequence=>10 ,p_css_classes=>'t-Button--padRight' ,p_group_id=>wwv_flow_api.id(32836072368019656454) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836074757550656455) ,p_theme_id=>42 ,p_name=>'SMALLTOPMARGIN' ,p_display_name=>'Small' ,p_display_sequence=>10 ,p_css_classes=>'t-Button--padTop' ,p_group_id=>wwv_flow_api.id(32836072757265656454) ,p_template_types=>'BUTTON' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836075178127656455) ,p_theme_id=>42 ,p_name=>'PILL' ,p_display_name=>'Inner Button' ,p_display_sequence=>20 ,p_css_classes=>'t-Button--pill' ,p_group_id=>wwv_flow_api.id(32836074951075656455) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836075335755656455) ,p_theme_id=>42 ,p_name=>'PILLEND' ,p_display_name=>'Last Button' ,p_display_sequence=>30 ,p_css_classes=>'t-Button--pillEnd' ,p_group_id=>wwv_flow_api.id(32836074951075656455) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836075579386656455) ,p_theme_id=>42 ,p_name=>'PILLSTART' ,p_display_name=>'First Button' ,p_display_sequence=>10 ,p_css_classes=>'t-Button--pillStart' ,p_group_id=>wwv_flow_api.id(32836074951075656455) ,p_template_types=>'BUTTON' ,p_help_text=>'Use this for the start of a pill button.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836075715096656455) ,p_theme_id=>42 ,p_name=>'PRIMARY' ,p_display_name=>'Primary' ,p_display_sequence=>10 ,p_css_classes=>'t-Button--primary' ,p_group_id=>wwv_flow_api.id(32836071195934656453) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836075943635656455) ,p_theme_id=>42 ,p_name=>'SIMPLE' ,p_display_name=>'Simple' ,p_display_sequence=>10 ,p_css_classes=>'t-Button--simple' ,p_group_id=>wwv_flow_api.id(32836073556048656454) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836076125871656455) ,p_theme_id=>42 ,p_name=>'SMALL' ,p_display_name=>'Small' ,p_display_sequence=>20 ,p_css_classes=>'t-Button--small' ,p_group_id=>wwv_flow_api.id(32836073116692656454) ,p_template_types=>'BUTTON' ,p_help_text=>'A small button.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836076590551656455) ,p_theme_id=>42 ,p_name=>'STRETCH' ,p_display_name=>'Stretch' ,p_display_sequence=>10 ,p_css_classes=>'t-Button--stretch' ,p_group_id=>wwv_flow_api.id(32836076391543656455) ,p_template_types=>'BUTTON' ,p_help_text=>'Stretches button to fill container' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836076701393656456) ,p_theme_id=>42 ,p_name=>'SUCCESS' ,p_display_name=>'Success' ,p_display_sequence=>40 ,p_css_classes=>'t-Button--success' ,p_group_id=>wwv_flow_api.id(32836071195934656453) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836076958055656456) ,p_theme_id=>42 ,p_name=>'TINY' ,p_display_name=>'Tiny' ,p_display_sequence=>10 ,p_css_classes=>'t-Button--tiny' ,p_group_id=>wwv_flow_api.id(32836073116692656454) ,p_template_types=>'BUTTON' ,p_help_text=>'A very small button.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836077165821656456) ,p_theme_id=>42 ,p_name=>'WARNING' ,p_display_name=>'Warning' ,p_display_sequence=>20 ,p_css_classes=>'t-Button--warning' ,p_group_id=>wwv_flow_api.id(32836071195934656453) ,p_template_types=>'BUTTON' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836077505847656456) ,p_theme_id=>42 ,p_name=>'SHOWFORMLABELSABOVE' ,p_display_name=>'Show Form Labels Above' ,p_display_sequence=>10 ,p_css_classes=>'t-Form--labelsAbove' ,p_group_id=>wwv_flow_api.id(32836077330558656456) ,p_template_types=>'REGION' ,p_help_text=>'Show form labels above input fields.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836077969983656456) ,p_theme_id=>42 ,p_name=>'FORMSIZELARGE' ,p_display_name=>'Large' ,p_display_sequence=>10 ,p_css_classes=>'t-Form--large' ,p_group_id=>wwv_flow_api.id(32836077769044656456) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836078358602656456) ,p_theme_id=>42 ,p_name=>'FORMLEFTLABELS' ,p_display_name=>'Left' ,p_display_sequence=>20 ,p_css_classes=>'t-Form--leftLabels' ,p_group_id=>wwv_flow_api.id(32836078115730656456) ,p_template_types=>'REGION' ,p_help_text=>'Align form labels to left.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836078788362656456) ,p_theme_id=>42 ,p_name=>'FORMREMOVEPADDING' ,p_display_name=>'None' ,p_display_sequence=>20 ,p_css_classes=>'t-Form--noPadding' ,p_group_id=>wwv_flow_api.id(32836078516898656456) ,p_template_types=>'REGION' ,p_help_text=>'Removes spacing between items.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836078948138656456) ,p_theme_id=>42 ,p_name=>'FORMSLIMPADDING' ,p_display_name=>'Slim' ,p_display_sequence=>10 ,p_css_classes=>'t-Form--slimPadding' ,p_group_id=>wwv_flow_api.id(32836078516898656456) ,p_template_types=>'REGION' ,p_help_text=>'Reduces form item spacing.' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836079127826656456) ,p_theme_id=>42 ,p_name=>'FORMSTANDARDPADDING' ,p_display_name=>'Standard' ,p_display_sequence=>5 ,p_css_classes=>'t-Form--standardPadding' ,p_group_id=>wwv_flow_api.id(32836078516898656456) ,p_template_types=>'REGION' ,p_help_text=>'Uses the standard spacing between items.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836079572418656457) ,p_theme_id=>42 ,p_name=>'STRETCH_FORM_FIELDS' ,p_display_name=>'Stretch Form Fields' ,p_display_sequence=>10 ,p_css_classes=>'t-Form--stretchInputs' ,p_group_id=>wwv_flow_api.id(32836079331285656457) ,p_template_types=>'REGION' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836079724550656457) ,p_theme_id=>42 ,p_name=>'FORMSIZEXLARGE' ,p_display_name=>'X Large' ,p_display_sequence=>20 ,p_css_classes=>'t-Form--xlarge' ,p_group_id=>wwv_flow_api.id(32836077769044656456) ,p_template_types=>'REGION' ,p_is_advanced=>'N' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836080137131656457) ,p_theme_id=>42 ,p_name=>'LARGE_FIELD' ,p_display_name=>'Large' ,p_display_sequence=>10 ,p_css_classes=>'t-Form-fieldContainer--large' ,p_group_id=>wwv_flow_api.id(32836079983813656457) ,p_template_types=>'FIELD' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836080547315656457) ,p_theme_id=>42 ,p_name=>'POST_TEXT_BLOCK' ,p_display_name=>'Display as Block' ,p_display_sequence=>10 ,p_css_classes=>'t-Form-fieldContainer--postTextBlock' ,p_group_id=>wwv_flow_api.id(32836080333649656457) ,p_template_types=>'FIELD' ,p_help_text=>'Displays the Item Post Text in a block style immediately after the item.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836080990742656457) ,p_theme_id=>42 ,p_name=>'PRE_TEXT_BLOCK' ,p_display_name=>'Display as Block' ,p_display_sequence=>10 ,p_css_classes=>'t-Form-fieldContainer--preTextBlock' ,p_group_id=>wwv_flow_api.id(32836080774087656457) ,p_template_types=>'FIELD' ,p_help_text=>'Displays the Item Pre Text in a block style immediately before the item.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836081392465656458) ,p_theme_id=>42 ,p_name=>'DISPLAY_AS_PILL_BUTTON' ,p_display_name=>'Display as Pill Button' ,p_display_sequence=>10 ,p_css_classes=>'t-Form-fieldContainer--radioButtonGroup' ,p_group_id=>wwv_flow_api.id(32836081113932656457) ,p_template_types=>'FIELD' ,p_help_text=>'Displays the radio buttons to look like a button set / pill button. Note that the the radio buttons must all be in the same row for this option to work.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836081514773656458) ,p_theme_id=>42 ,p_name=>'STRETCH_FORM_ITEM' ,p_display_name=>'Stretch Form Item' ,p_display_sequence=>10 ,p_css_classes=>'t-Form-fieldContainer--stretchInputs' ,p_template_types=>'FIELD' ,p_help_text=>'Stretches the form item to fill its container.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836081711544656458) ,p_theme_id=>42 ,p_name=>'X_LARGE_SIZE' ,p_display_name=>'X Large' ,p_display_sequence=>20 ,p_css_classes=>'t-Form-fieldContainer--xlarge' ,p_group_id=>wwv_flow_api.id(32836079983813656457) ,p_template_types=>'FIELD' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836082190889656458) ,p_theme_id=>42 ,p_name=>'REMOVE_PADDING' ,p_display_name=>'Remove Padding' ,p_display_sequence=>1 ,p_css_classes=>'t-PageBody--noContentPadding' ,p_group_id=>wwv_flow_api.id(32836081938018656458) ,p_template_types=>'PAGE' ,p_help_text=>'Removes padding from the content region.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(32836082543239656458) ,p_theme_id=>42 ,p_name=>'HIDE_WHEN_ALL_ROWS_DISPLAYED' ,p_display_name=>'Hide when all rows displayed' ,p_display_sequence=>10 ,p_css_classes=>'t-Report--hideNoPagination' ,p_group_id=>wwv_flow_api.id(32836082306290656458) ,p_template_types=>'REPORT' ,p_help_text=>'This option will hide the pagination when all rows are displayed.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(33088961079222113253) ,p_theme_id=>42 ,p_name=>'DISPLAY_MENU_CALLOUT' ,p_display_name=>'Display Menu Callout' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(33088960600295113250) ,p_css_classes=>'js-menu-callout' ,p_template_types=>'LIST' ,p_help_text=>'Use this option to add display a callout for the menu.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(33090779114318295480) ,p_theme_id=>42 ,p_name=>'ADD_ACTIONS' ,p_display_name=>'Add Actions' ,p_display_sequence=>1 ,p_list_template_id=>wwv_flow_api.id(33090778737777295479) ,p_css_classes=>'js-addActions' ,p_template_types=>'LIST' ,p_help_text=>'Use this option to add shortcuts for menu items. Note that actions.js must be included on your page to support this functionality.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(33090779540850295480) ,p_theme_id=>42 ,p_name=>'COLLAPSED_DEFAULT' ,p_display_name=>'Collapsed by Default' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(33090778737777295479) ,p_css_classes=>'js-defaultCollapsed' ,p_template_types=>'LIST' ,p_help_text=>'This option will load the side navigation menu in a collapsed state by default.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(33090779903101295480) ,p_theme_id=>42 ,p_name=>'COLLAPSE_STYLE_HIDDEN' ,p_display_name=>'Hidden' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(33090778737777295479) ,p_css_classes=>'js-navCollapsed--hidden' ,p_group_id=>wwv_flow_api.id(32836047107128656440) ,p_template_types=>'LIST' ,p_help_text=>'Completely hide the navigation menu when it is collapsed.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(33090780328933295480) ,p_theme_id=>42 ,p_name=>'ICON_DEFAULT' ,p_display_name=>'Icon (Default)' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(33090778737777295479) ,p_css_classes=>'js-navCollapsed--default' ,p_group_id=>wwv_flow_api.id(32836047107128656440) ,p_template_types=>'LIST' ,p_help_text=>'Display icons when the navigation menu is collapsed for large screens.' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(33090780745862295481) ,p_theme_id=>42 ,p_name=>'STYLE_A' ,p_display_name=>'Style A' ,p_display_sequence=>20 ,p_list_template_id=>wwv_flow_api.id(33090778737777295479) ,p_css_classes=>'t-TreeNav--styleA' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ,p_help_text=>'Style Variation A' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(33090781119366295481) ,p_theme_id=>42 ,p_name=>'STYLE_B' ,p_display_name=>'Style B' ,p_display_sequence=>30 ,p_list_template_id=>wwv_flow_api.id(33090778737777295479) ,p_css_classes=>'t-TreeNav--styleB' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ,p_help_text=>'Style Variation B' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(33090781557366295481) ,p_theme_id=>42 ,p_name=>'STYLE_C' ,p_display_name=>'Classic' ,p_display_sequence=>10 ,p_list_template_id=>wwv_flow_api.id(33090778737777295479) ,p_css_classes=>'t-TreeNav--classic' ,p_group_id=>wwv_flow_api.id(32836031838085656433) ,p_template_types=>'LIST' ,p_help_text=>'Classic Style' ); wwv_flow_api.create_template_option( p_id=>wwv_flow_api.id(35874346659643053301) ,p_theme_id=>42 ,p_name=>'STICKY_HEADER_ON_MOBILE' ,p_display_name=>'Sticky Header on Mobile' ,p_display_sequence=>100 ,p_page_template_id=>wwv_flow_api.id(35874342742138053298) ,p_css_classes=>'js-pageStickyMobileHeader' ,p_template_types=>'PAGE' ,p_help_text=>'This will position the contents of the Breadcrumb Bar region position so it sticks to the top of the screen for small screens.' ); wwv_flow_api.component_end; end; /
<filename>oracle/pl-sql/009-triggers/12-triggers-mutating-table-errors.sql SET SERVEROUTPUT ON; /* mutating table error - row level triggers | statemet level only in case of delete cascade mutating table is: a) a table that being modified b) a table that might be update with the DELETE CASCADE handle errors: - store related data in another table (the data data u want to query) - store related data in a package (for statement ...) - use compound triggers (best solution!) */ CREATE OR REPLACE TRIGGER trg_mutating_emps before INSERT OR UPDATE ON employees_copy FOR EACH row DECLARE v_interval NUMBER := 15; v_avg_salary NUMBER; BEGIN SELECT AVG(salary) INTO v_avg_salary FROM employees_copy WHERE department_id = :new.department_id; IF :new.salary > v_avg_salary*v_interval/100 THEN RAISE_APPLICATION_ERROR( -20005, 'A raise cannot be '|| v_interval|| ' percent higher than its department''s average'); END IF; END; --uodate employee_copy set salary = salary + 1 WHERE EMPLOYEE_ID = 154; /* mutating table error within a compound trigger*/ CREATE OR REPLACE TRIGGER trg_comp_emps FOR INSERT OR UPDATE OR DELETE ON employees_copy compound TRIGGER type t_avg_dept_salaries IS TABLE OF employees_copy.salary%type INDEX BY pls_integer; avg_dept_salaries t_avg_dept_salaries; before STATEMENT IS BEGIN FOR avg_sal IN (SELECT AVG(salary) salary, NVL(department_id,999) department_id FROM employees_copy GROUP BY NVL(department_id,999) ) LOOP avg_dept_salaries(avg_sal.department_id) := avg_sal.salary; END LOOP; END before STATEMENT; AFTER EACH row IS v_interval NUMBER := 15; BEGIN UPDATE employees_copy SET commission_pct = commission_pct; IF :new.salary > avg_dept_salaries(:new.department_id)*v_interval/100 THEN RAISE_APPLICATION_ERROR( -20005, 'A raise cannot be '|| v_interval|| ' percent higher than its department''s average'); END IF; END AFTER EACH row; AFTER STATEMENT IS BEGIN dbms_output.put_line('All the updates are done successfully!.'); END AFTER STATEMENT; END; /* getting maximum level of recursive SQL levels*/ CREATE OR REPLACE TRIGGER trg_comp_emps FOR INSERT OR UPDATE OR DELETE ON employees_copy compound TRIGGER type t_avg_dept_salaries IS TABLE OF employees_copy.salary%type INDEX BY pls_integer; avg_dept_salaries t_avg_dept_salaries; before STATEMENT IS BEGIN UPDATE employees_copy SET commission_pct = commission_pct WHERE employee_id = 100; FOR avg_sal IN (SELECT AVG(salary) salary, NVL(department_id,999) department_id FROM employees_copy GROUP BY NVL(department_id,999) ) LOOP avg_dept_salaries(avg_sal.department_id) := avg_sal.salary; END LOOP; END before STATEMENT; AFTER EACH row IS v_interval NUMBER := 15; BEGIN IF :new.salary > avg_dept_salaries(:new.department_id)*v_interval/100 THEN RAISE_APPLICATION_ERROR( -20005, 'A raise cannot be '|| v_interval|| ' percent higher than its department''s average'); END IF; END AFTER EACH row; AFTER STATEMENT IS BEGIN UPDATE employees_copy SET commission_pct = commission_pct WHERE employee_id = 100; dbms_output.put_line('All the updates are done successfully!.'); END AFTER STATEMENT; END;
USE Geography SELECT TOP 30 CountryName, Population FROM Countries WHERE ContinentCode = 'EU' ORDER BY Population DESC
alter table uttaksresultat drop column uttaksplan;
<filename>DBMS/M01_MySQL/ExamPreparation/EP_2018-10-21/Solutions/P01_Insert.sql USE `cjms`; INSERT INTO `travel_cards`(`card_number`, `job_during_journey`, `colonist_id`, `journey_id`) SELECT ( CASE WHEN c.`birth_date` > '1980-01-01' THEN CONCAT_WS('', YEAR(c.`birth_date`), DAY(c.`birth_date`), SUBSTR(c.`ucn`, 1, 4)) ELSE CONCAT_WS('', YEAR(c.`birth_date`), MONTH(c.`birth_date`), substr(c.`ucn`, 7, 10)) END ) AS `card_number`, ( CASE WHEN c.`id` % 2 = 0 THEN 'Pilot' WHEN c.`id` % 3 = 0 THEN 'Cook' ELSE 'Engineer' END ) AS `job_during_journey`, c.`id`, ( SUBSTR(c.`ucn`, 1,1) ) AS `journey_id` FROM `colonists` AS `c` WHERE c.`id` between 96 AND 100;
/*Departments Info*/ SELECT department_id, COUNT(*) AS `Numbers of employees` FROM employees GROUP BY department_id ORDER BY department_id, `Numbers of employees`; /*Average salary*/ SELECT department_id, ROUND(AVG(salary),2) AS `Average Salary` FROM employees GROUP BY department_id ORDER BY department_id; /*addresses with towns*/ SELECT e.first_name, e.last_name, t.name AS town, a.address_text FROM employees AS e JOIN addresses AS a ON e.address_id = a.address_id JOIN towns AS t ON a.town_id = t.town_id ORDER BY e.first_name, e.last_name LIMIT 5; /*sales employee*/ SELECT e.employee_id, e.first_name, e.last_name, d.name AS `department_name` FROM employees AS e INNER JOIN departments AS d ON e.department_id = d.department_id WHERE d.name='Sales' ORDER BY e.employee_id desc LIMIT 5; /*employees hired after*/ SELECT e.first_name, e.last_name, e.hire_date, d.name AS dept_name FROM employees AS e JOIN departments AS d ON e.department_id = d.department_id WHERE e.hire_date >= '1999-01-01 23:59:59' AND (d.name='Sales' OR d.name='Finance') ORDER BY e.hire_date asc; /*countries without any mountain*/ SELECT COUNT(*) AS `country_count` FROM countries AS c LEFT JOIN mountains_countries AS mc ON c.country_code = mc.country_code WHERE mc.mountain_id IS NULL; /*min average salary*/ SELECT MIN(averages.AverageSalary) as min_average_salary FROM (SELECT AVG(e.Salary) AS AverageSalary FROM Employees as e GROUP BY e.department_id) AS averages;
<reponame>longshaww/RentApartment INSERT INTO apartment.dbo.BenChoThue_TienNghiBenChoThue (MaBCT,MaTienNghiBCT) VALUES (N'BCT1',N'TNBCT1'), (N'BCT1',N'TNBCT10'), (N'BCT1',N'TNBCT11'), (N'BCT1',N'TNBCT12'), (N'BCT1',N'TNBCT13'), (N'BCT1',N'TNBCT14'), (N'BCT1',N'TNBCT15'), (N'BCT1',N'TNBCT16'), (N'BCT1',N'TNBCT17'), (N'BCT1',N'TNBCT18'); INSERT INTO apartment.dbo.BenChoThue_TienNghiBenChoThue (MaBCT,MaTienNghiBCT) VALUES (N'BCT1',N'TNBCT19'), (N'BCT1',N'TNBCT2'), (N'BCT1',N'TNBCT20'), (N'BCT1',N'TNBCT21'), (N'BCT1',N'TNBCT22'), (N'BCT1',N'TNBCT23'), (N'BCT1',N'TNBCT24'), (N'BCT1',N'TNBCT25'), (N'BCT1',N'TNBCT26'), (N'BCT1',N'TNBCT27'); INSERT INTO apartment.dbo.BenChoThue_TienNghiBenChoThue (MaBCT,MaTienNghiBCT) VALUES (N'BCT1',N'TNBCT28'), (N'BCT1',N'TNBCT29'), (N'BCT1',N'TNBCT3'), (N'BCT1',N'TNBCT30'), (N'BCT1',N'TNBCT31'), (N'BCT1',N'TNBCT32'), (N'BCT1',N'TNBCT33'), (N'BCT1',N'TNBCT34'), (N'BCT1',N'TNBCT35'), (N'BCT1',N'TNBCT36'); INSERT INTO apartment.dbo.BenChoThue_TienNghiBenChoThue (MaBCT,MaTienNghiBCT) VALUES (N'BCT1',N'TNBCT37'), (N'BCT1',N'TNBCT38'), (N'BCT1',N'TNBCT39'), (N'BCT1',N'TNBCT4'), (N'BCT1',N'TNBCT40'), (N'BCT1',N'TNBCT41'), (N'BCT1',N'TNBCT42'), (N'BCT1',N'TNBCT43'), (N'BCT1',N'TNBCT44'), (N'BCT1',N'TNBCT45'); INSERT INTO apartment.dbo.BenChoThue_TienNghiBenChoThue (MaBCT,MaTienNghiBCT) VALUES (N'BCT1',N'TNBCT46'), (N'BCT1',N'TNBCT47'), (N'BCT1',N'TNBCT48'), (N'BCT1',N'TNBCT49'), (N'BCT1',N'TNBCT5'), (N'BCT1',N'TNBCT50'), (N'BCT1',N'TNBCT51'), (N'BCT1',N'TNBCT52'), (N'BCT1',N'TNBCT53'), (N'BCT1',N'TNBCT54'); INSERT INTO apartment.dbo.BenChoThue_TienNghiBenChoThue (MaBCT,MaTienNghiBCT) VALUES (N'BCT1',N'TNBCT55'), (N'BCT1',N'TNBCT56'), (N'BCT1',N'TNBCT57'), (N'BCT1',N'TNBCT6'), (N'BCT1',N'TNBCT7'), (N'BCT1',N'TNBCT8'), (N'BCT1',N'TNBCT9'), (N'BCT2',N'TNBCT1'), (N'BCT2',N'TNBCT10'), (N'BCT2',N'TNBCT11'); INSERT INTO apartment.dbo.BenChoThue_TienNghiBenChoThue (MaBCT,MaTienNghiBCT) VALUES (N'BCT2',N'TNBCT12'), (N'BCT2',N'TNBCT13'), (N'BCT2',N'TNBCT14'), (N'BCT2',N'TNBCT15'), (N'BCT2',N'TNBCT16'), (N'BCT2',N'TNBCT17'), (N'BCT2',N'TNBCT18'), (N'BCT2',N'TNBCT19'), (N'BCT2',N'TNBCT2'), (N'BCT2',N'TNBCT20'); INSERT INTO apartment.dbo.BenChoThue_TienNghiBenChoThue (MaBCT,MaTienNghiBCT) VALUES (N'BCT2',N'TNBCT21'), (N'BCT2',N'TNBCT22'), (N'BCT2',N'TNBCT23'), (N'BCT2',N'TNBCT24'), (N'BCT2',N'TNBCT25'), (N'BCT2',N'TNBCT26'), (N'BCT2',N'TNBCT27'), (N'BCT2',N'TNBCT28'), (N'BCT2',N'TNBCT29'), (N'BCT2',N'TNBCT3'); INSERT INTO apartment.dbo.BenChoThue_TienNghiBenChoThue (MaBCT,MaTienNghiBCT) VALUES (N'BCT2',N'TNBCT30'), (N'BCT2',N'TNBCT31'), (N'BCT2',N'TNBCT32'), (N'BCT2',N'TNBCT33'), (N'BCT2',N'TNBCT34'), (N'BCT2',N'TNBCT35'), (N'BCT2',N'TNBCT36'), (N'BCT2',N'TNBCT37'), (N'BCT2',N'TNBCT38'), (N'BCT2',N'TNBCT39'); INSERT INTO apartment.dbo.BenChoThue_TienNghiBenChoThue (MaBCT,MaTienNghiBCT) VALUES (N'BCT2',N'TNBCT4'), (N'BCT2',N'TNBCT40'), (N'BCT2',N'TNBCT41'), (N'BCT2',N'TNBCT42'), (N'BCT2',N'TNBCT43'), (N'BCT2',N'TNBCT44'), (N'BCT2',N'TNBCT45'), (N'BCT2',N'TNBCT46'), (N'BCT2',N'TNBCT47'), (N'BCT2',N'TNBCT48'); INSERT INTO apartment.dbo.BenChoThue_TienNghiBenChoThue (MaBCT,MaTienNghiBCT) VALUES (N'BCT2',N'TNBCT49'), (N'BCT2',N'TNBCT5'), (N'BCT2',N'TNBCT50'), (N'BCT2',N'TNBCT51'), (N'BCT2',N'TNBCT52'), (N'BCT2',N'TNBCT53'), (N'BCT2',N'TNBCT54'), (N'BCT2',N'TNBCT55'), (N'BCT2',N'TNBCT56'), (N'BCT2',N'TNBCT57'); INSERT INTO apartment.dbo.BenChoThue_TienNghiBenChoThue (MaBCT,MaTienNghiBCT) VALUES (N'BCT2',N'TNBCT6'), (N'BCT2',N'TNBCT7'), (N'BCT2',N'TNBCT8'), (N'BCT2',N'TNBCT9');
<reponame>opatut/migr8 this is the description for test02a -- UP -- ALTER TABLE test01 ADD COLUMN test02a INT; -- DOWN -- ALTER TABLE test01 DROP COLUMN test02a;
CREATE PROCEDURE [dbo].[ContactLink_Set] ( @RecordId int, @ObjectId int, @ContactID int, @Mode int ) AS SET NOCOUNT ON DECLARE @Id int SET @Id = (SELECT TOP 1 Id FROM ContactLink WHERE ObjectId=@ObjectId AND RecordId=@RecordId) if(@Id is null) begin /* INSERT */ INSERT INTO ContactLink (RecordId, ObjectId, ContactID, Mode) VALUES (@RecordId,@ObjectId, @ContactID, @Mode) end else begin /* UPDATE */ UPDATE ContactLink SET ContactID = @ContactID, Mode=@Mode WHERE (Id = @Id) end RETURN
SELECT * FROM [nt:unstructured] WHERE [jcr:mixinTypes] = "sulu:page" AND [i18n:%s-state] = 1'; SELECT * FROM [nt:unstructured] AS a WHERE ' . implode(' AND ', $where); SELECT locale FROM ca_category_translations WHERE idCategories = c.id LIMIT 1) WHERE default_locale = ""; SELECT u FROM SuluCoreBundle:Example u ORDER BY u.sortField ASC', $dql); SELECT %s FROM [nt:unstructured] as page WHERE page.[jcr:mixinTypes] = 'sulu:page' AND (isdescendantnode(page, '/cmf/%s/contents') OR issamenode(page, '/cmf/%s/contents')) UPDATE me_collection_types SET collection_type_key=collection WHERE id=1 SELECT * FROM [nt:unstructured] WHERE [jcr:mixinTypes] = 'sulu:snippet'" --apply-closure="\$node->setProperty('i18n:<locale>-state', 2); SELECT u FROM SuluCoreBundle:Example u WHERE (u.field LIKE :search)', $dql); SELECT * FROM [nt:unstructured] AS a WHERE ' . implode(' OR ', $where); SELECT u FROM SuluCoreBundle:Example u WHERE u.field1 = 1 AND u.field2 = 2', $dql); SELECT u FROM SuluCoreBundle:Example u', $dql);
--Step 1 Let's create table IF OBJECT_ID(N'dbo.Twitter', N'U') IS NOT NULL BEGIN DROP TABLE [dbo].[Twitter] END GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Twitter] ( [Time] [nvarchar](4000) NULL, [Hashtag] [nvarchar](4000) NULL, [Tweet] [nvarchar](4000) NULL, [City] [nvarchar](4000) NULL, [UserName] [nvarchar](4000) NULL, [RetweetCount] [int] NULL, [FavouriteCount] [int] NULL, [Sentiment] [nvarchar](4000) NULL, [SentimentScore] [int] NULL, [IsRetweet] [int] NULL, [HourOfDay] [nvarchar](4000) NULL, [Language] [nvarchar](4000) NULL ) WITH ( DISTRIBUTION = ROUND_ROBIN, CLUSTERED COLUMNSTORE INDEX ); GO -- Step 2 Copy data from all PARQUET files in to the table COPY INTO [dbo].[Twitter] FROM 'https://#STORAGE_ACCOUNT_NAME#.blob.core.windows.net/twitterdata/dbo.TwitterAnalytics.parquet' WITH ( FILE_TYPE = 'PARQUET', CREDENTIAL=(IDENTITY= 'Shared Access Signature', SECRET='#SAS_KEY#') ); GO -- Step 3 Lets query table SELECT TOP 10 * FROM [dbo].[Twitter]; GO
CREATE SEQUENCE IF NOT EXISTS table2_col1_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; CREATE TABLE IF NOT EXISTS table2 ( col1 integer DEFAULT nextval('table2_col1_seq'::regclass) NOT NULL ); ALTER TABLE table2 OWNER TO fordfrog; ALTER SEQUENCE table2_col1_seq OWNED BY table2.col1;
<gh_stars>1-10 ## 根据习题查询 #macro($listByQuestion(questionId)) SELECT t.* from question_metaknow t where t.question_id =:questionId #end ## 根据习题查询 #macro($listByQuestions(questionIds)) SELECT t.* from question_metaknow t where t.question_id in (:questionIds) #end ## 根据学科获得元知识点对应的没有新知识点习题个数 #macro($listQuestionCountsByNoNewKnowledge(subjectCode)) SELECT t.`meta_code` AS code,COUNT(t.`question_id`) as counts FROM `question_metaknow` t INNER JOIN `meta_knowpoint` mk ON mk.code=t.`meta_code` AND mk.subject_code=:subjectCode INNER JOIN question q ON q.id = t.`question_id` WHERE q.knowledge_create_id IS NULL GROUP BY t.`meta_code` #end
<gh_stars>1-10 /** * Database schema required by \yii\i18n\DbMessageSource. * * @author <NAME> <<EMAIL>> * @link http://www.yiiframework.com/ * @copyright 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ * @since 2.0.7 */ drop table if exists "source_message"; drop table if exists "message"; CREATE TABLE "source_message" ( "id" integer NOT NULL PRIMARY KEY, "category" varchar(255), "message" clob ); CREATE SEQUENCE "source_message_SEQ"; CREATE TABLE "message" ( "id" integer NOT NULL, "language" varchar(16) NOT NULL, "translation" clob, primary key ("id", "language"), foreign key ("id") references "source_message" ("id") on delete cascade );
<reponame>NCIP/national-biomedical-image-archive /*L Copyright SAIC, Ellumen and RSNA (CTP) Distributed under the OSI-approved BSD 3-Clause License. See http://ncip.github.com/national-biomedical-image-archive/LICENSE.txt for details. L*/ -- -- The following entries creates a super admin application incase you decide -- to use this database to run UPT also. In that case you need to provide -- the project login id and name for the super admin. -- However in incase you are using this database just to host the application's -- authorization schema, these enteries are not used and hence they can be left as -- it is. -- insert into csm_application(APPLICATION_NAME,APPLICATION_DESCRIPTION,DECLARATIVE_FLAG,ACTIVE_FLAG,UPDATE_DATE) values ('csmupt','CSM UPT Super Admin Application',0,0,GETDATE()); insert into csm_user (LOGIN_NAME,FIRST_NAME,LAST_NAME,PASSWORD,UPDATE_DATE) values ('<<super_admin_login_id>>','<<super_admin_first_name>>','<<super_admin_last_name>>','zJPWCwDeSgG8j2uyHEABIQ==',GETDATE()); insert into csm_protection_element(PROTECTION_ELEMENT_NAME,PROTECTION_ELEMENT_DESCRIPTION,OBJECT_ID,APPLICATION_ID,UPDATE_DATE) values('csmupt','UPT Super Admin Application','csmupt',1,GETDATE()); insert into csm_user_pe(PROTECTION_ELEMENT_ID,USER_ID,UPDATE_DATE) values(1,1,GETDATE()); -- -- The following entry is for your application. -- Replace <<application_context>> with your application name. -- INSERT INTO csm_application(APPLICATION_NAME,APPLICATION_DESCRIPTION,DECLARATIVE_FLAG,ACTIVE_FLAG,UPDATE_DATE) VALUES ('<<application_context_name>>','Application Description',0,0,GETDATE()); insert into csm_protection_element(PROTECTION_ELEMENT_NAME,PROTECTION_ELEMENT_DESCRIPTION,OBJECT_ID,APPLICATION_ID,UPDATE_DATE) values('<<application_context_name>>','<<application_context_name>> Admin Application','<<application_context_name>>',1,GETDATE()); -- -- The following entries are Common Set of Privileges -- INSERT INTO csm_privilege (privilege_name, privilege_description, update_date) VALUES('CREATE','This privilege grants permission to a user to create an entity. This entity can be an object, a database entry, or a resource such as a network connection', GETDATE()); INSERT INTO csm_privilege (privilege_name, privilege_description, update_date) VALUES('ACCESS','This privilege allows a user to access a particular resource. Examples of resources include a network or database connection, socket, module of the application, or even the application itself', GETDATE()); INSERT INTO csm_privilege (privilege_name, privilege_description, update_date) VALUES('READ','This privilege permits the user to read data from a file, URL, database, an object, etc. This can be used at an entity level signifying that the user is allowed to read data about a particular entry', GETDATE()); INSERT INTO csm_privilege (privilege_name, privilege_description, update_date) VALUES('WRITE','This privilege allows a user to write data to a file, URL, database, an object, etc. This can be used at an entity level signifying that the user is allowed to write data about a particular entity', GETDATE()); INSERT INTO csm_privilege (privilege_name, privilege_description, update_date) VALUES('UPDATE','This privilege grants permission at an entity level and signifies that the user is allowed to update data for a particular entity. Entities may include an object, object attribute, database row etc', GETDATE()); INSERT INTO csm_privilege (privilege_name, privilege_description, update_date) VALUES('DELETE','This privilege permits a user to delete a logical entity. This entity can be an object, a database entry, a resource such as a network connection, etc', GETDATE()); INSERT INTO csm_privilege (privilege_name, privilege_description, update_date) VALUES('EXECUTE','This privilege allows a user to execute a particular resource. The resource can be a method, function, behavior of the application, URL, button etc', GETDATE());
<filename>dspace-api/src/main/resources/org/dspace/storage/rdbms/sqlmigration/oracle/V6.0_2016.07.26__DS-3277_fix_handle_assignment.sql -- -- The contents of this file are subject to the license and copyright -- detailed in the LICENSE and NOTICE files at the root of the source -- tree and available online at -- -- http://www.dspace.org/license/ -- ---------------------------------------------------------------------------------- -- DS-3277 : 'handle_id' column needs its own separate sequence, so that Handles -- can be minted from 'handle_seq' ---------------------------------------------------------------------------------- -- Create a new sequence for 'handle_id' column. -- The role of this sequence is to simply provide a unique internal ID to the database. CREATE SEQUENCE handle_id_seq; -- Initialize new 'handle_id_seq' to the maximum value of 'handle_id' DECLARE curr NUMBER := 0; BEGIN SELECT max(handle_id) INTO curr FROM handle; curr := curr + 1; EXECUTE IMMEDIATE 'DROP SEQUENCE handle_id_seq'; EXECUTE IMMEDIATE 'CREATE SEQUENCE handle_id_seq START WITH ' || NVL(curr,1); END; / -- Ensure the 'handle_seq' is updated to the maximum *suffix* in 'handle' column, -- as this sequence is used to mint new Handles. -- Code borrowed from update-sequences.sql and updateseq.sql DECLARE curr NUMBER := 0; BEGIN SELECT max(to_number(regexp_replace(handle, '.*/', ''), '999999999999')) INTO curr FROM handle WHERE REGEXP_LIKE(handle, '^.*/[0123456789]*$'); curr := curr + 1; EXECUTE IMMEDIATE 'DROP SEQUENCE handle_seq'; EXECUTE IMMEDIATE 'CREATE SEQUENCE handle_seq START WITH ' || NVL(curr,1); END; /
<reponame>cionibe/proyect5155<filename>database/backup_db.sql<gh_stars>0 -- -- PostgreSQL database dump -- -- Dumped from database version 9.5.14 -- Dumped by pg_dump version 9.5.14 -- Started on 2018-11-28 18:25:01 SET statement_timeout = 0; SET lock_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET client_min_messages = warning; SET row_security = off; DROP DATABASE db5155; -- -- TOC entry 2288 (class 1262 OID 25230) -- Name: db5155; Type: DATABASE; Schema: -; Owner: postgres -- CREATE DATABASE db5155 WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'Spanish_Spain.1252' LC_CTYPE = 'Spanish_Spain.1252'; ALTER DATABASE db5155 OWNER TO postgres; \connect db5155 SET statement_timeout = 0; SET lock_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET client_min_messages = warning; SET row_security = off; -- -- TOC entry 1 (class 3079 OID 12355) -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -- CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; -- -- TOC entry 2291 (class 0 OID 0) -- Dependencies: 1 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; SET default_tablespace = ''; SET default_with_oids = false; -- -- TOC entry 199 (class 1259 OID 124324) -- Name: estado; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.estado ( id bigint NOT NULL, nombre character varying(100) NOT NULL ); ALTER TABLE public.estado OWNER TO postgres; -- -- TOC entry 200 (class 1259 OID 124327) -- Name: estado_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.estado_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.estado_id_seq OWNER TO postgres; -- -- TOC entry 2292 (class 0 OID 0) -- Dependencies: 200 -- Name: estado_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.estado_id_seq OWNED BY public.estado.id; -- -- TOC entry 188 (class 1259 OID 124189) -- Name: estudios; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.estudios ( id integer NOT NULL, institucion_id integer, status boolean DEFAULT true NOT NULL, fec_envio date, fec_respuesta date, num_entrega bigint, num_oficio_siss bigint, num_exp_supervision bigint, cot_tesoro boolean DEFAULT false NOT NULL, cot_banavih boolean DEFAULT false NOT NULL, cot_ivss boolean DEFAULT false NOT NULL, aport_trabajador numeric(8,2) DEFAULT '0'::numeric NOT NULL, aport_patron numeric(8,2) DEFAULT '0'::numeric NOT NULL, fijos_act integer, contratados_act integer, otros_act integer, nomina_adic integer, jubiladas integer, jubilados integer, jubilados_bs_anual bigint DEFAULT '0'::bigint NOT NULL, pensionadas_i integer, pensionados_i integer, pensionados_i_bs_anual bigint DEFAULT '0'::bigint NOT NULL, pensionadas_s integer, pensionados_s integer, pensionados_s_bs_anual bigint DEFAULT '0'::bigint NOT NULL, fec_seguimiento integer, reg_especial boolean DEFAULT false NOT NULL, dec_1440 boolean DEFAULT false NOT NULL, sin_regimen boolean DEFAULT false NOT NULL, ley_trabajo boolean DEFAULT false NOT NULL, con_colectivo boolean DEFAULT false NOT NULL, tod_beneficio boolean DEFAULT false NOT NULL, orig_recursos character varying(255), doc_rif boolean DEFAULT false NOT NULL, doc_conv_colectiva boolean DEFAULT false NOT NULL, doc_acta_constitutiva boolean DEFAULT false NOT NULL, doc_resolucion boolean DEFAULT false NOT NULL, doc_decreto1440 boolean DEFAULT false NOT NULL, doc_digital character varying(255), doc_fisico character varying(255), observaciones character varying(255), created_at timestamp(0) without time zone, updated_at timestamp(0) without time zone ); ALTER TABLE public.estudios OWNER TO postgres; -- -- TOC entry 187 (class 1259 OID 124187) -- Name: estudios_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.estudios_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.estudios_id_seq OWNER TO postgres; -- -- TOC entry 2293 (class 0 OID 0) -- Dependencies: 187 -- Name: estudios_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.estudios_id_seq OWNED BY public.estudios.id; -- -- TOC entry 184 (class 1259 OID 124147) -- Name: instituciones; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.instituciones ( id integer NOT NULL, status boolean DEFAULT true NOT NULL, acronimo character varying(128), name character varying(256) NOT NULL, _rif character varying(255) DEFAULT 'G'::character varying NOT NULL, rif bigint NOT NULL, naturaleza character varying(128), jerarquia character varying(128), email character varying(256) NOT NULL, tlfppal bigint NOT NULL, tlfseg bigint, direccion text, created_at timestamp(0) without time zone, updated_at timestamp(0) without time zone ); ALTER TABLE public.instituciones OWNER TO postgres; -- -- TOC entry 183 (class 1259 OID 124145) -- Name: instituciones_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.instituciones_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.instituciones_id_seq OWNER TO postgres; -- -- TOC entry 2294 (class 0 OID 0) -- Dependencies: 183 -- Name: instituciones_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.instituciones_id_seq OWNED BY public.instituciones.id; -- -- TOC entry 182 (class 1259 OID 124139) -- Name: migrations; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.migrations ( id integer NOT NULL, migration character varying(255) NOT NULL, batch integer NOT NULL ); ALTER TABLE public.migrations OWNER TO postgres; -- -- TOC entry 181 (class 1259 OID 124137) -- Name: migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.migrations_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.migrations_id_seq OWNER TO postgres; -- -- TOC entry 2295 (class 0 OID 0) -- Dependencies: 181 -- Name: migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.migrations_id_seq OWNED BY public.migrations.id; -- -- TOC entry 196 (class 1259 OID 124268) -- Name: model_has_permissions; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.model_has_permissions ( permission_id integer NOT NULL, model_type character varying(255) NOT NULL, model_id bigint NOT NULL ); ALTER TABLE public.model_has_permissions OWNER TO postgres; -- -- TOC entry 197 (class 1259 OID 124279) -- Name: model_has_roles; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.model_has_roles ( role_id integer NOT NULL, model_type character varying(255) NOT NULL, model_id bigint NOT NULL ); ALTER TABLE public.model_has_roles OWNER TO postgres; -- -- TOC entry 201 (class 1259 OID 124329) -- Name: municipio; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.municipio ( id bigint NOT NULL, nombre character varying(100) NOT NULL, estado_id bigint NOT NULL ); ALTER TABLE public.municipio OWNER TO postgres; -- -- TOC entry 202 (class 1259 OID 124332) -- Name: municipio_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.municipio_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.municipio_id_seq OWNER TO postgres; -- -- TOC entry 2296 (class 0 OID 0) -- Dependencies: 202 -- Name: municipio_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.municipio_id_seq OWNED BY public.municipio.id; -- -- TOC entry 203 (class 1259 OID 124334) -- Name: parroquia; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.parroquia ( id bigint NOT NULL, nombre character varying(100) NOT NULL, municipio_id bigint NOT NULL ); ALTER TABLE public.parroquia OWNER TO postgres; -- -- TOC entry 204 (class 1259 OID 124337) -- Name: parroquia_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.parroquia_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.parroquia_id_seq OWNER TO postgres; -- -- TOC entry 2297 (class 0 OID 0) -- Dependencies: 204 -- Name: parroquia_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.parroquia_id_seq OWNED BY public.parroquia.id; -- -- TOC entry 191 (class 1259 OID 124239) -- Name: password_resets; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.password_resets ( email character varying(255) NOT NULL, token character varying(255) NOT NULL, created_at timestamp(0) without time zone ); ALTER TABLE public.password_resets OWNER TO postgres; -- -- TOC entry 193 (class 1259 OID 124248) -- Name: permissions; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.permissions ( id integer NOT NULL, name character varying(255) NOT NULL, guard_name character varying(255) NOT NULL, created_at timestamp(0) without time zone, updated_at timestamp(0) without time zone ); ALTER TABLE public.permissions OWNER TO postgres; -- -- TOC entry 192 (class 1259 OID 124246) -- Name: permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.permissions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.permissions_id_seq OWNER TO postgres; -- -- TOC entry 2298 (class 0 OID 0) -- Dependencies: 192 -- Name: permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.permissions_id_seq OWNED BY public.permissions.id; -- -- TOC entry 186 (class 1259 OID 124166) -- Name: responsables; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.responsables ( id integer NOT NULL, institucion_id integer, status boolean DEFAULT true NOT NULL, cedula bigint NOT NULL, cargo character varying(128), dpto character varying(128), name1 character varying(128) NOT NULL, name2 character varying(128), lastname1 character varying(128) NOT NULL, lastname2 character varying(128), tlf bigint NOT NULL, email_r character varying(255) NOT NULL, created_at timestamp(0) without time zone, updated_at timestamp(0) without time zone ); ALTER TABLE public.responsables OWNER TO postgres; -- -- TOC entry 185 (class 1259 OID 124164) -- Name: responsables_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.responsables_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.responsables_id_seq OWNER TO postgres; -- -- TOC entry 2299 (class 0 OID 0) -- Dependencies: 185 -- Name: responsables_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.responsables_id_seq OWNED BY public.responsables.id; -- -- TOC entry 198 (class 1259 OID 124290) -- Name: role_has_permissions; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.role_has_permissions ( permission_id integer NOT NULL, role_id integer NOT NULL ); ALTER TABLE public.role_has_permissions OWNER TO postgres; -- -- TOC entry 195 (class 1259 OID 124259) -- Name: roles; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.roles ( id integer NOT NULL, name character varying(255) NOT NULL, guard_name character varying(255) NOT NULL, created_at timestamp(0) without time zone, updated_at timestamp(0) without time zone ); ALTER TABLE public.roles OWNER TO postgres; -- -- TOC entry 194 (class 1259 OID 124257) -- Name: roles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.roles_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.roles_id_seq OWNER TO postgres; -- -- TOC entry 2300 (class 0 OID 0) -- Dependencies: 194 -- Name: roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.roles_id_seq OWNED BY public.roles.id; -- -- TOC entry 190 (class 1259 OID 124227) -- Name: users; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.users ( id integer NOT NULL, status boolean DEFAULT true NOT NULL, cedula character varying(255), name1 character varying(255), name2 character varying(255), lastname1 character varying(255), lastname2 character varying(255), tlf character varying(128), email character varying(255), password character varying(255), remember_token character varying(100), created_at timestamp(0) without time zone, updated_at timestamp(0) without time zone ); ALTER TABLE public.users OWNER TO postgres; -- -- TOC entry 189 (class 1259 OID 124225) -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.users_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.users_id_seq OWNER TO postgres; -- -- TOC entry 2301 (class 0 OID 0) -- Dependencies: 189 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id; -- -- TOC entry 2089 (class 2604 OID 124339) -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.estado ALTER COLUMN id SET DEFAULT nextval('public.estado_id_seq'::regclass); -- -- TOC entry 2076 (class 2604 OID 124192) -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.estudios ALTER COLUMN id SET DEFAULT nextval('public.estudios_id_seq'::regclass); -- -- TOC entry 2059 (class 2604 OID 124150) -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.instituciones ALTER COLUMN id SET DEFAULT nextval('public.instituciones_id_seq'::regclass); -- -- TOC entry 2058 (class 2604 OID 124142) -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.migrations ALTER COLUMN id SET DEFAULT nextval('public.migrations_id_seq'::regclass); -- -- TOC entry 2090 (class 2604 OID 124340) -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.municipio ALTER COLUMN id SET DEFAULT nextval('public.municipio_id_seq'::regclass); -- -- TOC entry 2091 (class 2604 OID 124341) -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.parroquia ALTER COLUMN id SET DEFAULT nextval('public.parroquia_id_seq'::regclass); -- -- TOC entry 2087 (class 2604 OID 124251) -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.permissions ALTER COLUMN id SET DEFAULT nextval('public.permissions_id_seq'::regclass); -- -- TOC entry 2062 (class 2604 OID 124169) -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.responsables ALTER COLUMN id SET DEFAULT nextval('public.responsables_id_seq'::regclass); -- -- TOC entry 2088 (class 2604 OID 124262) -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.roles ALTER COLUMN id SET DEFAULT nextval('public.roles_id_seq'::regclass); -- -- TOC entry 2085 (class 2604 OID 124230) -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass); -- -- TOC entry 2277 (class 0 OID 124324) -- Dependencies: 199 -- Data for Name: estado; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public.estado (id, nombre) VALUES (1, 'DTTO. CAPITAL'); INSERT INTO public.estado (id, nombre) VALUES (2, 'ANZOATEGUI'); INSERT INTO public.estado (id, nombre) VALUES (3, 'APURE'); INSERT INTO public.estado (id, nombre) VALUES (4, 'ARAGUA'); INSERT INTO public.estado (id, nombre) VALUES (5, 'BARINAS'); INSERT INTO public.estado (id, nombre) VALUES (6, 'BOLIVAR'); INSERT INTO public.estado (id, nombre) VALUES (7, 'CARABOBO'); INSERT INTO public.estado (id, nombre) VALUES (8, 'COJEDES'); INSERT INTO public.estado (id, nombre) VALUES (9, 'FALCON'); INSERT INTO public.estado (id, nombre) VALUES (10, 'GUARICO'); INSERT INTO public.estado (id, nombre) VALUES (11, 'LARA'); INSERT INTO public.estado (id, nombre) VALUES (12, 'MERIDA'); INSERT INTO public.estado (id, nombre) VALUES (13, 'MIRANDA'); INSERT INTO public.estado (id, nombre) VALUES (14, 'MONAGAS'); INSERT INTO public.estado (id, nombre) VALUES (15, 'NUEVA ESPARTA'); INSERT INTO public.estado (id, nombre) VALUES (16, 'PORTUGUESA'); INSERT INTO public.estado (id, nombre) VALUES (17, 'SUCRE'); INSERT INTO public.estado (id, nombre) VALUES (18, 'TACHIRA'); INSERT INTO public.estado (id, nombre) VALUES (19, 'TRUJILLO'); INSERT INTO public.estado (id, nombre) VALUES (20, 'YARACUY'); INSERT INTO public.estado (id, nombre) VALUES (21, 'ZULIA'); INSERT INTO public.estado (id, nombre) VALUES (22, 'AMAZONAS'); INSERT INTO public.estado (id, nombre) VALUES (23, 'DELTA AMACURO'); INSERT INTO public.estado (id, nombre) VALUES (24, 'VARGAS'); -- -- TOC entry 2302 (class 0 OID 0) -- Dependencies: 200 -- Name: estado_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.estado_id_seq', 25, false); -- -- TOC entry 2266 (class 0 OID 124189) -- Dependencies: 188 -- Data for Name: estudios; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- TOC entry 2303 (class 0 OID 0) -- Dependencies: 187 -- Name: estudios_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.estudios_id_seq', 1, false); -- -- TOC entry 2262 (class 0 OID 124147) -- Dependencies: 184 -- Data for Name: instituciones; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- TOC entry 2304 (class 0 OID 0) -- Dependencies: 183 -- Name: instituciones_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.instituciones_id_seq', 1, false); -- -- TOC entry 2260 (class 0 OID 124139) -- Dependencies: 182 -- Data for Name: migrations; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public.migrations (id, migration, batch) VALUES (1, '2000_01_01_053922_create_instituciones_table', 1); INSERT INTO public.migrations (id, migration, batch) VALUES (2, '2002_01_01_053238_create_responsables_table', 1); INSERT INTO public.migrations (id, migration, batch) VALUES (3, '2011_01_01_053524_create_estudios_table', 1); INSERT INTO public.migrations (id, migration, batch) VALUES (4, '2014_10_12_000000_create_users_table', 1); INSERT INTO public.migrations (id, migration, batch) VALUES (5, '2014_10_12_100000_create_password_resets_table', 1); INSERT INTO public.migrations (id, migration, batch) VALUES (6, '2018_11_13_174604_create_permission_tables', 1); -- -- TOC entry 2305 (class 0 OID 0) -- Dependencies: 181 -- Name: migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.migrations_id_seq', 6, true); -- -- TOC entry 2274 (class 0 OID 124268) -- Dependencies: 196 -- Data for Name: model_has_permissions; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- TOC entry 2275 (class 0 OID 124279) -- Dependencies: 197 -- Data for Name: model_has_roles; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- TOC entry 2279 (class 0 OID 124329) -- Dependencies: 201 -- Data for Name: municipio; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public.municipio (id, nombre, estado_id) VALUES (1, 'LIBERTADOR', 1); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (2, 'ANACO', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (3, 'ARAGUA', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (4, 'BOLIVAR', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (5, 'BRUZUAL', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (6, 'CAJIGAL', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (7, 'FREITES', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (8, 'INDEPENDENCIA', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (9, 'LIBERTAD', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (10, 'MIRANDA', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (11, 'MONAGAS', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (12, 'PEÑALVER', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (13, '<NAME>', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (14, 'SOTILLO', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (15, 'GUANIPA', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (16, 'GUANTA', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (17, 'PIRITU', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (18, 'M.L/DIEGO BAUTISTA U', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (19, 'CARVAJAL', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (20, '<NAME>', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (21, '<NAME>', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (22, 'S <NAME>', 2); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (23, 'ACHAGUAS', 3); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (24, 'MUÑOZ', 3); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (25, 'PAEZ', 3); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (26, '<NAME>', 3); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (27, '<NAME>', 3); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (28, '<NAME>', 3); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (29, 'BIRUACA', 3); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (30, 'GIRARDOT', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (31, '<NAME>', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (32, '<NAME>', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (33, '<NAME>', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (34, '<NAME>', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (35, 'SUCRE', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (36, 'URDANETA', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (37, 'ZAMORA', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (38, 'LIBERTADOR', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (39, '<NAME>', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (40, 'BOLIVAR', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (41, '<NAME>', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (42, '<NAME>', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (43, 'TOVAR', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (44, 'CAMATAGUA', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (45, '<NAME>', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (46, '<NAME>.', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (47, '<NAME>', 4); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (48, 'ARISMENDI', 5); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (49, 'BARINAS', 5); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (50, 'BOLIVAR', 5); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (51, '<NAME>', 5); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (52, 'OBISPOS', 5); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (53, 'PEDRAZA', 5); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (54, 'ROJAS', 5); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (55, 'SOSA', 5); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (56, '<NAME>', 5); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (57, '<NAME>', 5); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (58, '<NAME>', 5); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (59, '<NAME>', 5); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (60, 'CARONI', 6); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (61, 'CEDEÑO', 6); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (62, 'HERES', 6); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (63, 'PIAR', 6); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (64, 'ROSCIO', 6); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (65, 'SUCRE', 6); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (66, 'SIFONTES', 6); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (67, '<NAME>', 6); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (68, '<NAME>', 6); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (69, '<NAME>', 6); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (70, '<NAME>', 6); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (71, 'BEJUMA', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (72, '<NAME>', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (73, '<NAME>', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (74, 'GUACARA', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (75, 'MONTALBAN', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (76, '<NAME>', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (77, '<NAME>', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (78, '<NAME>', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (79, 'VALENCIA', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (80, 'MIRANDA', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (81, '<NAME>', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (82, 'NAGUANAGUA', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (83, 'SAN DIEGO', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (84, 'LIBERTADOR', 7); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (85, 'ANZOATEGUI', 8); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (86, 'FALCON', 8); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (87, 'GIRARDOT', 8); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (88, 'MP PAO SN J BAUTISTA', 8); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (89, 'RICAURTE', 8); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (90, '<NAME>', 8); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (91, 'TINACO', 8); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (92, 'LIMA BLANCO', 8); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (93, '<NAME>', 8); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (94, 'ACOSTA', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (95, 'BOLIVAR', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (96, 'BUCHIVACOA', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (97, 'CARIRUBANA', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (98, 'COLINA', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (99, 'DEMOCRACIA', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (100, 'FALCON', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (101, 'FEDERACION', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (102, 'MAUROA', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (103, 'MIRANDA', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (104, 'PETIT', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (105, 'SILVA', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (106, 'ZAMORA', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (107, 'DABAJURO', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (108, '<NAME>', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (109, 'LOS TAQUES', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (110, 'PIRITU', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (111, 'UNION', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (112, '<NAME>', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (113, 'JACURA', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (114, '<NAME>', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (115, '<NAME>', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (116, 'SUCRE', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (117, 'URUMACO', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (118, 'TOCOPERO', 9); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (119, 'INFANTE', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (120, 'MELLADO', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (121, 'MIRANDA', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (122, 'MONAGAS', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (123, 'RIBAS', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (124, 'ROSCIO', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (125, 'ZARAZA', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (126, 'CAMAGUAN', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (127, 'S <NAME>', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (128, 'LAS MERCEDES', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (129, 'EL SOCORRO', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (130, 'ORTIZ', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (131, 'S <NAME>', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (132, 'CHAGUARAMAS', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (133, '<NAME>', 10); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (134, 'CRESPO', 11); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (135, 'IRIBARREN', 11); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (136, 'JIMENEZ', 11); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (137, 'MORAN', 11); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (138, 'PALAVECINO', 11); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (139, 'TORRES', 11); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (140, 'URDANETA', 11); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (141, '<NAME>', 11); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (142, '<NAME>', 11); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (143, '<NAME>', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (144, '<NAME>', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (145, '<NAME>', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (146, 'CA<NAME>', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (147, 'GUARAQUE', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (148, '<NAME>', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (149, '<NAME>', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (150, 'LIBERTADOR', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (151, '<NAME>', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (152, 'MIRANDA', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (153, '<NAME>.', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (154, 'OB. <NAME>', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (155, '<NAME>', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (156, 'CARDENAL QUINTERO', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (157, '<NAME>', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (158, 'RANGEL', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (159, '<NAME>', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (160, 'SUCRE', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (161, 'TOVAR', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (162, '<NAME>', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (163, '<NAME>', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (164, 'ARICAGUA', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (165, 'ZEA', 12); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (166, 'ACEVEDO', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (167, 'BRION', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (168, 'GUAICAIPURO', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (169, 'INDEPENDENCIA', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (170, 'LANDER', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (171, 'PAEZ', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (172, '<NAME>', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (173, 'PLAZA', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (174, 'SUCRE', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (175, 'URDANETA', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (176, 'ZAMORA', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (177, '<NAME>', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (178, '<NAME>', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (179, '<NAME>', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (180, '<NAME>', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (181, 'BARUTA', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (182, 'CARRIZAL', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (183, 'CHACAO', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (184, '<NAME>', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (185, 'BUROZ', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (186, '<NAME>', 13); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (187, 'ACOSTA', 14); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (188, 'BOLIVAR', 14); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (189, 'CARIPE', 14); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (190, 'CEDEÑO', 14); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (191, '<NAME>', 14); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (192, 'LIBERTADOR', 14); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (193, 'MATURIN', 14); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (194, 'PIAR', 14); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (195, 'PUNCERES', 14); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (196, 'SOTILLO', 14); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (197, 'AGUASAY', 14); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (198, '<NAME>', 14); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (199, 'URACOA', 14); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (200, 'ARISMENDI', 15); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (201, 'DIAZ', 15); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (202, 'GOMEZ', 15); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (203, 'MANEIRO', 15); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (204, 'MARCANO', 15); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (205, 'MARIÑO', 15); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (206, '<NAME>', 15); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (207, 'VILLALBA(I.COCHE)', 15); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (208, 'TUBORES', 15); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (209, '<NAME>', 15); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (210, 'GARCIA', 15); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (211, 'ARAURE', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (212, 'ESTELLER', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (213, 'GUANARE', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (214, 'GUANARITO', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (215, 'OSPINO', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (216, 'PAEZ', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (217, 'SUCRE', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (218, 'TUREN', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (219, '<NAME>', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (220, '<NAME>', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (221, 'PAPELON', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (222, '<NAME>', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (223, '<NAME>', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (224, '<NAME>', 16); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (225, 'ARISMENDI', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (226, 'BENITEZ', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (227, 'BERMUDEZ', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (228, 'CAJIGAL', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (229, 'MARIÑO', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (230, 'MEJIA', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (231, 'MONTES', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (232, 'RIBERO', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (233, 'SUCRE', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (234, 'VALDEZ', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (235, '<NAME>', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (236, 'LIBERTADOR', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (237, '<NAME>', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (238, 'BOLIVAR', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (239, 'CRUZ S ACOSTA', 17); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (240, 'AYACUCHO', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (241, 'BOLIVAR', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (242, 'INDEPENDENCIA', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (243, 'CARDENAS', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (244, 'JAUREGUI', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (245, 'JUNIN', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (246, 'LOBATERA', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (247, 'SAN CRISTOBAL', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (248, 'URIBANTE', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (249, 'CORDOBA', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (250, 'GARCIA DE HEVIA', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (251, 'GUASIMOS', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (252, 'MICHELENA', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (253, 'LIBERTADOR', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (254, 'PANAMERICANO', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (255, '<NAME>', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (256, 'SUCRE', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (257, '<NAME>', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (258, '<NAME>', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (259, 'LIBERTAD', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (260, '<NAME>', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (261, 'SEBORUCO', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (262, '<NAME>', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (263, 'F<NAME>', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (264, '<NAME>', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (265, '<NAME>', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (266, '<NAME>', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (267, 'TORBES', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (268, '<NAME>', 18); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (269, '<NAME>', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (270, 'BOCONO', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (271, 'CARACHE', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (272, 'ESCUQUE', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (273, 'TRUJILLO', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (274, 'URDANETA', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (275, 'VALERA', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (276, 'CANDELARIA', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (277, 'MIRANDA', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (278, '<NAME>', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (279, 'MOTATAN', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (280, 'PAMPAN', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (281, 'S <NAME>', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (282, 'SUCRE', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (283, '<NAME>', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (284, 'BOLIVAR', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (285, '<NAME>', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (286, '<NAME>', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (287, 'LA CEIBA', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (288, 'PAMPANITO', 19); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (289, 'BOLIVAR', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (290, 'BRUZUAL', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (291, 'NIRGUA', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (292, 'SAN FELIPE', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (293, 'SUCRE', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (294, 'URACHICHE', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (295, 'PEÑA', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (296, '<NAME>', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (297, 'LA TRINIDAD', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (298, 'COCOROTE', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (299, 'INDEPENDENCIA', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (300, '<NAME>', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (301, '<NAME>', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (302, 'VEROES', 20); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (303, 'BARALT', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (304, '<NAME>', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (305, 'COLON', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (306, 'MARA', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (307, 'MARACAIBO', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (308, 'MIRANDA', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (309, 'PAEZ', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (310, '<NAME>', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (311, 'SUCRE', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (312, 'LA CAÑADA DE U.', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (313, 'LAGUNILLAS', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (314, 'CATATUMBO', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (315, 'M/ROSARIO DE PERIJA', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (316, 'CABIMAS', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (317, '<NAME>', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (318, '<NAME>', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (319, '<NAME>', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (320, '<NAME>', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (321, '<NAME>', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (322, '<NAME>', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (323, '<NAME>', 21); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (324, 'ATURES', 22); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (325, 'ATABAPO', 22); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (326, 'MAROA', 22); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (327, 'RIO NEGRO', 22); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (328, 'AUTANA', 22); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (329, 'MANAPIARE', 22); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (330, 'ALTO ORINOCO', 22); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (331, 'TUCUPITA', 23); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (332, 'PEDERNALES', 23); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (333, '<NAME>', 23); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (334, 'CASACOIMA', 23); INSERT INTO public.municipio (id, nombre, estado_id) VALUES (335, 'VARGAS', 24); -- -- TOC entry 2306 (class 0 OID 0) -- Dependencies: 202 -- Name: municipio_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.municipio_id_seq', 336, false); -- -- TOC entry 2281 (class 0 OID 124334) -- Dependencies: 203 -- Data for Name: parroquia; Type: TABLE DATA; Schema: public; Owner: postgres -- INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1, 'ALTAGRACIA', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (2, 'CANDELARIA', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (3, 'CATEDRAL', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (4, '<NAME>', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (5, '<NAME>', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (6, '<NAME>', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (7, 'SAN JUAN', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (8, 'SANTA ROSALIA', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (9, 'SANTA TERESA', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (10, 'SUCRE', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (11, '23 DE ENERO', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (12, 'ANTIMANO', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (13, 'EL RECREO', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (14, 'EL VALLE', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (15, 'LA VEGA', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (16, 'MACARAO', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (17, 'CARICUAO', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (18, 'EL JUNQUITO', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (19, 'COCHE', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (20, 'SAN PEDRO', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (21, 'SAN BERNARDINO', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (22, 'EL PARAISO', 1); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (23, 'ANACO', 2); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (24, '<NAME>', 2); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (25, 'CM. ARAGUA DE BARCELONA', 3); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (26, 'CACHIPO', 3); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (27, 'EL CARMEN', 4); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (28, 'SAN CRISTOBAL', 4); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (29, 'BERGANTIN', 4); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (30, 'CAIGUA', 4); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (31, 'EL PILAR', 4); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (32, 'NARICUAL', 4); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (33, 'CM. CLARINES', 5); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (34, 'GUANAPE', 5); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (35, 'SABANA DE UCHIRE', 5); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (36, 'CM. ONOTO', 6); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (37, '<NAME>', 6); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (38, 'CM. CANTAURA', 7); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (39, 'LIBERTADOR', 7); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (40, 'SANTA ROSA', 7); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (41, 'URICA', 7); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (42, 'CM. SOLEDAD', 8); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (43, 'MAMO', 8); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (44, 'CM. SAN MATEO', 9); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (45, 'EL CARITO', 9); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (46, 'SANTA INES', 9); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (47, 'CM. PARIAGUAN', 10); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (48, 'ATAPIRIRE', 10); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (49, 'BOCA DEL PAO', 10); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (50, 'EL PAO', 10); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (51, 'CM. MAPIRE', 11); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (52, 'PIAR', 11); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (53, 'SN DIEGO DE CABRUTICA', 11); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (54, '<NAME>', 11); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (55, 'UVERITO', 11); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (56, 'ZUATA', 11); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (57, 'CM. PUERTO PIRITU', 12); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (58, 'SAN MIGUEL', 12); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (59, 'SUCRE', 12); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (60, 'CM. EL TIGRE', 13); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (61, 'POZUELOS', 14); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (62, 'CM PTO. LA CRUZ', 14); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (63, 'CM. SAN JOSE DE GUANIPA', 15); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (64, 'GUANTA', 16); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (65, 'CHORRERON', 16); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (66, 'PIRITU', 17); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (67, 'SAN FRANCISCO', 17); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (68, 'LECHERIAS', 18); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (69, 'EL MORRO', 18); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (70, '<NAME>', 19); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (71, '<NAME>', 19); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (72, '<NAME>', 20); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (73, 'PUEBLO NUEVO', 20); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (74, 'EL CHAPARRO', 21); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (75, '<NAME>', 21); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (76, 'BOCA UCHIRE', 22); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (77, 'BOCA DE CHAVEZ', 22); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (78, 'ACHAGUAS', 23); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (79, 'APURITO', 23); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (80, 'EL YAGUAL', 23); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (81, 'GUACHARA', 23); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (82, 'MUCURITAS', 23); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (83, 'QUESERAS DEL MEDIO', 23); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (84, 'BRUZUAL', 24); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (85, 'MANTECAL', 24); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (86, 'QUINTERO', 24); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (87, 'SAN VICENTE', 24); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (88, '<NAME>', 24); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (89, 'GUASDUALITO', 25); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (90, 'ARAMENDI', 25); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (91, 'EL AMPARO', 25); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (92, '<NAME>', 25); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (93, 'URDANETA', 25); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (94, '<NAME>', 26); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (95, 'CODAZZI', 26); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (96, 'CUNAVICHE', 26); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (97, 'ELORZA', 27); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (98, 'LA TRINIDAD', 27); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (99, 'SAN FERNANDO', 28); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (100, 'PEÑALVER', 28); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (101, 'EL RECREO', 28); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (102, 'SN RAFAEL DE ATAMAICA', 28); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (103, 'BIRUACA', 29); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (104, 'CM. LAS DELICIAS', 30); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (105, 'CHORONI', 30); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (106, '<NAME>', 30); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (107, '<NAME>', 30); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (108, '<NAME>', 30); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (109, '<NAME>', 30); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (110, '<NAME>', 30); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (111, '<NAME>', 30); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (112, 'CM. TURMERO', 31); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (113, '<NAME>', 31); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (114, '<NAME>', 31); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (115, 'CHUAO', 31); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (116, 'AREVALO APONTE', 31); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (117, 'CM. LA VICTORIA', 32); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (118, 'ZUATA', 32); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (119, 'PAO DE ZARATE', 32); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (120, 'CASTOR NIEVES RIOS', 32); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (121, 'LAS GUACAMAYAS', 32); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (122, 'CM. SAN CASIMIRO', 33); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (123, '<NAME>', 33); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (124, 'GUIRIPA', 33); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (125, 'OLLAS DE CARAMACATE', 33); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (126, 'CM. SAN SEBASTIAN', 34); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (127, 'CM. CAGUA', 35); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (128, 'BELLA VISTA', 35); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (129, 'CM. BARBACOAS', 36); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (130, 'SAN FRANCISCO DE CARA', 36); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (131, 'TAGUAY', 36); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (132, 'LAS PEÑITAS', 36); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (133, 'CM. VILLA DE CURA', 37); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (134, 'MAGDALENO', 37); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (135, 'SAN FRANCISCO DE ASIS', 37); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (136, 'VALLES DE TUCUTUNEMO', 37); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (137, 'PQ AUG<NAME>', 37); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (138, 'CM. PALO NEGRO', 38); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (139, '<NAME>', 38); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (140, 'CM. SANTA CRUZ', 39); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (141, 'CM. SAN MATEO', 40); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (142, 'CM. LAS TEJERIAS', 41); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (143, 'TIARA', 41); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (144, 'CM. EL LIMON', 42); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (145, 'CA A DE AZUCAR', 42); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (146, 'CM. COL<NAME>', 43); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (147, 'CM. CAMATAGUA', 44); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (148, 'CARMEN DE CURA', 44); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (149, 'CM. EL CONSEJO', 45); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (150, 'CM. SANTA RITA', 46); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (151, 'FRANCISCO DE MIRANDA', 46); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (152, '<NAME>', 46); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (153, 'OCUMARE DE LA COSTA', 47); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (154, 'ARISMENDI', 48); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (155, 'GUADARRAMA', 48); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (156, 'LA UNION', 48); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (157, 'SAN ANTONIO', 48); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (158, 'ALFREDO A LARRIVA', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (159, 'BARINAS', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (160, 'SAN SILVESTRE', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (161, 'SANTA INES', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (162, 'SANTA LUCIA', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (163, 'TORUNOS', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (164, 'EL CARMEN', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (165, '<NAME>', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (166, '<NAME>', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (167, '<NAME>', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (168, 'ALTO BARINAS', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (169, '<NAME>', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (170, '<NAME>', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (171, '<NAME>', 49); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (172, 'ALTAMIRA', 50); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (173, 'BARINITAS', 50); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (174, 'CALDERAS', 50); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (175, '<NAME>', 51); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (176, '<NAME>', 51); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (177, '<NAME>', 51); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (178, '<NAME>', 51); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (179, '<NAME>', 52); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (180, '<NAME>', 52); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (181, 'OBISPOS', 52); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (182, '<NAME>', 52); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (183, 'CIUDAD BOLIVIA', 53); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (184, 'IGNACIO BRICEÑO', 53); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (185, 'PAEZ', 53); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (186, '<NAME>', 53); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (187, 'DOLORES', 54); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (188, 'LIBERTAD', 54); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (189, '<NAME>', 54); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (190, 'SANTA ROSA', 54); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (191, 'CIUDAD DE NUTRIAS', 55); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (192, 'EL REGALO', 55); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (193, 'PUERTO DE NUTRIAS', 55); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (194, 'SANTA CATALINA', 55); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (195, '<NAME>', 56); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (196, 'SABANETA', 56); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (197, 'TICOPORO', 57); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (198, 'NICOLAS PULIDO', 57); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (199, '<NAME>', 57); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (200, 'BARRANCAS', 58); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (201, 'EL SOCORRO', 58); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (202, 'MASPARRITO', 58); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (203, 'EL CANTON', 59); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (204, 'SANTA CRUZ DE GUACAS', 59); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (205, 'PUERTO VIVAS', 59); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (206, '<NAME>', 60); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (207, 'ONCE DE ABRIL', 60); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (208, 'VISTA AL SOL', 60); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (209, 'CHIRICA', 60); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (210, 'DALLA COSTA', 60); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (211, 'CACHAMAY', 60); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (212, 'UNIVERSIDAD', 60); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (213, 'UNARE', 60); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (214, 'YOCOIMA', 60); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (215, '<NAME>', 60); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (216, '<NAME>', 61); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (217, 'ASCENSION FARRERAS', 61); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (218, 'ALTAGRACIA', 61); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (219, 'LA URBANA', 61); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (220, 'GUANIAMO', 61); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (221, 'PIJIGUAOS', 61); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (222, 'CATEDRAL', 62); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (223, 'AGUA SALADA', 62); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (224, 'LA SABANITA', 62); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (225, '<NAME>', 62); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (226, 'MARHUANTA', 62); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (227, '<NAME>', 62); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (228, 'ORINOCO', 62); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (229, 'PANAPANA', 62); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (230, 'ZEA', 62); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (231, 'CM. UPATA', 63); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (232, '<NAME>', 63); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (233, 'PED<NAME>', 63); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (234, 'CM. GUASIPATI', 64); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (235, 'SALOM', 64); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (236, 'CM. MARIPA', 65); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (237, 'ARIPAO', 65); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (238, 'LAS MAJADAS', 65); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (239, 'MOITACO', 65); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (240, 'GUARATARO', 65); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (241, 'CM. TUMEREMO', 66); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (242, 'DALLA COSTA', 66); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (243, '<NAME>', 66); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (244, 'CM. <NAME>', 67); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (245, '<NAME>', 67); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (246, 'BARCELONETA', 67); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (247, '<NAME>', 67); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (248, 'CM. S<NAME> UAIREN', 68); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (249, 'IKABARU', 68); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (250, 'CM. EL CALLAO', 69); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (251, 'CM. EL PALMAR', 70); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (252, 'BEJUMA', 71); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (253, 'CANOABO', 71); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (254, '<NAME>', 71); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (255, 'GUIGUE', 72); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (256, 'BELEN', 72); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (257, 'TACARIGUA', 72); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (258, 'MARIARA', 73); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (259, 'AGUAS CALIENTES', 73); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (260, 'GUACARA', 74); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (261, 'CIUD<NAME>', 74); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (262, 'YAGUA', 74); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (263, 'MONTALBAN', 75); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (264, 'MORON', 76); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (265, 'URAMA', 76); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (266, 'DEMOCRACIA', 77); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (267, 'FRATERNIDAD', 77); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (268, 'GOAIGOAZA', 77); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (269, '<NAME>', 77); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (270, '<NAME>', 77); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (271, 'UNION', 77); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (272, 'BORBURATA', 77); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (273, 'PATANEMO', 77); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (274, '<NAME>', 78); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (275, 'CANDELARIA', 79); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (276, 'CATEDRAL', 79); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (277, 'EL SOCORRO', 79); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (278, '<NAME>', 79); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (279, '<NAME>', 79); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (280, '<NAME>', 79); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (281, '<NAME>', 79); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (282, '<NAME>', 79); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (283, 'NEGRO PRIMERO', 79); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (284, 'MIRANDA', 80); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (285, 'U LOS GUAYOS', 81); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (286, 'NAGUANAGUA', 82); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (287, 'URB SAN DIEGO', 83); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (288, 'U TOCUYITO', 84); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (289, 'U INDEPENDENCIA', 84); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (290, 'COJEDES', 85); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (291, '<NAME>', 85); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (292, 'TINAQUILLO', 86); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (293, 'EL BAUL', 87); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (294, 'SUCRE', 87); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (295, 'EL PAO', 88); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (296, 'LIBERTAD DE COJEDES', 89); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (297, 'EL AMPARO', 89); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (298, '<NAME>', 90); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (299, '<NAME>', 90); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (300, '<NAME>', 90); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (301, 'GRL/JEFE J<NAME>', 91); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (302, 'MACAPO', 92); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (303, 'LA AGUADITA', 92); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (304, 'ROMULO GALLEGOS', 93); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (305, 'SAN JUAN DE LOS CAYOS', 94); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (306, 'CAPADARE', 94); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (307, 'LA PASTORA', 94); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (308, 'LIBERTADOR', 94); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (309, 'SAN LUIS', 95); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (310, 'ARACUA', 95); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (311, 'LA PEÑA', 95); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (312, 'CAPATARIDA', 96); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (313, 'BOROJO', 96); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (314, 'SEQUE', 96); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (315, 'ZAZARIDA', 96); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (316, 'BARIRO', 96); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (317, 'GUAJIRO', 96); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (318, 'NORTE', 97); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (319, 'CARIRUBANA', 97); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (320, '<NAME>', 97); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (321, 'S<NAME>', 97); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (322, 'LA VELA DE CORO', 98); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (323, 'ACURIGUA', 98); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (324, 'GUAIBACOA', 98); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (325, 'MACORUCA', 98); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (326, 'LAS CALDERAS', 98); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (327, 'PEDREGAL', 99); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (328, '<NAME>', 99); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (329, 'AVARIA', 99); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (330, '<NAME>', 99); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (331, 'PURURECHE', 99); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (332, 'PUEBLO NUEVO', 100); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (333, 'ADICORA', 100); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (334, 'BARAIVED', 100); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (335, 'BUENA VISTA', 100); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (336, 'JADACAQUIVA', 100); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (337, 'MORUY', 100); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (338, 'EL VINCULO', 100); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (339, 'EL HATO', 100); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (340, 'ADAURE', 100); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (341, 'CHURUGUARA', 101); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (342, 'AGUA LARGA', 101); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (343, 'INDEPENDENCIA', 101); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (344, 'MAPARARI', 101); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (345, 'EL PAUJI', 101); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (346, '<NAME>', 102); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (347, 'CASIGUA', 102); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (348, '<NAME>', 102); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (349, '<NAME>', 103); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (350, '<NAME>', 103); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (351, '<NAME>', 103); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (352, '<NAME>', 103); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (353, 'MITARE', 103); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (354, 'SABANETA', 103); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (355, '<NAME>', 103); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (356, 'CABURE', 104); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (357, 'CURIMAGUA', 104); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (358, 'COLINA', 104); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (359, 'TUCACAS', 105); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (360, 'BOCA DE AROA', 105); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (361, '<NAME>', 106); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (362, 'LA CIENAGA', 106); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (363, 'LA SOLEDAD', 106); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (364, '<NAME>', 106); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (365, 'ZAZARIDA', 106); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (366, 'CM. DABAJURO', 107); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (367, 'CHICHIRIVICHE', 108); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (368, 'BOCA DE TOCUYO', 108); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (369, 'TOCUYO DE LA COSTA', 108); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (370, 'LOS TAQUES', 109); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (371, 'JUDIBANA', 109); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (372, 'PIRITU', 110); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (373, 'SAN JOSE DE LA COSTA', 110); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (374, 'STA.CRUZ DE BUCARAL', 111); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (375, 'EL CHARAL', 111); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (376, 'LAS VEGAS DEL TUY', 111); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (377, 'CM. MIRIMIRE', 112); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (378, 'JACURA', 113); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (379, 'AGUA LINDA', 113); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (380, 'ARAURIMA', 113); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (381, 'CM. YARACAL', 114); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (382, 'CM. PALMA SOLA', 115); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (383, 'SUCRE', 116); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (384, 'PECAYA', 116); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (385, 'URUMACO', 117); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (386, 'BRUZUAL', 117); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (387, 'CM. TOCOPERO', 118); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (388, 'VALLE DE LA PASCUA', 119); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (389, 'ESPINO', 119); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (390, 'EL SOMBRERO', 120); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (391, 'SOSA', 120); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (392, 'CALABOZO', 121); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (393, 'EL CALVARIO', 121); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (394, 'EL RASTRO', 121); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (395, 'GUARDATINAJAS', 121); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (396, 'ALTAGRACIA DE ORITUCO', 122); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (397, 'LEZAMA', 122); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (398, 'LIBERTAD DE ORITUCO', 122); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (399, 'SAN FCO DE MACAIRA', 122); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (400, 'SAN RAFAEL DE ORITUCO', 122); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (401, 'SOUBLETTE', 122); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (402, 'PASO REAL DE MACAIRA', 122); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (403, 'TUCUPIDO', 123); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (404, '<NAME>', 123); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (405, 'SAN JUAN DE LOS MORROS', 124); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (406, 'PARAPARA', 124); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (407, 'CANTAGALLO', 124); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (408, 'ZARAZA', 125); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (409, '<NAME>', 125); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (410, 'CAMAGUAN', 126); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (411, '<NAME>', 126); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (412, 'UVERITO', 126); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (413, '<NAME>', 127); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (414, 'LAS MERCEDES', 128); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (415, 'STA RITA DE MANAPIRE', 128); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (416, 'CABRUTA', 128); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (417, 'EL SOCORRO', 129); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (418, 'ORTIZ', 130); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (419, 'SAN FCO. DE TIZNADOS', 130); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (420, 'SAN JOSE DE TIZNADOS', 130); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (421, 'S LORENZO DE TIZNADOS', 130); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (422, '<NAME>', 131); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (423, 'ALTAMIRA', 131); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (424, 'CHAGUARAMAS', 132); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (425, 'GUAYABAL', 133); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (426, 'CAZORLA', 133); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (427, 'FREITEZ', 134); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (428, '<NAME>', 134); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (429, 'CATEDRAL', 135); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (430, 'LA CONCEPCION', 135); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (431, '<NAME>', 135); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (432, 'UNION', 135); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (433, 'EL CUJI', 135); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (434, 'TAMACA', 135); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (435, '<NAME>', 135); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (436, '<NAME>', 135); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (437, '<NAME>', 135); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (438, 'JUAREZ', 135); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (439, '<NAME>', 136); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (440, '<NAME>', 136); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (441, '<NAME>', 136); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (442, 'CUARA', 136); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (443, '<NAME>', 136); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (444, 'TINTORERO', 136); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (445, '<NAME>', 136); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (446, '<NAME>', 136); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (447, 'BOLIVAR', 137); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (448, 'ANZOATEGUI', 137); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (449, 'GUARICO', 137); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (450, 'HUMOCARO ALTO', 137); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (451, 'HUMOCARO BAJO', 137); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (452, 'MORAN', 137); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (453, 'HILARIO LUNA Y LUNA', 137); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (454, 'LA CANDELARIA', 137); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (455, 'CABUDARE', 138); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (456, '<NAME>', 138); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (457, 'AGUA VIVA', 138); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (458, 'TRINIDAD SAMUEL', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (459, '<NAME>', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (460, 'CAMACARO', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (461, 'CASTAÑEDA', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (462, 'CHIQUINQUIRA', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (463, 'ESPINOZA LOS MONTEROS', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (464, 'LARA', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (465, '<NAME>', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (466, '<NAME>', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (467, 'TORRES', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (468, 'EL BLANCO', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (469, '<NAME>', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (470, '<NAME>', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (471, 'LAS MERCEDES', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (472, '<NAME>', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (473, '<NAME>', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (474, 'ALTAGRACIA', 139); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (475, 'SIQUISIQUE', 140); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (476, 'SAN MIGUEL', 140); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (477, 'XAGUAS', 140); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (478, 'MOROTURO', 140); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (479, '<NAME>', 141); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (480, 'YACAMBU', 141); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (481, 'QBDA. <NAME>', 141); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (482, 'SARARE', 142); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (483, '<NAME>', 142); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (484, 'BURIA', 142); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (485, '<NAME>.', 143); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (486, 'HECTOR AMABLE MORA', 143); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (487, '<NAME>', 143); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (488, '<NAME>', 143); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (489, 'PTE. <NAME>', 143); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (490, 'PRESIDENTE BETANCOURT', 143); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (491, 'PRESIDENTE PAEZ', 143); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (492, 'CM. LA AZULITA', 144); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (493, 'CM. CANAGUA', 145); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (494, 'CAPURI', 145); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (495, 'CHACANTA', 145); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (496, 'EL MOLINO', 145); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (497, 'GUAIMARAL', 145); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (498, 'MUCUTUY', 145); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (499, 'MUCUCHACHI', 145); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (500, 'ACEQUIAS', 146); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (501, 'JAJI', 146); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (502, '<NAME>', 146); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (503, '<NAME>', 146); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (504, 'MONTALBAN', 146); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (505, 'MATRIZ', 146); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (506, '<NAME>', 146); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (507, 'CM. GUARAQUE', 147); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (508, 'MESA DE QUINTERO', 147); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (509, 'RIO NEGRO', 147); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (510, 'CM. ARAPUEY', 148); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (511, 'PALMIRA', 148); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (512, 'CM. TORONDOY', 149); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (513, 'SAN CRISTOBAL DE T', 149); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (514, 'ARIAS', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (515, 'SAGRARIO', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (516, 'MILLA', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (517, 'EL LLANO', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (518, '<NAME>', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (519, '<NAME>', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (520, '<NAME>', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (521, '<NAME>', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (522, '<NAME>', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (523, 'LASSO DE LA VEGA', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (524, '<NAME>', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (525, '<NAME>', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (526, '<NAME>', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (527, 'EL MORRO', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (528, 'LOS NEVADOS', 150); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (529, 'CM. TABAY', 151); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (530, 'CM. TIMOTES', 152); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (531, '<NAME>', 152); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (532, 'PIÑANGO', 152); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (533, 'LA VENTA', 152); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (534, 'CM. STA CRUZ DE MORA', 153); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (535, 'MESA BOLIVAR', 153); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (536, 'MESA DE LAS PALMAS', 153); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (537, 'CM. STA ELENA DE ARENALES', 154); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (538, '<NAME>', 154); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (539, 'PQ R DE ALCAZAR', 154); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (540, 'CM. TUCANI', 155); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (541, 'FLORENCIO RAMIREZ', 155); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (542, 'CM. S<NAME>', 156); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (543, 'LAS PIEDRAS', 156); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (544, 'CM. <NAME>', 157); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (545, 'CM. MUCUCHIES', 158); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (546, 'MUCURUBA', 158); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (547, '<NAME>', 158); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (548, 'CACUTE', 158); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (549, 'LA TOMA', 158); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (550, 'CM. BAILADORES', 159); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (551, '<NAME>', 159); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (552, 'CM. LAGUNILLAS', 160); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (553, 'CHIGUARA', 160); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (554, 'ESTANQUES', 160); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (555, 'SAN JUAN', 160); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (556, 'PUEBLO NUEVO DEL SUR', 160); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (557, 'LA TRAMPA', 160); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (558, 'EL LLANO', 161); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (559, 'TOVAR', 161); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (560, 'EL AMPARO', 161); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (561, 'SAN FRANCISCO', 161); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (562, 'CM. NUEVA BOLIVIA', 162); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (563, 'INDEPENDENCIA', 162); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (564, 'MARIA C PALACIOS', 162); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (565, 'SANTA APOLONIA', 162); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (566, 'CM. STA MARIA DE CAPARO', 163); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (567, 'CM. ARICAGUA', 164); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (568, 'SAN ANTONIO', 164); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (569, 'CM. ZEA', 165); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (570, 'CAÑ<NAME>', 165); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (571, 'CAUCAGUA', 166); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (572, 'ARAGUITA', 166); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (573, '<NAME>', 166); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (574, 'CAPAYA', 166); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (575, 'PANAQUIRE', 166); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (576, 'RIBAS', 166); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (577, 'EL CAFE', 166); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (578, 'MARIZAPA', 166); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (579, 'HIGUEROTE', 167); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (580, 'CURIEPE', 167); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (581, 'TACARIGUA', 167); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (582, 'LOS TEQUES', 168); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (583, 'CECILIO ACOSTA', 168); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (584, 'PARACOTOS', 168); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (585, 'SAN PEDRO', 168); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (586, 'TACATA', 168); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (587, 'EL JARILLO', 168); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (588, 'ALTAGRACIA DE LA M', 168); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (589, 'STA TERESA DEL TUY', 169); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (590, 'EL CARTANAL', 169); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (591, 'OCUMARE DEL TUY', 170); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (592, 'LA DEMOCRACIA', 170); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (593, 'SANTA BARBARA', 170); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (594, 'RIO CHICO', 171); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (595, 'EL GUAPO', 171); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (596, 'TACARIGUA DE LA LAGUNA', 171); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (597, 'PAPARO', 171); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (598, 'SN FERNANDO DEL GUAPO', 171); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (599, '<NAME>', 172); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (600, 'GUARENAS', 173); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (601, 'PETARE', 174); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (602, '<NAME>', 174); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (603, 'CAUCAGUITA', 174); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (604, '<NAME>', 174); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (605, 'LA DOLORITA', 174); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (606, 'CUA', 175); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (607, 'NUEVA CUA', 175); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (608, 'GUATIRE', 176); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (609, 'BOLIVAR', 176); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (610, 'CHARALLAVE', 177); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (611, 'LAS BRISAS', 177); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (612, 'SAN ANTONIO LOS ALTOS', 178); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (613, '<NAME>', 179); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (614, 'CUMBO', 179); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (615, 'SAN <NAME>', 180); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (616, 'S ANTONIO <NAME>', 180); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (617, 'BARUTA', 181); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (618, 'EL CAFETAL', 181); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (619, 'LAS MINAS DE BARUTA', 181); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (620, 'CARRIZAL', 182); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (621, 'CHACAO', 183); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (622, 'EL HATILLO', 184); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (623, 'MAMPORAL', 185); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (624, 'CUPIRA', 186); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (625, 'MACHURUCUTO', 186); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (626, 'CM. SAN ANTONIO', 187); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (627, '<NAME>', 187); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (628, 'CM. CARIPITO', 188); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (629, 'CM. CARIPE', 189); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (630, 'TERESEN', 189); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (631, 'EL GUACHARO', 189); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (632, '<NAME>', 189); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (633, 'LA GUANOTA', 189); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (634, '<NAME>', 189); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (635, 'CM. CAICARA', 190); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (636, 'AREO', 190); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (637, 'SAN FELIX', 190); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (638, 'VIENTO FRESCO', 190); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (639, 'CM. PUNTA DE MATA', 191); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (640, 'EL TEJERO', 191); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (641, 'CM. TEMBLADOR', 192); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (642, 'TABASCA', 192); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (643, 'LAS ALHUACAS', 192); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (644, 'CHAGUARAMAS', 192); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (645, 'EL FURRIAL', 193); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (646, 'JUSEPIN', 193); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (647, 'EL COROZO', 193); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (648, 'SAN VICENTE', 193); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (649, 'LA PICA', 193); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (650, 'ALTO DE LOS GODOS', 193); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (651, 'BOQUERON', 193); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (652, 'LAS COCUIZAS', 193); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (653, 'SANTA CRUZ', 193); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (654, '<NAME>', 193); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (655, 'CM. ARAGUA', 194); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (656, 'CHAGUARAMAL', 194); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (657, 'GUANAGUANA', 194); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (658, 'APARICIO', 194); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (659, 'TAGUAYA', 194); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (660, 'EL PINTO', 194); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (661, 'LA TOSCANA', 194); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (662, 'CM. QUIRIQUIRE', 195); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (663, 'CACHIPO', 195); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (664, 'CM. BARRANCAS', 196); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (665, 'LOS BARRANCOS DE FAJARDO', 196); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (666, 'CM. AGUASAY', 197); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (667, 'CM. SANTA BARBARA', 198); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (668, 'CM. URACOA', 199); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (669, 'CM. LA ASUNCION', 200); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (670, 'CM. SAN JUAN BAUTISTA', 201); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (671, 'ZABALA', 201); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (672, 'CM. SANTA ANA', 202); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (673, 'GUEVARA', 202); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (674, 'MATASIETE', 202); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (675, 'BOLIVAR', 202); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (676, 'SUCRE', 202); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (677, 'CM. PAMPATAR', 203); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (678, 'AGUIRRE', 203); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (679, 'CM. JUAN GRIEGO', 204); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (680, 'ADRIAN', 204); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (681, 'CM. PORLAMAR', 205); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (682, 'CM. BOCA DEL RIO', 206); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (683, 'SAN FRANCISCO', 206); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (684, 'CM. SAN PEDRO DE COCHE', 207); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (685, 'VICENTE FUENTES', 207); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (686, 'CM. PUNTA DE PIEDRAS', 208); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (687, 'LOS BARALES', 208); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (688, 'CM.LA PLAZA DE PARAGUACHI', 209); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (689, 'CM. VALLE ESP SANTO', 210); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (690, '<NAME>', 210); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (691, 'CM. ARAURE', 211); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (692, 'RIO ACARIGUA', 211); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (693, 'CM. PIRITU', 212); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (694, 'UVERAL', 212); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (695, 'CM. GUANARE', 213); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (696, 'CORDOBA', 213); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (697, 'SAN JUAN GUANAGUANARE', 213); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (698, 'VIRGEN DE LA COROMOTO', 213); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (699, '<NAME>', 213); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (700, 'CM. GUANARITO', 214); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (701, 'TRINIDAD DE LA CAPILLA', 214); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (702, 'DIVINA PASTORA', 214); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (703, 'CM. OSPINO', 215); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (704, 'APARICION', 215); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (705, 'LA ESTACION', 215); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (706, 'CM. ACARIGUA', 216); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (707, 'PAYARA', 216); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (708, 'PIMPINELA', 216); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (709, '<NAME>', 216); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (710, 'CM. BISCUCUY', 217); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (711, 'CONCEPCION', 217); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (712, '<NAME>', 217); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (713, 'UVENCIO A VELASQUEZ', 217); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (714, '<NAME>', 217); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (715, 'VILLA ROSA', 217); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (716, 'CM. VILLA BRUZUAL', 218); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (717, 'CANELONES', 218); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (718, 'S<NAME>', 218); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (719, 'SAN ISIDRO LABRADOR', 218); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (720, 'CM. CHABASQUEN', 219); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (721, 'PEÑA BLANCA', 219); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (722, 'CM. AGUA BLANCA', 220); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (723, 'CM. PAPELON', 221); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (724, 'CAÑO DELGADITO', 221); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (725, 'CM. BOCONOITO', 222); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (726, '<NAME>', 222); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (727, 'CM. SAN <NAME> ONOTO', 223); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (728, 'SANTA FE', 223); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (729, '<NAME>', 223); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (730, 'CM. EL PLAYON', 224); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (731, 'FLORIDA', 224); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (732, '<NAME>', 225); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (733, '<NAME>', 225); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (734, '<NAME>', 225); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (735, 'EL MORRO DE P<NAME>ANTO', 225); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (736, '<NAME>', 225); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (737, 'EL PILAR', 226); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (738, 'EL RINCON', 226); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (739, 'GUARAUNOS', 226); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (740, 'TUNAPUICITO', 226); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (741, 'UNION', 226); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (742, 'GRAL FCO. A VASQUEZ', 226); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (743, 'SANTA CATALINA', 227); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (744, 'SANTA ROSA', 227); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (745, 'SANTA TERESA', 227); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (746, 'BOLIVAR', 227); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (747, 'MACARAPANA', 227); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (748, 'YAGUARAPARO', 228); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (749, 'LIBERTAD', 228); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (750, 'PAUJIL', 228); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (751, 'IRAPA', 229); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (752, 'CAMPO CLARO', 229); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (753, 'SORO', 229); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (754, 'SAN ANTONIO DE IRAPA', 229); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (755, 'MARABAL', 229); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (756, 'CM. <NAME>', 230); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (757, 'CUMANACOA', 231); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (758, 'ARENAS', 231); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (759, 'ARICAGUA', 231); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (760, 'COCOLLAR', 231); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (761, '<NAME>', 231); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (762, '<NAME>', 231); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (763, 'CARIACO', 232); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (764, 'CATUARO', 232); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (765, 'RENDON', 232); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (766, '<NAME>', 232); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (767, '<NAME>', 232); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (768, 'ALTAGRACIA', 233); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (769, 'AYACUCHO', 233); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (770, '<NAME>', 233); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (771, '<NAME>', 233); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (772, '<NAME>', 233); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (773, '<NAME>', 233); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (774, '<NAME>', 233); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (775, 'GUIRIA', 234); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (776, '<NAME>', 234); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (777, '<NAME>', 234); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (778, 'BIDEAU', 234); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (779, 'MARIÑO', 235); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (780, '<NAME>', 235); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (781, 'TUNAPUY', 236); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (782, 'CAMPO ELIAS', 236); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (783, '<NAME>', 237); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (784, '<NAME>', 237); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (785, 'CM. MARIGUITAR', 238); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (786, 'ARAYA', 239); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (787, 'MANICUARE', 239); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (788, 'CHACOPATA', 239); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (789, 'CM. COLON', 240); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (790, '<NAME>', 240); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (791, '<NAME>', 240); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (792, 'CM. <NAME>', 241); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (793, 'PALOTAL', 241); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (794, '<NAME>', 241); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (795, '<NAME>', 241); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (796, 'CM. CAPACHO NUEVO', 242); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (797, '<NAME>', 242); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (798, '<NAME>', 242); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (799, 'CM. TARIBA', 243); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (800, 'LA FLORIDA', 243); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (801, 'AMENOD<NAME>', 243); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (802, 'CM. LA GRITA', 244); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (803, '<NAME>', 244); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (804, '<NAME>', 244); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (805, 'CM. RUBIO', 245); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (806, 'BRAMON', 245); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (807, 'LA PETROLEA', 245); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (808, 'QUINIMARI', 245); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (809, 'CM. LOBATERA', 246); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (810, 'CONSTITUCION', 246); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (811, 'LA CONCORDIA', 247); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (812, '<NAME>', 247); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (813, '<NAME>', 247); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (814, 'SAN SEBASTIAN', 247); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (815, 'DR. FCO. <NAME>', 247); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (816, 'CM. PREGONERO', 248); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (817, 'CARDENAS', 248); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (818, 'POTOSI', 248); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (819, '<NAME>', 248); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (820, 'CM. STA. ANA <NAME>', 249); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (821, 'CM. LA FRIA', 250); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (822, 'BOCA DE GRITA', 250); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (823, '<NAME>', 250); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (824, 'CM. PALMIRA', 251); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (825, 'CM. MICHELENA', 252); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (826, 'CM. ABEJALES', 253); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (827, '<NAME>', 253); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (828, 'DORADAS', 253); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (829, 'EMETERIO OCHOA', 253); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (830, 'CM. COLONCITO', 254); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (831, 'LA PALMITA', 254); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (832, 'CM. UREÑA', 255); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (833, 'NUEVA ARCADIA', 255); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (834, 'CM. QUENIQUEA', 256); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (835, 'SAN PABLO', 256); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (836, '<NAME>', 256); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (837, 'CM. CORDERO', 257); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (838, 'CM.SAN <NAME>', 258); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (839, '<NAME>', 258); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (840, '<NAME>', 258); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (841, 'CM. CAP<NAME>', 259); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (842, '<NAME>', 259); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (843, '<NAME>', 259); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (844, 'CM. LA TENDIDA', 260); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (845, 'BOCONO', 260); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (846, 'HERNANDEZ', 260); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (847, 'CM. SEBORUCO', 261); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (848, 'CM. LAS MESAS', 262); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (849, 'CM. S<NAME>', 263); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (850, 'CM. EL COBRE', 264); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (851, 'CM. DELICIAS', 265); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (852, 'CM. SAN SIMON', 266); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (853, 'CM. SAN JOSECITO', 267); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (854, 'CM. UMUQUENA', 268); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (855, 'BETIJOQUE', 269); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (856, '<NAME>', 269); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (857, 'LA PUEBLITA', 269); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (858, 'EL CEDRO', 269); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (859, 'BOCONO', 270); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (860, 'EL CARMEN', 270); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (861, 'MOSQUEY', 270); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (862, 'AYACUCHO', 270); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (863, 'BURBUSAY', 270); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (864, 'GENERAL RIVAS', 270); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (865, '<NAME>', 270); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (866, '<NAME>', 270); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (867, '<NAME>', 270); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (868, '<NAME>', 270); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (869, 'GUARAMACAL', 270); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (870, 'LA VEGA DE GUARAMACAL', 270); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (871, 'CARACHE', 271); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (872, 'LA CONCEPCION', 271); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (873, 'CUICAS', 271); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (874, 'PANAMERICANA', 271); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (875, 'S<NAME>', 271); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (876, 'ESCUQUE', 272); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (877, 'SABANA LIBRE', 272); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (878, 'LA UNION', 272); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (879, 'SANTA RITA', 272); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (880, 'CRISTOBAL MENDOZA', 273); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (881, 'CHIQUINQUIRA', 273); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (882, 'MATRIZ', 273); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (883, 'MONSEÑOR CARRILLO', 273); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (884, 'CRUZ CARRILLO', 273); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (885, '<NAME>', 273); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (886, 'TRES ESQUINAS', 273); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (887, 'LA QUEBRADA', 274); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (888, 'JAJO', 274); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (889, 'LA MESA', 274); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (890, 'SANTIAGO', 274); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (891, 'CABIMBU', 274); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (892, 'TUÑAME', 274); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (893, '<NAME>', 275); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (894, '<NAME>', 275); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (895, 'LA BEATRIZ', 275); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (896, 'MENDOZA', 275); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (897, 'LA PUERTA', 275); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (898, '<NAME>', 275); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (899, 'CHEJENDE', 276); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (900, 'CARRILLO', 276); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (901, 'CEGARRA', 276); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (902, 'BOLIVIA', 276); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (903, '<NAME>', 276); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (904, '<NAME>', 276); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (905, '<NAME>', 276); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (906, 'EL DIVIDIVE', 277); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (907, 'AGUA CALIENTE', 277); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (908, 'EL CENIZO', 277); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (909, '<NAME>', 277); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (910, 'VALERITA', 277); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (911, '<NAME>', 278); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (912, 'BUENA VISTA', 278); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (913, '<NAME>', 278); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (914, 'MOTATAN', 279); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (915, 'EL BAÑO', 279); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (916, 'JALISCO', 279); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (917, 'PAMPAN', 280); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (918, '<NAME>', 280); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (919, 'LA PAZ', 280); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (920, 'FLOR DE PATRIA', 280); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (921, 'CARVAJAL', 281); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (922, '<NAME>', 281); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (923, '<NAME>', 281); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (924, '<NAME>', 281); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (925, '<NAME>', 282); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (926, 'JUNIN', 282); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (927, '<NAME>', 282); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (928, 'EL PARAISO', 282); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (929, '<NAME>', 283); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (930, 'ARAGUANEY', 283); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (931, 'EL JAGUITO', 283); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (932, 'LA ESPERANZA', 283); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (933, '<NAME>', 284); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (934, 'CHEREGUE', 284); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (935, 'GRANADOS', 284); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (936, 'EL SOCORRO', 285); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (937, '<NAME>', 285); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (938, '<NAME>', 285); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (939, 'CAMPO ELIAS', 286); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (940, '<NAME>', 286); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (941, 'SANTA APOLONIA', 287); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (942, 'LA CEIBA', 287); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (943, 'EL PROGRESO', 287); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (944, 'TRES DE FEBRERO', 287); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (945, 'PAMPANITO', 288); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (946, 'PAMPANITO II', 288); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (947, 'LA CONCEPCION', 288); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (948, 'CM. AROA', 289); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (949, 'CM. CHIVACOA', 290); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (950, 'CAMPO ELIAS', 290); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (951, 'CM. NIRGUA', 291); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (952, 'SALOM', 291); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (953, 'TEMERLA', 291); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (954, 'CM. SAN FELIPE', 292); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (955, 'ALBARICO', 292); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (956, '<NAME>', 292); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (957, 'CM. GUAMA', 293); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (958, 'CM. URACHICHE', 294); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (959, 'CM. YARITAGUA', 295); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (960, '<NAME>', 295); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (961, 'CM. SABANA DE PARRA', 296); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (962, 'CM. BORAURE', 297); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (963, 'CM. COCOROTE', 298); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (964, 'CM. INDEPENDENCIA', 299); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (965, 'CM. S<NAME>', 300); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (966, 'CM. YUMARE', 301); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (967, 'CM. FARRIAR', 302); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (968, 'EL GUAYABO', 302); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (969, 'GENERAL URDANETA', 303); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (970, 'LIBERTADOR', 303); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (971, '<NAME>', 303); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (972, '<NAME>', 303); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (973, '<NAME>', 303); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (974, '<NAME>', 303); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (975, '<NAME>', 304); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (976, 'SANTA RITA', 304); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (977, '<NAME>', 304); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (978, '<NAME>', 304); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (979, '<NAME>', 305); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (980, 'URRIBARRI', 305); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (981, 'MORALITO', 305); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (982, '<NAME>', 305); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (983, '<NAME>', 305); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (984, 'LU<NAME>E', 306); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (985, 'RICAURTE', 306); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (986, '<NAME>', 306); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (987, '<NAME>', 306); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (988, 'LAS PARCELAS', 306); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (989, 'TAMARE', 306); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (990, 'LA SIERRITA', 306); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (991, 'BOLIVAR', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (992, 'COQUIVACOA', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (993, 'CRISTO DE ARANZA', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (994, 'CHIQUINQUIRA', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (995, '<NAME>', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (996, '<NAME>', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (997, '<NAME>', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (998, '<NAME>', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (999, '<NAME>', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1000, '<NAME>', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1001, 'CECILIO ACOSTA', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1002, '<NAME>', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1003, 'FRANCISCO EUGENIO B', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1004, '<NAME>', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1005, '<NAME>', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1006, '<NAME>', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1007, '<NAME>', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1008, '<NAME>', 307); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1009, 'FARIA', 308); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1010, '<NAME>', 308); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1011, '<NAME>', 308); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1012, '<NAME>', 308); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1013, 'ALTAGRACIA', 308); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1014, 'GOAJIRA', 309); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1015, '<NAME>', 309); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1016, 'SINAMAICA', 309); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1017, '<NAME>', 309); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1018, '<NAME>', 310); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1019, '<NAME>AS', 310); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1020, 'LIBERTAD', 310); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1021, 'RIO NEGRO', 310); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1022, 'GIBRALTAR', 311); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1023, 'HERAS', 311); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1024, '<NAME>', 311); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1025, 'ROMULO GALLEGOS', 311); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1026, 'BOBURES', 311); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1027, 'EL BATEY', 311); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1028, '<NAME> (KM 48)', 312); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1029, 'POTRERITOS', 312); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1030, 'EL CARMELO', 312); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1031, 'CHIQUINQUIRA', 312); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1032, 'CONCEPCION', 312); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1033, 'E<NAME>', 313); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1034, 'ALONSO DE OJEDA', 313); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1035, 'VENEZUELA', 313); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1036, 'CAMPO LARA', 313); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1037, 'LIBERTAD', 313); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1038, '<NAME>', 314); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1039, 'ENCONTRADOS', 314); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1040, '<NAME>', 315); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1041, 'SIXTO ZAMBRANO', 315); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1042, 'EL ROSARIO', 315); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1043, 'AMBROSIO', 316); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1044, '<NAME>', 316); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1045, '<NAME>', 316); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1046, 'LA ROSA', 316); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1047, '<NAME>', 316); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1048, '<NAME>', 316); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1049, '<NAME>', 316); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1050, '<NAME>', 316); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1051, '<NAME>', 316); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1052, '<NAME>', 317); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1053, 'LA VICTORIA', 317); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1054, '<NAME>', 317); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1055, '<NAME>', 318); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1056, 'LA CONCEPCION', 318); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1057, '<NAME>', 318); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1058, '<NAME>', 318); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1059, 'MONAGAS', 319); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1060, '<NAME>', 319); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1061, '<NAME>', 320); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1062, '<NAME>', 320); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1063, '<NAME>', 320); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1064, '<NAME>', 320); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1065, '<NAME>', 320); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1066, '<NAME>', 320); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1067, 'BARI', 321); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1068, '<NAME>', 321); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1069, '<NAME>', 322); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1070, '<NAME>', 322); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1071, '<NAME>', 322); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1072, '<NAME>', 323); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1073, '<NAME>', 323); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1074, '<NAME>', 323); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1075, '<NAME>', 324); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1076, '<NAME>', 324); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1077, 'PARHUEÑA', 324); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1078, 'PLATANILLAL', 324); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1079, 'CM. <NAME>', 325); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1080, 'UCATA', 325); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1081, 'YAPACANA', 325); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1082, 'CANAME', 325); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1083, 'CM. MAROA', 326); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1084, 'VICTORINO', 326); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1085, 'COMUNIDAD', 326); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1086, 'CM. SAN CARLOS DE RIO NEG', 327); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1087, 'SOLANO', 327); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1088, 'COCUY', 327); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1089, 'CM. ISLA DE RATON', 328); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1090, 'SAMARIAPO', 328); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1091, 'SIPAPO', 328); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1092, 'MUNDUAPO', 328); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1093, 'GUAYAPO', 328); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1094, 'CM. SAN JUAN DE MANAPIARE', 329); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1095, 'ALTO VENTUARI', 329); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1096, 'MEDIO VENTUARI', 329); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1097, 'BAJO VENTUARI', 329); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1098, 'CM. LA ESMERALDA', 330); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1099, 'HUACHAMACARE', 330); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1100, 'MARAWAKA', 330); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1101, 'MAVACA', 330); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1102, '<NAME>', 330); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1103, '<NAME>', 331); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1104, '<NAME>', 331); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1105, '<NAME>', 331); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1106, '<NAME>', 331); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1107, '<NAME>', 331); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1108, 'MONS. <NAME>', 331); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1109, 'MCL.<NAME>', 331); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1110, '<NAME>', 331); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1111, 'PEDERNALES', 332); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1112, '<NAME>IETO FIGUERO', 332); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1113, 'CURIAPO', 333); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1114, '<NAME>', 333); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1115, '<NAME>', 333); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1116, '<NAME>', 333); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1117, '<NAME>', 333); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1118, 'ALMIRANTE LUIS BRION', 333); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1119, 'IMATACA', 334); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1120, '<NAME>', 334); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1121, '<NAME>', 334); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1122, '<NAME>', 334); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1123, '5 DE JULIO', 334); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1124, 'CARABALLEDA', 335); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1125, 'CARAYACA', 335); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1126, 'CARUAO', 335); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1127, 'CATIA LA MAR', 335); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1128, 'LA GUAIRA', 335); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1129, 'MACUTO', 335); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1130, 'MAIQUETIA', 335); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1131, 'NAIGUATA', 335); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1132, 'EL JUNKO', 335); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1133, 'PQ <NAME>', 335); INSERT INTO public.parroquia (id, nombre, municipio_id) VALUES (1134, 'PQ CARLOS SOUBLETTE', 335); -- -- TOC entry 2307 (class 0 OID 0) -- Dependencies: 204 -- Name: parroquia_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.parroquia_id_seq', 1135, false); -- -- TOC entry 2269 (class 0 OID 124239) -- Dependencies: 191 -- Data for Name: password_resets; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- TOC entry 2271 (class 0 OID 124248) -- Dependencies: 193 -- Data for Name: permissions; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- TOC entry 2308 (class 0 OID 0) -- Dependencies: 192 -- Name: permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.permissions_id_seq', 1, false); -- -- TOC entry 2264 (class 0 OID 124166) -- Dependencies: 186 -- Data for Name: responsables; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- TOC entry 2309 (class 0 OID 0) -- Dependencies: 185 -- Name: responsables_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.responsables_id_seq', 1, false); -- -- TOC entry 2276 (class 0 OID 124290) -- Dependencies: 198 -- Data for Name: role_has_permissions; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- TOC entry 2273 (class 0 OID 124259) -- Dependencies: 195 -- Data for Name: roles; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- TOC entry 2310 (class 0 OID 0) -- Dependencies: 194 -- Name: roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.roles_id_seq', 1, false); -- -- TOC entry 2268 (class 0 OID 124227) -- Dependencies: 190 -- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres -- -- -- TOC entry 2311 (class 0 OID 0) -- Dependencies: 189 -- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.users_id_seq', 1, false); -- -- TOC entry 2132 (class 2606 OID 124343) -- Name: estado_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.estado ADD CONSTRAINT estado_pkey PRIMARY KEY (id); -- -- TOC entry 2111 (class 2606 OID 124224) -- Name: estudios_id_unique; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.estudios ADD CONSTRAINT estudios_id_unique UNIQUE (id); -- -- TOC entry 2113 (class 2606 OID 124217) -- Name: estudios_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.estudios ADD CONSTRAINT estudios_pkey PRIMARY KEY (id); -- -- TOC entry 2095 (class 2606 OID 124163) -- Name: instituciones_email_unique; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.instituciones ADD CONSTRAINT instituciones_email_unique UNIQUE (email); -- -- TOC entry 2097 (class 2606 OID 124159) -- Name: instituciones_id_unique; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.instituciones ADD CONSTRAINT instituciones_id_unique UNIQUE (id); -- -- TOC entry 2099 (class 2606 OID 124157) -- Name: instituciones_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.instituciones ADD CONSTRAINT instituciones_pkey PRIMARY KEY (id); -- -- TOC entry 2101 (class 2606 OID 124161) -- Name: instituciones_rif_unique; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.instituciones ADD CONSTRAINT instituciones_rif_unique UNIQUE (rif); -- -- TOC entry 2093 (class 2606 OID 124144) -- Name: migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.migrations ADD CONSTRAINT migrations_pkey PRIMARY KEY (id); -- -- TOC entry 2125 (class 2606 OID 124278) -- Name: model_has_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.model_has_permissions ADD CONSTRAINT model_has_permissions_pkey PRIMARY KEY (permission_id, model_id, model_type); -- -- TOC entry 2128 (class 2606 OID 124289) -- Name: model_has_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.model_has_roles ADD CONSTRAINT model_has_roles_pkey PRIMARY KEY (role_id, model_id, model_type); -- -- TOC entry 2134 (class 2606 OID 124345) -- Name: municipio_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.municipio ADD CONSTRAINT municipio_pkey PRIMARY KEY (id); -- -- TOC entry 2136 (class 2606 OID 124347) -- Name: parroquia_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.parroquia ADD CONSTRAINT parroquia_pkey PRIMARY KEY (id); -- -- TOC entry 2120 (class 2606 OID 124256) -- Name: permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.permissions ADD CONSTRAINT permissions_pkey PRIMARY KEY (id); -- -- TOC entry 2103 (class 2606 OID 124184) -- Name: responsables_cedula_unique; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.responsables ADD CONSTRAINT responsables_cedula_unique UNIQUE (cedula); -- -- TOC entry 2105 (class 2606 OID 124186) -- Name: responsables_email_r_unique; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.responsables ADD CONSTRAINT responsables_email_r_unique UNIQUE (email_r); -- -- TOC entry 2107 (class 2606 OID 124182) -- Name: responsables_id_unique; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.responsables ADD CONSTRAINT responsables_id_unique UNIQUE (id); -- -- TOC entry 2109 (class 2606 OID 124175) -- Name: responsables_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.responsables ADD CONSTRAINT responsables_pkey PRIMARY KEY (id); -- -- TOC entry 2130 (class 2606 OID 124304) -- Name: role_has_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.role_has_permissions ADD CONSTRAINT role_has_permissions_pkey PRIMARY KEY (permission_id, role_id); -- -- TOC entry 2122 (class 2606 OID 124267) -- Name: roles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.roles ADD CONSTRAINT roles_pkey PRIMARY KEY (id); -- -- TOC entry 2115 (class 2606 OID 124238) -- Name: users_id_unique; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.users ADD CONSTRAINT users_id_unique UNIQUE (id); -- -- TOC entry 2117 (class 2606 OID 124236) -- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.users ADD CONSTRAINT users_pkey PRIMARY KEY (id); -- -- TOC entry 2123 (class 1259 OID 124271) -- Name: model_has_permissions_model_id_model_type_index; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX model_has_permissions_model_id_model_type_index ON public.model_has_permissions USING btree (model_id, model_type); -- -- TOC entry 2126 (class 1259 OID 124282) -- Name: model_has_roles_model_id_model_type_index; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX model_has_roles_model_id_model_type_index ON public.model_has_roles USING btree (model_id, model_type); -- -- TOC entry 2118 (class 1259 OID 124245) -- Name: password_resets_email_index; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX password_resets_email_index ON public.password_resets USING btree (email); -- -- TOC entry 2138 (class 2606 OID 124218) -- Name: estudios_institucion_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.estudios ADD CONSTRAINT estudios_institucion_id_foreign FOREIGN KEY (institucion_id) REFERENCES public.instituciones(id); -- -- TOC entry 2139 (class 2606 OID 124272) -- Name: model_has_permissions_permission_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.model_has_permissions ADD CONSTRAINT model_has_permissions_permission_id_foreign FOREIGN KEY (permission_id) REFERENCES public.permissions(id) ON DELETE CASCADE; -- -- TOC entry 2140 (class 2606 OID 124283) -- Name: model_has_roles_role_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.model_has_roles ADD CONSTRAINT model_has_roles_role_id_foreign FOREIGN KEY (role_id) REFERENCES public.roles(id) ON DELETE CASCADE; -- -- TOC entry 2143 (class 2606 OID 124348) -- Name: municipio_estado_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.municipio ADD CONSTRAINT municipio_estado_id_fkey FOREIGN KEY (estado_id) REFERENCES public.estado(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- TOC entry 2144 (class 2606 OID 124353) -- Name: parroquia_municipio_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.parroquia ADD CONSTRAINT parroquia_municipio_id_fkey FOREIGN KEY (municipio_id) REFERENCES public.municipio(id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- TOC entry 2137 (class 2606 OID 124176) -- Name: responsables_institucion_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.responsables ADD CONSTRAINT responsables_institucion_id_foreign FOREIGN KEY (institucion_id) REFERENCES public.instituciones(id); -- -- TOC entry 2141 (class 2606 OID 124293) -- Name: role_has_permissions_permission_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.role_has_permissions ADD CONSTRAINT role_has_permissions_permission_id_foreign FOREIGN KEY (permission_id) REFERENCES public.permissions(id) ON DELETE CASCADE; -- -- TOC entry 2142 (class 2606 OID 124298) -- Name: role_has_permissions_role_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.role_has_permissions ADD CONSTRAINT role_has_permissions_role_id_foreign FOREIGN KEY (role_id) REFERENCES public.roles(id) ON DELETE CASCADE; -- -- TOC entry 2290 (class 0 OID 0) -- Dependencies: 6 -- Name: SCHEMA public; Type: ACL; Schema: -; Owner: postgres -- REVOKE ALL ON SCHEMA public FROM PUBLIC; REVOKE ALL ON SCHEMA public FROM postgres; GRANT ALL ON SCHEMA public TO postgres; GRANT ALL ON SCHEMA public TO PUBLIC; -- Completed on 2018-11-28 18:25:03 -- -- PostgreSQL database dump complete --
<reponame>loeyae/ruoyi-vue-pro DELETE FROM "system_dept"; DELETE FROM "system_dict_data"; DELETE FROM "system_role"; DELETE FROM "system_role_menu"; DELETE FROM "system_menu"; DELETE FROM "system_user_role"; DELETE FROM "system_user_post"; DELETE FROM "system_dict_type"; DELETE FROM "system_user_session"; DELETE FROM "system_post"; DELETE FROM "system_login_log"; DELETE FROM "system_operate_log"; DELETE FROM "system_users"; DELETE FROM "system_sms_channel"; DELETE FROM "system_sms_template"; DELETE FROM "system_sms_log"; DELETE FROM "system_error_code"; DELETE FROM "system_social_user"; DELETE FROM "system_social_user_bind"; DELETE FROM "system_tenant"; DELETE FROM "system_tenant_package"; DELETE FROM "system_sensitive_word"; DELETE FROM "system_oauth2_client";
<reponame>KarenBrissow/Portfolio INSERT INTO TB_PRODUTOS (PRODUTO, NOME, EMBALAGEM, TAMANHO, SABOR, PRECO_LISTA) VALUES ('1040107','Light - 350 ml - Mel�ncia', 'Lata', '350 ml','Mel�ncia',4.56); SELECT * FROM TB_PRODUTOS;
# 1 tuple insert, with no column specification. CREATE TABLE tbl(c1 INTEGER NOT NULL PRIMARY KEY, c2 INTEGER, c3 INTEGER) INSERT INTO tbl VALUES (1, 2, 3) SELECT c1, c2, c3 from tbl DROP TABLE tbl # 1 tuple insert, with columns inserted in schema order CREATE TABLE tbl(c1 INTEGER NOT NULL PRIMARY KEY, c2 INTEGER, c3 INTEGER) INSERT INTO tbl (c1, c2, c3) VALUES (1, 2, 3) SELECT c1, c2, c3 from tbl DROP TABLE tbl # 1 tuple insert, with columns inserted in different order from schema. # issue #729 wait to be fixed CREATE TABLE tbl(c1 INTEGER NOT NULL PRIMARY KEY, c2 INTEGER, c3 INTEGER) INSERT INTO tbl (c3, c1, c2) VALUES (3, 1, 2) SELECT c1, c2, c3 from tbl DROP TABLE tbl # 2 tuple insert, with no column specification CREATE TABLE tbl(c1 INTEGER NOT NULL PRIMARY KEY, c2 INTEGER, c3 INTEGER) INSERT INTO tbl VALUES (1, 2, 3), (11, 12, 13) SELECT c1, c2, c3 from tbl DROP TABLE tbl # 2 tuple insert, with no column specification, with fewer than # schema columns # binding failed, wait to be fixed CREATE TABLE tbl(c1 INTEGER NOT NULL PRIMARY KEY, c2 INTEGER, c3 INTEGER) INSERT INTO tbl VALUES (1), (11, 12) SELECT c1, c2, c3 from tbl DROP TABLE tbl # Test insertion of NULL values. # Fix #712. CREATE TABLE xxx (col1 INT) INSERT INTO xxx VALUES (NULL) SELECT * FROM xxx DROP TABLE xxx # CREATE TABLE with a qualified namespace doesn't work as expected # #706 fixed but also need #724 for select and drop CREATE SCHEMA foo CREATE TABLE foo.bar (id integer) SELECT * from pg_catalog.pg_class DROP SCHEMA foo CASCADE # Invalid Implicit Casting of Integer Strings as Varchars # #733 fixed CREATE TABLE xxx01 (col0 VARCHAR(32) PRIMARY KEY, col1 VARCHAR(32)) INSERT INTO xxx01 VALUES ('0', '1319') INSERT INTO xxx01 VALUES ('1', '21995') INSERT INTO xxx01 VALUES ('2', '28037') INSERT INTO xxx01 VALUES ('3', '26984') INSERT INTO xxx01 VALUES ('4', '2762') INSERT INTO xxx01 VALUES ('5', '31763') INSERT INTO xxx01 VALUES ('6', '20359') INSERT INTO xxx01 VALUES ('7', '26022') INSERT INTO xxx01 VALUES ('8', '364') INSERT INTO xxx01 VALUES ('9', '831') SELECT * FROM xxx01 # Support default value expressions # #718 fixed CREATE TABLE xxx (id integer, val integer DEFAULT 123) INSERT INTO xxx VALUES (1, DEFAULT) SELECT * from xxx DROP TABLE xxx # Support out of order inserts # #729 fixed CREATE TABLE xxx (c1 integer, c2 integer, c3 integer) INSERT INTO xxx (c2, c1, c3) VALUES (2, 3, 4) SELECT * from xxx DROP TABLE xxx # Support out of order inserts with defaults # #718 fixed CREATE TABLE xxx (c1 integer, c2 integer, c3 integer DEFAULT 34) INSERT INTO xxx (c2, c1) VALUES (2, 3) SELECT * from xxx DROP TABLE xxx # Test inserting default expressions that are not INTEGER type. # #831 BinderSherpa CREATE TABLE xxx (c1 integer, c2 integer, c3 bigint DEFAULT 4398046511104) INSERT INTO xxx (c1, c2) VALUES (1, 2) SELECT * from xxx DROP TABLE xxx # Test inserting cast expressions for BIGINT and TIMESTAMP. # #831 BinderSherpa CREATE TABLE xxx (c1 bigint, c2 timestamp) INSERT INTO xxx (c1, c2) VALUES ('123'::bigint, '2020-01-02 12:23:34.56789') SELECT * from xxx DROP TABLE xxx
INSERT INTO department_table (department_name) VALUES ("Sales"), ("Engineering"), ("Accounting"), ("Legal"); INSERT INTO role_table (title, salary, department_id) VALUES ("Sales Lead", 80000, 1), ("Sales Person", 55000, 1), ("Lead Engineer", 120000, 2), ("Software Engineer", 90000, 2), ("Account Manager", 100000, 3), ("Accountant", 75000, 3), ("Legal Team Lead", 160000, 4), ("Lawyer", 120000, 4); INSERT INTO employee_table (first_name, last_name, role_id) VALUES ("Bjorn", "Moore", 3), ("Margo", "Largo", 4), ("Raina", "Quest", 5), ("Claudine", "Renee", 1), ("Robin", "Lee", 7);
<reponame>magnuso/PoC /******************************************************************************* PoC Web-Application-Framwork http://poc-online.net/ Copyright (c) 2013, PoC - <NAME> Released under the MIT license http://poc-online.net/license -- pocPackage: pocCore *******************************************************************************/ CREATE PROCEDURE pocAttributeCharUpdate ( IN inId BIGINT, IN inDebitId BIGINT, IN inVoucherId BIGINT, IN inName VARCHAR(64), IN inTitle VARCHAR(255), IN inContent VARCHAR(255), IN inValue DOUBLE) BEGIN DECLARE n, creditId BIGINT DEFAULT 0; bodyOfProc: BEGIN DECLARE EXIT HANDLER FOR SQLEXCEPTION SELECT 400 AS id, 'SQLEXCEPTION' AS name, 'pocPocInsert' AS content; -- get poc id SELECT COUNT(id), creditId FROM pocAttributeChar WHERE id = inId INTO n, creditId; -- check IF n < 0 THEN SELECT 404 AS id, 'Not Found' AS name, 'pocAttributeCharUpdate' AS content; LEAVE bodyOfProc; END IF; IF pocPocPathFromId(creditId) IS NULL THEN SELECT 404 AS id, 'Not Found' AS name, 'pocAttributeCharUpdate' AS content; LEAVE bodyOfProc; END IF; IF NOT pocPocCheckPriv(creditId, 'update') THEN SELECT 401 AS id, 'Unauthorized' AS name, 'pocAttributeCharUpdate' AS content; LEAVE bodyOfProc; END IF; IF inDebitId > 0 AND pocPocPathFromId(inDebitId) IS NULL THEN SELECT 404 AS id, 'Not Found' AS name, 'pocAttributeCharUpdate debitId' AS content; LEAVE bodyOfProc; END IF; IF inVoucherId > 0 AND pocPocPathFromId(inVoucherId) IS NULL THEN SELECT 404 AS id, 'Not Found' AS name, 'pocAttributeCharUpdate voucherId' AS content; LEAVE bodyOfProc; END IF; -- finally UPDATE pocAttributeChar SET debitId = inDebitId, voucherId = inVoucherId, modified = UNIX_TIMESTAMP(), modifiedById = @pocUserId, name = inName, title = inTitle, content = inContent, value = inValue WHERE id = inId; -- output SELECT 1 AS updateFlag, ta.*, tuc.name AS createdByName, tum.name AS modifiedByName, tp.userPrivs + 0, tp.groupPrivs + 0, tp.otherPrivs + 0, (@pocAdmin OR FIND_IN_SET('run', tp.otherPrivs) OR (@pocUserId = tp.userId AND FIND_IN_SET('run', tp.userPrivs)) OR (tu2g.groupId AND FIND_IN_SET('run', tp.groupPrivs))) + 0 AS runPriv, 1 AS openPriv, (@pocAdmin OR FIND_IN_SET('select', tp.otherPrivs) OR (@pocUserId = tp.userId AND FIND_IN_SET('select', tp.userPrivs)) OR (tu2g.groupId AND FIND_IN_SET('select', tp.groupPrivs))) + 0 AS selectPriv, (@pocAdmin OR FIND_IN_SET('insert', tp.otherPrivs) OR (@pocUserId = tp.userId AND FIND_IN_SET('insert', tp.userPrivs)) OR (tu2g.groupId AND FIND_IN_SET('insert', tp.groupPrivs))) + 0 AS insertPriv, (@pocAdmin OR FIND_IN_SET('update', tp.otherPrivs) OR (@pocUserId = tp.userId AND FIND_IN_SET('update', tp.userPrivs)) OR (tu2g.groupId AND FIND_IN_SET('update', tp.groupPrivs))) + 0 AS updatePriv, (@pocAdmin OR FIND_IN_SET('delete', tp.otherPrivs) OR (@pocUserId = tp.userId AND FIND_IN_SET('delete', tp.userPrivs)) OR (tu2g.groupId AND FIND_IN_SET('delete', tp.groupPrivs))) + 0 AS deletePriv FROM pocAttributeChar AS ta LEFT JOIN pocPoc AS tp ON tp.id = ta.creditId LEFT JOIN pocUser AS tuc ON tuc.id = ta.createdById LEFT JOIN pocUser AS tum ON tum.id = ta.modifiedById LEFT JOIN pocUser2Group AS tu2g ON tu2g.groupId = tp.groupId WHERE ta.id = inId; END bodyOfProc; END;
-- Name: dataset; CREATE TABLE dataset ( id_record serial, id_city integer, IntersSemafor double precision, OV_Tra_Niv double precision, ObraVial_Bacheo double precision, OV_Acarreo double precision, OV_Sumin double precision, PrecioUnitarioBacheoProfundo double precision, FactorUnitarioBacheoProfundo double precision, PrecioUnitarioBacheoSuperficial double precision, FactorUnitarioBacheoSuperficial double precision, PrecioUnitarioBacheoPromedio double precision, FactorUnitarioBacheoPromedio double precision, RenivBrocPozo double precision, SumInstalRejilla double precision, RenivColadera double precision, LevantPoligonal double precision, DemolManual double precision, CargaM3 double precision, AcarreoM3 double precision, PinturaDelimitacion double precision, Conf_Chapu double precision, Conf_Reforma double precision, SenalVertPreventiva double precision, SenalVertRestrictiva double precision, SenalHorizSOLO double precision, SenalHorizPintVerde double precision, SenalHorizComplement double precision, Bolardo double precision, GuiasTactiles double precision, Banqueta double precision, Biciestacionamientos double precision, status boolean DEFAULT true ); COMMENT ON COLUMN dataset.IntersSemafor IS 'DGrales_InterseccionSemaforizada'; COMMENT ON COLUMN dataset.OV_Tra_Niv IS 'ObraVial_Trazo_y_nivelacion'; COMMENT ON COLUMN dataset.ObraVial_Bacheo IS 'profundo con concreto asfaltico'; COMMENT ON COLUMN dataset.OV_Acarreo IS 'ObraVial_Acarreo en camion'; COMMENT ON COLUMN dataset.OV_Sumin IS 'ObraVial_Suministro y colocación de sello asfaltico o slurry seal tipo ii a base de emulsión y arena bien graduada'; COMMENT ON COLUMN dataset.PrecioUnitarioBacheoProfundo IS 'PUBP'; COMMENT ON COLUMN dataset.FactorUnitarioBacheoProfundo IS 'FUBP'; COMMENT ON COLUMN dataset.PrecioUnitarioBacheoSuperficial IS 'PUBS'; COMMENT ON COLUMN dataset.FactorUnitarioBacheoSuperficial IS 'FUBS'; COMMENT ON COLUMN dataset.PrecioUnitarioBacheoPromedio IS 'PUBPr'; COMMENT ON COLUMN dataset.FactorUnitarioBacheoPromedio IS 'FUBPr'; COMMENT ON COLUMN dataset.RenivBrocPozo IS 'Renivelacion de brocal de pozo de visita de lofo de 60 cm de diámetros y peso de 165 kg'; COMMENT ON COLUMN dataset.SumInstalRejilla IS 'Suministro e instalación de rejilla de piso con marco y bisagra de fierro fundido de 40 por 60 cm'; COMMENT ON COLUMN dataset.RenivColadera IS 'Renivelación de coladera'; COMMENT ON COLUMN dataset.LevantPoligonal IS 'Levantamiento de poligonales'; COMMENT ON COLUMN dataset.DemolManual IS 'Demolición por medios manuales de guarniciones y banquetas de concreto simple'; COMMENT ON COLUMN dataset.CargaM3 IS '(CargaM3) Carga mecánica, acarreo en camión al primer kilometro y descarga, de material de demolición de concreto hidráulico, volumen medido colocado'; COMMENT ON COLUMN dataset.AcarreoM3 IS 'Acarreo en camión, de material de demolición de concreto, kilómetros subsecuentes, zona urbana'; COMMENT ON COLUMN dataset.PinturaDelimitacion IS 'Pintura de raya sencilla'; COMMENT ON COLUMN dataset.Conf_Chapu IS 'Confinamiento_TipoChapultepec'; COMMENT ON COLUMN dataset.Conf_Reforma IS 'Confinamiento_TipoReforma'; COMMENT ON COLUMN dataset.SenalVertPreventiva IS 'Suministro y colocación de señal preventiva'; COMMENT ON COLUMN dataset.SenalVertRestrictiva IS 'Suministro y colocación de señal restrictiva'; COMMENT ON COLUMN dataset.SenalHorizSOLO IS 'Plantilla de SOLO de 0.80 x 1.20m con pictograma con pintura blanca termoplástica y reflejante'; COMMENT ON COLUMN dataset.SenalHorizPintVerde IS 'Suministro y aplicacion de pintura base agua en raya verde'; COMMENT ON COLUMN dataset.SenalHorizComplement IS 'Pintado de raya de 0.20 m de ancho para indicar cruce de peatones'; COMMENT ON COLUMN dataset.Bolardo IS 'Suministro y colocación de bolardo de 15 cm de diámetro y 100 cm de altura'; COMMENT ON COLUMN dataset.Biciestacionamientos IS 'Estacionamiento para bicicleta tipo "U" invertida'; insert into dataset values (1,1,40559.40,0.21,256.19,9.19,39.63,884.33,0.275,1698.67,0.075,1291.50,0.175,2513.37,5201.67,258.92,0.480256,323.92,33.84,8.79,9.74,2785.50,5220.00,2905.91,2905.91,755.83,256.63,022.11,728.90,50.00,1000.00,479.33); -- Name: cities; CREATE TABLE cities ( id_city serial, name varchar(255), short_name varchar(255), status boolean DEFAULT true ); insert into cities values (1,'Distrito Federal', 'DF');
USE `fsd`; SELECT MAX(sd.`speed`) AS `max_speed`, t.`name` AS `town_name` FROM `towns` AS `t` LEFT JOIN `stadiums` AS `s` ON t.`id` = s.`town_id` LEFT JOIN `teams` AS `te` ON s.`id` = te.`stadium_id` LEFT JOIN `players` AS `p` ON te.`id` = p.`team_id` LEFT JOIN `skills_data` AS `sd` ON sd.`id` = p.`skills_data_id` WHERE te.`name` != 'Devify' GROUP BY t.`id` ORDER BY `max_speed` DESC , `town_name`;
IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'Posts') BEGIN CREATE TABLE Posts ( Id UNIQUEIDENTIFIER NOT NULL, ReceiverId UNIQUEIDENTIFIER NOT NULL, SenderId UNIQUEIDENTIFIER NOT NULL, Content VARCHAR(MAX) NOT NULL, CreatedAt DATETIME NOT NULL, CONSTRAINT PK_Posts PRIMARY KEY (Id), CONSTRAINT FK_Posts_ReceiverId_Users_Id FOREIGN KEY (ReceiverId) REFERENCES Users(Id), CONSTRAINT FK_Posts_SenderId_Users_Id FOREIGN KEY (SenderId) REFERENCES Users(Id) ); END IF NOT EXISTS (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'Comments' AND COLUMN_NAME = 'PostId' AND TABLE_SCHEMA = 'DBO') BEGIN ALTER TABLE Comments ADD PostId UNIQUEIDENTIFIER NOT NULL; ALTER TABLE Comments ADD CONSTRAINT FK_Comments_PostId_Posts_Id FOREIGN KEY (PostId) REFERENCES Posts(Id); END
<reponame>supersciencegrl/Sandbox --Create new databases --Requires admin CREATE DATABASE testdb; CREATE DATABASE dummydb; --Check which databases exist with command: SHOW DATABASES; --Drop a database --Requires admin DROP DATABASE dummydb; --Create full backup BACKUP DATABASE testdb TO DISK = 'testdb.db'; --Or back up diffs only BACKUP DATABASE testdb TO DISK = 'testdb-diff.db' WITH DIFFERENTIAL; --Create a new table CREATE TABLE Cats ( CatID int, CatName varchar(255), HumanName varchar(255), Age int ); --Or copy a table CREATE TABLE Kittens AS SELECT CatID, CatName, HumanName FROM Cats WHERE Age < 1 ; --Drop a table DROP TABLE Kittens; --TRUNCATE deletes table data while maintaining the table (& its structure) -- Won't do anything here as the Cats table has no data yet TRUNCATE TABLE Cats; --Modify a table with ALTER ALTER TABLE Cats ADD Address1 varchar(255); --Can add or drop columns here ALTER TABLE Kittens DROP COLUMN HumanName; --Or even alter column datatype (ALTER COLUMN or MODIFY COLUMN depending on SQL program) ALTER TABLE Cats MODIFY COLUMN Age datetime(0); /* Columns can have additional data constraints NOT NULL - Ensures that a column cannot have a NULL value UNIQUE - Ensures that all values in a column are different PRIMARY KEY - A combination of a NOT NULL and UNIQUE. Uniquely identifies each row in a table FOREIGN KEY - Prevents actions that would destroy links between tables. One/multiple field(s) in a table (the parent/referenced table) that refer to the primary key in another table (the child table) CHECK - Ensures that the values in a column satisfies a specific condition DEFAULT - Sets a default value for a column if no value is specified CREATE INDEX - Used to create and retrieve data from the database very quickly */ --Usage: ALTER TABLE Cats MODIFY COLUMN CatID int PRIMARY KEY; --Primary key is both UNIQUE and NOT NULL --(and there can only be one primary key, though it can consist of multiple fields) --CHECK and DEFAULT can be used when creating tables or when altering them ALTER TABLE Cats ADD CHECK (Age >= 0); CREATE TABLE Dogs ( DogName varchar(255), Age int, RecordCreated date DEFAULT GETDATE() --Default value if nothing entered is the current date ); --Create a unique index CREATE UNIQUE INDEX DogID ON Dogs (DogName); --You can also drop contraints ALTER TABLE Dogs DROP INDEX DogName; --Perhaps you'd prefer an auto-incrementing field that generates a unique number automatically when a new record is inserted. This is often the primary key --It's 1-indexed by default, but you could say AUTO_INCREMENT=0 if you're too embedded in Python to count from 1 CREATE TABLE Hamsters ( HamsterID int NOT NULL AUTO_INCREMENT, HamsterName varchar(255), HumanName varchar(255), Age int, PRIMARY KEY (HamsterID) ); --Now we can add a new hamster without having to specify a HamsterID: that will be created automatically INSERT INTO Hamsters (HamsterName, HumanName, Age) VALUES ("Penny", "<NAME>", 2); /* There are many different formats for dates (of course...) DATE - format YYYY-MM-DD DATETIME - format: YYYY-MM-DD HH:MI:SS TIMESTAMP - format: YYYY-MM-DD HH:MI:SS YEAR - format YYYY or YY You are better using DATE than DATETIME unless you really need the times */ --You can also create a view: a virtual table based on result sets CREATE VIEW dashboard AS SELECT CatName, HumanName FROM Cats WHERE CatName NOT NULL; --You then query the view as before SELECT * FROM dashboard; --You can also use `CREATE OR REPLACE VIEW` instead of `CREATE VIEW` if needed --And `DROP VIEW` DROP VIEW dashboard; /* WARNING: SQL injection is placement of malicious code in SQL statements via web page inputs So use SQL parameters... not user text inputs /*
USE [bmd_hst2020] GO /****** Object: Table [dbo].[Ta_Pengadaan_Kontrak_Rinc_HST] Created By https://github.com/UrangBanua ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Ta_Pengadaan_Kontrak_Rinc_HST]( [Id] [int] IDENTITY(1,1) NOT NULL, [Tahun] [int] NOT NULL, [No_Kontrak] [varchar](100) NOT NULL, [No_BAST] [varchar](100) NOT NULL, [Kd_Aset] [int] NULL, [Kd_Aset0] [int] NULL, [Kd_Aset1] [int] NULL, [Kd_Aset2] [int] NULL, [Kd_Aset3] [int] NULL, [Kd_Aset4] [int] NULL, [Kd_Aset5] [int] NULL, [Kd_Gab] [varchar](50) NOT NULL, [Nm_Aset5] [varchar](50) NULL, [No_Register] [int] NOT NULL, [Kd_Ruang] [int] NULL, [Kd_Pemilik] [int] NULL, [Tgl_Perolehan] [datetime] NULL, [Tgl_Pembukuan] [datetime] NULL, [Judul] [varchar](200) NULL, [Type] [varchar](50) NULL, [Ukuran] [varchar](50) NULL, [CC] [varchar](50) NULL, [Pencipta] [varchar](50) NULL, [Bahan] [varchar](50) NULL, [Nomor_Pabrik] [varchar](50) NULL, [Nomor_Rangka] [varchar](50) NULL, [Nomor_Mesin] [varchar](50) NULL, [Nomor_Polisi] [varchar](50) NULL, [Nomor_BPKB] [varchar](50) NULL, [Luas_Lantai] [float] NULL, [Panjang] [float] NULL, [Lebar] [float] NULL, [Lokasi] [varchar](100) NULL, [Hak_Tanah] [varchar](100) NULL, [Penggunaan] [varchar](100) NULL, [Bertingkat_Tidak] [varchar](50) NULL, [Beton_tidak] [varchar](50) NULL, [Dokumen_Nomor] [varchar](100) NULL, [Dokumen_Tanggal] [datetime] NULL, [Konstruksi] [varchar](100) NULL, [Asal_Usul] [varchar](50) NULL, [Kondisi] [varchar](50) NULL, [Harga] [money] NOT NULL, [Nilai_Sisa] [money] NULL, [Masa_Manfaat] [int] NULL, [Keterangan] [varchar](100) NULL, [No_SP2D] [varchar](100) NOT NULL, [No_ID] [int] NULL, [Kd_Penyusutan] [int] NULL, [Kd_Data] [int] NULL, [Log_User] [varchar](50) NULL, [Log_entry] [datetime] NULL, [Kd_KA] [bit] NULL, [Kd_Hapus] [bit] NULL, [Jumlah] [money] NULL, [Penunjang] [money] NULL, [Total_J] [money] NULL, [Invent] [tinyint] NULL, CONSTRAINT [PK_Ta_Pengadaan_Kontrak_Rinc_HST_Id] PRIMARY KEY CLUSTERED ( [Id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO
-- phpMyAdmin SQL Dump -- version 4.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: 10 Des 2020 pada 07.32 -- Versi Server: 10.1.19-MariaDB -- PHP Version: 5.6.28 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `aslabinformatika` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `agenda_aslab` -- CREATE TABLE `agenda_aslab` ( `id_agenda` int(11) NOT NULL, `deskripsiagenda` varchar(255) NOT NULL, `tanggalagenda` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `asistenpraktikum` -- CREATE TABLE `asistenpraktikum` ( `id_asisten` varchar(4) NOT NULL, `nama_asisten` varchar(150) NOT NULL, `password_asisten` varchar(255) NOT NULL, `nim_asisten` varchar(12) NOT NULL, `angkatan_asisten` int(2) NOT NULL, `alamat_asisten` text NOT NULL, `ttl_asisten` date NOT NULL, `email_asisten` varchar(150) NOT NULL, `notelp_asisten` varchar(13) NOT NULL, `instagram_asisten` varchar(150) NOT NULL, `level` int(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `asistenpraktikum` -- INSERT INTO `asistenpraktikum` (`id_asisten`, `nama_asisten`, `password_asisten`, `nim_asisten`, `angkatan_asisten`, `alamat_asisten`, `ttl_asisten`, `email_asisten`, `notelp_asisten`, `instagram_asisten`, `level`) VALUES ('A111', 'Administrator', '<PASSWORD>', '112333444526', 13, 'Gelam250', '2020-02-04', '<EMAIL>', '0811316151246', 'https://instagram.com/arsyiladhiim', 1), ('A133', '<NAME>', '<PASSWORD>', '161080200285', 13, 'Kahuripan Nirwana Village CA 12 No. 37, SUmput, Sidoarjo', '1997-05-20', '<EMAIL>', '082232628265', 'https://www.instagram.com/arsyiladhiim/', 1), ('A150', '<NAME>', '<PASSWORD>', '181080200248', 15, 'Kejapanan Gg.Harum Manis RT.01/26, Gempol, Pasuruan', '2000-01-13', '<EMAIL>', '0881026830554', 'https://www.instagram.com/aditya_wu', 2), ('A154', '<NAME>', '21ebd3caf0365e06be76697bc1c29663', '181080200203', 15, 'Perum Jalagriya i7/1 Sugihwaras Candi', '2000-07-15', '<EMAIL>', '089681161105', 'https://instagram.com/akukamudandia', 2), ('A155', '<NAME>', '85771f3fa1cf800974edadea69ac7cdd', '181080200221', 15, 'Tulangan', '2000-05-01', '<EMAIL>', '082228669118', 'https://instagram.com/linda_kushernawati', 2), ('A156', '<NAME>', 'fc601bd36d51f2b0e651be1b6cbef613', '181080200177', 15, 'Dsn Manyaran, Ds Jati, Tarokan Kediri', '2000-05-23', '<EMAIL>', '085816537978', 'https://www.instagram.com/nurtia.s/', 1), ('A158', '<NAME>', '8b6aa347a84a6458f80e69104fad99eb', '181080200059', 15, 'Pandaan', '2000-01-23', '<EMAIL>', '08743280825', 'https://instagram.com/dewiekasafitri7', 2), ('A159', '<NAME>', '33ffce7979b849afe4f5c1e475686c46', '181080200258', 15, 'Jabon', '2000-08-08', '<EMAIL>', '08563030693', 'https://instagram.com/auliabrr_', 2), ('A160', '<NAME> ', '3203d95238d87699117c0a3a6a746f50', '191080200205', 16, 'Tanggulangin', '2000-07-12', '<EMAIL>', '081287981617', 'https://instagram.com/mixihollow', 2), ('A161', '<NAME>', 'd23f295518bd361ecd81ae8c302edafc', '191080200100', 16, 'Sidoarjo', '2001-06-27', '<EMAIL>', '083110867009', 'https://instagram.com/vinrahw', 2), ('A162', '<NAME>', '544923831ac818a61781e96ede6b55b3', '191080200170', 16, 'Krembung', '2001-04-03', '<EMAIL>', '085785334384', 'https://instagram.com/ratihpsari_', 2), ('A163', '<NAME>', 'b15813bada879c283859fb675a2faafd', '191080200273', 16, 'Villa Jasmine 3 Blok A3 No 5 Suko Sidoarjo', '2001-05-31', '<EMAIL>', '085746377640', 'https://www.instagram.com/alfan.indra21', 2), ('A164', '<NAME>', '07cde2819b14e76cded75a5bde4d064f', '191080200156', 16, 'Ds Krembung Barat, RT/RW 26/11', '2000-05-10', '<EMAIL>', '081913239424', 'https://www.instagram.com/iqbhal_17', 2), ('A165', '<NAME>', 'cd70019c2b0707434fbbfc5f8f1fd3b6', '191080200164', 16, 'Ds Kepuh Kemiri, Kec Tulangan, Kab Sidoarjo', '2001-05-11', '<EMAIL>', '0881026886130', 'https://www.instagram.com/wildandwiky/', 2), ('A166', '<NAME>', '3edb0903c79a7eb133c4182ef2c52e6d', '191080200207', 16, 'Wonoayu', '2001-06-23', '<EMAIL>', '081274599339', 'https://instagram.com/s.n.halisa', 2), ('A167', '<NAME>', '53fc15e1a0310e54ab16776902ca6d3b', '191080200035', 16, 'Kasri, Perum Batumas Candra Asri Blok D2-04 Pandaan, Pasuruan Jawa Timur', '2001-05-16', '<EMAIL>', '089689495338', 'https://instagram.com/mochtar_putra?igshid=5es75df9dkdg', 2), ('A168', '<NAME>', 'a24a2a927edbc1504ee6d461fabe5fe5', '191080200204', 16, 'RT.11/RW.04, DSN.Gebang Malang, DS.Kedinding, KEC.Tarik, Kab.Sidoarjo', '2000-02-13', '<EMAIL>', '0857486440606', 'https://www.instagram.com/dimdim_id/', 2), ('A169', '<NAME>', '38b703ecb22ffcc358e7a0c2a55173f5', '191080200089', 16, 'Jl.sedap malam, lingkungan kluncing rt.01 rw.09, petungasri, pandaan, pasuruan, jawa timur', '2001-02-05', '<EMAIL>', '081358005860', 'https://instagram.com/rukhialfian?igshid=5uvac1h7zp8a', 2), ('A170', '<NAME>', '52fa76facfe735aff3b53fde2a6d3956', '191080200184', 16, 'Jl. Nusa Indah No.100 Mangaran - Ajung Jember', '2000-03-21', '<EMAIL>', '081559863948', 'https://www.instagram.com/fausill_/', 2), ('A171', '<NAME>', 'ff090892ce5923c258b0e861c7bb1048', '191080200123', 16, 'Ds. Rejeni Kec.Krembung Kab.Sidoarjo', '2001-03-11', '<EMAIL>', '08313884600', 'https://www.instagram.com/senoardi_/', 2), ('A172', '<NAME>', '636c07f918fa8b04e9ca965aa78c5413', '191080200210', 16, 'Rengkas,Ds.watu wangka,Kec.Mbeliling,Kab.Manggarai Barat,Prov.Nusa Tenggara Timur (NTT).', '2001-08-06', '<EMAIL>', '081331732583', 'https://instagram.com/aryanto9252?igshid=wcissb0cyj2y', 2), ('A173', '<NAME>', '1eb51dcb91585e7d4e6e8c85198da685', '191080200230', 16, 'Pondok Jati Blok Z No.9 ', '2001-08-30', '<EMAIL>', '08973845111', 'https://www.instagram.com/arginanta/?hl=id', 2), ('A900', 'aa', '4124bc0a9335c27f086f24ba207a4912', 'aa', 17, 'aa', '2020-11-28', '<EMAIL>', '19919', ' https://instagram.com/vinraha', 2), ('labo', '<NAME>', '71496acecd6be145c058b6deb06025ed', '141080200064', 0, 'Perum. TNI AL', '2020-03-05', '<EMAIL>', '0895377142594', 'https://www.instagram.com/melinakaw/', 1); -- -------------------------------------------------------- -- -- Struktur dari tabel `asisten_foto` -- CREATE TABLE `asisten_foto` ( `id_asisten` varchar(4) NOT NULL, `foto` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `bugreport` -- CREATE TABLE `bugreport` ( `id_bug` int(2) NOT NULL, `nama` varchar(255) NOT NULL, `filename` varchar(255) NOT NULL, `deskripsi_bug` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `div_itsupport` -- CREATE TABLE `div_itsupport` ( `id_itsupport` int(11) NOT NULL, `namabarang_itsupport` varchar(255) NOT NULL, `jumlahbarang_itsupport` int(8) NOT NULL, `satuanbarang_itsupport` varchar(10) NOT NULL, `tanggalupdate_itsupport` date NOT NULL, `statusbarang_itsupport` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `div_itsupport` -- INSERT INTO `div_itsupport` (`id_itsupport`, `namabarang_itsupport`, `jumlahbarang_itsupport`, `satuanbarang_itsupport`, `tanggalupdate_itsupport`, `statusbarang_itsupport`) VALUES (1, 'Obeng Set', 2, 'Set', '2020-11-08', 'Badan obeng kurang 1'), (2, 'Bor', 1, 'Set', '2020-11-09', 'Baik'), (3, 'Thermal Paste (Suntik)', 1, 'Biji', '2020-11-09', 'Utuh'), (4, 'Isolasi Gabus', 6, 'Biji', '2020-11-09', 'Utuh'), (5, 'Palu', 1, 'Buah', '2020-11-09', 'Baik'), (6, 'Paku', 1, 'Kotak', '2020-11-09', 'Banyak'), (7, 'Tang Biasa', 2, 'Buah', '2020-11-09', 'Baik'), (8, 'Tang Krimping', 5, 'Buah', '2020-11-09', 'Baik'), (9, 'CCTV', 3, 'Kotak', '2020-11-09', 'Baik'), (10, '<NAME>', 1, 'Plastik', '2020-11-09', 'Sudah Dibuka'), (11, 'Obeng +', 0, 'Buah', '2020-11-09', 'Tidak Ada'), (12, 'Obeng -', 2, 'Buah', '2020-11-09', 'Baik'), (13, '<NAME>', 2, 'Buah', '2020-11-09', 'Baik'), (14, '<NAME>', 5, 'Buah', '2020-11-09', 'Baik'), (15, 'Cutter', 2, 'Buah', '2020-11-09', 'Baik'), (16, 'Gunting', 5, 'Buah', '2020-11-09', 'Baik'), (17, 'Tang Biasa', 4, 'Buah', '2020-11-09', 'Baik'); -- -------------------------------------------------------- -- -- Struktur dari tabel `div_itsupport_agenda` -- CREATE TABLE `div_itsupport_agenda` ( `id_agenda` int(11) NOT NULL, `deskripsiagenda_itsupport` varchar(255) NOT NULL, `statusagenda_itsupport` varchar(25) NOT NULL, `tanggalagenda_itsupport` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `files` -- CREATE TABLE `files` ( `id_sop` int(2) NOT NULL, `filename` varchar(255) NOT NULL, `description` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `files` -- INSERT INTO `files` (`id_sop`, `filename`, `description`) VALUES (3, '01_kesiapan_praktikum.pdf', 'Kesiapan Praktikum'), (4, '01_pelaksanaan_praktikum.pdf', 'Pelaksanaan Praktikum'), (5, '02_jadwal_pelaksanaan_praktikum.pdf', 'Jadwal Pelaksanaan Praktikum'), (6, '02_peminjaman_lab_barang.pdf', 'Peminjaman Lab Barang'), (7, '03_penilaian_praktikum.pdf', 'Penilaian Praktikum'), (8, '03_revisi_nilai.pdf', 'Revisi Nilai Praktikum'), (9, '04_pindah_kelompok.pdf', 'Pindah Kelompok Praktikum'), (10, '04_penerimaan_aslab_baru.pdf', 'Penerimaan Aslab Baru'); -- -------------------------------------------------------- -- -- Struktur dari tabel `lab_algoprog` -- CREATE TABLE `lab_algoprog` ( `id_algoprog` int(11) NOT NULL, `namabarang_algoprog` varchar(225) NOT NULL, `jumlahbarang_algoprog` varchar(4) NOT NULL, `satuanbarang_algoprog` varchar(10) NOT NULL, `tanggalupdate_algoprog` date NOT NULL, `kondisi_algoprog` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `lab_algoprog` -- INSERT INTO `lab_algoprog` (`id_algoprog`, `namabarang_algoprog`, `jumlahbarang_algoprog`, `satuanbarang_algoprog`, `tanggalupdate_algoprog`, `kondisi_algoprog`) VALUES (1, ' sa test', ' ', ' ', '2020-12-17', 'fs'), (2, 'sdw', '2', 'kg', '2020-12-16', 'baik'), (3, ' efwef', ' ', ' ', '2020-12-02', 'fwfw'); -- -------------------------------------------------------- -- -- Struktur dari tabel `lab_jarkom` -- CREATE TABLE `lab_jarkom` ( `id_jarkom` int(11) NOT NULL, `namabarang_jarkom` varchar(225) NOT NULL, `jumlahbarang_jarkom` varchar(4) NOT NULL, `satuanbarang_jarkom` varchar(10) NOT NULL, `tanggalupdate_jarkom` date NOT NULL, `kondisi_jarkom` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `lab_jarkom` -- INSERT INTO `lab_jarkom` (`id_jarkom`, `namabarang_jarkom`, `jumlahbarang_jarkom`, `satuanbarang_jarkom`, `tanggalupdate_jarkom`, `kondisi_jarkom`) VALUES (3, 'PC', '20', 'Unit', '2020-12-02', ' Rusak 2'); -- -------------------------------------------------------- -- -- Struktur dari tabel `lab_rpl` -- CREATE TABLE `lab_rpl` ( `id_rpl` int(11) NOT NULL, `namabarang_rpl` varchar(225) NOT NULL, `jumlahbarang_rpl` varchar(4) NOT NULL, `satuanbarang_rpl` varchar(10) NOT NULL, `tanggalupdate_rpl` date NOT NULL, `kondisi_rpl` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `lab_server` -- CREATE TABLE `lab_server` ( `id_server` int(11) NOT NULL, `namabarang_server` varchar(225) NOT NULL, `jumlahbarang_server` varchar(4) NOT NULL, `satuanbarang_server` varchar(10) NOT NULL, `tanggalupdate_server` date NOT NULL, `kondisi_server` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `lab_sistemoperasi` -- CREATE TABLE `lab_sistemoperasi` ( `id_sistemoperasi` int(11) NOT NULL, `namabarang_sistemoperasi` varchar(225) NOT NULL, `jumlahbarang_sistemoperasi` varchar(4) NOT NULL, `satuanbarang_sistemoperasi` varchar(10) NOT NULL, `tanggalupdate_sistemoperasi` date NOT NULL, `kondisi_sistemoperasi` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `lab_sistemoperasi` -- INSERT INTO `lab_sistemoperasi` (`id_sistemoperasi`, `namabarang_sistemoperasi`, `jumlahbarang_sistemoperasi`, `satuanbarang_sistemoperasi`, `tanggalupdate_sistemoperasi`, `kondisi_sistemoperasi`) VALUES (1, 'PC', '20', 'Unit', '2020-12-02', 'Rusak 1'), (2, 'Monitor', '20', 'Unit', '2020-12-02', 'Rusak 3'), (3, 'Keyboard', '20', 'Unit', '2020-12-02', 'Normal'), (4, 'Mouse', '20', 'Unit', '2020-12-02', 'Normal'), (5, 'AC', '1', 'Unit', '2020-12-02', 'Normal'), (7, 'Proyektor', '1', 'Unit', '2020-12-02', 'Normal'); -- -------------------------------------------------------- -- -- Struktur dari tabel `lab_softcomputing` -- CREATE TABLE `lab_softcomputing` ( `id_softcomputing` int(11) NOT NULL, `namabarang_softcomputing` varchar(225) NOT NULL, `jumlahbarang_softcomputing` varchar(4) NOT NULL, `satuanbarang_softcomputing` varchar(10) NOT NULL, `tanggalupdate_softcomputing` date NOT NULL, `kondisi_softcomputing` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `lab_softcomputing` -- INSERT INTO `lab_softcomputing` (`id_softcomputing`, `namabarang_softcomputing`, `jumlahbarang_softcomputing`, `satuanbarang_softcomputing`, `tanggalupdate_softcomputing`, `kondisi_softcomputing`) VALUES (1, 'PC', '32', 'Unit', '2020-11-19', 'Normal'), (2, 'Monitor', '32', 'Unit', '2020-11-30', 'Normal'), (3, 'Keyboard', '32', 'Unit', '2020-11-30', 'Normal'), (4, 'Mouse', '32', 'Unit', '2020-11-30', 'Normal'), (5, 'AC', '3', 'Unit', '2020-11-30', 'Normal'), (7, ' kana', '200', 'nada', '2021-03-17', 'rusa'); -- -------------------------------------------------------- -- -- Struktur dari tabel `lpj_kegiatan` -- CREATE TABLE `lpj_kegiatan` ( `id_lpj` int(11) NOT NULL, `namakegiatan_lpj` varchar(255) NOT NULL, `jenis_lpj` varchar(255) NOT NULL, `penanggungjawab_lpj` varchar(255) NOT NULL, `tanggalmulai_kegiatan` date NOT NULL, `tanggalselesai_kegiatan` date NOT NULL, `filename_lpj` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `lpj_kegiatan` -- INSERT INTO `lpj_kegiatan` (`id_lpj`, `namakegiatan_lpj`, `jenis_lpj`, `penanggungjawab_lpj`, `tanggalmulai_kegiatan`, `tanggalselesai_kegiatan`, `filename_lpj`) VALUES (6, 'Dari Sini Inovasi Bersemi', 'Diklat', '<NAME>', '2017-11-30', '2017-12-03', 'LPJ-diklat_Angkatan_14.pdf'), (7, 'LAPORAN HASIL KEGIATAN DIKLAT 2017', 'Diklat', '<NAME>', '2017-11-30', '2017-12-03', 'LAPORAN_HASIL_KEGIATAN.pdf'); -- -------------------------------------------------------- -- -- Struktur dari tabel `mahasiswa` -- CREATE TABLE `mahasiswa` ( `nim_mahasiswa` varchar(12) NOT NULL, `nama_mahasiswa` varchar(255) NOT NULL, `password_mahasiswa` varchar(255) NOT NULL, `semester_mahasiswa` varchar(2) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `mahasiswa` -- INSERT INTO `mahasiswa` (`nim_mahasiswa`, `nama_mahasiswa`, `password_mahasiswa`, `semester_mahasiswa`) VALUES ('171080200285', 'Mahasiswa Baru', '5787be38ee03a9ae5360f54d9026465f', '7'); -- -------------------------------------------------------- -- -- Struktur dari tabel `peminjaman_buku` -- CREATE TABLE `peminjaman_buku` ( `id_buku` varchar(150) NOT NULL, `nama_buku` varchar(255) NOT NULL, `jenis_buku` varchar(150) NOT NULL, `image` varchar(255) NOT NULL DEFAULT 'default.jpg', `jumlah_buku` varchar(2) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `prak01_algoprog` -- CREATE TABLE `prak01_algoprog` ( `nim_praktikum` varchar(12) NOT NULL, `nama_praktikan` varchar(255) NOT NULL, `kelompok_praktikum` varchar(2) NOT NULL, `link_rangkuman` varchar(255) NOT NULL, `tanggal_pengumpulan` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `nama_asisten` varchar(50) NOT NULL, `penerima_laporan` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `prak01_algoprog` -- INSERT INTO `prak01_algoprog` (`nim_praktikum`, `nama_praktikan`, `kelompok_praktikum`, `link_rangkuman`, `tanggal_pengumpulan`, `nama_asisten`, `penerima_laporan`) VALUES ('161080200008', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', '<NAME>', '<NAME>'), ('161080200011', '<NAME>.', '1', 'https://ict-umsida.blogspot.com/', '2017-01-18 17:00:00', '<NAME>', '<NAME>ahmawati'), ('161080200016', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', '<NAME>', 'Dimas Bayu Anjasmara'), ('161080200024', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2017-01-18 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200037', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', '<NAME>', 'Dimas Bayu Anjasmara'), ('161080200038', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', '<NAME>', 'Dimas Bayu Anjasmara'), ('161080200040', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', '<NAME>', 'Dimas Bayu Anjasmara'), ('161080200041', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', '<NAME>', 'Dimas Bayu Anjasmara'), ('161080200056', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', '<NAME>', 'Dimas Bayu Anjasmara'), ('161080200061', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', '<NAME>', 'Dimas Bayu Anjasmara'), ('161080200062', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', '<NAME>', 'Dimas Bayu Anjasmara'), ('161080200068', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2017-01-18 17:00:00', '<NAME>', '<NAME>'), ('161080200072', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', '<NAME>', 'Dimas Bayu Anjasmara'), ('161080200080', 'Set<NAME> r', '2', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', '<NAME>', 'Dimas Bayu Anjasmara'), ('161080200086', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2017-11-30 17:00:00', '<NAME>', 'Dimas Bayu Anjasmara'), ('161080200090', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', '<NAME>', 'Dimas Bayu Anjasmara'), ('161080200097', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', '<NAME>', 'Dimas Bayu Anjasmara'), ('161080200101', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', 'Fatur Amirul M.', 'Dimas Bayu Anjasmara'), ('161080200197', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2017-01-18 17:00:00', 'Fatur Amirul M.', 'Dimas Bayu Anjasmara'); -- -------------------------------------------------------- -- -- Struktur dari tabel `prak02_algostruk` -- CREATE TABLE `prak02_algostruk` ( `nim_praktikum` varchar(12) NOT NULL, `nama_praktikan` varchar(255) NOT NULL, `kelompok_praktikum` varchar(2) NOT NULL, `link_rangkuman` varchar(255) NOT NULL, `tanggal_pengumpulan` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `nama_asisten` varchar(50) NOT NULL, `penerima_laporan` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `prak02_algostruk` -- INSERT INTO `prak02_algostruk` (`nim_praktikum`, `nama_praktikan`, `kelompok_praktikum`, `link_rangkuman`, `tanggal_pengumpulan`, `nama_asisten`, `penerima_laporan`) VALUES ('131080200061', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2017-05-29 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('131080200317', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2017-05-30 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('141080200201', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A133 <NAME>hi''im', 'Vini Rahmawati'), ('151080200084', '<NAME> ', '05', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Ail<NAME>owiyah', 'Ratih Puspitasari'), ('151080200201', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-04-08 17:00:00', 'A133 <NAME>', 'Vini Rahmawati'), ('151080200288', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-05-27 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('151080200313', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-04-15 17:00:00', 'A133 <NAME>', 'Vini Rahmawati'), ('161080200001', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200002', '<NAME>', '01', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Rhamadina Fitrah Umami', 'Ratih Puspitasari'), ('161080200003', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200004', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2017-05-21 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200005', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2017-05-30 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200006', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200007', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2017-05-28 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200008', '<NAME>', '01', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Rhamadina Fitrah Umami', 'Ratih Puspitasari'), ('161080200009', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200010', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2017-05-30 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200011', '<NAME>.', '1', 'https://ict-umsida.blogspot.com/', '2017-05-30 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200012', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200013', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200014', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2017-05-29 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200015', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200016', '<NAME>', '01', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Rhamadina Fitrah Umami', 'Ratih Puspitasari'), ('161080200018', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200019', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200020', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2017-05-28 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200021', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200022', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200023', '<NAME>.', '11', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200024', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2017-05-29 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200025', '<NAME>', '08', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200026', 'Muhajir ', '01', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Rhamadina Fitrah Umami', 'Ratih Puspitasari'), ('161080200027', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2017-05-29 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200028', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200029', '<NAME>', '01', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200030', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200032', '<NAME>.', '11', 'https://ict-umsida.blogspot.com/', '2017-05-29 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200034', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200035', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', 'F<NAME>.', 'Alfan Indra Kusuma'), ('161080200036', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'F<NAME>.', 'Ratih Puspitasari'), ('161080200037', '<NAME>', '01', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', 'Rhamadina Fitrah Umami', 'Ratih Puspitasari'), ('161080200038', '<NAME>', '01', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Rhamadina Fitrah Umami', 'Ratih Puspitasari'), ('161080200039', '<NAME>', '01', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Rhamadina Fitrah Umami', 'Ratih Puspitasari'), ('161080200040', '<NAME>', '01', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Rhamadina Fitrah Umami', 'Ratih Puspitasari'), ('161080200041', '<NAME>', '01', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Rhamadina Fitrah Umami', 'Ratih Puspitasari'), ('161080200043', '<NAME>.', '11', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200044', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2017-05-29 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200045', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200046', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200047', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200048', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200056', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2017-05-30 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200094', 'I<NAME>,', '14', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200095', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200103', 'Ekka Jaya Kusuma', '14', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200104', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2017-06-02 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200106', 'Se<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2017-05-30 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200108', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200112', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200114', 'Choiruroziqin', '14', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200115', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2017-05-30 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200119', '<NAME>', '03', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200126', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200127', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200128', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Ail<NAME>', 'Ratih Puspitasari'), ('161080200129', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Ail<NAME>', 'Ratih Puspitasari'), ('161080200130', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'A<NAME>', 'Ratih Puspitasari'), ('161080200132', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'A<NAME>', 'Ratih Puspitasari'), ('161080200133', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'R<NAME>', 'Alfan Indra Kusuma'), ('161080200134', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2017-06-02 17:00:00', 'R<NAME>', 'Alfan Indra Kusuma'), ('161080200135', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200136', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200137', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200138', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200139', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200140', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200141', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200142', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'A<NAME>', 'Ratih Puspitasari'), ('161080200143', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'A<NAME>', 'Ratih Puspitasari'), ('161080200144', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'A<NAME>', 'Ratih Puspitasari'), ('161080200146', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200147', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2017-05-30 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200148', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'A<NAME>', 'Ratih Puspitasari'), ('161080200149', '<NAME> Octavian', '15', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200150', 'Efendi', '15', 'https://ict-umsida.blogspot.com/', '2017-05-30 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200151', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200152', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200153', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200154', '<NAME>,', '15', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200156', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200157', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2017-06-02 17:00:00', 'R<NAME>ami', 'Alfan Indra Kusuma'), ('161080200159', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200160', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2017-06-02 17:00:00', 'R<NAME>ami', 'Alfan Indra Kusuma'), ('161080200161', '<NAME>', '04', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200162', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200163', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2017-06-04 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200164', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2017-06-04 17:00:00', 'Ailul Chowiyah', 'Alfan Indra Kusuma'), ('161080200165', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2017-06-04 17:00:00', 'Ailul Chowiyah', 'Alfan Indra Kusuma'), ('161080200167', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'A<NAME>', 'Ratih Puspitasari'), ('161080200174', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'A<NAME>', 'Ratih Puspitasari'), ('161080200175', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2017-06-04 17:00:00', 'A<NAME>', 'Alfan Indra Kusuma'), ('161080200176', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>.', 'Ratih Puspitasari'), ('161080200177', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'A<NAME>', 'Ratih Puspitasari'), ('161080200178', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'A<NAME>', 'Ratih Puspitasari'), ('161080200179', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2017-05-02 17:00:00', 'A<NAME>', 'Alfan Indra Kusuma'), ('161080200180', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2017-05-02 17:00:00', 'A<NAME>', 'Alfan Indra Kusuma'), ('161080200181', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2017-05-02 17:00:00', 'A<NAME>', 'Alfan Indra Kusuma'), ('161080200183', '<NAME>', '05', 'https://ict-umsida.blogspot.com', '2017-05-28 17:00:00', 'A<NAME>', 'Ratih Puspitasari'), ('161080200184', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'A<NAME>', 'Ratih Puspitasari'), ('161080200187', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2017-05-30 17:00:00', 'A<NAME>', 'Alfan Indra Kusuma'), ('161080200189', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200191', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2017-05-02 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200195', 'Y<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200199', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200203', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200206', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2017-06-04 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200250', '<NAME>', '08', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200252', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200255', '<NAME> ', '08', 'https://ict-umsida.blogspot.com', '2017-05-28 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200257', '<NAME>', '08', 'https://ict-umsida.blogspot.com/', '2017-05-22 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200259', '<NAME>', '09', 'https://ict-umsida.blogspot.com', '2017-05-28 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200262', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200263', '<NAME>', '08', 'https://ict-umsida.blogspot.com', '2017-05-28 17:00:00', 'M. Amirulloh', 'Ratih Puspitasari'), ('161080200268', '<NAME>', '08', 'https://ict-umsida.blogspot.com/', '2017-05-22 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200272', '<NAME>', '08', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200278', '<NAME>', '09', 'https://ict-umsida.blogspot.com', '2017-05-28 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200281', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2017-06-01 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200282', '<NAME>', '09', 'https://ict-umsida.blogspot.com', '2017-05-28 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200287', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2017-06-06 17:00:00', '<NAME>', 'A<NAME>usuma'), ('161080200294', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200297', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200298', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200299', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200300', '<NAME>', '09', 'https://ict-umsida.blogspot.com', '2017-05-28 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200302', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200305', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200307', '<NAME> ', '09', 'https://ict-umsida.blogspot.com', '2017-05-28 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200314', 'Handayani', '09', 'https://ict-umsida.blogspot.com', '2017-05-28 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200315', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2017-05-28 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200316', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200319', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2017-05-23 17:00:00', 'Fatur Amirul M.', 'Ratih Puspitasari'), ('161080200320', '<NAME>', '08', 'https://ict-umsida.blogspot.com', '2017-05-28 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200321', '<NAME>', '08', 'https://ict-umsida.blogspot.com', '2017-05-28 17:00:00', '<NAME>', 'Ratih Puspitasari'), ('161080200323', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2017-05-30 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('171080200001', '<NAME> ', '10', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200002', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-03 17:00:00', 'A132 <NAME>', 'Vini Rahmawati'), ('171080200003', '<NAME>.', '10', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200005', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-08 17:00:00', 'A132 <NAME>', 'Vini Rahmawati'), ('171080200006', '<NAME>.', '10', 'https://ict-umsida.blogspot.com/', '2018-04-18 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200007', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200008', '<NAME>.', '10', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200009', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200010', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A132 <NAME>', 'Vini Rahmawati'), ('171080200011', '<NAME>.', '10', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200012', '<NAME>.', '10', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200013', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A132 Haris Ahmad Gozali', 'Vini Rahmawati'), ('171080200014', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200015', '<NAME>.', '10', 'https://ict-umsida.blogspot.com/', '2018-04-18 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200016', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A132 Haris Ahmad Gozali', 'Vini Rahmawati'), ('171080200017', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A132 Haris Ahmad Gozali', 'Vini Rahmawati'), ('171080200019', '<NAME>.', '10', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200020', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2018-04-18 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200021', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A132 Haris Ahmad Gozali', 'Vini Rahmawati'), ('171080200022', '<NAME>.', '10', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200023', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A132 Haris Ahmad Gozali', 'Vini Rahmawati'), ('171080200024', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200025', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-09 17:00:00', 'A132 Haris Ahmad Gozali', 'Vini Rahmawati'), ('171080200026', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200027', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200028', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200029', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-08 17:00:00', 'A132 Haris Ahmad Gozali', 'Vini Rahmawati'), ('171080200030', '<NAME>.', '11', 'https://ict-umsida.blogspot.com/', '2018-04-18 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200031', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-08 17:00:00', 'A132 Haris Ahmad Gozali', 'Vini Rahmawati'), ('171080200032', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-08 17:00:00', 'A132 Haris Ahmad Gozali', 'Vini Rahmawati'), ('171080200033', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-08 17:00:00', 'A132 Haris Ahmad Gozali', 'Vini Rahmawati'), ('171080200034', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-08 17:00:00', 'A132 Haris Ahmad Gozali', 'Vini Rahmawati'), ('171080200035', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-04-09 17:00:00', 'A132 Haris Ahmad Gozali', 'Vini Rahmawati'), ('171080200036', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-03 17:00:00', 'A142 Ramadhani Sugyono', 'Vini Rahmawati'), ('171080200037', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200038', '<NAME>.', '11', 'https://ict-umsida.blogspot.com/', '2018-04-18 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200039', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200040', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A142 Ram<NAME>', 'Vini Rahmawati'), ('171080200041', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A142 <NAME>', 'Vini Rahmawati'), ('171080200042', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200043', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A142 Ram<NAME>', 'Vini Rahmawati'), ('171080200044', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-04-18 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200045', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200046', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-03 17:00:00', 'A142 Ramadhani Sugyono', 'Vini Rahmawati'), ('171080200048', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A142 Ramadhani Sugyono', 'Vini Rahmawati'), ('171080200050', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200051', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-03 17:00:00', 'A142 Ramadhani Sugyono', 'Vini Rahmawati'), ('171080200052', '<NAME>.', '10', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200054', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-08 17:00:00', 'A142 Ramadhani Sugyono', 'Vini Rahmawati'), ('171080200056', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A142 Ramadhani Sugyono', 'Vini Rahmawati'), ('171080200057', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-04-05 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200059', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-08 17:00:00', 'A142 Ramadhani Sugyono', 'Vini Rahmawati'), ('171080200060', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-03 17:00:00', 'A142 <NAME>', 'Vini Rahmawati'), ('171080200062', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200063', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-08 17:00:00', 'A142 <NAME>', 'Vini Rahmawati'), ('171080200064', '<NAME>.', '12', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200071', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200073', 'Fitrianingsih', '6', 'https://ict-umsida.blogspot.com/', '2018-04-05 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200074', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200079', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200080', '<NAME>.', '13', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200084', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200086', '<NAME>.', '13', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200090', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200094', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200095', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-15 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200096', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200097', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200098', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200103', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200104', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200106', '<NAME>''', '13', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200110', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200116', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200117', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200118', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200119', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200121', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-07-03 17:00:00', 'A134 Alfian <NAME>', 'Ratih Puspitasari'), ('171080200122', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200123', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200124', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200126', '<NAME> ', '5', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200127', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200128', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200129', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-04-09 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200130', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200131', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-04-05 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200132', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200133', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200134', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A133 M. <NAME>', 'Vini Rahmawati'), ('171080200135', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-04-05 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200136', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200137', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200139', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200140', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200141', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200142', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200143', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-04-05 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200144', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2018-04-05 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200145', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200147', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-11-03 17:00:00', 'A134 Alfian Ari Putra', 'Mochtar Kusuma Putra'), ('171080200148', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2018-04-08 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200149', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-04-19 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200150', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-04-18 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200151', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2018-04-05 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200154', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2018-04-05 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200155', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200156', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-05-13 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200157', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-05-13 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200158', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2018-05-13 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200159', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-04-19 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200160', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-04-08 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200161', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200162', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200163', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2017-04-04 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200165', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200166', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2017-04-03 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200168', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2017-04-04 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200172', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-04-17 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200173', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200174', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200175', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-04-16 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200176', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2018-04-20 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200177', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2017-04-03 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200179', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2018-05-06 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200181', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2017-04-03 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200183', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2017-04-04 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200184', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2017-04-04 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200186', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2017-04-03 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200187', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'), ('171080200188', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200190', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-04-15 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200191', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'), ('171080200192', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'), ('171080200193', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'), ('171080200194', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'), ('171080200195', 'Oktavian Eka H.', '8', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'), ('171080200197', 'Bagus Indra S. D.', '16', 'https://ict-umsida.blogspot.com/', '2018-04-17 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200202', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-04-20 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200205', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2018-04-20 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200209', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2018-04-19 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200210', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200211', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-04-17 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200212', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A136 Dewangga Eka Putra', '<NAME>'), ('171080200213', '<NAME> ', '15', 'https://ict-umsida.blogspot.com/', '2018-04-19 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200216', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2018-04-15 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200220', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A133 <NAME>hi''im', 'Vini Rahmawati'), ('171080200221', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2018-04-18 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200222', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A133 M. <NAME>hi''im', 'Vini Rahmawati'), ('171080200224', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A133 M. <NAME>hi''im', 'Vini Rahmawati'), ('171080200225', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2018-04-16 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200226', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-08-15 17:00:00', 'A134 Alfian Ari Putra', 'Alfan Indra Kusuma'), ('171080200227', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200232', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-04-16 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200235', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-04-15 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200237', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-04-16 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200239', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-05-05 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200240', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-09-17 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200242', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A13<NAME>', 'Vini Rahmawati'), ('171080200244', '<NAME>.', '17', 'https://ict-umsida.blogspot.com/', '2018-04-15 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200247', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A13<NAME>', 'Vini Rahmawati'), ('171080200248', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200250', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-04-19 17:00:00', 'A135 Herlian Aliyasa Al<NAME>', 'Alfan Indra Kusuma'), ('171080200251', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-04-09 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200252', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200253', '<NAME>.', '12', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200255', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200256', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('171080200257', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-04-10 17:00:00', 'A133 M. Arsyil Adhi''im', 'Vini Rahmawati'), ('171080200259', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200261', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-04-06 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200263', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-04-05 17:00:00', 'A133 M. Arsyil Adhi''im', 'Vini Rahmawati'), ('171080200266', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A133 M. Arsyil Adhi''im', 'Vini Rahmawati'), ('171080200272', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2018-04-18 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200277', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200278', 'Tomin', '11', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200279', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200289', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200290', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-04-18 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200294', 'Kurnia Ayunda U.', '17', 'https://ict-umsida.blogspot.com/', '2018-04-18 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('171080200309', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-04-18 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Alfan Indra Kusuma'), ('17108020058', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-04-12 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('17108020099', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-04-11 17:00:00', 'A140 Arofatus Salis', 'Alfan Indra Kusuma'), ('181080200007', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-05-24 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200009', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-16 17:00:00', 'A147 M. Said Agil S.', 'R<NAME>ryanto'), ('181080200015', '<NAME> ', '2', 'https://ict-umsida.blogspot.com/', '2019-05-24 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200024', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '0000-00-00 00:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200028', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200031', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200032', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200035', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200040', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200042', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200043', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200045', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200049', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200050', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200053', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200054', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-06-16 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200056', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-16 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'); INSERT INTO `prak02_algostruk` (`nim_praktikum`, `nama_praktikan`, `kelompok_praktikum`, `link_rangkuman`, `tanggal_pengumpulan`, `nama_asisten`, `penerima_laporan`) VALUES ('181080200057', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-16 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200059', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-05-23 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200060', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-16 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200062', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-05-24 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200063', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-16 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200064', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2019-05-24 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200070', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-16 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200074', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-05-24 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200075', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-05-23 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200077', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200081', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-05-24 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200083', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-05-24 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200084', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-05-24 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200085', '<NAME> ', '2', 'https://ict-umsida.blogspot.com/', '2019-05-24 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200086', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-05-24 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200087', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-05-27 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200088', 'M <NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-05-27 17:00:00', 'A147 M. Said Agil S.', 'R<NAME>'), ('181080200113', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-23 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200114', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-23 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200115', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-23 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200116', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-23 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200117', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-26 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200119', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-26 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200121', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-26 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200124', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-24 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200125', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-23 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200126', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-26 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200128', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-21 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200129', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-23 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200133', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-21 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200134', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2019-05-21 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200135', '<NAME>', '06', 'https://ict-umsida.blogspot.com/', '2019-05-26 17:00:00', 'A145 Silvie <NAME>', 'Ratih Puspitasari'), ('181080200137', '<NAME>', '06', 'https://ict-umsida.blogspot.com/', '2019-05-26 17:00:00', 'A145 Sil<NAME>', 'Ratih Puspitasari'), ('181080200139', '<NAME> ', '07', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200145', '<NAME>', '06', 'https://ict-umsida.blogspot.com/', '2019-05-26 17:00:00', 'A145 <NAME>', 'Ratih Puspitasari'), ('181080200146', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200151', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200154', '<NAME>', '07', 'https://ict-umsida.blogspot.com/', '2019-06-18 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200157', '<NAME>', '07', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200159', '<NAME>', '07', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200160', '<NAME>', '07', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200165', '<NAME>', '18', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200166', '<NAME>', '07', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200167', 'Zaenal', '07', 'https://ict-umsida.blogspot.com', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200168', '<NAME>', '07', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200169', '<NAME>', '07', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200170', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-05-17 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200171', '<NAME>', '07', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200173', '<NAME>', '07', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200175', '<NAME>', '07', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200181', '<NAME>', '07', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200186', '<NAME>', '07', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200189', '<NAME>', '07', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A138 Dwi Lestari', 'Ratih Puspitasari'), ('181080200192', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-05-17 17:00:00', 'A147 M. Said Agil S.', '<NAME>'), ('181080200207', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-16 17:00:00', 'A147 M. Said Agil S.', 'R<NAME>'), ('181080200208', '<NAME> ', '10', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200217', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200218', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200220', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('181080200235', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A144 Aga D<NAME>.', 'Ratih Puspitasari'), ('181080200238', '<NAME>.P.Q.S', '10', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A137 Fitria Lailatul Kodriyah', '<NAME>'), ('181080200243', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A144 Aga Dandi P.', 'Ratih Puspitasari'), ('181080200244', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A144 Aga Dandi P.', 'Ratih Puspitasari'), ('181080200246', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200249', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200250', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200251', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2019-05-26 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200254', '<NAME>', '18', 'https://ict-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200255', '<NAME>', '18', 'https://ict-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200258', '<NAME> ', '11', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200259', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200260', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2019-05-26 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200262', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-05-26 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200265', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200269', '<NAME> ', '09', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A144 Aga Dandi P.', 'Ratih Puspitasari'), ('181080200271', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-05-26 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200272', '<NAME> ', '11', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200274', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200277', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2019-06-16 17:00:00', 'A139 Indah Fauzia', 'Ratih Puspitasari'), ('181080200278', '<NAME>', '20', 'https://ict-umsida.blogspot.com/', '2019-06-19 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200279', '<NAME>', '20', 'https://ict-umsida.blogspot.com/', '2019-06-19 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200284', '<NAME>', '20', 'https://ict-umsida.blogspot.com/', '2019-06-19 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200292', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2019-06-17 17:00:00', 'A144 Aga Dandi P.', 'Ratih Puspitasari'), ('181080200293', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-16 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200294', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-16 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200295', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-05-27 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200302', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-05-24 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181080200317', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-16 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'), ('181090200089', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-05-27 17:00:00', 'A147 M. Said Agil S.', 'Rofinus Aryanto'); -- -------------------------------------------------------- -- -- Struktur dari tabel `prak03_basisdata` -- CREATE TABLE `prak03_basisdata` ( `nim_praktikum` varchar(12) NOT NULL, `nama_praktikan` varchar(255) NOT NULL, `kelompok_praktikum` varchar(2) NOT NULL, `link_rangkuman` varchar(255) NOT NULL, `tanggal_pengumpulan` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `nama_asisten` varchar(50) NOT NULL, `penerima_laporan` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `prak03_basisdata` -- INSERT INTO `prak03_basisdata` (`nim_praktikum`, `nama_praktikan`, `kelompok_praktikum`, `link_rangkuman`, `tanggal_pengumpulan`, `nama_asisten`, `penerima_laporan`) VALUES ('141080200068', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-03-30 17:00:00', 'R<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('141080200080', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-03-30 17:00:00', 'R<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('141080200169', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('141080200276', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-04-02 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('151080200010', '<NAME> P', '11', 'https://ict-umsida.blogspot.com', '2019-05-23 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('151080200025', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-05-23 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('151080200029', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-05-23 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('151080200032', '<NAME>.', '11', 'https://ict-umsida.blogspot.com', '2019-05-24 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('151080200078', '<NAME> ', '6', 'https://ict-umsida.blogspot.com', '2019-05-19 17:00:00', 'A139 Indah Fauzia', 'MUHAMMAD SAJI FAUSIL'), ('151080200151', 'Misbahuddin', '06', 'https://ict-umsida.blogspot.com', '2019-05-21 17:00:00', 'A139 Indah Fauzia', 'Maulana Iqbhal Prayogha Slamet'), ('151080200203', 'MOCH MA''RUF F.', '18', 'https://ict-umsida.blogspot.com', '2018-04-18 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('151080200219', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', '<NAME>'), ('151080200235', '<NAME>.', '06', 'https://ict-umsida.blogspot.com', '2019-05-19 17:00:00', 'A139 Indah Fauzia', 'Maulana Iqbhal Prayogha Slamet'), ('151080200249', '<NAME>', '9', 'https://ict-umsida.blogspot.com', '2018-04-05 17:00:00', '<NAME>.', 'MUHAMMAD SAJI FAUSIL'), ('151080200291', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2018-04-05 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('151080200300', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2018-04-05 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('151080200309', '<NAME>', '06', 'https://ict-umsida.blogspot.com', '2019-05-20 17:00:00', 'A139 Indah Fauzia', 'Maulana Iqbhal Prayogha Slamet'), ('161080200002', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-03-23 17:00:00', 'Ail<NAME>', 'Rofinus Aryanto'), ('161080200005', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-03-27 17:00:00', 'Ail<NAME>', 'Rofinus Aryanto'), ('161080200008', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-03-23 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200011', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-03-27 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200014', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-03-23 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200016', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-03-26 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200017', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-03-30 17:00:00', 'A136 Dewangga Eka Putra', 'MUHAMMAD SAJI FAUSIL'), ('161080200026', 'Muhajir', '1', 'https://ict-umsida.blogspot.com', '2018-03-25 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200037', 'D<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-03-26 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200038', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-03-23 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200039', 'indah lestari', '1', 'https://ict-umsida.blogspot.com', '2018-03-22 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200040', 'Primacyarsyl Riza A', '01', 'https://ict-umsida.blogspot.com', '2018-03-25 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200041', '<NAME> W', '1', 'https://ict-umsida.blogspot.com', '2018-03-25 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200068', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2018-03-26 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200073', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-04-02 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200075', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-04-02 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200076', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200081', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200082', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200085', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-04-01 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200094', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200095', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200103', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200104', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-03-29 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200106', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-03-29 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200108', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-04-01 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200110', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-04-01 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200112', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-04-01 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200115', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200117', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-04-01 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200126', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200133', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200134', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-03-30 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200137', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200139', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-04-01 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200144', '<NAME>', '05', 'https://ict-umsida.blogspot.com', '2018-04-26 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200146', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200147', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200149', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200150', 'Eferall', '14', 'https://ict-umsida.blogspot.com', '2018-04-01 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200153', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofin<NAME>ryanto'), ('161080200154', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-04-01 17:00:00', '<NAME>', 'R<NAME>'), ('161080200156', '<NAME>.', '05', 'https://ict-umsida.blogspot.com', '2018-04-25 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200157', '<NAME> ', '16', 'https://ict-umsida.blogspot.com/', '2018-03-30 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200159', '<NAME>', '05', 'https://ict-umsida.blogspot.com/', '2018-04-03 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200160', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-03-30 17:00:00', 'R<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200161', '<NAME>', '05', 'https://ict-umsida.blogspot.com', '2018-04-26 17:00:00', 'R<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200163', 'Wahidiyah .K', '16', 'https://ict-umsida.blogspot.com/', '2018-04-04 17:00:00', 'R<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200164', '<NAME>.k', '16', 'https://ict-umsida.blogspot.com/', '2018-03-30 17:00:00', 'R<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200165', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2018-04-28 17:00:00', 'R<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200167', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2018-04-05 17:00:00', 'F<NAME>.', 'MUHAMMAD SAJI FAUSIL'), ('161080200174', '<NAME>', '05', 'https://ict-umsida.blogspot.com', '2018-04-26 17:00:00', 'R<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200175', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-03-30 17:00:00', 'R<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200177', '<NAME>', '05', 'https://ict-umsida.blogspot.com', '2018-04-26 17:00:00', 'R<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200178', '<NAME>.', '05', 'https://ict-umsida.blogspot.com', '2018-04-26 17:00:00', 'R<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200179', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2018-04-28 17:00:00', 'R<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200180', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2018-04-28 17:00:00', 'R<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200184', '<NAME>.', '05', 'https://ict-umsida.blogspot.com', '2018-04-26 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200186', '<NAME>', '05', 'https://ict-umsida.blogspot.com', '2018-04-27 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200187', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-04-04 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200189', '<NAME>', '05', 'https://ict-umsida.blogspot.com', '2018-04-28 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200190', '<NAME>', '06', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', '<NAME>.', 'MUHAMMAD SAJI FAUSIL'), ('161080200192', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-03-30 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200194', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200195', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-03-30 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200196', 'Nasrudin', '17', 'https://ict-umsida.blogspot.com', '2018-03-30 17:00:00', '<NAME>', '<NAME>'), ('161080200197', '<NAME>', '06', 'https://ict-umsida.blogspot.com', '2018-04-03 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200198', '<NAME>', '06', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200200', '<NAME> ', '06', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200202', 'M. KHULAFAUR .R', '06', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200204', '<NAME>', '06', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200205', '<NAME>', '06', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200208', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200211', '<NAME> ', '06', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200213', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200215', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-04-01 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200216', '<NAME>', '06', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', '<NAME>.', 'MUHAMMAD SAJI FAUSIL'), ('161080200217', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', '<NAME>'), ('161080200218', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2018-03-04 17:00:00', '<NAME>', '<NAME>'), ('161080200219', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', '<NAME>'), ('161080200221', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2018-04-05 17:00:00', '<NAME>', '<NAME>anto'), ('161080200222', '<NAME>', '06', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>.', 'MUHAMMAD SAJI FAUSIL'), ('161080200223', '<NAME>', '06', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur <NAME>.', 'MUHAMMAD SAJI FAUSIL'), ('161080200225', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200226', '<NAME>', '06', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200227', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200228', '<NAME>', '06', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200229', '<NAME> ', '06', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200230', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200232', 'M<NAME>', '07', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200233', ' <NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200234', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200235', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200236', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200240', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200241', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', 'M. Amirulloh', '<NAME>'), ('161080200243', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200245', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200248', '<NAME>', '06', 'https://ict-umsida.blogspot.com', '2019-05-22 17:00:00', 'A139 Inda<NAME>', '<NAME>'), ('161080200250', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200252', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-03-30 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200255', '<NAME>', '9', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200257', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-03-27 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200258', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-03-30 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200259', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-03-30 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200262', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200263', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200264', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2018-04-05 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200267', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', '<NAME>'), ('161080200268', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-03-27 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200269', '<NAME> ', '8', 'https://ict-umsida.blogspot.com', '2018-03-30 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200271', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', '<NAME>'), ('161080200272', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200274', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-03-30 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200277', '<NAME>', '05', 'https://ict-umsida.blogspot.com', '2018-04-26 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200278', 'Waysal-qurni trio p', '8', 'https://ict-umsida.blogspot.com', '2018-03-30 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200281', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-04-01 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200282', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200287', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2018-04-05 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200293', '<NAME>', '9', 'https://ict-umsida.blogspot.com', '2018-03-30 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200294', '<NAME> ', '9', 'https://ict-umsida.blogspot.com', '2018-03-30 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200297', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200298', '<NAME>', '9', 'https://ict-umsida.blogspot.com', '2018-04-04 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200299', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200302', '<NAME>', '9', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200305', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200307', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200309', '<NAME>', '9', 'https://ict-umsida.blogspot.com', '2018-03-30 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200314', 'Handayani', '09', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'F<NAME>.', 'MUHAMMAD SAJI FAUSIL'), ('161080200315', '<NAME>', '9', 'https://ict-umsida.blogspot.com', '2018-03-30 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200316', '<NAME>', '06', 'https://ict-umsida.blogspot.com', '2019-05-22 17:00:00', 'A139 Indah Fauzia', '<NAME>'), ('161080200317', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', '<NAME>', 'MUHAMMAD SAJI FAUSIL'), ('161080200319', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2018-03-28 17:00:00', 'Fatur Amirul M.', 'MUHAMMAD SAJI FAUSIL'), ('161080200320', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-03-28 17:00:00', '<NAME>', 'Rofinus Aryanto'), ('161080200323', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-03-04 17:00:00', '<NAME>', '<NAME>'), ('171080200074', '<NAME> ', '11', 'https://ict-umsida.blogspot.com', '2019-05-26 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200126', '<NAME> ', '5', 'https://ict-umsida.blogspot.com', '2019-05-16 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200127', '<NAME> ', '5', 'https://ict-umsida.blogspot.com/', '2019-05-16 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200129', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2019-05-17 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200131', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2019-05-16 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200134', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2019-05-16 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200135', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2019-05-16 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200137', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2019-05-19 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200138', '<NAME>', '05', 'https://ict-umsida.blogspot.com', '2019-05-16 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200143', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2019-05-19 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200144', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2019-05-19 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200148', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2019-05-19 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200150', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2019-05-16 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200151', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-05-16 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200154', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2019-05-16 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200155', '<NAME>', '06', 'https://ict-umsida.blogspot.com', '2019-05-17 17:00:00', 'A139 Indah Fauzia', 'Maulana Iqbhal Prayogha Slamet'), ('171080200160', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-05-16 17:00:00', 'A139 Indah Fauzia', 'MUHAMMAD SAJI FAUSIL'), ('171080200161', '<NAME>', '06', 'https://ict-umsida.blogspot.com', '2019-05-20 17:00:00', 'A139 Indah Fauzia', 'Maulana Iqbhal Prayogha Slamet'), ('171080200188', '<NAME>', '06', 'https://ict-umsida.blogspot.com', '2019-05-20 17:00:00', 'A139 Indah Fauzia', 'Maulana Iqbhal Prayogha Slamet'), ('171080200205', '<NAME>', '06', 'https://ict-umsida.blogspot.com', '2019-05-23 17:00:00', 'A139 Indah Fauzia', 'Maulana Iqbhal Prayogha Slamet'), ('171080200227', '<NAME>', '06', 'https://ict-umsida.blogspot.com', '2019-05-20 17:00:00', 'A139 Indah Fauzia', 'Maulana Iqbhal Prayogha Slamet'), ('171080200246', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-05-26 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200248', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-05-22 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200255', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-05-26 17:00:00', 'A140 Arofatus Salis', 'MUHAMMAD SAJI FAUSIL'), ('171080200259', '<NAME>', '06', 'https://ict-umsida.blogspot.com', '2019-05-19 17:00:00', 'A139 Indah Fauzia', 'Maulana I<NAME>ay<NAME>'); -- -------------------------------------------------------- -- -- Struktur dari tabel `prak04_pbo` -- CREATE TABLE `prak04_pbo` ( `nim_praktikum` varchar(12) NOT NULL, `nama_praktikan` varchar(255) NOT NULL, `kelompok_praktikum` varchar(2) NOT NULL, `link_rangkuman` varchar(255) NOT NULL, `tanggal_pengumpulan` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `nama_asisten` varchar(50) NOT NULL, `penerima_laporan` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `prak04_pbo` -- INSERT INTO `prak04_pbo` (`nim_praktikum`, `nama_praktikan`, `kelompok_praktikum`, `link_rangkuman`, `tanggal_pengumpulan`, `nama_asisten`, `penerima_laporan`) VALUES ('131080200039', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2017-04-11 17:00:00', '<NAME>', 'N<NAME>'), ('131080200174', '<NAME> ', '3', 'https://ict-umsida.blogspot.com', '2017-04-11 17:00:00', '<NAME>', 'Nurtia Suryani'), ('141080200001', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2018-10-18 17:00:00', 'A133 <NAME>''im', 'Nurtia Suryani'), ('141080200038', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-11-29 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('141080200262', '<NAME>', '3', '', '2018-10-19 17:00:00', 'A13<NAME>', 'A157 Nurtia Suryani'), ('151080200009', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2018-10-28 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Nurtia Suryani'), ('151080200023', 'Amwalinsanu', '11', 'https://ict-umsida.blogspot.com', '2018-10-28 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Nurtia Suryani'), ('151080200081', 'M <NAME>', '3', '', '2018-10-18 17:00:00', 'A133 M. Arsyil Adhi''im', 'A157 Nurtia Suryani'), ('151080200181', '<NAME> ', '18', 'https://muhamadrosyidin18226-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('151080200215', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('151080200235', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2018-10-24 17:00:00', 'A141 Nasrudin Iqrok Mulloh', '<NAME>'), ('151080200257', '<NAME> ', '3', '', '2018-10-19 17:00:00', 'A133 M. Arsyil Adhi''im', 'A157 Nurtia Suryani'), ('151080200289', '<NAME>', '3', '', '2018-10-19 17:00:00', 'A133 M. Arsyil Adhi''im', 'A157 Nurtia Suryani'), ('151080200290', '<NAME>', '3', '', '2018-10-19 17:00:00', 'A1<NAME>', 'A157 Nurtia Suryani'), ('151080200296', '<NAME> ', '9', 'https://farid15296umsida.home.blog/2019/12/04/m-farid-umsida', '2019-12-03 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('151080200298', '<NAME>', '9', 'https://ifanda15298umsida.home.blog/2019/12/06/ifanda-fahrul-ilmi-umsida/', '2019-12-08 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('151080200302', '<NAME>', '6', '', '2018-10-18 17:00:00', 'A142 <NAME>', 'A157 Nurtia Suryani'), ('151080200312', '<NAME> ', '9', 'https://ict-umsida.blogspot.com', '2019-12-08 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('151080200313', '<NAME>', '3', '', '2018-10-21 17:00:00', 'A1<NAME>', 'A157 Nurtia Suryani'), ('161080200089', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-26 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('161080200098', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-29 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('161080200107', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2017-04-11 17:00:00', '<NAME>', 'Nurtia Suryani'), ('161080200157', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-10-29 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('161080200257', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2017-04-11 17:00:00', '<NAME>', 'Nurtia Suryani'), ('161080200268', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2017-04-11 17:00:00', '<NAME>', 'Nurtia Suryani'), ('161080200298', '<NAME>', '1', '', '2018-10-22 17:00:00', 'A131 <NAME>.', 'A157 Nurtia Suryani'), ('161080200311', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2017-04-11 17:00:00', '<NAME>', 'Nurtia Suryani'), ('161080200331', '<NAME> ', '11', 'https://ict-umsida.blogspot.com', '2018-10-26 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Nurtia Suryani'), ('171080200001', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-26 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('171080200002', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-17 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200003', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-10-25 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Rakhmad Fahmi Putra'), ('171080200005', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-18 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200006', '<NAME>', '9', 'https://ict-umsida.blogspot.com', '2018-10-26 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Nurtia Suryani'), ('171080200007', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-10-25 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Rakhmad Fahmi Putra'), ('171080200008', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-10-25 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Rakhmad Fahmi Putra'), ('171080200009', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-10-25 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Rakhmad Fahmi Putra'), ('171080200010', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-16 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200011', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-10-25 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'R<NAME>'), ('171080200012', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-10-25 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Rakhmad Fahmi Putra'), ('171080200014', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-10-25 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Rakhmad Fahmi Putra'), ('171080200015', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-10-25 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Rakhmad Fahmi Putra'), ('171080200016', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-18 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200017', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-18 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200022', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-10-25 17:00:00', 'A137 Fitria Lailatul Kodriyah', '<NAME>'), ('171080200023', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-18 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200024', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-10-25 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Rakhm<NAME>mi Putra'), ('171080200025', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-18 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200031', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200032', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200033', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A131 Mohammad Aditio Putra F.', 'N<NAME>ani'), ('171080200034', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-18 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200035', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200036', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-17 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200040', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-16 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200041', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-10-18 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Nurtia Suryani'), ('171080200046', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'A132 <NAME>', 'Rakhmad Fahmi Putra'), ('171080200048', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200051', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200052', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-10-21 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Rakhmad Fahmi Putra'), ('171080200053', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2018-10-26 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200054', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2018-10-21 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200056', '<NAME>.R.', '2', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200057', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A138 Dwi Lestari', '<NAME>'), ('171080200059', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2018-10-21 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200060', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200063', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-10-26 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200065', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2018-10-21 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200066', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2018-10-17 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200067', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200068', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200069', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200071', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Nurtia Suryani'), ('171080200072', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'A132 Haris Ahmad Gozali', 'Rakhmad Fahmi Putra'), ('171080200073', 'Fitrianingsih', '11', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Nurtia Suryani'), ('171080200074', ' R<NAME>', '11', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A135 <NAME>ddin', 'Nurtia Suryani'), ('171080200075', '<NAME>', '3', '', '2018-10-18 17:00:00', 'A133 M. Arsyil Adhi''im', 'A157 Nurtia Suryani'), ('171080200076', '<NAME>', '3', '', '2018-10-18 17:00:00', 'A133 M. Arsyil Adhi''im', 'A157 Nurtia Suryani'), ('171080200079', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200080', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200081', '<NAME>', '3', '', '2018-10-18 17:00:00', 'A133 M. Arsyil Adhi''im', 'A157 Nurtia Suryani'), ('171080200082', '<NAME>', '3', '', '2018-10-16 17:00:00', 'A1<NAME>', 'A157 Nurtia Suryani'), ('171080200083', '<NAME>', '3', '', '2018-10-17 17:00:00', 'A1<NAME>', 'A157 Nurtia Suryani'), ('171080200084', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-23 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200085', 'R<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200088', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A134 Alfian Ari Putra', 'Nurtia Suryani'), ('171080200089', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A134 Alfian Ari Putra', 'Nurtia Suryani'), ('171080200090', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200091', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A134 Alfian Ari Putra', 'Nurtia Suryani'), ('171080200092', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A134 Alfian Ari Putra', 'Nurtia Suryani'), ('171080200093', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A134 Alfian Ari Putra', 'Nurtia Suryani'), ('171080200094', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200097', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200098', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200099', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200100', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A134 Alfian Ari Putra', 'Nurtia Suryani'), ('171080200102', '<NAME>ama', '4', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A134 Alfian Ari Putra', 'Nurtia Suryani'), ('171080200103', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200104', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200106', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200107', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A134 Alfian Ari Putra', 'Nurtia Suryani'), ('171080200109', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A134 Alfian Ari Putra', 'Nurtia Suryani'), ('171080200110', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200111', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A134 Alfian Ari Putra', 'Nurtia Suryani'), ('171080200112', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A134 Alfian Ari Putra', 'Nurtia Suryani'), ('171080200113', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A134 Alfian Ari Putra', 'Nurtia Suryani'), ('171080200115', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-10-18 17:00:00', 'A134 Alfian Ari Putra', 'Nurtia Suryani'), ('171080200116', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200117', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-23 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200118', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-23 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200119', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200121', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200122', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200123', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200124', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200126', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-02-21 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200127', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200128', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-23 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200129', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200130', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200131', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200132', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200133', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200134', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200135', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200136', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200137', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200138', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200139', '<NAME> ', '12', 'https://ict-umsida.blogspot.com', '2019-12-16 17:00:00', 'A143 A<NAME>', 'Nurtia Suryani'), ('171080200140', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200142', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-26 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200143', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-10-19 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200144', '<NAME>', '5', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200145', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200147', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200148', '<NAME>', '6', '', '2019-10-21 17:00:00', 'A142 Ramadhani Sugyono', 'Nurtia Suryani'), ('171080200149', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200150', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A142 Ramadhani Sugyono', 'Nurtia Suryani'), ('171080200151', '<NAME>', '6', '', '2018-10-19 17:00:00', 'A142 Ramadhani Sugyono', 'A157 Nurtia Suryani'), ('171080200154', '<NAME>', '6', '', '2019-10-21 17:00:00', 'A142 Ramadhani Sugyono', 'Nurtia Suryani'), ('171080200155', '<NAME>', '6', '', '2018-10-21 17:00:00', 'A142 Ramadhani Sugyono', 'A157 Nurtia Suryani'), ('171080200156', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200157', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200158', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200159', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200160', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A142 Ramadhani Sugyono', 'Nurtia Suryani'), ('171080200161', '<NAME>', '6', '', '2018-10-21 17:00:00', 'A142 Ramadhani Sugyono', 'Nurtia Suryani'), ('171080200162', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A142 Ramadhani Sugyono', 'Nurtia Suryani'), ('171080200163', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200165', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200166', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200167', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200168', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200169', '<NAME>', '3', '', '2018-10-16 17:00:00', 'A13<NAME>', 'A157 Nurtia Suryani'), ('171080200172', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-10-29 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171080200173', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200174', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200176', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-11-05 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200179', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A142 Ramadhani Sugyono', 'Nurtia Suryani'), ('171080200180', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200181', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200183', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200184', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200186', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-23 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200187', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200188', '<NAME>', '6', '', '2019-10-21 17:00:00', 'A142 <NAME>', 'Nurtia Suryani'), ('171080200189', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200190', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-10-29 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171080200191', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-23 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200192', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200193', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200195', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('171080200196', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('171080200197', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-10-29 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171080200199', 'Awad', '8', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('171080200200', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('171080200202', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-10-29 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171080200205', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2018-10-23 17:00:00', 'A142 <NAME>', 'Nurtia Suryani'), ('171080200207', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A141 <NAME>', 'Nurtia Suryani'), ('171080200208', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-10-31 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171080200209', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-10-29 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171080200210', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-10-31 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171080200211', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-10-31 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171080200212', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('171080200213', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200215', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('171080200216', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-10-29 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171080200217', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('171080200220', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('171080200221', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-10-31 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171080200222', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('171080200224', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A141 Nasrudin Iq<NAME>loh', 'Nurtia Suryani'), ('171080200225', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2018-10-29 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171080200226', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('171080200227', '<NAME>', '6', '', '2018-10-21 17:00:00', 'A142 <NAME>', 'A157 Nurtia Suryani'), ('171080200229', 'Intan <NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200230', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-22 17:00:00', 'A141 Nasrudin I<NAME>h', 'Nurtia Suryani'), ('171080200232', '<NAME> ', '15', 'https://ict-umsida.blogspot.com', '2018-10-31 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200235', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-11-01 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200237', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-10-29 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200239', '<NAME> ', '15', 'https://ict-umsida.blogspot.com', '2018-11-02 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200240', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-10-29 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200242', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-23 17:00:00', 'A141 <NAME>', 'Nurtia Suryani'), ('171080200243', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A135 Her<NAME>maj Duddin', 'Nurtia Suryani'), ('171080200244', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-10-31 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171080200246', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2018-10-26 17:00:00', 'A135 <NAME>', 'Nurtia Suryani'), ('171080200247', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A141 <NAME>', 'Nurtia Suryani'), ('171080200248', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Nurtia Suryani'), ('171080200250', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-10-29 17:00:00', 'A140 <NAME>', 'Nurtia Suryani'), ('171080200252', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Nurtia Suryani'), ('171080200253', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2018-10-26 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Nurtia Suryani'), ('171080200254', '<NAME> ', '8', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A141 <NAME>', 'Nurtia Suryani'), ('171080200255', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2018-10-26 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Nurtia Suryani'), ('171080200256', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2018-10-28 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Nurtia Suryani'), ('171080200257', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2018-10-24 17:00:00', 'A139 Indah Fauzia', 'Nurtia Suryani'), ('171080200259', '<NAME>', '6', '', '2019-10-21 17:00:00', 'A142 Ram<NAME>', 'Nurtia Suryani'), ('171080200263', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-10-21 17:00:00', 'A141 N<NAME>', 'Nurtia Suryani'), ('171080200269', '<NAME>', '3', '', '2018-10-17 17:00:00', 'A133 M. Arsyil Adhi''im', 'A157 Nurtia Suryani'), ('171080200273', '<NAME>', '3', '', '2018-10-18 17:00:00', 'A133 M. Arsyil Adhi''im', 'A157 Nurtia Suryani'), ('171080200277', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Nurtia Suryani'), ('171080200278', 'Tomin', '11', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Nurtia Suryani'), ('171080200279', '<NAME> ', '11', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Nurtia Suryani'), ('171080200284', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-10-31 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('171808200004', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171808200027', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171808200028', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171808200030', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171808200037', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171808200038', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171808200039', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-26 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171808200044', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-26 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171808200045', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171808200050', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171808200052', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171808200058', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171808200062', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('171808200064', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-10-25 17:00:00', 'A138 Dwi Lestari', 'Nurtia Suryani'), ('181080200001', '<NAME>', '1', 'https://ade18001-umsida.blogspot.com', '2019-12-01 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200004', '<NAME> ', '12', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200006', '<NAME> ', '1', 'https://rafly18007-umsida.blogspot.com/2019/11/rangkuman-praktikum-pbo.html', '2019-11-27 17:00:00', 'A145 <NAME>', 'Nurtia Suryani'), ('181080200007', '<NAME> ', '1', 'https://rafly18007-umsida.blogspot.com/2019/11/rangkuman-praktikum-pbo.html', '2019-12-01 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200009', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2019-12-05 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200010', '<NAME> ', '12', 'https://ict-umsida.blogspot.com', '2019-12-05 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200011', '<NAME>', '1', 'https://rindi18011-umsida.blogspot.com/2019/11/rangkuman-praktikum-modul-1-6.html', '2019-12-01 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200012', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200013', '<NAME> ', '12', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200014', '<NAME> ', '12', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200016', '<NAME>', '1', 'https://rajiv18016- umsida.blogspot.com/2019/11/rangkuman-praktikum-', '2019-12-01 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200019', '<NAME> ', '12', 'https://ict-umsida.blogspot.com', '2019-12-05 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200020', 'Kasaifi Al Q.B.W', '1', 'https://kasaifi18020- umsida.blogspot.com/2019/11/rangkuman-laporan- praktikum-pbo.html', '2019-12-01 17:00:00', 'A146 Lailatul Lutfiah', 'Nurt<NAME>'), ('181080200021', '<NAME> ', '13', 'https://khoirulizzatulilmi18037-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200022', '<NAME>', '1', 'https://sayfudin18022- umsida.blogspot.com/2019/11/pemrograman- berbasis-objek-menggunakan.html', '2019-12-01 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200023', '<NAME>', '13', 'https://dicky18028-umsida.blogspot.com/2019/12/dicky-prasetyo-endrianto-umsida.html', '2019-12-06 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200024', '<NAME> ', '1', 'https://rachmatagung18024- umsida.blogspot.com/2019/11/laporan-rangkuman-', '2019-12-01 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200025', '<NAME>', '1', 'https://naufal18030-umsida.blogspot.com/2019/11/rangkuman-pbo.html', '2019-11-29 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200027', '<NAME>', '13', 'https://irwanto18027.blogspot.com/2019/12/rangkuman-web.html', '2019-12-06 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200028', '<NAME>', '13', 'https://dicky18028-umsida.blogspot.com/2019/12/dicky-prasetyo-endrianto-umsida.html', '2019-12-06 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200030', '<NAME> ', '1', 'https://aqsal18034-umsida.blogspot.com/2019/11/rangkuman-praktikum-pbo.html?m=1', '2019-12-01 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200031', '<NAME>', '4', 'https://gilang18031-umsida.blogspot.com/2019/12/gilang-arya-sembada-umsida.html', '2019-12-05 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200032', '<NAME>', '13', 'https://dicky18028-umsida.blogspot.com/2019/12/dicky-prasetyo-endrianto-umsida.html', '2019-12-06 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200034', '<NAME>', '1', 'https://aqsal18034- umsida.blogspot.com/2019/11/rangkuman-praktikum- pbo.html?m=1', '2019-11-27 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200036', '<NAME>', '1', 'https://gusti18036-umsida.blogspot.com/2019/11/rangkuman-praktikum-pbo.html', '2019-11-27 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200037', '<NAME> ', '13', 'https://khoirulizzatulilmi18037-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200039', '<NAME>', '13', 'https://khoirulizzatulilmi18037-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200040', '<NAME>', '1', 'https://anggita18040-umsida.blogspot.com/', '2019-12-01 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200041', '<NAME>', '1', 'https://mukhlas18041-umsida.blogspot.com/', '2019-12-01 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200042', '<NAME>', '13', 'https://mwidodo18042-umsida.blogspot.com', '2019-12-06 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200043', '<NAME> ', '13', 'https://mwidodo18042-umsida.blogspot.com', '2019-12-06 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200044', '<NAME>', '1', 'https://nana18044-umsida.blogspot.com/', '2019-12-01 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200045', '<NAME>', '13', 'https://khoirulizzatulilmi18037-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200048', '<NAME>', '13', 'https://muhammadaldimasmaulidana18048-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200050', '<NAME>', '14', 'https://irbabul18050-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200053', '<NAME> ', '14', 'https://fernaldo18053-umsida.blogspot.com/', '2019-12-06 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200054', '<NAME> ', '14', 'https://dzikri18054-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200056', '<NAME> ', '14', 'https://ekomujahidin18056-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200057', '<NAME>', '14', 'https://faiz18057umsida.blogspot.com/2019/12/rangkuman-praktikum-pemrograman.html', '2019-12-05 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200060', '<NAME>', '14', 'https://rangga18060-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200062', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200063', '<NAME>', '14', 'https://irwan18063-umsida.blogspot.com/2019/12/moduli-elemen-dasar-java-pendahuluan.html?m=1', '2019-12-05 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200064', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200065', '<NAME> ', '2', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200069', 'Z<NAME>', '14', 'https://zsendy18069-umsida.blogspot.com/', '2019-12-06 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200070', '<NAME>', '14', 'https://ilham18070-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200073', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-12-05 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200074', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200075', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200076', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200077', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200078', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-12-05 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200080', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-12-05 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200081', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200083', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200084', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200087', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200088', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200089', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200090', '<NAME> ', '3', 'https://ict-umsida.blogspot.com', '2019-11-29 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200091', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-11-27 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200092', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-11-27 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200093', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200094', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-12-05 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200095', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200096', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200097', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200098', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-12-05 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200099', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200101', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-12-09 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200103', '<NAME> ', '3', 'https://ict-umsida.blogspot.com', '2019-11-29 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200104', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-11-29 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200105', '<NAME>', '16', 'https://renaldy18105-umsida.blogspot.com/2019/12/rangkuman-pratikum-pbo.html', '2019-12-05 17:00:00', 'A141 <NAME>', 'Nurtia Suryani'), ('181080200106', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-11-29 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200107', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200108', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200109', '<NAME> ', '3', 'https://ict-umsida.blogspot.com', '2019-11-29 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200110', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200112', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200113', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200114', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200115', '<NAME> ', '4', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200116', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200117', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200119', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-11-29 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('181080200120', '<NAME>', '16', 'https://agustin18120-umsida.blogspot.com/', '2019-12-08 17:00:00', 'A141 <NAME>', 'Nurtia Suryani'), ('181080200121', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200122', '<NAME> ', '16', 'https://dimas18122.blogspot.com/2019/12/rangkuman-praktikum-pbo-umsida.html', '2019-12-05 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('181080200123', '<NAME>', '16', 'https://mdmahendra18123-umsida.blogspot.com/2019/12/rangkuman-pbo-umsida.html', '2019-12-05 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('181080200124', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200125', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200126', '<NAME> ', '4', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200127', '<NAME>', '16', 'https://18127-umsida.blogspot.com/2019/12/mbaihaqi-salsabil-umsida.html', '2019-12-05 17:00:00', 'A141 N<NAME>', 'Nurtia Suryani'), ('181080200128', '<NAME> ', '4', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200129', '<NAME> ', '4', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200131', '<NAME> |', '16', 'https://irene18131-umsida.blogspot.com/2019/12/rangkuman-modul-praktikum-pbo.html', '2019-12-05 17:00:00', 'A141 <NAME>', 'Nurtia Suryani'), ('181080200132', '<NAME>', '16', 'https://dayatt18132-umsida.blogspot.com/2019/12/rangkuman-pemrograman-berorientasi-objek.html', '2019-12-05 17:00:00', 'A141 Nasrudin I<NAME>', 'Nurtia Suryani'), ('181080200133', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200134', '<NAME> ', '5', 'https://dewi18134-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200135', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200136', '<NAME> ', '5', 'https://fury18136-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200138', '<NAME> ', '5', 'https://rizka18138-umsida.blogspot.com/', '2019-11-29 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200139', '<NAME>’ |', '16', 'https://18139-umsida.blogspot.com/2019/12/rangkuman-praktikum-pbo.html', '2019-12-17 17:00:00', 'A141 Nasrud<NAME>h', 'Nurtia Suryani'), ('181080200140', '<NAME>', '16', 'https://18140-umsida.blogspot.com/2019/12/rangkuman-praktikum-pbo.html', '2019-12-17 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('181080200142', '<NAME>', '5', 'https://jagad18142.wordpress.com/', '2019-11-28 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'); INSERT INTO `prak04_pbo` (`nim_praktikum`, `nama_praktikan`, `kelompok_praktikum`, `link_rangkuman`, `tanggal_pengumpulan`, `nama_asisten`, `penerima_laporan`) VALUES ('181080200143', '<NAME>', '16', 'https://diky18143-umsida.blogspot.com/2019/12/rangkuman-praktikum-pbo-181080200143_6.html', '2019-12-08 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Nurtia Suryani'), ('181080200144', '<NAME> ', '5', 'https://rafli18144-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200145', '<NAME>', '5', 'https://aji18145-umsida.blogspot.com/', '2019-12-01 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200146', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('181080200147', '<NAME>', '16', 'https://muhammad-afif18147-umsida.blogspot.com/2019/12/rangkuman-modul-praktikum-umsida.html', '2019-12-05 17:00:00', 'A141 N<NAME>', 'Nurtia Suryani'), ('181080200148', '<NAME> |', '16', 'https://safiray18148-umsida.blogspot.com/2019/12/rangkuman-modul-praktikum-pbo.html', '2019-12-05 17:00:00', 'A141 <NAME>', 'Nurtia Suryani'), ('181080200149', '<NAME> ', '5', 'https://jefry18149-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200150', '<NAME>', '5', 'https://karina18150-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200151', '<NAME>', '5', 'https://dimas18151-umsida.blogspot.com/', '2019-12-01 17:00:00', 'A145 Silvie <NAME>', 'Nurtia Suryani'), ('181080200153', '<NAME> ', '5', 'https://hana18153-umsida.blogspot.com/', '2019-11-29 17:00:00', 'A145 Silvie <NAME>', 'Nurtia Suryani'), ('181080200154', '<NAME> ', '6', 'https://ict-umsida.blogspot.com', '2019-12-08 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('181080200155', '<NAME>', '16', 'https://gilang18155-umsida.blogspot.com/2019/12/rangkuman-praktikum-pbo.html', '2019-12-06 17:00:00', 'A141 <NAME>', 'Nurtia Suryani'), ('181080200156', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('181080200157', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('181080200159', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('181080200160', '<NAME> ', '6', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('181080200161', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('181080200162', '<NAME>', '16', 'https://fikriferdiansyah-181080200162.blogspot.com/2019/12/rangkuman-praktikum-pbo-pokok-bahasan-1.html', '2019-12-06 17:00:00', 'A141 Nasr<NAME>', 'Nurtia Suryani'), ('181080200163', '<NAME>', '17', 'https://nouvalaulia18163-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200165', '<NAME> ', '6', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('181080200166', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-12-01 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('181080200167', 'Zaenal ', '6', 'https://ict-umsida.blogspot.com', '2019-11-28 17:00:00', 'A136 Dewangga Eka Putra', 'Nurtia Suryani'), ('181080200168', '<NAME>', '7', 'https://iqbal18168-umsida.blogspot.com/', '2019-12-01 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200169', '<NAME>', '7', 'https://wirawan18169-umsida.blogspot.com/', '2019-12-01 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200170', '<NAME>', '7', 'https://18170-umsida.blogspot.com/', '2019-12-01 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200171', '<NAME>', '7', 'https://aris18171-umsida.blogspot.com/', '2019-12-01 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200172', '<NAME> ', '17', 'https://helmi18172-umsida.blogspot.com/2019/12/rangkuman-modul-praktikum-web-umsida.html', '2019-12-06 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200173', '<NAME>', '7', 'https://debyk18173-umsida.blogspot.com/', '2019-11-30 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200175', '<NAME>', '7', 'https://iqbal18168-umsida.blogspot.com/', '2019-12-01 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200176', '<NAME>', '17', 'https://ardino18176-umsida.blogspot.com/', '2019-12-06 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200177', '<NAME>', '7', 'https://nurtiasuryani18177-umsida.blogspot.com/2019/12/rangkuman-praktikum-pemrograman.html', '2019-12-02 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200178', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2019-12-05 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200179', '<NAME>', '17', 'https://abaoutjavanetbeandsmethos.blogspot.com/2019/12/nama-ahmadin-maulid-khaqqi-nim.html', '2019-12-06 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200180', '<NAME>', '17', 'https://endanuriyadewi18180-umsida.blogspot.com/2019/12/pokok-bahasan-1-elemen-dasar-java.html', '2019-12-05 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200181', '<NAME>', '7', 'https://rizky18181-umsida.blogspot.com/2019/12/rangkuman-pratikum-pemrograman.html', '2019-11-28 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200182', '<NAME>', '17', 'https://auliaveronica182b2.blogspot.com/2019/12/rangkuman-modul-praktikum-pbo.html', '2019-12-05 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200183', '<NAME>', '7', 'https://hazmi18183-umsida.blogspot.com/?m=1', '2019-12-01 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200184', '<NAME>''<NAME>', '17', 'https://dimas18184-umsida.blogspot.com/2019/12/rangkuman-praktikum-pbo-181080200184.html', '2019-12-06 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200186', '<NAME> ', '7', 'https://rifqiadam186.blogspot.com/2019/12/modul-i-elemen-dasar-java-konsep-dasar.html', '2019-12-02 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200188', '<NAME>', '7', 'https://18188-umsida.blogspot.com/?m=1', '2019-11-28 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200189', '<NAME>', '18', 'https://hendrawan18189-umsida.blogspot.com', '2019-12-06 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200190', '<NAME>', '18', 'https://hendrawan18189-umsida.blogspot.com', '2019-12-06 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200191', '<NAME>', '7', 'https://maudina181191-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200192', '<NAME>', '7', 'https://18192-umsida.blogspot.com/', '2019-11-30 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200193', '<NAME>', '7', 'https://alwimembri181193-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A140 Arofatus Salis', 'Nurtia Suryani'), ('181080200197', '<NAME> ', '8', 'https://Riki18197-umsida.blogspot.com', '2019-12-03 17:00:00', 'A145 <NAME>', 'Nurtia Suryani'), ('181080200198', '<NAME> ', '8', 'https://eko18198-umsida.blogspot.com', '2019-12-04 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200199', '<NAME> ', '8', 'https://dedy18199-umsida.blogspot.com', '2019-12-02 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200200', '<NAME> ', '8', 'https://Rifqi18200-umsida.blogspot.com', '2019-12-01 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200201', '<NAME>', '18', 'https://ridwan18201-umsida.blogspot.com/', '2019-12-06 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200202', '<NAME> ', '8', 'https://hidan18202-umsida.blogspot.com', '2019-11-28 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200203', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200204', '<NAME> ', '8', 'https://kholis18204-umsida.blogspot.com', '2019-12-02 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200205', '<NAME> ', '8', 'https://wafi18205-umsida.blogspot.com', '2019-12-01 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200207', '<NAME> ', '8', 'https://Fikri18207-umsida.blogspot.com', '2019-12-03 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200208', '<NAME> ', '8', 'https://faisalandriean208-umsida.blogspot.com', '2019-12-11 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200209', '<NAME> ', '8', 'https://Yoshinta18209-umsida.blogspot.com', '2019-12-02 17:00:00', 'A145 Silvie Nur Millah', 'Nurtia Suryani'), ('181080200210', '<NAME> ', '18', 'https://rizal18210-umsida.blogspot.com/?m=1', '2019-12-05 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200212', '<NAME> ', '8', 'https://endi18212-umsida.blogspot.com', '2019-12-02 17:00:00', 'A145 Sil<NAME>', 'Nurtia Suryani'), ('181080200213', '<NAME>', '18', 'https://robby18213-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200214', '<NAME> ', '9', 'https://tirta18214-umsida.blogspot.com/', '2019-12-04 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200217', '<NAME> ', '9', 'https://andikarioip18217-umsida.blogspot.com/', '2019-12-04 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200222', '<NAME>', '18', 'https://mocheriwijayanto.blogspot.com/', '2019-12-05 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200223', '<NAME>', '9', 'https://dimaschakraumsida18223-umsida.blogspot.com/', '2019-12-04 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200224', '<NAME> ', '18', 'https://muhamadrosyidin18226-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200225', '<NAME> ', '18', 'https://rizal18210-umsida.blogspot.com/?m=1', '2019-12-05 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200226', '<NAME> ', '13', 'https://muhamadrosyidin18226-umsida.blogspot.com/', '2019-12-05 17:00:00', 'A144 Aga Dandi P.', 'Nurtia Suryani'), ('181080200228', '<NAME> ', '9', 'https://raditya18228-umsida.blogspot.com/2019/12/raditya-arfino-umsida.html', '2019-12-02 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200230', 'DAfit Setiawan Jaya ', '10', 'https://ict-umsida.blogspot.com', '2019-12-03 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200232', 'Syahr<NAME> ', '10', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200233', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2019-12-04 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200234', ' <NAME>', '12', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200235', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2019-12-03 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200238', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2019-12-04 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200241', '<NAME> ', '19', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A142 Ramadhani Sugyono', 'Nurtia Suryani'), ('181080200244', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200245', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200247', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200249', '<NAME> ', '10', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200250', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2019-12-04 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200251', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A143 Achmad Ainun GR', 'Nurtia Suryani'), ('181080200253', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-12-05 17:00:00', 'A142 <NAME>', 'Nurtia Suryani'), ('181080200254', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-12-05 17:00:00', 'A142 Ram<NAME>', 'Nurtia Suryani'), ('181080200255', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-12-05 17:00:00', 'A142 Ramadhani Sugyono', 'Nurtia Suryani'), ('181080200256', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200258', '<NAME> ', '11', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200259', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-12-03 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200260', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-12-03 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200262', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200264', '<NAME> ', '14', 'https://arif18294-umsida.blogspot.com/2019/12/arif-ardiansah-umsida.html', '2019-12-06 17:00:00', 'A145 <NAME>', 'Nurtia Suryani'), ('181080200265', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-12-22 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200266', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A142 <NAME>', 'Nurtia Suryani'), ('181080200269', '<NAME> ', '11', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200271', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200274', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200276', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A142 <NAME>', 'Nurtia Suryani'), ('181080200277', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200289', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A142 <NAME>', 'Nurtia Suryani'), ('181080200292', '<NAME> ', '11', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200293', '<NAME>', '14', 'https://shihab18293-umsida.blogspot.com/2019/12/umsida.html', '2019-12-06 17:00:00', 'A145 <NAME>', 'Nurtia Suryani'), ('181080200296', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200297', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2019-12-05 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200298', '<NAME> ', '17', 'https://dod18298-umsida.blogspot.com/2019/12/rangkuman-modul-praktikum-pbo-1-6.html', '2019-12-06 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200299', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-12-03 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200300', '<NAME> ', '9', 'https://didit15300umsida.wordpress.com/2019/11/27/didit-umsida/', '2019-12-03 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200302', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200303', '<NAME>', '17', 'https://aulianuryasinta303-umsida.blogspot.com/?m=1', '2019-12-05 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200304', '<NAME> ', '8', 'https://anhar18304-umsida.blogspot.com', '2019-12-02 17:00:00', 'A145 <NAME>', 'Nurtia Suryani'), ('181080200305', '<NAME>', '17', 'https://viqi18305-umsida.blogspot.com/2019/12/rangkuman-modul-pbo.html', '2019-07-11 17:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200306', '<NAME> ', '9', 'https://adeluhung306umsida.home.blog/2019/12/02/ade-luhung-umsida/', '0000-00-00 00:00:00', 'A146 Lailatul Lutfiah', 'Nurtia Suryani'), ('181080200312', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-12-03 17:00:00', 'A147 M. Said Agil S.', 'Nurtia Suryani'), ('181080200314', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-12-06 17:00:00', 'A142 <NAME>', 'Nurtia Suryani'), ('181080200317', '<NAME>', '14', 'https://nurcahyono18317-umsida.blogspot.com/', '2019-12-06 17:00:00', 'A145 <NAME>', 'Nurtia Suryani'); -- -------------------------------------------------------- -- -- Struktur dari tabel `prak05_sistemoperasi` -- CREATE TABLE `prak05_sistemoperasi` ( `nim_praktikum` varchar(12) NOT NULL, `nama_praktikan` varchar(255) NOT NULL, `kelompok_praktikum` varchar(2) NOT NULL, `link_rangkuman` varchar(255) NOT NULL, `tanggal_pengumpulan` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `nama_asisten` varchar(50) NOT NULL, `penerima_laporan` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `prak05_sistemoperasi` -- INSERT INTO `prak05_sistemoperasi` (`nim_praktikum`, `nama_praktikan`, `kelompok_praktikum`, `link_rangkuman`, `tanggal_pengumpulan`, `nama_asisten`, `penerima_laporan`) VALUES ('130180200024', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('131080200024', '<NAME>', '3', 'https://icr-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('141080200181', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-07-04 17:00:00', 'A13<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('141080200205', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2019-07-04 17:00:00', 'A132 <NAME>', 'Muhammad Arginanta Kafi Sambada'), ('151080200287', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2018-05-20 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('151080200306', '<NAME>', '3', 'https://ict-umsida.blogspot.com', '2018-05-20 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200001', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-11-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200003', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200004', '<NAME>.', '10', 'https://ict-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200006', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200007', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200009', '<NAME>.', '10', 'https://ict-umsida.blogspot.com', '2018-12-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200017', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-05-11 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200018', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200021', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200037', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-05-07 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200250', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-05-07 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200252', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-05-07 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200255', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-05-07 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200256', 'M.Sulfonul.Hakim', '8', 'https://ict-umsida.blogspot.com', '2018-05-07 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200259', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-05-07 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200262', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-05-07 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200263', 'M.Nozil.M', '8', 'https://ict-umsida.blogspot.com', '2018-05-07 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200272', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-12-07 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200274', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-05-07 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200277', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-11-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200278', 'Tomin', '10', 'https://ict-umsida.blogspot.com', '2018-11-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200279', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-11-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('160180200282', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-05-07 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200001', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-11-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200002', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-05-03 17:00:00', '<NAME>', '<NAME>'), ('161080200003', '<NAME> ', '10', 'https://icr-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200004', '<NAME>.', '10', 'https://ict-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200005', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-05-06 17:00:00', '<NAME>', '<NAME>'), ('161080200006', '<NAME>', '10', 'https://icr-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200007', '<NAME>', '10', 'https://icr-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200008', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-05-03 17:00:00', '<NAME>', '<NAME>ati'), ('161080200009', '<NAME>.', '10', 'https://ict-umsida.blogspot.com', '2018-12-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200011', '<NAME>.', '1', 'https://ict-umsida.blogspot.com/', '2018-07-04 17:00:00', '<NAME>', 'Linda Kushernawati'), ('161080200012', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-05-17 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200013', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-05-11 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200014', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-05-03 17:00:00', '<NAME>', 'Linda Kushernawati'), ('161080200016', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-05-03 17:00:00', '<NAME>', 'Linda Kushernawati'), ('161080200017', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-12-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200018', '<NAME>', '10', 'https://icr-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200021', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-09-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200026', 'Muhajir', '1', 'https://ict-umsida.blogspot.com', '2018-05-03 17:00:00', '<NAME>', '<NAME>'), ('161080200031', '<NAME>', '3', 'https://icr-umsida.blogspot.com', '2018-08-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200038', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2018-05-03 17:00:00', '<NAME>', '<NAME>'), ('161080200039', 'In<NAME>ari', '1', 'https://ict-umsida.blogspot.com', '2018-05-03 17:00:00', 'A<NAME>', 'Linda Kushernawati'), ('161080200040', 'PRIMACY ARSYI RIZA A.', '1', 'https://ict-umsida.blogspot.com/', '2018-07-04 17:00:00', '<NAME>', 'Linda Kushernawati'), ('161080200041', '<NAME>.', '1', 'https://ict-umsida.blogspot.com', '2018-05-03 17:00:00', '<NAME>', 'Linda Kushernawati'), ('161080200056', 'Y<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-07-04 17:00:00', 'Rhamadina Fitrah Umami', 'Linda Kushernawati'), ('161080200060', 'In<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-04 17:00:00', 'Rhamadina Fitrah Umami', 'Linda Kushernawati'), ('161080200061', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-04 17:00:00', 'Rhamadina Fitrah Umami', 'Linda Kushernawati'), ('161080200062', 'Wind<NAME>ati', '2', 'https://ict-umsida.blogspot.com/', '2018-03-04 17:00:00', 'Rhamadina Fitrah Umami', 'Linda Kushernawati'), ('161080200068', 'Mu<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-03-04 17:00:00', 'Rhamadina Fitrah Umami', 'Linda Kushernawati'), ('161080200070', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-04 17:00:00', 'Rhamadina Fitrah Umami', 'Linda Kushernawati'), ('161080200072', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-04 17:00:00', 'Rhamadina Fitrah Umami', 'Linda Kushernawati'), ('161080200077', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-04 17:00:00', 'Rhamadina Fitrah Umami', 'Linda Kushernawati'), ('161080200078', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-04 17:00:00', 'Rhamadina Fitrah Umami', 'Linda Kushernawati'), ('161080200079', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-04 17:00:00', 'Rhamadina Fitrah Umami', 'Linda Kushernawati'), ('161080200080', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-04 17:00:00', '<NAME>', 'L<NAME>ati'), ('161080200083', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-07-04 17:00:00', '<NAME>', 'L<NAME>ati'), ('161080200085', '<NAME>', '3', 'https://icr-umsida.blogspot.com', '2018-08-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200090', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-04-04 17:00:00', '<NAME>', 'Linda Kushernawati'), ('161080200093', '<NAME>', '3', 'https://icr-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200097', '<NAME>', '3', 'https://icr-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200099', '<NAME>', '3', 'https://icr-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200100', '<NAME>', '3', 'https://icr-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200101', '<NAME>', '3', 'https://icr-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200107', '<NAME>', '3', 'https://icr-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200109', '<NAME>', '3', 'https://icr-umsida.blogspot.com', '2018-07-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200134', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2018-05-17 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200160', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-05-17 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200163', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-05-17 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200164', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-05-17 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200165', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2018-05-17 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200257', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-05-02 17:00:00', '<NAME>', 'Linda Kushernawati'), ('161080200268', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2018-05-02 17:00:00', '<NAME>', 'Linda Kushernawati'), ('161080200288', '<NAME>', '3', 'https://icr-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('161080200294', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-08-04 17:00:00', '<NAME>', 'Linda Kushernawati'), ('161080200299', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-08-04 17:00:00', '<NAME>', 'Linda Kushernawati'), ('161080200305', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-08-04 17:00:00', 'R<NAME>', 'Linda Kushernawati'), ('161080200311', '<NAME>', '3', 'https://icr-umsida.blogspot.com', '2018-04-04 17:00:00', '<NAME>', '<NAME>'), ('161080200319', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-08-04 17:00:00', '<NAME>', 'Linda Kushernawati'), ('16108020086', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2018-03-04 17:00:00', '<NAME>', 'Linda Kushernawati'), ('170180200014', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-07-02 17:00:00', 'A132 <NAME>', 'Muhammad Arginanta Kafi Sambada'), ('170180200089', '<NAME>.', '4', 'https://ict-umsida.blogspot.com', '2018-07-28 17:00:00', 'A132 <NAME>', 'Muhammad Arginanta Kafi Sambada'), ('170180200092', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-07-28 17:00:00', 'A132 <NAME>', 'Muhammad Arginanta Kafi Sambada'), ('170180200101', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-07-02 17:00:00', 'A132 <NAME>', 'Muhammad Arginanta Kafi Sambada'), ('170180200119', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-07-07 17:00:00', 'A13<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('170180200132', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-07-04 17:00:00', 'A13<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('170180200136', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-07-04 17:00:00', 'A1<NAME>hi''im', 'Muhammad Arginanta Kafi Sambada'), ('170180200145', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-07-04 17:00:00', 'A1<NAME>hi''im', 'Muhammad Arginanta Kafi Sambada'), ('170180200194', 'Indahmosulanuramisa', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A1<NAME>''im', 'Muhammad Arginanta Kafi Sambada'), ('170180200195', 'O<NAME>.', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A1<NAME>''im', 'Muhammad Arginanta Kafi Sambada'), ('170180200196', 'H<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A1<NAME>hi''im', 'Muhammad Arginanta Kafi Sambada'), ('170180200199', 'Amad', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A133 <NAME>hi''im', 'Muhammad Arginanta Kafi Sambada'), ('170180200200', 'Aziz Toopoqor R', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A133 M. Arsyil Adhi''im', 'Muhammad Arginanta Kafi Sambada'), ('170180200207', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A133 M. Arsyil Adhi''im', 'Muhammad Arginanta Kafi Sambada'), ('170180200215', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A133 <NAME>il Adhi''im', 'Muhammad Arginanta Kafi Sambada'), ('170180200217', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A133 M. Arsyil Adhi''im', 'Muhammad Arginanta Kafi Sambada'), ('170180200222', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A133 M. <NAME>hi''im', 'Muhammad Arginanta Kafi Sambada'), ('170180200224', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A133 <NAME>hi''im', 'Muhammad Arginanta Kafi Sambada'), ('170180200247', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('170180200263', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('170180200276', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200037', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-11-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200089', '<NAME>.', '4', 'https://ict-umsida.blogspot.com', '2019-07-28 17:00:00', 'A1<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('17108020009', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-07-01 17:00:00', 'A13<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200091', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-07-01 17:00:00', 'A132 <NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200092', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-07-28 17:00:00', 'A132 <NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200093', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-07-02 17:00:00', 'A132 <NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200107', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-07-01 17:00:00', 'A132 <NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200111', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-07-01 17:00:00', 'A132 <NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200112', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-07-04 17:00:00', 'A132 Haris Ahmad Gozali', 'Muhammad Arginanta Kafi Sambada'), ('171080200113', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-07-01 17:00:00', 'A132 Haris Ahmad Gozali', 'Muhammad Arginanta Kafi Sambada'), ('171080200114', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-07-02 17:00:00', 'A132 Haris Ahmad Gozali', 'Muhammad Arginanta Kafi Sambada'), ('171080200116', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2019-07-04 17:00:00', 'A132 Haris Ahmad Gozali', 'Muhammad Arginanta Kafi Sambada'), ('171080200121', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-07-01 17:00:00', 'A132 Haris Ahmad Gozali', 'Muhammad Arginanta Kafi Sambada'), ('171080200178', '<NAME>.', '15', 'https://ict-umsida.blogspot.com', '2018-05-20 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200212', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A133 <NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200233', 'Rudiyanto', '15', 'https://ict-umsida.blogspot.com', '2018-05-18 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200238', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-05-20 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200241', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-05-17 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200244', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2019-07-05 17:00:00', 'A132 <NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200245', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-05-18 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200249', '<NAME>.', '15', 'https://ict-umsida.blogspot.com', '2018-05-20 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200277', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-11-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200278', 'Tomin', '10', 'https://ict-umsida.blogspot.com', '2018-11-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('171080200279', '<NAME>', '10', 'https://ict-umsida.blogspot.com', '2018-11-04 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('17108020077', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2018-05-20 17:00:00', '<NAME>', 'Muhammad Arginanta Kafi Sambada'), ('17108020088', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2018-07-01 17:00:00', 'A132 <NAME>', 'Muhammad Arginanta Kafi Sambada'); -- -------------------------------------------------------- -- -- Struktur dari tabel `prak06_web` -- CREATE TABLE `prak06_web` ( `nim_praktikum` varchar(12) NOT NULL, `nama_praktikan` varchar(255) NOT NULL, `kelompok_praktikum` varchar(2) NOT NULL, `link_rangkuman` varchar(255) NOT NULL, `tanggal_pengumpulan` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `nama_asisten` varchar(50) NOT NULL, `penerima_laporan` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `prak06_web` -- INSERT INTO `prak06_web` (`nim_praktikum`, `nama_praktikan`, `kelompok_praktikum`, `link_rangkuman`, `tanggal_pengumpulan`, `nama_asisten`, `penerima_laporan`) VALUES ('131080200004', '<NAME>', '11', '', '2018-11-08 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('151080200010', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-12-01 17:00:00', 'A13<NAME>', 'Dewi Eka Safitri'), ('151080200013', '<NAME>', '11', '', '2018-11-08 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('151080200014', '<NAME>', '11', '', '2018-11-08 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('151080200022', '<NAME>', '11', '', '2018-11-11 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('151080200023', '<NAME>', '11', '', '2018-11-08 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('151080200025', '<NAME>', '11', '', '2018-11-08 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('151080200026', '<NAME>', '11', '', '2018-11-08 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('151080200029', '<NAME>', '11', '', '2018-11-08 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('151080200145', '<NAME>', '11', '', '2018-11-10 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('151080200173', '<NAME>', '16', 'http://aprillitakamaratih15173-umsida.blogspot.com', '2019-11-29 17:00:00', 'A1<NAME>', 'Dewi Eka Safitri'), ('151080200202', 'Misbahuddin', '8', 'https://ict-umsida.blogspot.com/', '2018-11-06 17:00:00', '<NAME>', 'Vini Rahmawati'), ('151080200207', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('151080200219', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-02 17:00:00', '<NAME>', 'Vini Rahmawati'), ('151080200248', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-11-06 17:00:00', '<NAME>', 'Vini Rahmawati'), ('151080200273', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-11-06 17:00:00', '<NAME>', 'Vini Rahmawati'), ('151080200296', '<NAME>', '7', 'http://farid15296umsida.home.blog', '2019-12-02 17:00:00', 'A1<NAME>', 'Dewi Eka Safitri'), ('151080200298', '<NAME>.', '7', 'https://ifanda15298umsida.home.blog/2019/12/06/ifanda-15298-umsida/', '2019-11-30 17:00:00', 'A132 Haris Ahmad Gozali', 'Dewi Eka Safitri'), ('151080200300', '<NAME>.', '7', 'https://didit15300umsida.wordpress.com/', '2019-12-02 17:00:00', 'A132 Haris Ahmad Gozali', 'Dewi Eka Safitri'), ('151080200306', '<NAME>', '7', 'https://adeluhung306umsida.home.blog/', '2019-12-02 17:00:00', 'A132 <NAME>', 'Dewi Eka Safitri'), ('151080200312', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2019-12-01 17:00:00', 'A132 <NAME>hm<NAME>ali', 'Dewi Eka Safitri'), ('151080200372', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-11-06 17:00:00', '<NAME>', '<NAME>'), ('15180200287', '<NAME>', '7', 'https://roni15287umsida.wordpress.com/2019/11/28/roni-umsida/', '2019-12-02 17:00:00', 'A13<NAME>', 'Dewi Eka Safitri'), ('161080200001', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-11-04 17:00:00', 'R<NAME>', 'Vini Rahmawati'), ('161080200003', '<NAME>. ', '9', 'https://ict-umsida.blogspot.com/', '2018-11-08 17:00:00', 'R<NAME>', 'Vini Rahmawati'), ('161080200004', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-11-08 17:00:00', 'R<NAME>', 'Vini Rahmawati'), ('161080200006', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-11-08 17:00:00', 'Rhamadina Fit<NAME>ami', 'Vini Rahmawati'), ('161080200007', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-11-04 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200009', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-11-08 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200012', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-11-12 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200017', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-11-12 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200020', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-11-08 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200021', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-11-08 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200022', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-11-04 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200025', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-11-04 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200027', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-11-08 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200030', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-11-02 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200039', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200062', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200065', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-11-08 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200070', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200072', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200073', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2018-11-21 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200079', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200080', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200083', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200086', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200093', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200098', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2019-12-01 17:00:00', 'A132 <NAME>', 'Dewi Eka Safitri'), ('161080200099', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200100', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200101', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200102', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-11-11 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200103', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2018-11-22 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200107', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200113', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200114', 'choiruroziqin', '13', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200115', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200126', '<NAME>', '13', '', '2018-11-16 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('161080200134', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200137', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200139', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200142', '<NAME>', '4', '', '2018-10-30 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('161080200144', '<NAME>', '4', '', '2018-11-07 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('161080200146', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200147', '<NAME>.', '13', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200149', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200150', 'Efendi', '13', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200153', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200154', '<NAME>', '13', '', '2018-11-13 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('161080200156', '<NAME>', '4', '', '2018-11-07 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('161080200157', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-11-11 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200160', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-11-04 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200161', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200163', 'Wahidiyah', '14', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200165', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-11-15 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200166', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200174', '<NAME>', '4', '', '2018-10-30 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('161080200175', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200177', '<NAME>', '4', '', '2018-10-30 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('161080200178', '<NAME>', '4', '', '2018-10-30 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('161080200179', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-11-11 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200180', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200184', '<NAME>', '4', '', '2018-10-30 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('161080200187', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200190', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200192', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200194', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-31 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200197', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-31 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200199', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200202', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-31 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200204', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200205', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200207', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200208', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200213', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200214', '<NAME> ', '15', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200215', '<NAME>', '13', '', '2018-11-16 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('161080200216', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-31 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200217', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200218', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200221', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200222', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-31 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200223', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200225', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200226', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200227', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-31 17:00:00', 'Rhamadina Fitrah Umami', 'Vini Rahmawati'), ('161080200228', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', 'R<NAME>', 'Vini Rahmawati'), ('161080200229', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-31 17:00:00', 'R<NAME>', 'Vini Rahmawati'), ('161080200248', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-11-06 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200277', '<NAME>', '4', '', '2018-11-07 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('161080200281', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200284', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-11-08 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200289', '<NAME>', '4', '', '2018-11-07 17:00:00', '<NAME>', 'A160 Dewi <NAME>'), ('161080200294', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200296', '<NAME>', '13', 'https://ict-umsida.blogspot.com/', '2018-11-16 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200297', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-10-31 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200298', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-11-09 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200302', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200305', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200311', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200314', 'Handayani', '8', 'https://ict-umsida.blogspot.com/', '2018-11-05 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200315', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-11-05 17:00:00', '<NAME>', 'Vini Rahmawati'), ('161080200316', '<NAME>', '4', '', '2018-11-07 17:00:00', '<NAME>', 'A160 Dewi Eka Safitri'), ('161080200319', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('16108020068', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-11-01 17:00:00', '<NAME>', 'Vini Rahmawati'), ('171080200', '<NAME>', '12', 'https://agung17071-umsida.blogspot.com/2019/11/agung071-rangkuman-praktikum.html ', '2019-11-27 17:00:00', 'A136 Dewangga Eka Putra', 'Dewi Eka Safitri'), ('171080200003', '<NAME>.', '10', 'https://ict-umsida.blogspot.com/', '2019-11-27 17:00:00', 'A133 M. <NAME>hi''im', 'Dewi Eka Safitri'), ('171080200008', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-11-27 17:00:00', 'A133 M. A<NAME>hi''im', 'Dewi Eka Safitri'), ('171080200009', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-11-27 17:00:00', 'A133 M. <NAME>hi''im', 'Dewi Eka Safitri'), ('171080200010', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2001-12-01 17:00:00', 'A133 M. <NAME>hi''im', 'Dewi Eka Safitri'), ('171080200052', '<NAME>', '12', 'https://wahyusetiabintara17052-umsida.blogspot.com/2019/11/wahyu052-rangkuman-praktikum.html', '2019-11-27 17:00:00', 'A136 Dewangga Eka Putra', 'Dewi Eka Safitri'), ('171080200107', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200136', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200140', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-12-03 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200142', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-11-29 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200143', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2019-11-25 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200144', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2019-11-25 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200145', 'Mohammad <NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2019-11-27 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200147', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200148', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2019-11-25 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200149', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200150', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200151', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200154', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200155', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200156', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200157', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-11-27 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200159', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-12-03 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200160', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200161', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200162', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Dewi Eka Safitri'), ('171080200163', '<NAME>.', '7', 'https://ashrafi17163-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A132 H<NAME>hm<NAME>ali', 'Dewi Eka Safitri'), ('171080200165', '<NAME>.', '7', 'https://wahyu17165-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A132 H<NAME>', 'Dewi Eka Safitri'), ('171080200166', '<NAME>', '7', 'https://mubaroq17166-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A132 <NAME>', 'Dewi Eka Safitri'), ('171080200168', '<NAME>', '7', 'https://nikko17168-fstumsida.blogspot.com/2019/11/demi-tugas.html', '2019-11-24 17:00:00', 'A132 Haris Ahmad Gozali', 'Dewi Eka Safitri'), ('171080200169', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-11-27 17:00:00', 'A133 M. <NAME>hi''im', 'Dewi Eka Safitri'), ('171080200172', '<NAME>', '16', 'https://hilmanhanifa17172.blogspot.com', '2019-11-28 17:00:00', 'A132 Haris Ahmad Gozali', 'Dewi Eka Safitri'), ('171080200173', '<NAME>.', '7', 'https://muhammadrobby17173-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A132 Haris Ahmad Gozali', 'Dewi Eka Safitri'), ('171080200174', '<NAME> .', '7', 'https://assegaf17174-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A132 Haris Ahmad Gozali', 'Dewi Eka Safitri'), ('171080200180', '<NAME>.P.', '8', 'https://ict-umsida.blogspot.com/', '2019-11-25 17:00:00', 'A133 M. Arsyil Adhi''im', 'Dewi Eka Safitri'), ('171080200181', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A133 M. Arsyil Adhi''im', 'Dewi Eka Safitri'), ('171080200183', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A133 M. Arsyil Adhi''im', 'Dewi Eka Safitri'), ('171080200184', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A133 M. Arsyil Adhi''im', 'Dewi Eka Safitri'), ('171080200186', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A133 M. Arsyil Adhi''im', 'Dewi Eka Safitri'), ('171080200187', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A133 M. Arsyil Adhi''im', 'Rahmi Aulia Barlian'), ('171080200189', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A133 M. Arsyil Adhi''im', 'Dewi Eka Safitri'), ('171080200190', '<NAME>', '16', 'https://iqbalalfani-17190-umsida.blogspot.com', '2019-11-28 17:00:00', 'A132 <NAME>', 'Dewi Eka Safitri'), ('171080200192', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A133 <NAME>hi''im', 'Dewi Eka Safitri'), ('171080200193', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A133 <NAME>''im', 'Dewi Eka Safitri'), ('171080200194', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2019-11-25 17:00:00', 'A133 <NAME>hi''im', 'Dewi Eka Safitri'), ('171080200195', 'Oktavian Eka H.', '8', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A133 M. <NAME>hi''im', 'Dewi Eka Safitri'), ('171080200196', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A133 M. <NAME>', 'Dewi Eka Safitri'), ('171080200202', '<NAME>', '16', 'https://aditya17202-umsida.blogspot.com/?m=1', '2019-11-29 17:00:00', 'A132 <NAME>', 'Dewi Eka Safitri'), ('171080200205', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A131 <NAME>.', 'Dewi Eka Safitri'), ('171080200208', '<NAME>.', '16', 'https://Achmadfarras17208-umsida.blogspot.com', '2019-11-28 17:00:00', 'A132 <NAME>', 'Dewi Eka Safitri'), ('171080200209', '<NAME>', '16', 'https://faizalarifin-17209-umsida.blogspot.com/?m=1', '2019-11-28 17:00:00', 'A132 <NAME>', 'Dewi Eka Safitri'), ('171080200210', '<NAME>', '16', 'https://bagasaji-17210-umsida.blogspot.com/2019/11/dasar-teori-pemrograman-web.html', '2019-11-28 17:00:00', 'A132 <NAME>', 'Dewi Eka Safitri'), ('171080200211', '<NAME>.', '16', 'https://dikiputraniawan-17211-umsida.blogspot.com', '2019-12-01 17:00:00', 'A132 <NAME>', 'Dewi Eka Safitri'), ('171080200213', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-12-03 17:00:00', 'A131 M<NAME>.', 'Dewi Eka Safitri'), ('171080200257', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2019-11-28 17:00:00', 'A131 M<NAME>.', 'Dewi Eka Safitri'), ('171080200259', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2019-11-24 17:00:00', 'A131 Moh<NAME>.', 'Dewi Eka Safitri'), ('171080200280', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-11-07 17:00:00', 'R<NAME>', 'Vini Rahmawati'); -- -------------------------------------------------------- -- -- Struktur dari tabel `prak07_jarkom` -- CREATE TABLE `prak07_jarkom` ( `nim_praktikum` varchar(12) NOT NULL, `nama_praktikan` varchar(255) NOT NULL, `link_rangkuman` varchar(255) NOT NULL, `kelompok_praktikum` varchar(2) NOT NULL, `tanggal_pengumpulan` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `nama_asisten` varchar(50) NOT NULL, `penerima_laporan` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `prak07_jarkom` -- INSERT INTO `prak07_jarkom` (`nim_praktikum`, `nama_praktikan`, `link_rangkuman`, `kelompok_praktikum`, `tanggal_pengumpulan`, `nama_asisten`, `penerima_laporan`) VALUES ('131080200004', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2018-06-03 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('131080200103', '<NAME>', 'https://ict-umsida.blogspot.com/', '18', '2018-07-06 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('141080200057', '<NAME>', 'https://ict-umsida.blogspot.com/', '3', '2018-05-25 17:00:00', 'A141 <NAME>', 'Diana Cindy Agustin '), ('141080200080', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2019-06-19 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('141080200085', '<NAME>', 'https://ict-umsida.blogspot.com/', '3', '2018-05-25 17:00:00', 'A141 <NAME>', 'Diana Cindy Agustin '), ('141080200205', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2019-06-19 17:00:00', 'A142 <NAME>', 'Diana Cindy Agustin '), ('141080200276', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 M<NAME>.', 'Diana Cindy Agustin '), ('151080200111', 'Nursapdahi', 'https://ict-umsida.blogspot.com/', '7', '2018-05-24 17:00:00', 'A131 M<NAME>.', 'Diana Cindy Agustin '), ('151080200173', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2019-06-19 17:00:00', 'A142 <NAME>', 'Diana Cindy Agustin '), ('151080200289', '<NAME>', 'https://ict-umsida.blogspot.com/', '18', '2018-07-02 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('151080200291', '<NAME>', 'https://ict-umsida.blogspot.com/', '18', '2018-07-04 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200001', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-22 17:00:00', 'A132 Haris Ahmad Gozali', 'Diana Cindy Agustin '), ('161080200002', '<NAME>', 'https://ict-umsida.blogspot.com/', '1', '2018-05-14 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200003', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-22 17:00:00', 'A132 Haris Ahmad Gozali', 'Diana Cindy Agustin '), ('161080200004', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-23 17:00:00', 'A132 Haris Ahmad Gozali', 'Diana Cindy Agustin '), ('161080200005', '<NAME>', 'https://ict-umsida.blogspot.com/', '1', '2018-05-21 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200006', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-22 17:00:00', 'A132 <NAME>', 'Diana Cindy Agustin '), ('161080200007', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-22 17:00:00', 'A132 <NAME>', 'Diana Cindy Agustin '), ('161080200008', '<NAME>', 'https://ict-umsida.blogspot.com/', '1', '2018-05-14 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200009', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-22 17:00:00', 'A132 <NAME>', 'Diana Cindy Agustin '), ('161080200011', '<NAME>', 'https://ict-umsida.blogspot.com/', '1', '2018-05-21 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200012', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-27 17:00:00', 'A132 <NAME>', 'Diana Cindy Agustin '), ('161080200013', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-22 17:00:00', 'A132 <NAME>', 'Diana Cindy Agustin '), ('161080200014', '<NAME>', 'https://ict-umsida.blogspot.com/', '1', '2018-05-14 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200016', '<NAME>', 'https://ict-umsida.blogspot.com/', '1', '2018-05-14 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200017', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-23 17:00:00', 'A132 <NAME>', 'Diana Cindy Agustin '), ('161080200018', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-22 17:00:00', 'A132 <NAME>', 'Diana Cindy Agustin '), ('161080200020', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-22 17:00:00', 'A132 <NAME>', 'Diana Cindy Agustin '), ('161080200021', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-22 17:00:00', 'A13<NAME>', 'Diana Cindy Agustin '), ('161080200023', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-22 17:00:00', 'A132 <NAME>', 'Diana Cindy Agustin '), ('161080200025', '<NAME>', 'https://ict-umsida.blogspot.com/', '10', '2018-05-21 17:00:00', 'A132 <NAME>', 'Diana Cindy Agustin '), ('161080200026', 'Muhajir', 'https://ict-umsida.blogspot.com/', '1', '2018-05-14 17:00:00', 'A134 <NAME>', 'Diana Cindy Agustin '), ('161080200027', '<NAME>', 'https://ict-umsida.blogspot.com/', '11', '2018-05-24 17:00:00', 'A134 A<NAME>', 'Diana Cindy Agustin '), ('161080200030', '<NAME>', 'https://ict-umsida.blogspot.com/', '11', '2018-05-23 17:00:00', '<NAME>.', 'Diana Cindy Agustin '), ('161080200031', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2018-05-27 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200032', '<NAME>', 'https://ict-umsida.blogspot.com/', '11', '2018-05-24 17:00:00', 'F<NAME>mirul M.', 'Diana Cindy Agustin '), ('161080200035', '<NAME>', 'https://ict-umsida.blogspot.com/', '11', '2018-05-23 17:00:00', 'F<NAME> M.', 'Diana Cindy Agustin '), ('161080200036', '<NAME>', 'https://ict-umsida.blogspot.com/', '11', '2018-05-22 17:00:00', 'F<NAME>.', 'Diana Cindy Agustin '), ('161080200037', '<NAME>', 'https://ict-umsida.blogspot.com/', '1', '2018-05-23 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200038', '<NAME>', 'https://ict-umsida.blogspot.com/', '1', '2018-05-14 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200039', '<NAME>', 'https://ict-umsida.blogspot.com/', '1', '2018-05-14 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200040', '<NAME>', 'https://ict-umsida.blogspot.com/', '1', '2018-05-14 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200041', '<NAME>', 'https://ict-umsida.blogspot.com/', '1', '2018-05-14 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200045', '<NAME>', 'https://ict-umsida.blogspot.com/', '11', '2018-05-24 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200046', '<NAME>', 'https://ict-umsida.blogspot.com/', '11', '2018-05-24 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200047', '<NAME>', 'https://ict-umsida.blogspot.com/', '11', '2018-05-24 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200048', '<NAME>', 'https://ict-umsida.blogspot.com/', '11', '2018-05-24 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200051', '<NAME>', 'https://ict-umsida.blogspot.com/', '11', '2018-05-24 17:00:00', '<NAME>.', 'Diana Cindy Agustin '), ('161080200052', '<NAME>', 'https://ict-umsida.blogspot.com/', '11', '2018-05-27 17:00:00', '<NAME>.', 'Diana Cindy Agustin '), ('161080200056', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '0000-00-00 00:00:00', 'A13<NAME>', 'Diana Cindy Agustin '), ('161080200060', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2018-05-14 17:00:00', 'A13<NAME>', 'Diana Cindy Agustin '), ('161080200061', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2018-05-20 17:00:00', 'A13<NAME>', 'Diana Cindy Agustin '), ('161080200062', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2018-05-14 17:00:00', 'A13<NAME>', 'Diana Cindy Agustin '), ('161080200064', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2018-05-24 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200065', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2018-05-24 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200068', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2018-05-14 17:00:00', 'A135 <NAME>', 'Diana Cindy Agustin '), ('161080200070', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2018-05-20 17:00:00', 'A135 <NAME>', 'Diana Cindy Agustin '), ('161080200072', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2018-05-14 17:00:00', 'A135 <NAME>', 'Diana Cindy Agustin '), ('161080200073', '<NAME>', 'https://ict-umsida.blogspot.com/', '13', '2018-05-29 17:00:00', 'A131 M<NAME>.', 'Diana Cindy Agustin '), ('161080200075', '<NAME>', 'https://ict-umsida.blogspot.com/', '13', '2018-05-27 17:00:00', 'A131 Mohammad Ad<NAME>.', 'Diana Cindy Agustin '), ('161080200076', '<NAME>', 'https://ict-umsida.blogspot.com/', '13', '2018-05-29 17:00:00', 'A131 M<NAME>.', 'Diana Cindy Agustin '), ('161080200077', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2018-05-22 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('161080200079', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2018-05-14 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('161080200080', '<NAME>', 'https://ict-umsida.blogspot.com/', '3', '2018-05-22 17:00:00', 'A141 <NAME>', 'Diana Cindy Agustin '), ('161080200081', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2018-05-20 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('161080200082', '<NAME>', 'https://ict-umsida.blogspot.com/', '13', '2018-06-01 17:00:00', 'A131 M<NAME>.', 'Diana Cindy Agustin '), ('161080200083', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2018-05-21 17:00:00', 'A135 <NAME>', 'Diana Cindy Agustin '), ('161080200085', '<NAME>', 'https://ict-umsida.blogspot.com/', '13', '2018-05-29 17:00:00', 'A131 M<NAME>.', 'Diana Cindy Agustin '), ('161080200086', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2018-05-14 17:00:00', 'A135 <NAME>', 'Diana Cindy Agustin '), ('161080200090', '<NAME>', 'https://ict-umsida.blogspot.com/', '3', '2018-05-25 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Diana Cindy Agustin '), ('161080200093', '<NAME>', 'https://ict-umsida.blogspot.com/', '3', '2018-05-14 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Diana Cindy Agustin '), ('161080200094', '<NAME>', 'https://ict-umsida.blogspot.com/', '13', '2018-05-27 17:00:00', 'A131 Mohammad Ad<NAME>.', 'Diana Cindy Agustin '), ('161080200095', '<NAME>', 'https://ict-umsida.blogspot.com/', '13', '2018-05-27 17:00:00', 'A131 M<NAME>.', 'Diana Cindy Agustin '), ('161080200097', '<NAME>', 'https://ict-umsida.blogspot.com/', '3', '2018-05-20 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Diana Cindy Agustin '), ('161080200099', '<NAME>', 'https://ict-umsida.blogspot.com/', '3', '2018-05-21 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Diana Cindy Agustin '), ('161080200100', '<NAME>', 'https://ict-umsida.blogspot.com/', '3', '2018-05-14 17:00:00', 'A142 <NAME>', 'Diana Cindy Agustin '), ('161080200101', '<NAME>', 'https://ict-umsida.blogspot.com/', '3', '2018-05-14 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Diana Cindy Agustin '), ('161080200103', '<NAME>', 'https://ict-umsida.blogspot.com/', '13', '2018-05-27 17:00:00', 'A131 M<NAME> F.', 'Diana Cindy Agustin '), ('161080200104', '<NAME>', 'https://ict-umsida.blogspot.com/', '13', '2018-05-22 17:00:00', 'A131 M<NAME>.', 'Diana Cindy Agustin '), ('161080200106', '<NAME>', 'https://ict-umsida.blogspot.com/', '13', '2018-05-22 17:00:00', 'A131 M<NAME>.', 'Diana Cindy Agustin '), ('161080200107', '<NAME>', 'https://ict-umsida.blogspot.com/', '3', '2018-05-20 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Diana Cindy Agustin '), ('161080200108', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2018-06-04 17:00:00', 'A136 Dewangga Eka Putra', 'Diana Cindy Agustin '), ('161080200109', '<NAME>', 'https://ict-umsida.blogspot.com/', '3', '2018-05-20 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Diana Cindy Agustin '), ('161080200111', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 Ram<NAME>', 'Diana Cindy Agustin '), ('161080200112', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2018-06-03 17:00:00', 'A136 Dewangga Eka Putra', 'Diana Cindy Agustin '), ('161080200113', 'El Rama J.N.S', 'https://ict-umsida.blogspot.com/', '4', '2018-05-18 17:00:00', 'A142 <NAME>', 'Diana Cindy Agustin '), ('161080200114', 'Choiruroziqin', 'https://ict-umsida.blogspot.com/', '14', '2018-06-05 17:00:00', 'A136 Dewangga Eka Putra', 'Diana Cindy Agustin '), ('161080200116', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 Ram<NAME>', 'Diana Cindy Agustin '), ('161080200118', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 Ram<NAME>ono', 'Diana Cindy Agustin '), ('161080200119', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2019-05-17 17:00:00', 'A142 Ram<NAME>', 'Diana Cindy Agustin '), ('161080200120', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('161080200121', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('161080200122', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('161080200125', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('161080200126', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2018-06-04 17:00:00', 'A136 Dewangga Eka Putra', 'Diana Cindy Agustin '), ('161080200128', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('161080200129', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-18 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('161080200130', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 Ram<NAME>', 'Diana Cindy Agustin '), ('161080200132', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 Ram<NAME>', 'Diana Cindy Agustin '), ('161080200133', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2018-06-07 17:00:00', 'A136 Dewangga Eka Putra', 'Diana Cindy Agustin '), ('161080200134', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-06-27 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200135', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 Ram<NAME>', 'Diana Cindy Agustin '), ('161080200136', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 <NAME>', 'Diana Cindy Agustin '), ('161080200137', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2018-06-05 17:00:00', 'A136 Dewangga Eka Putra', 'Diana Cindy Agustin '), ('161080200139', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2018-06-05 17:00:00', 'A136 Dewangga Eka Putra', 'Diana Cindy Agustin '), ('161080200140', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 <NAME>', 'Diana Cindy Agustin '), ('161080200141', '<NAME>', 'https://ict-umsida.blogspot.com/', '4', '2018-05-17 17:00:00', 'A142 <NAME>', 'Diana Cindy Agustin '), ('161080200144', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-20 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200145', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2018-06-04 17:00:00', 'A136 Dewangga Eka Putra', 'Diana Cindy Agustin '), ('161080200146', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2018-06-04 17:00:00', 'A136 Dewangga Eka Putra', 'Diana Cindy Agustin '), ('161080200147', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2018-06-04 17:00:00', 'A136 Dewangga Eka Putra', 'Diana Cindy Agustin '), ('161080200149', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2018-06-04 17:00:00', 'A136 Dewangga Eka Putra', 'Diana Cindy Agustin '), ('161080200150', 'Efendi', 'https://ict-umsida.blogspot.com/', '14', '2018-06-04 17:00:00', 'A136 Dewangga Eka Putra', 'Diana Cindy Agustin '), ('161080200153', '<NAME>', 'https://ict-umsida.blogspot.com/', '15', '2018-06-01 17:00:00', 'A133 <NAME>', 'Diana Cindy Agustin '), ('161080200154', '<NAME>', 'https://ict-umsida.blogspot.com/', '15', '2018-06-01 17:00:00', 'A133 <NAME>', 'Diana Cindy Agustin '), ('161080200156', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-17 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200159', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-20 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200160', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-06-25 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200161', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-20 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200163', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-06-25 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200164', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-06-25 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200165', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-05-25 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200166', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-06-27 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200167', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-07-09 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200174', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-17 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200175', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-06-27 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200177', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-17 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200178', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-20 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200179', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-06-27 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200180', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-06-27 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200184', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-20 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200187', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-07-03 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200189', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-17 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200190', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', '<NAME>.', 'Diana Cindy Agustin '), ('161080200192', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-20 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200193', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-20 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200194', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'F<NAME>.', 'Diana Cindy Agustin '), ('161080200195', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-03 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200197', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-22 17:00:00', 'F<NAME>.', 'Diana Cindy Agustin '), ('161080200199', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-03 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200200', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200201', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200202', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200204', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200205', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200206', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-02 17:00:00', 'A134 A<NAME>', 'Diana Cindy Agustin '), ('161080200208', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', '<NAME>.', 'Diana Cindy Agustin '), ('161080200211', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200213', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-02 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200214', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-03 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200215', '<NAME>', 'https://ict-umsida.blogspot.com/', '15', '2018-06-01 17:00:00', 'A133 M. <NAME>', 'Diana Cindy Agustin '), ('161080200216', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-23 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200217', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-04 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200218', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-06-01 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200219', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-02 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200221', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-02 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200222', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200223', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200225', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-04 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('161080200226', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200227', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200228', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'F<NAME> M.', 'Diana Cindy Agustin '), ('161080200229', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'F<NAME> M.', 'Diana Cindy Agustin '), ('161080200230', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200232', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2018-05-21 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('161080200233', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2018-05-21 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('161080200234', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2018-05-21 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('161080200235', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2018-05-23 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('161080200236', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2018-05-21 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('161080200240', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2018-05-22 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('161080200241', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2018-05-21 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('161080200243', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2018-05-22 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('161080200244', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-02 17:00:00', 'A134 <NAME>', 'Diana Cindy Agustin '), ('161080200245', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2018-05-21 17:00:00', 'A131 M<NAME> F.', 'Diana Cindy Agustin '), ('161080200248', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2018-05-23 17:00:00', 'A131 M<NAME> Putra F.', 'Diana Cindy Agustin '), ('161080200250', '<NAME>', 'https://ict-umsida.blogspot.com/', '8', '2018-05-20 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200252', '<NAME>', 'https://ict-umsida.blogspot.com/', '8', '2018-05-23 17:00:00', 'F<NAME> M.', 'Diana Cindy Agustin '), ('161080200255', '<NAME>', 'https://ict-umsida.blogspot.com/', '8', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200257', '<NAME>', 'https://ict-umsida.blogspot.com/', '8', '2018-05-14 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200258', '<NAME>', 'https://ict-umsida.blogspot.com/', '8', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200259', '<NAME>', 'https://ict-umsida.blogspot.com/', '8', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200262', '<NAME>', 'https://ict-umsida.blogspot.com/', '6', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200263', '<NAME>', 'https://ict-umsida.blogspot.com/', '8', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200264', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-09 17:00:00', 'A134 <NAME>', 'Diana Cindy Agustin '), ('161080200267', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-02 17:00:00', 'A134 Alf<NAME>', 'Diana Cindy Agustin '), ('161080200268', '<NAME>', 'https://ict-umsida.blogspot.com/', '8', '2018-05-14 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200269', '<NAME>', 'https://ict-umsida.blogspot.com/', '8', '2018-05-21 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200271', '<NAME>', 'https://ict-umsida.blogspot.com/', '18', '2018-07-02 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200272', '<NAME>', 'https://ict-umsida.blogspot.com/', '8', '2018-05-14 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200274', '<NAME>', 'https://ict-umsida.blogspot.com/', '8', '2018-05-22 17:00:00', 'Fatur Amirul M.', 'Diana Cindy Agustin '), ('161080200277', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-22 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200278', 'Ways Alqurni Trio Putra', 'https://ict-umsida.blogspot.com/', '8', '2018-05-21 17:00:00', '<NAME>.', 'Diana Cindy Agustin '), ('161080200280', '<NAME>', 'https://ict-umsida.blogspot.com/', '18', '2018-07-03 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200281', '<NAME>', 'https://ict-umsida.blogspot.com/', '15', '2018-06-01 17:00:00', 'A133 <NAME>', 'Diana Cindy Agustin '), ('161080200282', '<NAME>', 'https://ict-umsida.blogspot.com/', '8', '2018-05-21 17:00:00', '<NAME>.', 'Diana Cindy Agustin '), ('161080200284', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2018-06-03 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200287', '<NAME>', 'https://ict-umsida.blogspot.com/', '18', '2018-07-06 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200290', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2018-06-03 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200291', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2018-05-22 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200293', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2018-05-22 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200294', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-21 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200295', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2018-06-03 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200297', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-21 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200298', '<NAME>', 'https://ict-umsida.blogspot.com/', '8', '2018-05-22 17:00:00', '<NAME>.', 'Diana Cindy Agustin '), ('161080200299', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-21 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200302', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2018-05-22 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200305', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-21 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200307', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2018-05-22 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200311', '<NAME>', 'https://ict-umsida.blogspot.com/', '3', '2018-05-14 17:00:00', 'A141 <NAME>', 'Diana Cindy Agustin '), ('161080200313', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-20 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200314', 'Handayani', 'https://ict-umsida.blogspot.com/', '5', '2018-05-21 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200315', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2018-05-22 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200316', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2018-05-22 17:00:00', '<NAME>', 'Diana Cindy Agustin '), ('161080200317', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2018-05-23 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('161080200320', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2018-05-21 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('161080200323', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2018-05-28 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('166080200137', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-07-03 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('166080200192', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-03 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('166080200287', '<NAME>', 'https://ict-umsida.blogspot.com/', '17', '2018-07-02 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('171080200001', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2019-06-18 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200003', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2019-06-18 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200006', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2019-06-18 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200007', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2019-06-18 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200008', 'Muhammad <NAME>', 'https://ict-umsida.blogspot.com/', '9', '2019-06-18 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200009', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2019-06-18 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200011', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2019-06-18 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200015', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2019-06-18 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200019', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2019-05-28 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200020', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2019-05-28 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200022', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2019-06-18 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200024', '<NAME>', 'https://ict-umsida.blogspot.com/', '9', '2018-06-18 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200036', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200040', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200041', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-27 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200046', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200048', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200054', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-27 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200056', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200059', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-27 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200060', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200063', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200065', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200066', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200068', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-27 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200070', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200077', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-06-25 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('171080200079', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2019-06-19 17:00:00', 'A135 <NAME>', 'Diana Cindy Agustin '), ('171080200080', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2019-06-19 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200082', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200083', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200084', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2019-06-19 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200085', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2019-06-19 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200090', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2019-06-19 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200094', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2019-06-19 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200097', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2019-06-19 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200098', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2019-06-19 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200103', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2019-06-21 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200104', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2019-06-19 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200106', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2018-06-16 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Diana Cindy Agustin '), ('171080200116', '<NAME>', 'https://ict-umsida.blogspot.com/', '12', '2019-06-16 17:00:00', 'A135 <NAME>', 'Diana Cindy Agustin '), ('171080200121', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2019-05-27 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('171080200122', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2019-05-27 17:00:00', 'A142 Ram<NAME>', 'Diana Cindy Agustin '), ('171080200126', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2019-05-24 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('171080200127', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2019-05-24 17:00:00', 'A131 M<NAME> F.', 'Diana Cindy Agustin '), ('171080200131', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2019-05-24 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('171080200134', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200135', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2019-05-24 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('171080200137', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200138', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2019-05-24 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('171080200143', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2019-05-27 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('171080200144', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2019-05-27 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('171080200148', '<NAME>', 'https://ict-umsida.blogspot.com/', '5', '2019-05-27 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('171080200156', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2019-06-18 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('171080200157', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2019-06-20 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('171080200158', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2019-06-19 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('171080200159', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2019-06-17 17:00:00', 'A142 Ramadhani Sugyono', 'Diana Cindy Agustin '), ('171080200163', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 Moham<NAME>.', 'Diana Cindy Agustin '), ('171080200165', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200166', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-23 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200167', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2019-06-19 17:00:00', 'A142 <NAME>', 'Diana Cindy Agustin '), ('171080200168', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200169', '<NAME>', 'https://ict-umsida.blogspot.com/', '2', '2019-05-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200173', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200174', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200178', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-06-25 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('171080200181', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200183', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-23 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200186', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200187', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200189', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200191', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200192', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200193', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Diana Cindy Agustin '), ('171080200213', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2019-06-20 17:00:00', 'A142 <NAME>', 'Diana Cindy Agustin '), ('171080200228', '<NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-07-01 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('171080200249', 'F. <NAME>', 'https://ict-umsida.blogspot.com/', '16', '2018-05-24 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('171080200257', '<NAME>', 'https://ict-umsida.blogspot.com/', '14', '2019-06-19 17:00:00', 'A142 <NAME>', 'Diana Cindy Agustin '), ('171080200280', '<NAME>', 'https://ict-umsida.blogspot.com/', '1', '2018-06-25 17:00:00', 'A134 Alfian Ari Putra', 'Diana Cindy Agustin '), ('171080200284', '<NAME>', 'https://ict-umsida.blogspot.com/', '7', '2019-06-20 17:00:00', 'A131 <NAME>.', 'Diana Cindy Agustin '), ('191080200319', 'D<NAME>ustin', 'https://ict-umsida.blogspot.com/', '5', '2018-05-21 17:00:00', '<NAME>', 'Diana Cindy Agustin '); -- -------------------------------------------------------- -- -- Struktur dari tabel `prak08_rpl` -- CREATE TABLE `prak08_rpl` ( `nim_praktikum` varchar(12) NOT NULL, `nama_praktikan` varchar(255) NOT NULL, `kelompok_praktikum` varchar(2) NOT NULL, `link_rangkuman` varchar(255) NOT NULL, `tanggal_pengumpulan` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `nama_asisten` varchar(50) NOT NULL, `penerima_laporan` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `prak08_rpl` -- INSERT INTO `prak08_rpl` (`nim_praktikum`, `nama_praktikan`, `kelompok_praktikum`, `link_rangkuman`, `tanggal_pengumpulan`, `nama_asisten`, `penerima_laporan`) VALUES ('141080200001', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('141080200038', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A140 Arofatus Salis', 'Siti Nur Haliza'), ('141080200080', '<NAME>. ', '14', 'https://ict-umsida.blogspot.com/', '2018-10-22 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('141080200101', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-10-22 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('141080200184', '<NAME>', '1', 'https://ict-umsida.blogspot.com/', '2018-06-09 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('141080200262', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2019-12-30 17:00:00', 'A135 <NAME>', 'Siti Nur Haliza'), ('15080200215', '<NAME> ', '2', 'https://ict-umsida.blogspot.com/', '2018-08-09 17:00:00', '<NAME>.', 'A<NAME>uma'), ('151080200001', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A136 Dewangga Eka Putra', 'Siti Nur Haliza'), ('151080200006', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-10-19 17:00:00', 'R<NAME>', 'Siti Nur Haliza'), ('151080200009', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A136 Dewangga Eka Putra', 'Siti Nur Haliza'), ('151080200013', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('151080200023', 'Amwalinsanu', '16', 'https://ict-umsida.blogspot.com/', '2018-10-19 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('151080200025', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-10-19 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('151080200029', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A136 Dewangga Eka Putra', 'Siti Nur Haliza'), ('151080200143', '<NAME>.', '17', 'https://ict-umsida.blogspot.com/', '2018-10-04 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('151080200190', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('151080200207', '<NAME>', '2', '', '2018-05-09 17:00:00', '<NAME>.', 'Rahmi Aulia Barlian'), ('151080200223', '<NAME>.', '2', '', '2018-08-09 17:00:00', 'Fatur Amirul M.', '<NAME>'), ('151080200287', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A136 Dewangga Eka Putra', 'Siti Nur Haliza'), ('151080200298', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2019-12-20 17:00:00', 'A135 Her<NAME>', 'Siti Nur Haliza'), ('151080200312', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A136 Dewangga Eka Putra', 'Siti Nur Haliza'), ('16080200203', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2018-09-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('16080200250', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2018-09-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('16080200289', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2018-09-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200001', '<NAME>', '09', 'https://ict-umsida.blogspot.com/', '2018-10-11 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200003', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200004', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', 'Fatur Amirul M.', 'Siti Nur Haliza'), ('161080200006', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200007', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200008', '<NAME>.', '12', 'https://ict-umsida.blogspot.com/', '2018-10-15 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200009', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200010', '<NAME>.', '17', 'https://ict-umsida.blogspot.com/', '2018-10-24 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200013', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200017', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200018', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', 'Fatur Amirul M.', 'Siti Nur Haliza'), ('161080200020', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200021', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-10-17 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200022', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2018-10-19 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200024', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', 'M. Amirulloh', 'Alfan Indra Kusuma'), ('161080200026', 'C<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-10-24 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200027', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-10-17 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200028', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2018-10-17 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200031', '<NAME>.', '17', 'https://ict-umsida.blogspot.com/', '2018-10-23 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200036', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-10-24 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200037', '<NAME>.', '4', 'https://ict-umsida.blogspot.com/', '2019-12-29 17:00:00', 'A140 Arofatus Salis', 'Siti Nur Haliza'), ('161080200046', '<NAME>.', '11', 'https://ict-umsida.blogspot.com/', '2018-10-11 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200048', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-10-11 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200049', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200051', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-10-11 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200052', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200053', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200059', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200062', '<NAME>', '2', '', '2018-05-09 17:00:00', 'Fatur Amirul M.', 'Rahmi Aulia Barlian'), ('161080200064', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200065', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-10-11 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200068', '<NAME>', '2', '', '2018-05-09 17:00:00', 'Fatur Amirul M.', 'Rahmi Aulia Barlian'), ('161080200070', '<NAME>', '2', '', '2018-05-09 17:00:00', 'Fatur Amirul M.', 'Rahmi Aulia Barlian'), ('161080200072', 'Rizky Rays T.', '2', '', '2018-05-09 17:00:00', 'Fatur Amirul M.', 'Rahmi Aulia Barlian'), ('161080200073', 'Fitrianingsih', '9', 'https://ict-umsida.blogspot.com/', '2018-10-11 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200075', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200076', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200078', '<NAME>.', '2', '', '2018-05-09 17:00:00', 'Fatur Amirul M.', 'Rahmi Aulia Barlian'), ('161080200079', '<NAME>', '2', '', '2018-05-09 17:00:00', 'Fatur Amirul M.', 'Rahmi Aulia Barlian'), ('161080200080', '<NAME>.', '2', '', '2018-08-09 17:00:00', 'Fatur Amirul M.', 'Rahmi Aulia Barlian'), ('161080200085', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', '<NAME>', '<NAME>'), ('161080200086', '<NAME>.', '2', '', '2018-05-09 17:00:00', 'Fatur Amirul M.', 'Rahmi Aulia Barlian'), ('161080200090', '<NAME>.', '2', '', '2018-05-09 17:00:00', 'Fatur Amirul M.', 'Rahmi Aulia Barlian'), ('161080200093', '<NAME>', '2', '', '2018-05-09 17:00:00', 'Fatur Amirul M.', 'Rahmi Aulia Barlian'), ('161080200094', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', '<NAME>', '<NAME>'), ('161080200097', '<NAME>.', '2', '', '2018-05-09 17:00:00', 'Fatur Amirul M.', 'Rahmi Aulia Barlian'), ('161080200098', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2019-12-20 17:00:00', 'A13<NAME>', '<NAME>'), ('161080200099', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2018-09-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200100', '<NAME>', '2', '', '2018-05-09 17:00:00', 'F<NAME>.', 'Rahmi Aulia Barlian'), ('161080200101', '<NAME>', '2', '', '2018-05-09 17:00:00', '<NAME>.', 'Rahmi Aulia Barlian'), ('161080200103', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200104', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-10-15 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200106', 'Se<NAME>.', '12', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200107', '<NAME>.S.', '2', '', '2018-05-09 17:00:00', 'Fatur Amirul M.', 'R<NAME>ulia Barlian'), ('161080200108', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2018-10-13 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200109', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2018-09-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200111', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-10-07 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200112', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-15 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200113', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2018-10-07 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200115', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-14 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200116', '<NAME>.', '4', 'https://ict-umsida.blogspot.com/', '2018-10-07 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200118', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-10-07 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200119', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2018-10-07 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200120', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2018-10-07 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200121', '<NAME>.', '16', 'https://ict-umsida.blogspot.com/', '2020-01-08 17:00:00', 'A135 <NAME>', 'Siti Nur Haliza'), ('161080200122', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2018-10-10 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200126', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-14 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200128', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2018-10-07 17:00:00', 'R<NAME>', 'Siti Nur Haliza'), ('161080200129', '<NAME>.', '4', 'https://ict-umsida.blogspot.com/', '2018-10-07 17:00:00', 'Rhamadina Fit<NAME>ami', 'Siti Nur Haliza'), ('161080200130', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-10-10 17:00:00', 'R<NAME>ami', 'Siti Nur Haliza'), ('161080200132', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-10-07 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200133', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-10-14 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200134', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-10-15 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200135', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-10-07 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200136', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-10-07 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200137', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-14 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200140', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-10-07 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200141', '<NAME>.', '4', 'https://ict-umsida.blogspot.com/', '2018-10-07 17:00:00', 'Rhamadina Fitrah Umami', 'Siti Nur Haliza'), ('161080200142', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-08-09 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200143', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-09 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200144', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-12-09 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200146', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-10-14 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200147', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-15 17:00:00', '<NAME>', '<NAME>'), ('161080200149', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-10-14 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200150', 'Efendi', '5', 'https://ict-umsida.blogspot.com/', '2018-10-14 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200153', '<NAME>. ', '5', 'https://ict-umsida.blogspot.com/', '2018-10-14 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200154', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-10-14 17:00:00', 'Ail<NAME>', 'Siti Nur Haliza'), ('161080200156', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-10-15 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200157', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'A<NAME>', 'Alfan Indra Kusuma'), ('161080200159', '<NAME>', '16', 'https://ict-umsida.blogspot.com/', '2019-01-08 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Siti Nur Haliza'), ('161080200160', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-10-15 17:00:00', 'A<NAME>', 'Alfan Indra Kusuma'), ('161080200161', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-10-15 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200163', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200164', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200165', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2018-10-15 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200166', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-11-02 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200174', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-08-09 17:00:00', '<NAME>', '<NAME>'), ('161080200175', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2018-10-15 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200177', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-08-09 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200178', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-08-09 17:00:00', 'Ailul Chowiyah', 'Siti Nur Haliza'), ('161080200179', '<NAME>.', '14', 'https://ict-umsida.blogspot.com/', '2018-10-17 17:00:00', 'Ailul Chowiyah', 'Alfan Indra Kusuma'), ('161080200180', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-10-17 17:00:00', 'Ail<NAME>owiyah', 'Alfan Indra Kusuma'), ('161080200183', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2018-09-09 17:00:00', 'F<NAME>.', 'Alfan Indra Kusuma'), ('161080200184', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-08-09 17:00:00', 'A<NAME>', 'Siti Nur Haliza'), ('161080200187', '<NAME>', '14', 'https://ict-umsida.blogspot.com/', '2018-10-17 17:00:00', 'A<NAME>', 'Alfan Indra Kusuma'), ('161080200189', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-10-15 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200190', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200192', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2018-10-19 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200194', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200195', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-10-17 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200197', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200199', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-10-15 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200200', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200204', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2018-10-11 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200205', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200207', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2018-11-02 17:00:00', 'Rhamad<NAME>', 'Alfan Indra Kusuma'), ('161080200208', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200213', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-10-17 17:00:00', 'Rhamad<NAME>', 'Siti Nur Haliza'), ('161080200214', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-10-28 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200217', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'R<NAME>', 'Siti Nur Haliza'), ('161080200221', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2018-10-17 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200222', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200223', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200225', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200226', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200227', '<NAME>. ', '5', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200228', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200229', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200230', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2018-10-11 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200232', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200233', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200234', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200235', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200236', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200240', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200241', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200244', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200251', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-10-23 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200252', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2018-10-07 17:00:00', 'Fatur Amirul M.', 'Siti Nur Haliza'), ('161080200255', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2018-09-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200256', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2019-12-30 17:00:00', 'A135 <NAME>', 'Siti Nur Haliza'), ('161080200257', '<NAME>', '7', '', '2018-08-09 17:00:00', 'F<NAME>.', '<NAME>'), ('161080200262', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2018-10-18 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200264', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2019-12-25 17:00:00', 'A136 Dewangga Eka Putra', 'Siti Nur Haliza'), ('161080200268', '<NAME>', '7', '', '2018-08-09 17:00:00', 'F<NAME>.', '<NAME>'), ('161080200272', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2018-08-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200280', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2018-10-17 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200281', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-14 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200282', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2018-09-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200284', '<NAME>.', '11', 'https://ict-umsida.blogspot.com/', '2018-10-11 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200290', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-10-11 17:00:00', 'Rhamadina Fitrah Umami', 'Alfan Indra Kusuma'), ('161080200293', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2019-12-30 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Siti Nur Haliza'), ('161080200294', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-09-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200297', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-09-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200298', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2018-10-17 17:00:00', 'Fatur Amirul M.', 'Siti Nur Haliza'), ('161080200299', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2018-10-07 17:00:00', 'Fatur Amirul M.', 'Siti Nur Haliza'), ('161080200300', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-10-07 17:00:00', 'Fatur Amirul M.', 'Siti Nur Haliza'), ('161080200302', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-10-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200305', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-09-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200307', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-10-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200311', '<NAME>', '2', '', '2018-05-09 17:00:00', 'Fatur Amirul M.', '<NAME>ulia Barlian'), ('161080200314', 'Handayani', '8', 'https://ict-umsida.blogspot.com/', '2018-10-07 17:00:00', 'Fatur Amirul M.', 'Siti Nur Haliza'), ('161080200315', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2018-10-09 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'), ('161080200317', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('161080200319', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2018-09-09 17:00:00', '<NAME>.', 'Alfan Indra Kusuma'), ('161080200320', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200323', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2018-10-11 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('161080200332', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Siti Nur Haliza'), ('171080200001', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A136 Dewangga Eka Putra', 'Siti Nur Haliza'), ('171080200003', '<NAME>', '10', 'https://oky17003umsida.blogspot.com', '2019-12-18 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'), ('171080200005', '<NAME> ', '1', 'https://yodantius17005-umsida.blogspot.com/2019/12/rangkuman-pratikum-rekayasa-perangkat.html', '2019-12-15 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200006', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A136 Dewangga Eka Putra', 'Siti Nur Haliza'), ('171080200007', '<NAME>', '10', 'https://rika17007-umsida.blogspot.com/2019/12/rekayasa-perangkat-lunak.html', '2019-12-18 17:00:00', 'A136 Dewangga Eka Putra', 'R<NAME>'), ('171080200008', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A136 Dewangga Eka Putra', 'Siti Nur Haliza'), ('171080200009', '<NAME>', '10', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A136 Dewangga Eka Putra', 'Siti Nur Haliza'), ('171080200010', '<NAME>.', '1', 'https://aryputri-010.blogspot.com/2019/12/rangkuman-pratikum-rpl.html?m=1', '2019-12-15 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200011', '<NAME>', '11', 'https://wahyu17011umsida.blogspot.com/2019/12/aplikasi-kasir-percetakan.html', '2019-12-19 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200015', '<NAME>', '11', 'https://krisnaadjipangestu.blogspot.com/2019/12/rangkuman-pratikum-rekayasa-perangkat.html', '2019-12-22 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200019', '<NAME>', '11', 'https://17019-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('17108020002', '<NAME>', '1', 'https://rifqiamin17002-umsida.blogspot.com/2019/12/rpl-modul-1.html', '2019-12-15 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200022', '<NAME>.', '11', 'https://17022-umsida.blogspot.com/2019/12/sistem-informasi-absensi-siswa-berbasis.html', '2019-12-19 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200024', '<NAME>', '11', 'https://17024-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl-024.html', '2019-12-18 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200026', '<NAME>', '11', 'https://17026-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl-syahrul-umsida.html', '2019-12-19 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200027', '<NAME>', '11', 'https://wahyudigda17014-umsida.blogspot.com/2019/12/praktikum-rpl-wahyu-digda- sadewa.htmlhttps://wahyudigda17014-umsida.blogspot.com/2019/12/praktikum-rpl-wahyu-digda- sadewa.html', '2019-12-18 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200028', 'El<NAME>', '11', 'https://17028-umsida.blogspot.com/2019/12/sistem-informasi-pengiriman-berbasis.html', '2019-12-18 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200030', '<NAME>', '11', 'https://17030-umsida.blogspot.com/2019/12/sistem-informasi-manajemen-restoran-a.html', '2019-12-19 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200031', '<NAME>.', '1', 'https://ifanda17031-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl.html', '2019-12-15 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200033', '<NAME>.', '1', 'http://ronaldo17033.blogspot.com/', '2019-12-15 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200034', '<NAME>', '1', 'https://riffan17034-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl.html', '2019-12-15 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200036', '<NAME>', '1', 'https://bisri-17036-umsida.blogspot.com/2019/12/rangkuman-pratikum-rekayasa-perangkat.html', '2019-12-15 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200037', '<NAME>', '11', 'https://17037-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl-umsida-2019.html', '2019-12-22 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200038', '<NAME>', '11', 'https://17038-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl-dwi-agus-p-038.html', '2019-12-18 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200040', '<NAME>', '1', 'https://siska17040-umsida.blogspot.com/2019/12/rangkuman-rpl-rekayasa-perangkat-lunak.html?m=1', '2019-12-15 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200042', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A142 Ramadhani Sugyono', 'Siti Nur Haliza'), ('171080200045', '<NAME>.', '12', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A142 Ramadhani Sugyono', 'Siti Nur Haliza'), ('171080200046', '<NAME>', '2', 'https://mvzulfianto17046-umsida.blogspot.com/2019/12/rangkuman-praktikum-rekayasa-perangkat.html?m=1', '2018-12-15 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200050', '<NAME>.', '12', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A142 Ramadhani Sugyono', 'Siti Nur Haliza'), ('171080200051', '<NAME>', '2', 'https://faris17054-umsida.blogspot.com/2019/12/lampiran-1-analisa-dan-desain.html', '2019-12-15 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200052', '<NAME>.', '12', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A142 Ramadhani Sugyono', 'Siti Nur Haliza'), ('171080200054', '<NAME>', '2', 'https://faris17054-umsida.blogspot.com/2019/12/lampiran-1-analisa-dan-desain.html', '2019-12-15 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200056', '<NAME>''', '2', 'https://rizky17056-umsida.blogspot.com/2019/12/rangkuman-praktikum-rekayasa-perangkat.html', '2019-12-15 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200057', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A142 Ramadhani Sugyono', 'Siti Nur Haliza'), ('171080200058', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A142 Ramadhani Sugyono', 'Siti Nur Haliza'), ('171080200059', '<NAME>', '2', 'https://eranioml17059-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl-201.html', '2019-12-19 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200060', '<NAME>.', '2', 'https://rizky17060-umsida.blogspot.com/2019/12/rangkuman-rekayasa-perangkat-lunak.html', '2019-12-15 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200062', '<NAME>.', '12', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A142 Ramadhani Sugyono', 'Siti Nur Haliza'), ('171080200063', '<NAME>', '2', 'https://syaiful17063-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl.html', '2019-12-19 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200064', '<NAME>.', '12', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A142 Ram<NAME>ono', 'Siti Nur Haliza'), ('171080200065', '<NAME>', '2', 'https://ferro17065-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl.html', '2019-12-19 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200066', '<NAME>', '2', 'https://rifkydwikurniawan-17067-umsida.blogspot.com/2019/12/rangkuman-praktikum-rekayasa-perangkat.html?m=1', '2019-12-15 17:00:00', 'A138 Dwi Lestari', 'Alfan Indra Kusuma'), ('171080200068', '<NAME>', '3', 'https://irgarenan17068-umsida.blogspot.com/2019/12/lampiran-1-shape-mergeformat-analisa.html', '2019-12-15 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200069', '<NAME>.', '3', 'https://ryanhanggara17069-umsida.blogspot.com/2019/12/rangkuman-praktikum-rekayasa-perangkat.html', '2019-12-15 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Siti <NAME>'), ('171080200070', '<NAME>', '3', 'https://myahyabakhtiar17070-umsida.blogspot.com/2019/12/rangkuman-praktikum-rekayasa-perangkat.html', '2019-12-15 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200071', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A142 Ramadhani Sugyono', 'Siti Nur Haliza'), ('171080200074', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A142 Ramadhani Sugyono', 'Siti Nur Haliza'), ('171080200075', '<NAME>.', '3', 'https://lucky075umsida.blogspot.com/2019/12/fst.html', '2019-12-15 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200076', '<NAME>.', '3', 'https://prasadhanaan-17076-umsida.blogspot.com/2019/12/laporan-praktikum-rekayasa-perangkat.html', '2019-12-15 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Siti Nur Haliza'), ('171080200081', '<NAME>.', '3', 'https://ghianandahafiz.blogspot.com/2019/12/v-behaviorurldefaultvmlo_16.html', '2019-12-15 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Siti Nur Haliza'), ('171080200082', '<NAME>.', '3', 'http://prass-17082-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl.html', '2019-12-15 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Siti Nur Haliza'), ('171080200083', '<NAME>.', '3', 'https://yudyahs-17083-umsida.blogspot.com/2019/12/rangkuman-praktikum-rekayasa-perangkat.html', '2019-12-15 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Siti Nur Haliza'), ('171080200088', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A140 Arofatus Salis', 'Siti Nur Haliza'), ('171080200089', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A140 Arofatus Salis', 'Siti Nur Haliza'), ('171080200091', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A140 Arofatus Salis', 'Siti Nur Haliza'), ('171080200092', '<NAME>.', '4', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A140 <NAME>', '<NAME>'), ('171080200093', '<NAME>', '14', 'https://cahyandaagnasbasid093umsida.blogspot.com/2019/12/rangkuman-1.html', '2019-12-22 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200097', '<NAME>', '14', 'https://dany17097-umsida.blogspot.com/2019/12/rangkuman-rpl-sistem-penjualan-tiket.html', '2019-12-22 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200098', '<NAME>', '14', 'https://hasyasabilahh17098-umsida.blogspot.com/2019/12/rangkuman-praktikum-rekayasa-perangkat.html', '2019-12-20 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200099', '<NAME>', '14', 'https://adityasyah-17099-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl.html', '2019-12-18 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200101', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A140 Arofatus Salis', 'Siti Nur Haliza'), ('171080200102', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A140 Arofatus Salis', 'Siti Nur Haliza'), ('171080200103', '<NAME>', '14', 'https://danuwahyudi17103-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl.html', '2019-12-20 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200104', '<NAME>', '14', 'https://andrisetiawan-17104-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200106', '<NAME>''', '14', 'https://mochmusaddatansa171106-umsida-2019-14.blogspot.com/2019/12/laporanpraktikum-rekayasaperangkat.html', '2019-12-19 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200107', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A140 Arofatus Salis', 'Siti Nur Haliza'), ('171080200109', '<NAME>.', '14', 'https://hisyamamirn109-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200111', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-13 17:00:00', 'A140 Arofatus Salis', 'Siti Nur Haliza'), ('171080200113', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A131 <NAME>.', 'Siti Nur Haliza'), ('171080200114', 'Choiruroziqin', '16', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A135 <NAME>', 'Siti Nur Haliza'), ('171080200116', '<NAME>', '14', 'https://nurmuhammadr-17116-umsida.blogspot.com/2019/12/praktikum-rekayasa-perangkat-lunak.html', '2019-12-18 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200117', '<NAME>', '14', 'https://rijaluddin117-umsida.blogspot.com/2019/12/rangkuman-rekayasa-perangkat-lunak.html', '2019-12-19 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200118', '<NAME>', '14', 'https://ivanariesr-17118-umsida.blogspot.com/2019/12/ivan-aries-rizaldy-umsida-praktikum-rpl.html', '2019-12-19 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200119', '<NAME>', '14', 'https://rikifitrasetiawan-119-umsida-rpl.blogspot.com/2019/12/rangkuman-rpl.ht', '2019-12-18 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200121', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-12-11 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Siti Nur Haliza'), ('171080200122', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Siti <NAME>'), ('171080200126', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Siti Nur Haliza'), ('171080200127', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Siti Nur Haliza'), ('171080200128', '<NAME>', '14', 'https://amrulhaqiqi17128-umsida.blogspot.com/https://amrulhaqiqi17128-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200130', '<NAME>', '14', 'https://nindyalisty17130-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl.html', '2019-12-19 17:00:00', 'A139 Indah Fauzia', 'Alfan Indra Kusuma'), ('171080200131', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Siti Nur Haliza'), ('171080200132', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A138 Dwi Lestari', 'Siti Nur Haliza'), ('171080200134', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Siti Nur Haliza'), ('171080200135', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Siti Nur Haliza'), ('171080200136', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A138 Dwi Lestari', 'Siti Nur Haliza'), ('171080200137', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Siti Nur Haliza'), ('171080200138', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Siti Nur Haliza'), ('171080200140', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A138 Dwi Lestari', 'Siti Nur Haliza'), ('171080200142', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A138 Dwi Lestari', 'Siti Nur Haliza'), ('171080200143', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A131 Moh<NAME>.', 'Siti Nur Haliza'), ('171080200144', '<NAME>.', '6', 'https://sylfaniesekarmayang-144-umsida.blogspot.com/2019/12/perancangan-aplikasi-rental- mobil.html', '2019-12-15 17:00:00', 'A132 <NAME>', 'Alfan Indra Kusuma'), ('171080200145', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A138 Dwi Lestari', 'Siti Nur Haliza'), ('171080200147', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A138 Dwi Lestari', 'Siti Nur Haliza'), ('171080200148', '<NAME>', '6', 'https://sitinurjanahramadhany148.blogspot.com/2019/12/rangkuman-praktikum-rekayasa- perangkat.html', '2019-12-15 17:00:00', 'A132 Haris Ahmad Gozali', 'Siti Nur Haliza'), ('171080200149', 'Riga FendI P.', '15', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A138 Dwi Lestari', 'Siti Nur Haliza'), ('171080200150', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A132 Haris Ahmad Gozali', 'Alfan Indra Kusuma'), ('171080200151', '<NAME>.', '6', 'https://khoirunnisads17151-umsida.blogspot.com/2019/12/rangkuman-praktikum-rekayasa-perangkat.html', '2019-12-12 17:00:00', 'A132 Haris Ahmad Gozali', 'Siti Nur Haliza'), ('171080200154', '<NAME>', '6', 'https://muhammadrezapahlevi-154-umsida.blogspot.com/2019/12/rangkuman-praktikum- rpl.html', '2019-12-12 17:00:00', 'A132 Haris Ahmad Gozali', 'Siti Nur Haliza'), ('171080200156', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A138 Dwi Lestari', 'Siti Nur Haliza'), ('171080200157', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A138 Dwi Lestari', 'Siti Nur Haliza'), ('171080200159', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A138 Dwi Lestari', 'Siti Nur Haliza'), ('171080200160', '<NAME>', '6', 'https://fandyrachmatulloh17160-umsida.blogspot.com/2019/12/sistem-informasi- perpustakaan-berbasis.html)', '2019-12-12 17:00:00', 'A132 Haris Ahmad Gozali', 'Siti Nur Haliza'), ('171080200161', '<NAME>', '6', 'https://fahmianggara17161-umsida.blogspot.com/2019/12/v-behaviorurldefaultvmlo.html', '2019-12-15 17:00:00', 'A132 Haris Ahmad Gozali', 'Siti Nur Haliza'), ('171080200163', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Siti Nur Haliza'), ('171080200165', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Siti Nur Haliza'), ('171080200166', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Siti Nur Haliza'), ('171080200167', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A138 Dwi Lestari', 'Siti Nur Haliza'), ('171080200168', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2019-12-17 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Siti Nur Haliza'), ('171080200169', '<NAME>', '3', 'https://rizkyaa17169-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl.html', '2019-12-15 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Siti Nur Haliza'), ('171080200172', '<NAME>', '17', 'https://hilmanhanifa17172.blogspot.com/2019/12/rangkuman-praktikum-rpl.html', '2019-12-20 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'), ('171080200173', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Siti Nur Haliza'), ('171080200174', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A135 Herlian Aliyasa Almaj Duddin', 'Siti Nur Haliza'), ('171080200180', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2019-12-17 17:00:00', 'A133 M. <NAME>''im', 'Siti Nur Haliza'), ('171080200181', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A133 M. Arsyil Adhi''im', 'Siti Nur Haliza'), ('171080200183', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A133 M. <NAME>hi''im', 'Siti Nur Haliza'), ('171080200184', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A133 M. Arsyil Adhi''im', 'Siti Nur Haliza'), ('171080200186', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A133 M. Arsyil Adhi''im', 'Siti Nur Haliza'), ('171080200187', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A133 M. Arsyil Adhi''im', 'Siti Nur Haliza'), ('171080200188', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2019-12-15 17:00:00', 'A132 Haris <NAME>ali', 'Alfan Indra Kusuma'), ('171080200189', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A133 M. Arsyil Adhi''im', 'Siti Nur Haliza'), ('171080200190', '<NAME>', '17', 'https://iqbalalfani-17190-umsida.blogspot.com/2019/12/rangkuman-praktikum-rekayasa-perangkat_21.html', '2019-12-19 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'), ('171080200192', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2019-12-17 17:00:00', 'A133 <NAME> Adhi''im', 'Siti Nur Haliza'), ('171080200193', '<NAME> ', '8', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A133 M. Arsyil Adhi''im', 'Siti Nur Haliza'), ('171080200194', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A133 <NAME>hi''im', 'Siti Nur Haliza'), ('171080200195', '<NAME>', '8', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A133 <NAME>hi''im', 'Siti Nur Haliza'), ('171080200196', '<NAME>.', '8', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A133 <NAME>hi''im', 'Siti Nur Haliza'), ('171080200197', 'Bag<NAME> S.D', '17', 'https://bagusisd-17197-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl.html?m=1', '2019-12-25 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'), ('171080200199', 'Awad', '9', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A134 Alfian Ari Putra', 'Siti Nur Haliza'), ('171080200200', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A134 Alfian Ari Putra', 'Siti Nur Haliza'), ('171080200207', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2019-12-17 17:00:00', 'A134 Alfian Ari Putra', 'Siti Nur Haliza'), ('171080200208', '<NAME>', '17', 'https://achmadfarras17208-umsida.blogspot.com/2019/12/rangkuman-praktikum-rekayasa-perangkat.html', '2019-12-20 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'), ('171080200209', '<NAME>', '17', 'https://faizalarifin-17209-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl.html', '2019-12-19 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'), ('171080200210', '<NAME>', '17', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A136 Dewangga Eka Putra', 'Siti Nur Haliza'), ('171080200211', 'Diki Putra N.', '17', 'https://dikiputraniawan17211umsida.blogspot.com/2019/12/rangkuman-rpl.html?m=1', '2019-12-25 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'); INSERT INTO `prak08_rpl` (`nim_praktikum`, `nama_praktikan`, `kelompok_praktikum`, `link_rangkuman`, `tanggal_pengumpulan`, `nama_asisten`, `penerima_laporan`) VALUES ('171080200212', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A134 Alfian Ari Putra', 'Siti Nur Haliza'), ('171080200213', '<NAME>', '15', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A138 Dwi Lestari', 'Siti Nur Haliza'), ('171080200214', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-10-11 17:00:00', '<NAME>.', 'Alfan Indra Kusuma'), ('171080200215', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A134 Alfian Ari Putra', 'Siti Nur Haliza'), ('171080200217', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A134 Alfian Ari Putra', 'Siti Nur Haliza'), ('171080200220', '<NAME>.', '9', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A134 Alfian Ari Putra', 'Siti Nur Haliza'), ('171080200221', '<NAME>', '17', 'https://dennyblctelkom.blogspot.com/2019/12/rangkuman-praktikum-rekayasa-perangkat.html', '2019-12-20 17:00:00', 'A136 Dewangga Eka Putra', 'Rahmi Aulia Barlian'), ('171080200222', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A134 Alfian Ari Putra', 'Siti Nur Haliza'), ('171080200224', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A134 A<NAME>', 'S<NAME>'), ('171080200225', '<NAME>', '18', 'https://mahardikarafimaulana-17225-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl.html', '2019-12-25 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200235', '<NAME>.', '18', 'https://jundatulaimmah17235-umsida.blogspot.com/2019/12/rangkuman-praktikum-rekayasa- perangkat.html', '2019-12-20 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200237', '<NAME>', '18', 'https://ridhoazizi-17237-umsida.blogspot.com/2019/12/rangkuman-praktikum- rpl.html?m=1', '2019-12-20 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200239', '<NAME>', '18', 'https://munir-17239-umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl-aplikasi.html', '2019-12-20 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200240', '<NAME>.', '18', 'https://mochiwansetiawan240.blogspot.com/2019/12/pretestpraktikumrpl.html', '2019-12-19 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200247', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A134 A<NAME>', 'Siti Nur Haliza'), ('171080200248', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2019-12-18 17:00:00', 'A142 <NAME>', 'Siti Nur Haliza'), ('171080200249', '<NAME>.', '12', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('171080200250', '<NAME>.', '18', 'https://ericdwisetiaputra17250-umsida.blogspot.com/2019/12/pokok- bahasan-1-aplikasi-penyewaan.html?m=1', '2019-12-20 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Alfan Indra Kusuma'), ('171080200254', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A134 A<NAME>', 'Siti Nur Haliza'), ('171080200255', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A142 Ramadhani Sugyono', 'Siti Nur Haliza'), ('171080200256', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A142 Ramadhani Sugyono', 'Siti Nur Haliza'), ('171080200257', '<NAME>.', '15', 'https://ict-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A138 Dwi Lestari', 'Siti Nur Haliza'), ('171080200259', '<NAME>.', '6', 'https://ifaldidanangs259umsida.blogspot.com/2019/12/rangkuman-praktikum-rpl.html', '2019-12-16 17:00:00', 'A132 <NAME>', 'Alfan Indra Kusuma'), ('171080200263', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2019-12-16 17:00:00', 'A134 <NAME>', 'Siti Nur Haliza'), ('171080200266', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2018-10-08 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('171080200269', '<NAME>', '3', 'https://dimasfajar17269-umsida.blogspot.com/2019/12/rangkuman-praktikum-rekayasa-perangkat.html', '2019-12-15 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Siti Nur Haliza'), ('171080200273', '<NAME>', '3', 'https://agung17273-umsida.blogspot.com/2019/12/rangkuman-praktikum-rekayasa-perangkat.html', '2019-12-15 17:00:00', 'A137 Fitria Lailatul Kodriyah', 'Alfan Indra Kusuma'), ('171080200277', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('171080200278', 'Tomin', '12', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', '<NAME>', 'Alfan Indra Kusuma'), ('171080200279', 'M. <NAME>', '12', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', 'M. Amirulloh', 'Alfan Indra Kusuma'), ('171080200280', '<NAME>', '9', 'https://ict-umsida.blogspot.com/', '2018-10-12 17:00:00', 'Fatur Amirul M.', 'Alfan Indra Kusuma'); -- -------------------------------------------------------- -- -- Struktur dari tabel `prak09_sisdig` -- CREATE TABLE `prak09_sisdig` ( `nim_praktikum` varchar(12) NOT NULL, `nama_praktikan` varchar(255) NOT NULL, `kelompok_praktikum` varchar(2) NOT NULL, `link_rangkuman` varchar(255) NOT NULL, `tanggal_pengumpulan` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `nama_asisten` varchar(50) NOT NULL, `penerima_laporan` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `prak09_sisdig` -- INSERT INTO `prak09_sisdig` (`nim_praktikum`, `nama_praktikan`, `kelompok_praktikum`, `link_rangkuman`, `tanggal_pengumpulan`, `nama_asisten`, `penerima_laporan`) VALUES ('141080200038', '<NAME>', '10', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-25 17:00:00', 'A155 Rakhmad Fahmi Putra', 'Moch. Wild<NAME>'), ('141080200087', '<NAME>.', '18', 'https://ict-umsida.blogspot.com/', '2019-07-03 17:00:00', 'A131 Moh<NAME>.', 'Siti Nur Haliza'), ('141080200274', '<NAME>.', '21', 'https://ict-umsida.blogspot.com/', '2019-07-02 17:00:00', 'A143 Achmad Ainun GR', 'Siti Nur Haliza'), ('151080200084', '<NAME>', '18', 'https://ict-umsida.blogspot.com/', '2019-07-03 17:00:00', 'A131 Moham<NAME>.', 'Siti Nur Haliza'), ('151080200287', '<NAME>', '21', 'https://ict-umsida.blogspot.com/', '2019-06-27 17:00:00', 'A143 Achmad Ainun GR', 'Vini Rahmawati'), ('151080200296', '<NAME>', '21', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A143 Achmad Ainun GR', '<NAME>'), ('151080200298', '<NAME>', '21', 'https://ict-umsida.blogspot.com/', '2019-07-01 17:00:00', 'A143 Achmad Ainun GR', 'Siti Nur Haliza'), ('151080200300', 'DIDIT WOVI .P', '21', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A143 Achmad Ainun GR', '<NAME>'), ('151080200302', 'SU<NAME>ANTO', '3', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 L<NAME>', '<NAME>'), ('151080200306', '<NAME>', '21', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A143 Achmad Ainun GR', '<NAME>'), ('151080200312', '<NAME>', '21', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A143 Achmad Ainun GR', '<NAME>'), ('151080200313', '<NAME>', '18', 'https://ict-umsida.blogspot.com/', '2019-07-02 17:00:00', 'A131 <NAME>.', '<NAME>'), ('161080200051', '<NAME>U', '2', 'https://sopiadiapangestu051umsida.blogspot.com/2019/12/hai-perkenalkan-nama-saya-sopia-dia.html', '2019-12-19 17:00:00', 'A159 Fah<NAME>atiwi', 'Siti Nur Haliza'), ('171080200234', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('171080200284', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A134 A<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('181008020010', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2019-07-02 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181008020018', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A131 M<NAME> F.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200001', 'ADE SURYA W.P.', '1', 'https://ict-umsida.blogspot.com', '2019-06-23 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200004', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A144 Aga Dandi P.', 'Mo<NAME>'), ('181080200006', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A144 Aga Dandi P.', 'Mo<NAME>'), ('181080200007', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2019-06-23 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('181080200009', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('181080200010', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('181080200011', '<NAME>.', '1', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200012', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200013', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200014', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200015', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200016', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2019-06-23 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200019', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('181080200020', '<NAME> Q.B.W.', '1', 'https://ict-umsida.blogspot.com', '2019-06-23 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('181080200021', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('181080200022', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2019-06-23 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('181080200023', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('181080200024', '<NAME>.', '1', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('181080200025', '<NAME>.', '1', 'https://ict-umsida.blogspot.com', '2019-06-23 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200026', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200027', '<NAME>', '13', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200028', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A145 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('181080200029', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A145 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('181080200030', '<NAME>', '1', 'https://ict-umsida.blogspot.com', '2019-06-23 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200031', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A145 Silvie Nur Millah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200034', '<NAME>.', '1', 'https://ict-umsida.blogspot.com', '2019-06-23 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200035', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A145 Silvie <NAME>illah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200036', '<NAME>.', '1', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200037', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A145 Sil<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('181080200039', 'ADE FITRIYANTO', '14', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A145 Sil<NAME>', 'Moch. <NAME>'), ('181080200040', 'ANGGITA', '1', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('181080200041', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-06-23 17:00:00', 'A143 Achmad Ainun GR', '<NAME>'), ('181080200042', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A145 Sil<NAME>', '<NAME>'), ('181080200043', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A145 Sil<NAME>', '<NAME>'), ('181080200044', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A143 Achmad Ainun GR', '<NAME>'), ('181080200045', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A145 <NAME>', '<NAME>'), ('181080200048', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A145 <NAME>', '<NAME>'), ('181080200050', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A145 <NAME>', '<NAME>'), ('181080200052', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2019-06-23 17:00:00', 'A143 <NAME>', '<NAME>'), ('181080200053', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A145 <NAME>', '<NAME>'), ('181080200054', '<NAME>.', '15', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A13<NAME>', '<NAME>'), ('181080200056', '<NAME>.', '15', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A134 Alfian Ari Putra', 'Moch. Wildan Dwiky Rochmansa'), ('181080200057', '<NAME>.', '15', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A134 Alfian Ari Putra', 'Moch. Wildan Dwiky Rochmansa'), ('181080200060', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A134 Alfian Ari Putra', 'Moch. Wildan Dwiky Rochmansa'), ('181080200062', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-06-23 17:00:00', 'A143 Achmad Ainun GR', 'Siti Nur Haliza'), ('181080200063', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A134 Alfian Ari Putra', 'Moch. W<NAME> Rochmansa'), ('181080200064', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2019-06-21 17:00:00', 'A143 Achmad Ainun GR', 'Siti Nur Haliza'), ('181080200065', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-06-23 17:00:00', 'A143 Achmad <NAME>', '<NAME>'), ('181080200068', 'FIRNANDO', '10', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2020-01-09 17:00:00', 'A155 Rakhmad <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('181080200069', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A134 Alfian Ari Putra', 'Moch. Wildan Dwiky Rochmansa'), ('181080200070', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A134 Alfian Ari Putra', 'Moch. W<NAME>mansa'), ('181080200073', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan D<NAME>chmansa'), ('181080200074', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2019-06-23 17:00:00', 'A143 Achmad Ainun GR', 'Siti Nur Haliza'), ('181080200075', '<NAME>.', '2', 'https://ict-umsida.blogspot.com/', '2019-06-21 17:00:00', 'A143 Achmad Ainun GR', 'Siti Nur Haliza'), ('181080200076', '<NAME> P.', '2', 'https://ict-umsida.blogspot.com/', '2019-06-21 17:00:00', 'A143 Achmad Ainun GR', 'Siti Nur Haliza'), ('181080200078', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A146 Lailatul Lutfiah', '<NAME>'), ('181080200080', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A146 Lailatul Lutfiah', '<NAME>'), ('181080200083', 'bimas bukiin', '3', 'http://192.168.106.32/aslab/', '2019-06-21 17:00:00', 'A146 Lailatul Lutfiah', '<NAME>'), ('181080200084', 'maurizka m.z', '3', 'http://192.168.106.32/aslab/', '2019-06-21 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200085', '<NAME>', '3', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200086', '<NAME>', '3', 'http://192.168.106.32/aslab/', '0000-00-00 00:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200087', 'nurshofikul jamil', '3', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200088', '<NAME>', '3', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200089', '<NAME>', '3', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 Lailatul Lutfiah', 'Mo<NAME>'), ('181080200090', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-06-21 17:00:00', 'A1<NAME>', '<NAME>'), ('181080200091', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A1<NAME>', '<NAME>'), ('181080200092', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-06-20 17:00:00', 'A1<NAME>', '<NAME>'), ('181080200093', '<NAME>.', '16', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A146 Lailatul Lutfiah', 'Mo<NAME>'), ('181080200094', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan D<NAME>chmansa'), ('181080200095', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2019-06-30 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200096', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-06-21 17:00:00', 'A145 Silvie <NAME>', 'Siti Nur Haliza'), ('181080200097', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2019-06-30 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200098', '<NAME>', '20', 'https://ict-umsida.blogspot.com', '2019-07-01 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200099', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A145 Silvie Nur Millah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200100', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A145 Silvie Nur Millah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200102', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. W<NAME>chmansa'), ('181080200103', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-06-21 17:00:00', 'A145 Silvie Nur Millah', 'Siti Nur Haliza'), ('181080200104', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A145 Silvie Nur Millah', 'Moch. W<NAME>chmansa'), ('181080200105', 'MU<NAME> .Y.S', '16', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. W<NAME>chmansa'), ('181080200106', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-06-20 17:00:00', 'A145 Silvie Nur Millah', 'Siti Nur Haliza'), ('181080200107', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A145 Silvie Nur Millah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200108', '<NAME> R.', '4', 'https://ict-umsida.blogspot.com/', '2019-06-21 17:00:00', 'A145 <NAME>', 'Siti Nur Haliza'), ('181080200109', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A145 <NAME>', '<NAME>'), ('181080200110', '<NAME>.', '4', 'https://ict-umsida.blogspot.com', '2019-06-23 17:00:00', 'A145 <NAME>', '<NAME>'), ('181080200112', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-06-21 17:00:00', 'A145 <NAME>', 'Siti Nur Haliza'), ('181080200113', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-06-19 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200114', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-06-20 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200115', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-06-20 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200116', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-06-20 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200117', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-06-21 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200119', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200120', '<NAME>', '16', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A146 <NAME>', 'Moch. <NAME>'), ('181080200121', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2019-06-23 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200122', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2019-06-30 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Moch. <NAME>'), ('181080200123', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A141 Nasrudin I<NAME>loh', 'Moch. <NAME>'), ('181080200124', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2019-06-21 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200125', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A147 M. Said Agil S.', 'Moch. <NAME>'), ('181080200126', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-06-23 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200128', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-06-19 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200129', '<NAME>', '5', 'https://ict-umsida.blogspot.com/', '2019-06-19 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200131', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A141 <NAME>', '<NAME>'), ('181080200132', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A141 <NAME>', '<NAME>'), ('181080200133', '<NAME>.', '5', 'https://ict-umsida.blogspot.com/', '2019-06-19 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200134', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-06-20 17:00:00', 'A134 <NAME>', '<NAME>'), ('181080200135', '<NAME>', '6', 'https://ict-umsida.blogspot.com/', '2019-06-21 17:00:00', 'A134 Alfian <NAME>', '<NAME>'), ('181080200136', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A134 Alfian <NAME>', 'Moch. <NAME>ansa'), ('181080200137', '<NAME>.', '6', 'https://ict-umsida.blogspot.com/', '2019-06-20 17:00:00', 'A134 Alfian <NAME>', '<NAME>'), ('181080200138', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A134 A<NAME>', 'Moch. <NAME>'), ('181080200139', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A141 <NAME>', 'Moch. <NAME>'), ('181080200140', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A141 <NAME>', 'Moch. <NAME>'), ('181080200142', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-06-20 17:00:00', 'A134 A<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('181080200143', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A141 N<NAME>loh', 'Moch. Wildan Dwiky Rochmansa'), ('181080200144', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A134 A<NAME>', 'Moch. <NAME>'), ('181080200145', '<NAME>.', '6', 'https://ict-umsida.blogspot.com', '2019-06-20 17:00:00', 'A134 A<NAME>', 'Moch. W<NAME>'), ('181080200146', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A141 <NAME>', '<NAME>'), ('181080200147', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A141 N<NAME>loh', 'Moch. Wildan Dwiky Rochmansa'), ('181080200148', 'SA<NAME>', '17', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Moch. Wildan Dwiky Rochmansa'), ('181080200149', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A134 Alfian Ari Putra', 'Moch. Wildan Dwiky Rochmansa'), ('181080200150', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A134 Alfian Ari Putra', 'Moch. Wildan Dwiky Rochmansa'), ('181080200151', '<NAME>', '7', 'https://ict-umsida.blogspot.com', '2019-07-20 17:00:00', 'A141 Nasr<NAME>loh', 'Moch. Wildan Dwiky Rochmansa'), ('181080200153', '<NAME>', '6', 'https://ict-umsida.blogspot.com', '2019-06-21 17:00:00', 'A134 Alfian Ari Putra', 'Moch. Wildan Dwiky Rochmansa'), ('181080200154', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2019-06-30 17:00:00', 'A131 Moh<NAME>.', '<NAME>'), ('181080200155', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A141 Nasrudin Iqrok Mulloh', '<NAME>'), ('181080200156', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Siti Nur Haliza'), ('181080200157', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2019-06-23 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Siti Nur Haliza'), ('181080200159', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Siti Nur Haliza'), ('181080200160', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Siti Nur Haliza'), ('181080200161', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Siti Nur Haliza'), ('181080200162', '<NAME> .S', '17', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Mo<NAME>'), ('181080200163', '<NAME>', '17', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Mo<NAME>'), ('181080200165', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Siti Nur Haliza'), ('181080200166', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Siti Nur Haliza'), ('181080200167', 'ZAENAL', '7', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Mo<NAME>'), ('181080200168', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A141 N<NAME>loh', 'Siti Nur Haliza'), ('181080200169', '<NAME>', '7', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A141 Nasrudin Iqrok Mulloh', 'Siti Nur Haliza'), ('181080200170', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200171', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A131 Moham<NAME>io Putra F.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200172', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2019-05-27 17:00:00', 'A131 <NAME>ra F.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200173', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200175', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-23 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200176', '<NAME>.', '18', 'https://ict-umsida.blogspot.com/', '2019-07-01 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Siti <NAME>iza'), ('181080200178', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2019-07-01 17:00:00', 'A134 Alfian Ari Putra', 'Moch. Wildan Dwiky Rochmansa'), ('181080200179', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2019-02-06 17:00:00', 'A134 Alfian Ari Putra', 'Moch. Wildan Dwiky Rochmansa'), ('181080200180', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2019-05-28 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200181', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-23 17:00:00', 'A131 Mohammad Aditio <NAME>.', 'Mo<NAME>'), ('181080200182', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A131 M<NAME>.', 'Moch. <NAME>'), ('181080200184', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A131 Moh<NAME> F.', 'Mo<NAME>'), ('181080200186', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A131 M<NAME>.', 'Mo<NAME>'), ('181080200188', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-23 17:00:00', 'A131 <NAME>.', 'Mo<NAME>'), ('181080200189', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A144 <NAME>.', 'Moch. <NAME>'), ('181080200190', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200191', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-23 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200192', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200193', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200195', '<NAME>', '8', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200197', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A143 A<NAME>', '<NAME>'), ('181080200199', '<NAME>', '21', 'https://ict-umsida.blogspot.com/', '2019-06-29 17:00:00', 'A143 Achmad Ainun GR', '<NAME>'), ('181080200200', '<NAME>', '9', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A143 Achmad Ainun GR', 'Moch. W<NAME> Rochmansa'), ('181080200201', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A144 Aga Dandi P.', 'Moch. W<NAME> Rochmansa'), ('181080200202', '<NAME>', '9', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A143 Achmad Ainun GR', 'Moch. Wildan Dwiky Rochmansa'), ('181080200204', '<NAME>', '9', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A143 Achmad Ainun GR', 'Moch. W<NAME>chmansa'), ('181080200207', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A143 Ach<NAME> GR', 'Siti Nur Haliza'), ('181080200208', '<NAME>.', '21', 'https://ict-umsida.blogspot.com/', '2019-07-19 17:00:00', 'A143 Achmad Ainun GR', 'Siti Nur Haliza'), ('181080200209', '<NAME> ', '2', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A143 Achmad Ainun GR', 'Siti Nur Haliza'), ('181080200210', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('181080200212', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A143 Achmad Ainun GR', 'Siti Nur Haliza'), ('181080200213', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('181080200214', '<NAME>', '10', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200217', 'ANDIKARIO .I.P', '10', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200222', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200223', '<NAME>', '10', 'http://1192.168.3.11/aslab/', '2019-06-23 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200224', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200225', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200226', 'MU<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A144 Aga Dandi P.', 'Moch. <NAME>'), ('181080200228', '<NAME>', '10', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 Lailatul Lutfiah', 'Mo<NAME>'), ('181080200230', '<NAME>', '10', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 Lailatul Lutfiah', '<NAME>'), ('181080200232', '<NAME>', '10', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 Lailatul Lutfiah', '<NAME>'), ('181080200233', '<NAME>', '10', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 Lailatul Lutfiah', 'Mo<NAME>'), ('181080200234', '<NAME>', '10', 'http://192.168.106.32/aslab/', '2019-06-25 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200235', '<NAME>', '10', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200238', 'BAIHAQQY S.D.Q.S', '11', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200241', '<NAME>', '19', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200243', '<NAME> A.', '11', 'https://ict-umsida.blogspot.com/', '2019-06-23 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200244', 'OKYK FAUZI Y.P.', '11', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A147 M. Said Agil S.', 'Siti Nur Haliza'), ('181080200245', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200246', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-06-30 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200247', '<NAME>', '11', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A147 M. Said Agil S.', '<NAME>'), ('181080200249', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200250', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A147 M. Said Agil S.', 'Moch. W<NAME>chmansa'), ('181080200251', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200253', '<NAME>', '20', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A147 M. Said Agil S.', 'Moch. W<NAME>'), ('181080200254', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200255', '<NAME>', '20', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan D<NAME>chmansa'), ('181080200256', '<NAME>.', '11', 'https://ict-umsida.blogspot.com/', '2019-06-24 17:00:00', 'A147 M. Said Agil S.', '<NAME>'), ('181080200258', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-07-01 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan D<NAME>chmansa'), ('181080200259', '<NAME>', '11', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('181080200260', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A145 Silvie <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('181080200262', '<NAME>', '3', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200265', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A145 Silvie Nur Millah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200269', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A145 Silvie Nur Millah', 'Moch. Wildan Dwiky Rochmansa'), ('181080200271', '<NAME>', '3', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. <NAME>'), ('181080200272', 'DAFFA .F .I', '12', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A145 <NAME>', 'Moch. W<NAME>chmansa'), ('181080200274', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A145 <NAME>', 'Moch. Wildan D<NAME>chmansa'), ('181080200277', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A145 <NAME>', 'Moch. W<NAME>'), ('181080200279', '<NAME>', '20', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A147 M. S<NAME>.', 'Moch. <NAME>'), ('181080200283', '<NAME>', '21', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A143 A<NAME>', 'Moch. W<NAME>a'), ('181080200288', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A145 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('181080200289', '<NAME>', '21', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A143 Achmad Ainun GR', 'Moch. Wildan Dwiky Rochmansa'), ('181080200292', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A145 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('181080200293', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-06-27 17:00:00', 'A134 A<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('181080200294', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-07-04 17:00:00', 'A134 A<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('181080200296', '<NAME>', '12', 'https://ict-umsida.blogspot.com', '2019-06-25 17:00:00', 'A145 Sil<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('181080200297', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2019-06-30 17:00:00', 'A131 Mohammad Aditio Putra F.', 'Moch. <NAME>'), ('181080200298', '<NAME>', '18', 'https://ict-umsida.blogspot.com/', '2019-07-01 17:00:00', 'A131 Mohammad Aditio Putra F.', '<NAME>'), ('181080200302', '<NAME>', '3', 'http://192.168.106.32/aslab/', '2019-06-23 17:00:00', 'A146 L<NAME>', 'Moch. <NAME>'), ('181080200303', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2019-01-06 17:00:00', 'A134 A<NAME>', 'Moch. <NAME>'), ('181080200304', '<NAME>', '9', 'https://ict-umsida.blogspot.com', '2019-06-24 17:00:00', 'A143 Achmad Ainun GR', 'Moch. <NAME>'), ('181080200305', '<NAME>', '18', 'https://ict-umsida.blogspot.com/', '2019-07-01 17:00:00', 'A131 <NAME>.', 'Siti N<NAME>'), ('181080200307', '<NAME>', '18', 'https://ict-umsida.blogspot.com', '2019-07-01 17:00:00', 'A134 A<NAME>', 'Mo<NAME>'), ('181080200309', '<NAME>', '2', 'https://ict-umsida.blogspot.com/', '2019-07-02 17:00:00', 'A143 Achmad Ainun GR', 'Siti N<NAME>'), ('181080200312', '<NAME>', '12', 'https://ict-umsida.blogspot.com/', '2019-06-25 17:00:00', 'A145 <NAME>', 'Mo<NAME>'), ('181080200314', '<NAME>', '21', 'https://ict-umsida.blogspot.com', '2019-06-28 17:00:00', 'A143 Achmad Ainun GR', 'Moch. W<NAME>mansa'), ('181080200317', '<NAME>', '15', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A134 A<NAME>', 'Moch. <NAME>a'), ('18108020032', '<NAME>', '14', 'https://ict-umsida.blogspot.com', '2019-06-26 17:00:00', 'A145 <NAME>', 'Moch. Wildan D<NAME>chmansa'), ('18108020151', '<NAME>.', '7', 'https://ict-umsida.blogspot.com/', '2019-07-20 17:00:00', 'A141 N<NAME>', '<NAME>'), ('191080200001', '<NAME>', '10', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-25 17:00:00', 'A155 Rakhmad Fahmi Putra', 'Moch. Wildan D<NAME>chmansa'), ('191080200002', '<NAME>', '10', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A155 Rakhmad Fahmi Putra', 'Moch. W<NAME>mansa'), ('191080200003', '<NAME>', '10', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A155 Rakhmad Fahmi Putra', 'Moch. Wildan Dwiky Rochmansa'), ('191080200004', '<NAME>', '10', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2020-01-01 17:00:00', 'A155 R<NAME>', '<NAME>'), ('191080200005', '<NAME>', '1', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-07 17:00:00', 'A158 <NAME>', '<NAME>'), ('191080200006', '<NAME>', '1', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-18 17:00:00', 'A15<NAME>', '<NAME>'), ('191080200008', '<NAME>', '10', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-25 17:00:00', 'A155 <NAME>', '<NAME>'), ('191080200009', '<NAME>', '10', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A155 Rakhmad Fahmi Putra', 'Moch. Wildan Dwiky Rochmansa'), ('191080200010', '<NAME>', '10', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-30 17:00:00', 'A155 Rakhmad Fahmi Putra', 'Moch. Wildan Dwiky Rochmansa'), ('191080200012', '<NAME>', '10', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-25 17:00:00', 'A155 Rakhmad Fahmi Putra', 'Moch. Wildan Dwiky Rochmansa'), ('191080200013', '<NAME>', '1', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-20 17:00:00', 'A158 Hawwani Muhdat Azzahra', 'Moch. Wildan Dwiky Rochmansa'), ('191080200014', 'B<NAME> F', '1', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-19 17:00:00', 'A158 Hawwani Muhdat Azzahra', 'Moch. Wildan Dwiky Rochmansa'), ('191080200016', '<NAME>', '10', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A155 Rakhmad Fahmi Putra', 'Moch. Wildan Dwiky Rochmansa'), ('191080200018', '<NAME>', '1', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-19 17:00:00', 'A158 H<NAME>ahra', 'Moch. Wildan Dwiky Rochmansa'), ('191080200019', '<NAME>', '10', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A155 Rakhmad Fahmi Putra', 'Moch. Wildan Dwiky Rochmansa'), ('191080200020', '<NAME>', '1', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-20 17:00:00', 'A158 Hawwani M<NAME>ahra', 'Moch. Wildan Dwiky Rochmansa'), ('191080200021', '<NAME>', '1', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-20 17:00:00', 'A158 Hawwani Muhdat Azzahra', 'Moch. Wildan Dwiky Rochmansa'), ('191080200022', '<NAME>', '10', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A155 Rakhmad Fahmi Putra', 'Moch. Wildan Dwiky Rochmansa'), ('191080200023', 'ANGGI DWI BAGUS F', '1', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-20 17:00:00', 'A158 Hawwani Muhdat Azzahra', 'Moch. Wildan Dwiky Rochmansa'), ('191080200025', 'RINA SAFITRI', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A151 M. <NAME>ang', 'Moch. Wildan Dwiky Rochmansa'), ('191080200026', 'ANASTASYA NADIA P', '1', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-19 17:00:00', 'A158 Haww<NAME>', 'Moch. <NAME>'), ('191080200029', '<NAME>', '1', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-19 17:00:00', 'A158 <NAME>', 'Moch. W<NAME>chmansa'), ('191080200030', '<NAME>', '1', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-19 17:00:00', 'A158 <NAME>', 'Moch. <NAME>'), ('191080200032', '<NAME>', '1', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-19 17:00:00', 'A158 <NAME>', 'Mo<NAME>'), ('191080200034', '<NAME>', '2', 'https://arif19034.blogspot.com/', '2019-12-19 17:00:00', 'A159 <NAME>', '<NAME>'), ('191080200035', '<NAME>', '2', 'https://mochtarputra19035-umsida.blogspot.com/2019/12/rangkuman-modul-sistem-digital-hai.html', '2019-12-20 17:00:00', 'A159 <NAME>', 'S<NAME>'), ('191080200036', '<NAME>', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A15<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200037', '<NAME>', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A1<NAME>', 'Moch. Wildan D<NAME>chmansa'), ('191080200038', '<NAME>', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A15<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200039', 'ANUGRA P', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A15<NAME>', '<NAME>'), ('191080200040', '<NAME>', '2', 'https://robi19040-umsida.blogspot.com/2019/12/rangkuman-sistem-digital.html', '2019-12-19 17:00:00', 'A159 <NAME>wi', 'Siti Nur Haliza'), ('191080200041', '<NAME>', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A1<NAME>', '<NAME>'), ('191080200042', '<NAME>', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A1<NAME>', '<NAME>'), ('191080200043', '<NAME>', '2', 'https://nurulhartatik19043-umsida.blogspot.com/2019/12/rangkuman-praktikum-sistem-digital.html', '2019-12-19 17:00:00', 'A159 <NAME>', 'Siti Nur Haliza'), ('191080200044', 'SAN<NAME>.', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A15<NAME>', '<NAME>'), ('191080200045', '<NAME>', '2', 'http://mhabib19045-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A159 Fahyu Dwi Pratiwi', 'Siti Nur Haliza'), ('191080200046', '<NAME>', '2', 'https://ict-umsida.blogspot.com', '2019-12-19 17:00:00', 'A159 Fahyu Dwi Pratiwi', 'Siti Nur Haliza'), ('191080200048', '<NAME>', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', '<NAME>', '<NAME>'), ('191080200050', '<NAME>', '2', 'https://dzikri19050-umsida.blogspot.com/2019/12/rangkuman-modul-praktikum-sistem-digital.html', '2019-12-20 17:00:00', 'A159 Fahyu Dwi Pratiwi', 'Siti Nur Haliza'), ('191080200052', '<NAME>.', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-30 17:00:00', 'A1<NAME>', '<NAME>'), ('191080200054', '<NAME>', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A1<NAME>', '<NAME>'), ('191080200055', '<NAME>', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A1<NAME>', '<NAME>'), ('191080200056', '<NAME>', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A1<NAME>', '<NAME>'), ('191080200057', '<NAME>', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A15<NAME>', '<NAME>'), ('191080200058', '<NAME>', '2', 'https://miftakhulhadi1958umsida.blogspot.com/', '2019-12-19 17:00:00', 'A159 Fahyu Dwi Pratiwi', 'Siti Nur Haliza'), ('191080200059', '<NAME>', '2', 'https://sandy19059-umsida.blogspot.com/2019/12/rangkuman-modul-pratikum-sistem-digital_21.html', '2019-12-20 17:00:00', 'A159 Fahyu Dwi Pratiwi', 'Siti Nur Haliza'), ('191080200060', '<NAME>', '2', 'http://ichyak19060-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A159 Fahyu Dwi Pratiwi', 'Siti Nur Haliza'), ('191080200061', '<NAME>', '2', 'https://agungizul1961-umsida.blogspot.com/2019/12/rabgkuman-sistem-digital.html', '2019-12-20 17:00:00', 'A159 Fahyu Dwi Pratiwi', 'Siti Nur Haliza'), ('191080200062', '<NAME>.', '2', 'https://muhamadnajil19062-umsida.blogspot.com/2019/12/mnajil19062-umsida.html', '2019-12-20 17:00:00', 'A159 <NAME>', 'Siti Nur Haliza'), ('191080200063', '<NAME>', '11', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A151 <NAME>', '<NAME>'), ('191080200064', '<NAME>', '2', 'https://ekofahmirosyada19064-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A15<NAME>', 'Siti Nur Haliza'), ('191080200065', '<NAME>', '3', 'https://bayurenditya19065-umsida.blogspot.com/2019/12/rangkuman-praktikum-sistem-digital.html', '2019-12-19 17:00:00', 'A16<NAME>', 'Siti Nur Haliza'), ('191080200066', '<NAME>', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2020-01-05 17:00:00', 'A152 <NAME>', '<NAME>'), ('191080200067', '<NAME>', '3', 'https://riskaadi19067-umsida.blogspot.com/2019/12/rangkuman-praktikum-sistem-digital.html', '2019-12-19 17:00:00', 'A160 Dewi Eka Safitri', 'Siti Nur Haliza'), ('191080200068', '<NAME>', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A152 <NAME>', '<NAME>'), ('191080200069', '<NAME>', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A152 <NAME>', '<NAME>'), ('191080200070', '<NAME>', '3', 'https://bagussasmita29070-umsida.blogspot.com/2019/12/sistem-digital_6.html', '2019-12-19 17:00:00', 'A160 Dewi Eka Safitri', 'Siti Nur Haliza'), ('191080200071', '<NAME>', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A152 Mu<NAME>', '<NAME>'), ('191080200072', '<NAME>', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A152 Muhammad Abdullah', '<NAME>'), ('191080200073', '<NAME>.', '3', 'https://syahrilsh19073-umsida.blogspot.com/2019/12/rangkuman-sistem-digital.html', '2019-12-19 17:00:00', 'A160 Dewi Eka Safitri', 'Siti Nur Haliza'), ('191080200074', '<NAME>', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A152 Mu<NAME>', '<NAME>'), ('191080200075', '<NAME>', '3', 'https://fajarmuhammad19075-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A160 Dewi Eka Safitri', 'Siti Nur Haliza'), ('191080200076', 'RAD<NAME>RIKUSUMA', '3', 'https://radityaarikusuma19076-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A160 Dewi Eka Safitri', 'Siti Nur Haliza'), ('191080200077', 'DAWAM M', '1', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A158 <NAME>', '<NAME>'); INSERT INTO `prak09_sisdig` (`nim_praktikum`, `nama_praktikan`, `kelompok_praktikum`, `link_rangkuman`, `tanggal_pengumpulan`, `nama_asisten`, `penerima_laporan`) VALUES ('191080200078', '<NAME>', '3', 'https://yudhistirawr078umsida.blogspot.com/2019/12/yudhistirawr19078umsida.html?m=1', '2019-12-18 17:00:00', 'A160 Dewi Eka Safitri', 'Siti Nur Haliza'), ('191080200079', '<NAME>.', '3', 'https://nicky19079.blogspot.com/2019/12/rangkuman-praktikum-sistem-digital.html?m=1', '2019-12-19 17:00:00', 'A160 Dewi Eka Safitri', 'Siti Nur Haliza'), ('191080200080', 'MOCH<NAME>', '3', 'https://aliefsatria19080-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A160 Dewi Eka Safitri', 'Siti Nur Haliza'), ('191080200081', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-20 17:00:00', 'A161 Rahmi Aulia Barlian', 'Siti Nur Haliza'), ('191080200082', '<NAME>', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A152 <NAME>', '<NAME>'), ('191080200083', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-20 17:00:00', 'A161 Rahmi Aulia Barlian', 'Siti Nur Haliza'), ('191080200085', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A161 Rahmi Aulia Barlian', 'Siti Nur Haliza'), ('191080200086', '<NAME>', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2020-01-06 17:00:00', 'A152 Mu<NAME>', '<NAME>'), ('191080200087', 'CALVINE EFRIWANDA', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A152 Mu<NAME>', '<NAME>'), ('191080200088', 'ALFINAS ARDIANSYAH', '4', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A161 Rahmi Aulia Barlian', 'Siti Nur Haliza'), ('191080200089', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A161 Rahmi Aulia Barlian', 'Siti Nur Haliza'), ('191080200090', '<NAME>', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2020-01-05 17:00:00', 'A152 Mu<NAME>', '<NAME>'), ('191080200091', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A161 Rahmi Aulia Barlian', 'Siti Nur Haliza'), ('191080200092', '<NAME>', '4', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-25 17:00:00', 'A161 Rahmi Aulia Barlian', '<NAME>'), ('191080200093', '<NAME>UHAMMAD', '13', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A154 Mo<NAME>', '<NAME>'), ('191080200095', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-25 17:00:00', 'A154 Mochammad Bagas', '<NAME>'), ('191080200096', '<NAME>', '4', 'https://ict-umsida.blogspot.com', '2019-12-22 17:00:00', 'A161 Rahmi Aulia Barlian', 'Siti Nur Haliza'), ('191080200097', '<NAME>', '13', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A154 Mochammad Bagas', 'Moch. Wildan D<NAME>chmansa'), ('191080200099', '<NAME>', '13', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A154 Mochammad Bagas', 'Moch. W<NAME>chmansa'), ('191080200100', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A161 Rahmi Aulia Barlian', 'Siti Nur Haliza'), ('191080200101', '<NAME>', '13', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A154 Mochammad Bagas', 'Moch. <NAME>'), ('191080200102', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A161 Rahmi Aulia Barlian', 'Siti Nur Haliza'), ('191080200103', '<NAME>', '13', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A154 Mochammad Bagas', 'Moch. Wildan D<NAME>chmansa'), ('191080200104', '<NAME>', '13', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A154 Mochammad Bagas', 'Moch. Wildan D<NAME>chmansa'), ('191080200106', '<NAME>', '13', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A154 Mochammad Bagas', 'Moch. Wildan Dwiky Rochmansa'), ('191080200107', '<NAME>', '13', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A154 Mochammad Bagas', 'Moch. W<NAME>chmansa'), ('191080200109', '<NAME>', '13', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A154 Mochammad Bagas', 'Moch. Wildan Dwiky Rochmansa'), ('191080200110', '<NAME>', '13', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A154 Mochammad Bagas', 'Moch. <NAME>'), ('191080200112', '<NAME>', '13', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A154 Mochammad Bagas', 'Moch. W<NAME>chmansa'), ('191080200113', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A150 <NAME>', 'Mo<NAME>'), ('191080200114', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A150 Ad<NAME>', 'Moch. W<NAME>chmansa'), ('191080200115', '<NAME>. ', '4', 'https://ict-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A161 R<NAME>ulia Barlian', 'S<NAME>'), ('191080200116', '<NAME>', '4', 'https://ict-umsida.blogspot.com/', '2019-12-20 17:00:00', 'A161 R<NAME>', '<NAME>'), ('191080200117', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A150 <NAME>', '<NAME>'), ('191080200118', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A150 <NAME>', '<NAME>'), ('191080200119', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-01-01 17:00:00', 'A15<NAME>', '<NAME>'), ('191080200120', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-30 17:00:00', 'A150 Adity<NAME>ama', 'Moch. Wildan Dwiky Rochmansa'), ('191080200121', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-30 17:00:00', 'A150 Aditya Wira Utama', 'Moch. Wildan Dwiky Rochmansa'), ('191080200122', '<NAME>', '3', 'https://wisnumardiansyah19122-umsida.blogspot.com/', '2019-12-19 17:00:00', 'A160 Dewi Eka Safitri', '<NAME>'), ('191080200123', '<NAME>', '4', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-25 17:00:00', 'A161 Rahmi Aulia Barlian', 'Moch. W<NAME>chmansa'), ('191080200124', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A150 Aditya Wira Utama', 'Moch. Wildan Dwiky Rochmansa'), ('191080200125', '<NAME>.', '5', 'https://iqbalcuy19125-umsida.blogspot.com/https://iqbalcuy19125-umsida.blogspot.com/', '2019-12-22 17:00:00', 'A156 Linda Kushernawati', 'Siti Nur Haliza'), ('191080200126', '<NAME>', '5', 'https://edwin19126-umsida.blogspot.com/', '2019-12-25 17:00:00', 'A156 Linda Kushernawati', 'Siti Nur Haliza'), ('191080200127', '<NAME>', '5', 'https://agbar19127-umsida.blogspot.com/2019/12/pokok-bahasan-1-gerbang-logika- gerbang.html?m=1', '2019-12-22 17:00:00', 'A156 Linda Kushernawati', 'Siti Nur Haliza'), ('191080200128', 'ADE SKPN', '5', 'https://adesyehkurnia19128-umsida.blogspot.com/2019/12/sistem-digital.html', '2019-12-22 17:00:00', 'A156 Linda Kushernawati', 'Siti Nur Haliza'), ('191080200129', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A150 <NAME>', 'Moch. <NAME>'), ('191080200130', '<NAME>', '5', 'https://fikrifebrianto19130-umsida.blogspot.com/2019/12/sistem-digital.html', '2019-12-22 17:00:00', 'A156 Linda Kushernawati', 'Siti Nur Haliza'), ('191080200131', '<NAME>', '5', 'https://hepiyogap19131-umsida.blogspot.com/2019/12/sistem-digital_22.html?m=1', '2019-12-22 17:00:00', 'A156 Linda Kushernawati', 'Siti Nur Haliza'), ('191080200132', '<NAME>.', '5', 'https://nopan19132-umsida.blogspot.com/?m=1', '2019-12-22 17:00:00', 'A156 Linda Kushernawati', 'Siti Nur Haliza'), ('191080200133', '<NAME>', '5', 'https://bayu19133-umsida.blogspot.com/2019/12/distem-digital.html', '2019-12-20 17:00:00', 'A156 Linda Kushernawati', 'Siti Nur Haliza'), ('191080200134', '<NAME>.', '5', 'https://ahmadahyars19134-umsida.blogspot.com/2019/12/sistem-digital.html', '2019-12-22 17:00:00', 'A156 Linda Kushernawati', 'Siti Nur Haliza'), ('191080200135', '<NAME>', '5', 'https://mukhamatsaifudin19143-umsida.blogspot.com/2019/12/mukhamat-saifudin-19143-umsida_22.html?m=1', '2019-12-22 17:00:00', 'A156 Linda Kushernawati', 'Siti Nur Haliza'), ('191080200137', '<NAME>.', '5', 'https://rizky19137-umsida.blogspot.com/2019/12/sistem-digital-assalamualaikum-wr.html', '2019-12-22 17:00:00', 'A156 Linda Kushernawati', 'Siti Nur Haliza'), ('191080200138', '<NAME>', '5', 'https://dewi19138-umsida.blogspot.com/2019/12/teman-teman.html?m=1', '2019-12-17 17:00:00', 'A156 Linda Kushernawati', 'Siti Nur Haliza'), ('191080200139', 'MAHARIF', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-01-01 17:00:00', 'A150 Ad<NAME>ama', 'Mo<NAME>'), ('191080200140', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A15<NAME>', '<NAME>'), ('191080200141', '<NAME>.', '5', 'https://firul19141-umsida.blogspot.com/2019/12/sistem-digital.html', '2019-12-22 17:00:00', 'A156 <NAME>', 'Siti Nur Haliza'), ('191080200142', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A150 <NAME>', '<NAME>'), ('191080200143', '<NAME>', '5', 'https://mukhamatsaifudin19143-umsida.blogspot.com/2019/12/mukhamat-saifudin-19143-umsida_22.html?m=1', '2019-12-22 17:00:00', 'A156 <NAME>', '<NAME>'), ('191080200144', '<NAME>', '5', 'https://shafa19144-umsida.blogspot.com/2019/12/sistem-digital.html', '2019-12-22 17:00:00', 'A156 <NAME>', 'Siti Nur Haliza'), ('191080200145', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A150 Aditya Wira Utama', 'Vini Rahmawati'), ('191080200146', '<NAME>', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A157 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200147', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A150 Aditya Wira Utama', 'Moch. W<NAME>chmansa'), ('191080200148', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-30 17:00:00', 'A150 Aditya Wira Utama', 'Moch. Wildan Dwiky Rochmansa'), ('191080200149', '<NAME>', '16', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-30 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('191080200150', '<NAME>', '15', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('191080200151', '<NAME>', '15', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('191080200152', '<NAME>', '15', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan <NAME>chmansa'), ('191080200153', '<NAME>', '15', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan Dwiky Rochmansa'), ('191080200154', '<NAME>.A', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A157 <NAME>', '<NAME>'), ('191080200155', '<NAME>', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A15<NAME>', '<NAME>'), ('191080200156', '<NAME>', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A1<NAME>', '<NAME>'), ('191080200157', '<NAME>', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A15<NAME>', '<NAME>'), ('191080200159', '<NAME>', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A157 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200160', '<NAME>', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A157 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200161', '<NAME>', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A157 Nurtia Suryani', 'Moch. Wildan Dwiky Rochmansa'), ('191080200162', '<NAME>', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A157 N<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200163', '<NAME>', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A149 Dan<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200164', 'Moch. Wildan Dwiky Rochmansa', '15', 'https://wildan19164-umsida.blogspot.com/2019/12/pokok-bahasan-1-pengenalan-gerbang.html', '2019-12-29 17:00:00', 'A144 Aga Dandi P.', 'Mo<NAME>'), ('191080200165', 'BAYU KRISNANTA P.M', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A149 Dan<NAME>', '<NAME>'), ('191080200166', '<NAME>', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-25 17:00:00', 'A149 Dan<NAME>', '<NAME>'), ('191080200167', '<NAME>', '15', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('191080200168', '<NAME>', '15', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A144 Aga Dandi P.', 'Moch. Wildan D<NAME>chmansa'), ('191080200169', '<NAME>', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A149 Danu Pamungkas', 'Moch. Wildan Dwiky Rochmansa'), ('191080200170', '<NAME>', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A149 Danu Pamungkas', 'Moch. Wildan D<NAME>chmansa'), ('191080200172', '<NAME>', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A149 Danu Pamungkas', 'Moch. W<NAME>chmansa'), ('191080200173', '<NAME>', '15', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A144 Aga Dandi P.', 'Moch. W<NAME>'), ('191080200174', '<NAME>', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A149 Dan<NAME>', 'Moch. W<NAME>'), ('191080200175', '<NAME>', '15', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A144 Aga Dandi P.', 'Moch. W<NAME>'), ('191080200177', '<NAME>', '16', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2020-01-09 17:00:00', 'A147 M. Said Agil S.', 'Moch. W<NAME>'), ('191080200178', '<NAME>', '16', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A147 M. Said Agil S.', 'Moch. W<NAME>'), ('191080200179', '<NAME>', '16', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-02 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('191080200180', '<NAME>', '16', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2020-01-05 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('191080200181', '<NAME>', '16', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2020-01-05 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan D<NAME>chmansa'), ('191080200182', '<NAME>', '16', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2020-01-05 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('191080200183', '<NAME>', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-20 17:00:00', 'A149 Danu Pamungkas', 'Moch. Wildan Dwiky Rochmansa'), ('191080200184', '<NAME>', '16', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('191080200185', '<NAME>', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A14<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200186', '<NAME>', '16', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('191080200187', '<NAME>', '16', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A147 M. Said Agil S.', 'Moch. Wildan Dwiky Rochmansa'), ('191080200188', '<NAME>', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A149 Danu Pamungkas', 'Moch. Wildan Dwiky Rochmansa'), ('191080200189', '<NAME>', '16', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A147 M. <NAME> S.', 'Moch. W<NAME>ansa'), ('191080200190', 'FARIS ATSIR I', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A149 Danu Pamungkas', 'Moch. <NAME>'), ('191080200191', '<NAME>', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. W<NAME>chmansa'), ('191080200192', '<NAME>', '17', 'https://fahmi19192-umsida.blogspot.com/2019/12/rangkuman-sistem-digital.html?m=1', '2019-12-29 17:00:00', 'A146 Lailat<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200193', '<NAME>', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A149 Danu Pamungkas', 'Moch. Wildan Dwiky Rochmansa'), ('191080200194', '<NAME>', '17', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A146 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200195', '<NAME>', '7', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-01-01 17:00:00', 'A149 Danu Pamungkas', 'Moch. Wildan Dwiky Rochmansa'), ('191080200196', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A154 Mochammad Bagas', 'Moch. Wildan Dwiky Rochmansa'), ('191080200197', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-25 17:00:00', 'A154 Mo<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200198', '<NAME>', '17', 'https://feryfebby19198umsida.home.blog/2019/12/29/rangkuman-modul-sistem-digital/', '2019-12-29 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('191080200199', '<NAME>', '17', 'https://sandi19199-umsida.blogspot.com/', '2019-12-29 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('191080200200', '<NAME>', '16', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-30 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan D<NAME>chmansa'), ('191080200201', '<NAME>', '17', 'https://Ibnuaffan19201-umsida.blogspot.com', '2019-12-29 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('191080200202', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A154 Mochammad Bagas', '<NAME>'), ('191080200203', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A154 Mochammad Bagas', '<NAME>'), ('191080200204', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-19 17:00:00', 'A154 Mo<NAME>', '<NAME>'), ('191080200205', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A154 Mochammad Bagas', '<NAME>'), ('191080200206', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-25 17:00:00', 'A154 Mochammad Bagas', 'Moch. Wildan Dwiky Rochmansa'), ('191080200207', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A154 Mochammad Bagas', 'Moch. Wildan Dwiky Rochmansa'), ('191080200208', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A154 Mochammad Bagas', 'Moch. Wildan Dwiky Rochmansa'), ('191080200209', '<NAME>', '17', 'https://luqman19209-umsida.blogspot.com', '2019-12-26 17:00:00', 'A146 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200210', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-20 17:00:00', 'A154 Mochammad Bagas', 'Moch. Wildan Dwiky Rochmansa'), ('191080200211', '<NAME>', '17', 'https://taufikimarufan19211-umsida.blogspot.com/?m=1', '2019-12-29 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('191080200212', '<NAME>', '17', 'https://febrinas19212-umsida.blogspot.com/2019/12/rangkuman-praktikum-sistem-digital.html', '2019-12-29 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('191080200215', '<NAME>', '17', 'https://alfi19215-umsida.blogspot.com/2019/12/rangkuman-sistem-digital.html', '2019-12-29 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. Wildan Dwiky Rochmansa'), ('191080200216', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A154 Mochammad Bagas', 'Moch. Wildan Dwiky Rochmansa'), ('191080200217', '<NAME>', '3', 'https://adrianfp217umsida.blogspot.com/2019/12/adrian-faris-parama-umsida.html', '2019-12-20 17:00:00', 'A160 Dewi Eka Safitri', '<NAME>'), ('191080200218', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A154 Mochammad Bagas', 'Moch. W<NAME>chmansa'), ('191080200219', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A154 Mochammad Bagas', 'Moch. <NAME>chmansa'), ('191080200221', '<NAME>', '17', 'https://indah19221-umsida.blogspot.com', '2019-12-26 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. <NAME>'), ('191080200222', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A154 Mochammad Bagas', 'Moch. Wildan D<NAME>chmansa'), ('191080200223', '<NAME>', '17', 'https://arif19223-umsida.blogspot.com/2019/12/resume-praktikum-sistem-digital.html', '2019-12-29 17:00:00', 'A146 Lailatul Lutfiah', 'Moch. <NAME>'), ('191080200224', '<NAME>', '8', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A154 Mochammad Bagas', 'Moch. <NAME>'), ('191080200225', '<NAME>', '17', 'https://khuluq19225-umsida.blogspot.com', '2019-12-29 17:00:00', 'A146 Lailatul Lutfiah', '<NAME>'), ('191080200226', '<NAME>', '9', 'https://drive.google.com/drive/folders/13cF9d8zqkVOCoYpNmutCEhrCWelB40Ai', '2020-01-07 17:00:00', 'A148 <NAME>', '<NAME>'), ('191080200227', '<NAME>', '9', 'https://drive.google.com/drive/folders/13cF9d8zqkVOCoYpNmutCEhrCWelB40Ai', '2019-12-20 17:00:00', 'A148 M<NAME>', 'Moch. <NAME>'), ('191080200228', '<NAME>', '9', 'https://drive.google.com/drive/folders/13cF9d8zqkVOCoYpNmutCEhrCWelB40Ai', '2019-12-19 17:00:00', 'A148 <NAME>', 'Moch. W<NAME>'), ('191080200229', '<NAME>', '14', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-30 17:00:00', 'A146 <NAME>', 'Moch. W<NAME>'), ('191080200230', '<NAME>', '9', 'https://drive.google.com/drive/folders/13cF9d8zqkVOCoYpNmutCEhrCWelB40Ai', '2019-12-25 17:00:00', 'A148 <NAME>', 'Moch. W<NAME>'), ('191080200231', '<NAME>', '9', 'https://drive.google.com/drive/folders/13cF9d8zqkVOCoYpNmutCEhrCWelB40Ai', '2019-12-26 17:00:00', 'A148 <NAME>', 'Moch. W<NAME>mansa'), ('191080200232', '<NAME>', '9', 'https://drive.google.com/drive/folders/13cF9d8zqkVOCoYpNmutCEhrCWelB40Ai', '2019-12-19 17:00:00', 'A14<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200234', '<NAME>', '18', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A145 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200235', '<NAME>', '9', 'https://lindameisaalfiyah19235-umsida.blogspot.com/2019/12/rangkuman-modu.html', '2019-12-19 17:00:00', 'A148 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200236', '<NAME>', '9', 'https://drive.google.com/drive/folders/13cF9d8zqkVOCoYpNmutCEhrCWelB40Ai', '2019-12-26 17:00:00', 'A14<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200237', 'WA<NAME>', '9', 'https://drive.google.com/drive/folders/13cF9d8zqkVOCoYpNmutCEhrCWelB40Ai', '2019-12-26 17:00:00', 'A14<NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200238', '<NAME>', '9', 'https://drive.google.com/drive/folders/13cF9d8zqkVOCoYpNmutCEhrCWelB40Ai', '2019-12-26 17:00:00', 'A148 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200239', '<NAME>', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A152 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200240', '<NAME>', '3', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A160 Dewi Eka Safitri', 'Moch. Wildan Dwiky Rochmansa'), ('191080200241', '<NAME>', '18', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A145 <NAME>', 'Moch. Wildan Dwiky Rochmansa'), ('191080200242', '<NAME>', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A157 <NAME>', '<NAME>'), ('191080200243', '<NAME>', '18', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-30 17:00:00', 'A145 <NAME>', '<NAME>'), ('191080200244', '<NAME>', '18', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A145 <NAME>', '<NAME>'), ('191080200245', '<NAME>', '18', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A145 <NAME>', '<NAME>'), ('191080200246', '<NAME>', '18', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A145 <NAME>', '<NAME>'), ('191080200248', '<NAME>', '18', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A145 <NAME>', 'Moch. <NAME>'), ('191080200249', '<NAME>', '18', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A145 <NAME>', '<NAME>'), ('191080200250', '<NAME>', '3', 'https://ict-umsida.blogspot.com/', '2019-12-20 17:00:00', 'A160 Dewi Eka Safitri', 'S<NAME>'), ('191080200251', '<NAME>', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-17 17:00:00', 'A157 <NAME>', '<NAME>'), ('191080200252', '<NAME>', '14', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2020-01-31 17:00:00', 'A150 <NAME>', 'Mo<NAME>'), ('191080200253', '<NAME>', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A157 <NAME>', 'Mo<NAME>'), ('191080200254', '<NAME>', '18', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A145 <NAME>', '<NAME>'), ('191080200255', '<NAME>', '18', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-30 17:00:00', 'A145 <NAME>', '<NAME>'), ('191080200256', 'M. SYAFIQ M', '9', 'https://drive.google.com/drive/folders/13cF9d8zqkVOCoYpNmutCEhrCWelB40Ai', '2019-12-25 17:00:00', 'A148 <NAME>', '<NAME>'), ('191080200259', '<NAME>', '18', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A145 <NAME>', '<NAME>'), ('191080200260', '<NAME>', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A157 <NAME>', '<NAME>'), ('191080200262', '<NAME>', '18', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A145 <NAME>', '<NAME>'), ('191080200263', '<NAME>', '9', 'https://rizky19263-umsida.blogspot.com/2019/12/laporan-praktikum-sistem-digital.html', '2019-12-19 17:00:00', 'A148 <NAME>', '<NAME>'), ('191080200266', '<NAME>', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A152 Mu<NAME>', '<NAME>'), ('191080200267', '<NAME>', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A152 Mu<NAME>', '<NAME>'), ('191080200268', '<NAME>', '9', 'https://drive.google.com/drive/folders/13cF9d8zqkVOCoYpNmutCEhrCWelB40Ai', '2019-12-26 17:00:00', 'A14<NAME>', '<NAME>'), ('191080200269', '<NAME>', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-26 17:00:00', 'A152 Mu<NAME>', '<NAME>'), ('191080200270', '<NAME>', '15', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('191080200273', 'AL<NAME> K', '6', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-22 17:00:00', 'A157 Nurtia Suryani', 'Moch. W<NAME>'), ('191080200275', 'ENDAH NURVITA S', '15', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A144 Aga Dandi P.', 'Moch. <NAME>'), ('191080200279', '<NAME> R', '15', 'https://drive.google.com/drive/u/1/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-30 17:00:00', 'A144 Aga Dandi P.', '<NAME>'), ('191080200280', 'DINI APRILIA P', '12', 'https://drive.google.com/drive/folders/1yfi2s8wVqyPFrASMKNRIs29uNhwjBwDv', '2019-12-29 17:00:00', 'A152 Mu<NAME>', 'Moch. <NAME>'); -- -------------------------------------------------------- -- -- Struktur dari tabel `rapat` -- CREATE TABLE `rapat` ( `id_rapat` int(11) NOT NULL, `jenis_rapat` varchar(20) NOT NULL, `tanggal_rapat` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `filename_rapat` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `rapat` -- INSERT INTO `rapat` (`id_rapat`, `jenis_rapat`, `tanggal_rapat`, `filename_rapat`) VALUES (19, 'Rapat Bulanan', '2020-02-15 17:00:00', 'rapatbulanan_160220.doc'), (20, 'Rapat Mingguan', '2020-02-27 17:00:00', 'rapatminggu_280220.doc'), (21, 'Rapat Mingguan', '2020-03-05 17:00:00', 'rapatminggu_060320.doc'); -- -- Indexes for dumped tables -- -- -- Indexes for table `agenda_aslab` -- ALTER TABLE `agenda_aslab` ADD PRIMARY KEY (`id_agenda`); -- -- Indexes for table `asistenpraktikum` -- ALTER TABLE `asistenpraktikum` ADD PRIMARY KEY (`id_asisten`,`nim_asisten`); -- -- Indexes for table `bugreport` -- ALTER TABLE `bugreport` ADD PRIMARY KEY (`id_bug`); -- -- Indexes for table `div_itsupport` -- ALTER TABLE `div_itsupport` ADD PRIMARY KEY (`id_itsupport`); -- -- Indexes for table `div_itsupport_agenda` -- ALTER TABLE `div_itsupport_agenda` ADD UNIQUE KEY `id_agenda` (`id_agenda`); -- -- Indexes for table `files` -- ALTER TABLE `files` ADD PRIMARY KEY (`id_sop`); -- -- Indexes for table `lab_algoprog` -- ALTER TABLE `lab_algoprog` ADD PRIMARY KEY (`id_algoprog`); -- -- Indexes for table `lab_jarkom` -- ALTER TABLE `lab_jarkom` ADD PRIMARY KEY (`id_jarkom`); -- -- Indexes for table `lab_rpl` -- ALTER TABLE `lab_rpl` ADD PRIMARY KEY (`id_rpl`); -- -- Indexes for table `lab_server` -- ALTER TABLE `lab_server` ADD PRIMARY KEY (`id_server`); -- -- Indexes for table `lab_sistemoperasi` -- ALTER TABLE `lab_sistemoperasi` ADD PRIMARY KEY (`id_sistemoperasi`); -- -- Indexes for table `lab_softcomputing` -- ALTER TABLE `lab_softcomputing` ADD PRIMARY KEY (`id_softcomputing`); -- -- Indexes for table `lpj_kegiatan` -- ALTER TABLE `lpj_kegiatan` ADD PRIMARY KEY (`id_lpj`); -- -- Indexes for table `mahasiswa` -- ALTER TABLE `mahasiswa` ADD PRIMARY KEY (`nim_mahasiswa`); -- -- Indexes for table `prak01_algoprog` -- ALTER TABLE `prak01_algoprog` ADD PRIMARY KEY (`nim_praktikum`); -- -- Indexes for table `prak02_algostruk` -- ALTER TABLE `prak02_algostruk` ADD PRIMARY KEY (`nim_praktikum`); -- -- Indexes for table `prak03_basisdata` -- ALTER TABLE `prak03_basisdata` ADD PRIMARY KEY (`nim_praktikum`); -- -- Indexes for table `prak04_pbo` -- ALTER TABLE `prak04_pbo` ADD PRIMARY KEY (`nim_praktikum`); -- -- Indexes for table `prak05_sistemoperasi` -- ALTER TABLE `prak05_sistemoperasi` ADD PRIMARY KEY (`nim_praktikum`); -- -- Indexes for table `prak06_web` -- ALTER TABLE `prak06_web` ADD PRIMARY KEY (`nim_praktikum`); -- -- Indexes for table `prak07_jarkom` -- ALTER TABLE `prak07_jarkom` ADD PRIMARY KEY (`nim_praktikum`); -- -- Indexes for table `prak08_rpl` -- ALTER TABLE `prak08_rpl` ADD PRIMARY KEY (`nim_praktikum`); -- -- Indexes for table `prak09_sisdig` -- ALTER TABLE `prak09_sisdig` ADD PRIMARY KEY (`nim_praktikum`); -- -- Indexes for table `rapat` -- ALTER TABLE `rapat` ADD PRIMARY KEY (`id_rapat`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `bugreport` -- ALTER TABLE `bugreport` MODIFY `id_bug` int(2) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `div_itsupport` -- ALTER TABLE `div_itsupport` MODIFY `id_itsupport` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `div_itsupport_agenda` -- ALTER TABLE `div_itsupport_agenda` MODIFY `id_agenda` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `files` -- ALTER TABLE `files` MODIFY `id_sop` int(2) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `lab_algoprog` -- ALTER TABLE `lab_algoprog` MODIFY `id_algoprog` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `lab_jarkom` -- ALTER TABLE `lab_jarkom` MODIFY `id_jarkom` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `lab_rpl` -- ALTER TABLE `lab_rpl` MODIFY `id_rpl` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lab_server` -- ALTER TABLE `lab_server` MODIFY `id_server` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lab_sistemoperasi` -- ALTER TABLE `lab_sistemoperasi` MODIFY `id_sistemoperasi` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `lab_softcomputing` -- ALTER TABLE `lab_softcomputing` MODIFY `id_softcomputing` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `lpj_kegiatan` -- ALTER TABLE `lpj_kegiatan` MODIFY `id_lpj` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `rapat` -- ALTER TABLE `rapat` MODIFY `id_rapat` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
 CREATE VIEW [catalog].[execution_property_override_values] AS SELECT [property_id], [execution_id], [property_path], [property_value], [sensitive] FROM [internal].[execution_property_override_values] WHERE [execution_id] in (SELECT [id] FROM [internal].[current_user_readable_operations]) OR (IS_MEMBER('ssis_admin') = 1) OR (IS_SRVROLEMEMBER('sysadmin') = 1)
select it from the listserv section in NYUHome or send a blank, plain text, email to &lt;a moz-do-not-send="true" href="mailto:<EMAIL>" target="_blank"&gt;<EMAIL>&lt;/a&gt;.&lt;p&gt;&#xA0;&lt;/p&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a onclick="return toggleMe('faq8')"&gt;Is the Data Services lab open at night or the on the weekends?&lt;/a&gt;&lt;/p&gt;&lt;div id="faq8" style="display: none;"&gt;The Data Services lab is not currently staffed beyond 8:00pm (Mondays and Tuesdays), 6:00pm (Wednesdays, Thursdays and Fridays) or during the weekends; however, the Data Services lab workstations are available for use whenever the &lt;a target="_blank" title="Library Stack Hours" href="http://library.nyu.edu/about/hours/"&gt;Library's stacks are open&lt;/a&gt;.&lt;p&gt;&#xA0;&lt;/p&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a onclick="return toggleMe('faq9')"&gt;I would like access to or support with a software package that is not list select Tamiment from the list of libraries in the Refine My Results section on the left-hand side of the page.&lt;/p&gt; select documents from the public record office, london, england, relating to the colonies of barbados, british guiana, jamaica, and trinidad)&lt;/i&gt;. Port-of-Spain: Trinidad Publishing.&#xA0;&lt;/span&gt;&lt;/p&gt; select assets from a set of choices designated by an employer. For over half of 401K-plan participants, retirement savings represent their sole financial asset. Yet to date there has been no study of the adequacy of the choices offered by 401K plans. This paper analyzes the adequacy and characteristics of the choices offered to 401K-plan participants for over 400 plans. We find that, for 62% of the plans, the types of choices offered are inadequate, and that over a 20-year period this makes a difference in terminal wealth of over 300%. We find that funds included in the plans are riskier than the general population of funds in the same categories. We study the characteristics of plans that are associated with adequate investment choices, including an analysis of the use of company stock, plan size, and the use of outside consultants. When we examine one category of investment choices, S&amp;P 500 index funds, we find that the index funds chosen by 401K-plan administrators are on averag select it from the listserv section within NYUHome or send a blank, plain text, email to &lt;a moz-do-not-send="true" href="mailto:<EMAIL>" target="_blank"&gt;<EMAIL>&lt;/a&gt;.&lt;p&gt;&#xA0;&lt;/p&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a onclick="return toggleMe('faq8')"&gt;Is the DSS open at night or the on the weekends?&lt;/a&gt;&lt;/p&gt;&lt;div id="faq8" style="display: none;"&gt;The DSS is not currently staffed beyond 8:00pm (Wednesdays and Thursdays), 6:00pm (Mondays, Tuesdays and Fridays) or during the weekends, however the DSS workstations are available for use whenever the &lt;a target="_blank" title="Library Stack Hours" href="http://library.nyu.edu/about/hours/spring.html"&gt;Library's stacks are open&lt;/a&gt;.&lt;p&gt;&#xA0;&lt;/p&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a onclick="return toggleMe('faq9')"&gt;I would like access to or support with a software package that is not listed as a DSS supported softwa select RefWorks from the popular databases link on the right hand side of the screen. &lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;/ul&gt;&lt;p&gt;* If off campus, you'll be prompted to enter your NET ID and password. You'll still need to login to RefWorks using unique login information.&lt;/p&gt;
ALTER TABLE "public"."users" ADD COLUMN "useAvatar" boolean NOT NULL DEFAULT true;
CREATE TABLE "plugin_sms_to_wordpress" ( "id_user" INTEGER PRIMARY KEY, "wp_username" VARCHAR(50) NOT NULL, "wp_password" VARCHAR(255) NOT NULL, "wp_url" VARCHAR(100) NOT NULL );
drop table if exists gh_ost_test; create table gh_ost_test ( id int auto_increment, i int not null, dt0 datetime(6), dt1 datetime(6), ts2 timestamp(6), updated tinyint unsigned default 0, primary key(id), key i_idx(i) ) auto_increment=1; drop event if exists gh_ost_test; delimiter ;; create event gh_ost_test on schedule every 1 second starts current_timestamp ends current_timestamp + interval 60 second on completion not preserve enable do begin insert into gh_ost_test values (null, 11, now(), now(), now(), 0); update gh_ost_test set dt1='2016-10-31 11:22:33.444', updated = 1 where i = 11 order by id desc limit 1; insert into gh_ost_test values (null, 13, now(), now(), now(), 0); update gh_ost_test set ts1='2016-11-01 11:22:33.444', updated = 1 where i = 13 order by id desc limit 1; end ;;
-- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0. -- MySQL core database, version 3.4.2 CREATE TABLE IF NOT EXISTS `activedownload` ( `activedownload_id` bigint(20) NOT NULL AUTO_INCREMENT, `ip` varchar(100) NOT NULL DEFAULT '', `date_creation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `last_update` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`activedownload_id`), KEY (`ip`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `assetstore` ( `assetstore_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `path` varchar(512) NOT NULL, `type` tinyint(4) NOT NULL, PRIMARY KEY (`assetstore_id`), KEY (`name`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `bitstream` ( `bitstream_id` bigint(20) NOT NULL AUTO_INCREMENT, `itemrevision_id` bigint(20) NOT NULL, `name` varchar(255) NOT NULL, `mimetype` varchar(30) NOT NULL, `sizebytes` bigint(20) NOT NULL, `checksum` varchar(64) NOT NULL, `path` varchar(512) NOT NULL, `assetstore_id` int(11) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`bitstream_id`), KEY (`itemrevision_id`), KEY (`name`), KEY (`checksum`), KEY (`assetstore_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `community` ( `community_id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `description` text NOT NULL, `creation` timestamp, `privacy` tinyint(4) NOT NULL, `folder_id` bigint(20), `admingroup_id` bigint(20), `moderatorgroup_id` bigint(20), `membergroup_id` bigint(20) NOT NULL DEFAULT '0', `view` bigint(20) NOT NULL DEFAULT '0', `can_join` int(11) DEFAULT '0', `uuid` varchar(255) DEFAULT '', PRIMARY KEY (`community_id`), KEY (`folder_id`), KEY (`name`), KEY (`admingroup_id`), KEY (`moderatorgroup_id`), KEY (`membergroup_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `communityinvitation` ( `communityinvitation_id` bigint(20) NOT NULL AUTO_INCREMENT, `community_id` bigint(20), `user_id` bigint(20), `group_id` bigint(20), PRIMARY KEY (`communityinvitation_id`), UNIQUE KEY `user_group_id` (`user_id`, `group_id`), KEY (`community_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `feed` ( `feed_id` bigint(20) NOT NULL AUTO_INCREMENT, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `user_id` bigint(20) NOT NULL, `type` tinyint(4) NOT NULL, `resource` varchar(255) NOT NULL, PRIMARY KEY (`feed_id`), KEY (`user_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `feed2community` ( `feed_id` bigint(20) NOT NULL, `community_id` bigint(20) NOT NULL, UNIQUE KEY `community_feed_id` (`community_id`, `feed_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `feedpolicygroup` ( `feed_id` bigint(20) NOT NULL, `group_id` bigint(20) NOT NULL, `policy` tinyint(4) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, UNIQUE KEY `feed_group_id` (`feed_id`, `group_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `feedpolicyuser` ( `feed_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `policy` tinyint(4) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, UNIQUE KEY `feed_user_id` (`feed_id`, `user_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `folder` ( `folder_id` bigint(20) NOT NULL AUTO_INCREMENT, `left_index` bigint(20) NOT NULL, `right_index` bigint(20) NOT NULL, `parent_id` bigint(20) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL, `description` text NOT NULL, `date_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `view` bigint(20) NOT NULL DEFAULT '0', `teaser` varchar(255) DEFAULT '', `privacy_status` int(11) DEFAULT '0', `uuid` varchar(255) DEFAULT '', `date_creation` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`folder_id`), KEY (`parent_id`), KEY (`left_index`), KEY (`right_index`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `folderpolicygroup` ( `folder_id` bigint(20) NOT NULL, `group_id` bigint(20) NOT NULL, `policy` tinyint(4) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, UNIQUE KEY `folder_group_id` (`folder_id`, `group_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `folderpolicyuser` ( `folder_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `policy` tinyint(4) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, UNIQUE KEY `folder_user_id` (`folder_id`, `user_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `group` ( `group_id` bigint(20) NOT NULL AUTO_INCREMENT, `community_id` bigint(20) NOT NULL, `name` varchar(255) NOT NULL, PRIMARY KEY (`group_id`), KEY (`community_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `item` ( `item_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `date_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `description` text NOT NULL, `type` int(11) NOT NULL, `view` bigint(20) NOT NULL DEFAULT '0', `download` bigint(20) NOT NULL DEFAULT '0', `sizebytes` bigint(20) NOT NULL DEFAULT '0', `privacy_status` int(11) DEFAULT '0', `uuid` varchar(255) DEFAULT '', `date_creation` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `thumbnail_id` bigint(20), PRIMARY KEY (`item_id`), KEY (`name`), KEY (`thumbnail_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `item2folder` ( `item_id` bigint(20) NOT NULL, `folder_id` bigint(20) NOT NULL, KEY (`item_id`), KEY (`folder_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `itempolicygroup` ( `item_id` bigint(20) NOT NULL, `group_id` bigint(20) NOT NULL, `policy` tinyint(4) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, UNIQUE KEY `item_group_id` (`item_id`, `group_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `itempolicyuser` ( `item_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `policy` tinyint(4) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, UNIQUE KEY `item_user_id` (`item_id`, `user_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `itemrevision` ( `itemrevision_id` int(11) NOT NULL AUTO_INCREMENT, `item_id` bigint(20) NOT NULL, `revision` int(11) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `changes` text NOT NULL, `user_id` int(11) NOT NULL, `uuid` varchar(255) DEFAULT '', `license_id` bigint(20), PRIMARY KEY (`itemrevision_id`), UNIQUE KEY `item_revision_id` (`item_id`, `revision`), KEY (`user_id`), KEY (`date`), KEY (`license_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `license` ( `license_id` bigint(20) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `fulltext` text NOT NULL, PRIMARY KEY (`license_id`) ) DEFAULT CHARSET=utf8; INSERT INTO `license` VALUES ('1', 'Public (PDDL)', '**You are free:**\n\n* To Share: To copy, distribute and use the database.\n* To Create: To produce works from the database.\n* To Adapt: To modify, transform, and build upon the database.\n\n[Full License Information](http://opendatacommons.org/licenses/pddl/summary)'), ('2', 'Public: Attribution (ODC-BY)', '**You are free:**\n\n* To Share: To copy, distribute and use the database.\n* To Create: To produce works from the database.\n* To Adapt: To modify, transform, and build upon the database.\n\n**As long as you:**\n\n* Attribute: You must attribute any public use of the database, or works produced from the database, in the manner specified in the license. For any use or redistribution of the database, or works produced from it, you must make clear to others the license of the database and keep intact any notices on the original database.\n\n[Full License Information](http://opendatacommons.org/licenses/by/summary)'), ('3', 'Public: Attribution, Share-Alike (ODbL)', '**You are free:**\n\n* To Share: To copy, distribute and use the database.\n* To Create: To produce works from the database.\n* To Adapt: To modify, transform, and build upon the database.\n\n**As long as you:**\n\n* Attribute: You must attribute any public use of the database, or works produced from the database, in the manner specified in the license. For any use or redistribution of the database, or works produced from it, you must make clear to others the license of the database and keep intact any notices on the original database.\n* Share-Alike: If you publicly use any adapted version of this database, or works produced from an adapted database, you must also offer that adapted database under the ODbL.\n* Keep open: If you redistribute the database, or an adapted version of it, then you may use technological measures that restrict the work (such as DRM) as long as you also redistribute a version without such measures.\n\n[Full License Information](http://opendatacommons.org/licenses/odbl/summary)'), ('4', 'Private: All Rights Reserved', 'This work is copyrighted by its author or licensor. You must not share, distribute, or modify this work without the prior consent of the author or licensor.'), ('5', 'Public: Attribution (CC BY 3.0)', '**You are free:**\n\n* To Share: To copy, distribute and transmit the work.\n* To Remix: To adapt the work.\n* To make commercial use of the work.\n\n**Under the following conditions:**\n\n* Attribution: You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work).\n\n[Full License Information](http://creativecommons.org/licenses/by/3.0/)'), ('6', 'Public: Attribution, Share-Alike (CC BY-SA 3.0)', '**You are free:**\n\n* To Share: To copy, distribute and transmit the work.\n* To Remix: To adapt the work.\n* To make commercial use of the work.\n\n**Under the following conditions:**\n\n* Attribution: You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work).\n* Share-Alike: If you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one.\n\n[Full License Information](http://creativecommons.org/licenses/by-sa/3.0/)'), ('7', 'Public: Attribution, No Derivative Works (CC BY-ND 3.0)', '**You are free:**\n\n* To Share: To copy, distribute and transmit the work.\n* To make commercial use of the work.\n\n**Under the following conditions:**\n\n* Attribution: You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work).\n* No Derivative Works: You may not alter, transform, or build upon this work.\n\n[Full License Information](http://creativecommons.org/licenses/by-nd/3.0/)'), ('8', 'Public: Attribution, Non-Commercial (CC BY-NC 3.0)', '**You are free:**\n\n* To Share: To copy, distribute and transmit the work.\n* To Remix: To adapt the work.\n\n**Under the following conditions:**\n\n* Attribution: You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work).\n* Non-Commercial: You may not use this work for commercial purposes.\n\n[Full License Information](http://creativecommons.org/licenses/by-nc/3.0/)'), ('9', 'Public: Attribution, Non-Commercial, Share-Alike (CC BY-NC-SA 3.0)', '**You are free:**\n\n* To Share: To copy, distribute and transmit the work.\n* To Remix: To adapt the work.\n\n**Under the following conditions:**\n\n* Attribution: You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work).\n* Non-Commercial: You may not use this work for commercial purposes.\n* Share-Alike: If you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one.\n\n[Full License Information](http://creativecommons.org/licenses/by-nc-sa/3.0/)'), ('10', 'Public: Attribution, Non-Commercial, No Derivative Works (CC BY-NC-ND 3.0)', '**You are free:**\n\n* To Share: To copy, distribute and transmit the work.\n\n**Under the following conditions:**\n\n* Attribution: You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work).\n* Non-Commercial: You may not use this work for commercial purposes.\n* No Derivative Works: You may not alter, transform, or build upon this work.\n\n[Full License Information](http://creativecommons.org/licenses/by-nc-nd/3.0/)'); CREATE TABLE IF NOT EXISTS `metadata` ( `metadata_id` bigint(20) NOT NULL AUTO_INCREMENT, `metadatatype` int(11) DEFAULT '0', `element` varchar(255) NOT NULL, `qualifier` varchar(255) NOT NULL, PRIMARY KEY (`metadata_id`), KEY (`metadatatype`) ) DEFAULT CHARSET=utf8; INSERT INTO `metadata` VALUES ('1', '0', 'contributor', 'author'), ('2', '0', 'date', 'uploaded'), ('3', '0', 'date', 'issued'), ('4', '0', 'date', 'created'), ('5', '0', 'identifier', 'citation'), ('6', '0', 'identifier', 'uri'), ('7', '0', 'identifier', 'pubmed'), ('8', '0', 'identifier', 'doi'), ('9', '0', 'description', 'general'), ('10', '0', 'description', 'provenance'), ('11', '0', 'description', 'sponsorship'), ('12', '0', 'description', 'publisher'), ('13', '0', 'subject', 'keyword'), ('14', '0', 'subject', 'ocis'); CREATE TABLE IF NOT EXISTS `metadatavalue` ( `metadatavalue_id` bigint(20) NOT NULL AUTO_INCREMENT, `metadata_id` bigint(20) NOT NULL, `itemrevision_id` bigint(20) NOT NULL, `value` varchar(1024) NOT NULL, PRIMARY KEY (`metadatavalue_id`), KEY (`itemrevision_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `module` ( `module_id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `uuid` varchar(36) NOT NULL, `current_major_version` int(11) NOT NULL DEFAULT '0', `current_minor_version` int(11) NOT NULL DEFAULT '0', `current_patch_version` int(11) NOT NULL DEFAULT '0', `enabled` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`module_id`), UNIQUE KEY (`name`), UNIQUE KEY (`uuid`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `newuserinvitation` ( `newuserinvitation_id` bigint(20) NOT NULL AUTO_INCREMENT, `auth_key` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `inviter_id` bigint(20) NOT NULL, `community_id` bigint(20) NOT NULL, `group_id` bigint(20) NOT NULL, `date_creation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`newuserinvitation_id`), KEY (`email`), KEY (`inviter_id`), KEY (`group_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `password` ( `hash` varchar(128) NOT NULL, PRIMARY KEY (`hash`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `pendinguser` ( `pendinguser_id` bigint(20) NOT NULL AUTO_INCREMENT, `auth_key` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `firstname` varchar(255) NOT NULL, `lastname` varchar(255) NOT NULL, `date_creation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `salt` varchar(64) NOT NULL DEFAULT '', PRIMARY KEY (`pendinguser_id`), KEY `lastname_firstname` (`lastname`, `firstname`), KEY (`email`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `progress` ( `progress_id` bigint(20) NOT NULL AUTO_INCREMENT, `message` text NOT NULL, `current` bigint(20) NOT NULL, `maximum` bigint(20) NOT NULL, `date_creation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `last_update` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`progress_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `setting` ( `setting_id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `module` varchar(255) NOT NULL, `value` text, PRIMARY KEY (`setting_id`), UNIQUE KEY `module_name` (`name`, `module`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `token` ( `token_id` bigint(20) NOT NULL AUTO_INCREMENT, `userapi_id` bigint(20) NOT NULL, `token` varchar(64) NOT NULL, `expiration_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`token_id`), KEY (`userapi_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `user` ( `user_id` bigint(20) NOT NULL AUTO_INCREMENT, `firstname` varchar(255) NOT NULL, `company` varchar(255), `thumbnail` varchar(255), `lastname` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `privacy` tinyint(4) NOT NULL DEFAULT '0', `admin` tinyint(4) NOT NULL DEFAULT '0', `folder_id` bigint(20), `creation` timestamp, `view` bigint(20) NOT NULL DEFAULT '0', `uuid` varchar(255) DEFAULT '', `city` varchar(100) DEFAULT '', `country` varchar(100) DEFAULT '', `website` varchar(255) DEFAULT '', `biography` text, `dynamichelp` tinyint(4) DEFAULT '1', `hash_alg` varchar(32) NOT NULL DEFAULT '', `salt` varchar(64) NOT NULL DEFAULT '', PRIMARY KEY (`user_id`), KEY `lastname_firstname` (`lastname`, `firstname`), KEY (`email`), KEY (`folder_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `user2group` ( `user_id` bigint(20) NOT NULL, `group_id` bigint(20) NOT NULL, UNIQUE KEY `group_user_id` (`group_id`, `user_id`) ) DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `userapi` ( `userapi_id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `apikey` varchar(64) NOT NULL, `application_name` varchar(255) NOT NULL, `token_expiration_time` int(11) NOT NULL, `creation_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`userapi_id`), UNIQUE KEY `user_id_application_name` (`user_id`, `application_name`) ) DEFAULT CHARSET=utf8;
<reponame>aravi5/drill-test-framework select count(*) from j1 where c_timestamp not in ( select c_timestamp from j5) ;
DROP PROCEDURE IF EXISTS `CreateAssetGroup`; CREATE PROCEDURE `CreateAssetGroup` (inOrgID VARCHAR(36), _GroupID INT, _ScannerSourceID NVARCHAR(36), _ScannerSourceConfigID VARCHAR(36)) #BEGIN# INSERT INTO AssetGroup(OrganizationID, GroupID, ScannerSourceID, ScannerSourceConfigID) VALUES (inOrgID, _GroupID, _ScannerSourceID, _ScannerSourceConfigID);
<gh_stars>0 {{ config( alias='mart_hubspot_email_event_click', enabled=fivetran_utils.enabled_vars(['hubspot_marketing_enabled','hubspot_email_event_enabled','hubspot_email_event_click_enabled']) ) }} {{ email_events_joined(var('email_event_click')) }}
-- -- Copyright (C) 2017-2019 HERE Europe B.V. -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- SPDX-License-Identifier: Apache-2.0 -- License-Filename: LICENSE -- -- SET search_path=xyz,h3,public,topology -- CREATE EXTENSION IF NOT EXISTS postgis SCHEMA public; -- CREATE EXTENSION IF NOT EXISTS postgis_topology; -- CREATE EXTENSION IF NOT EXISTS tsm_system_rows SCHEMA public; -- DROP FUNCTION xyz_index_status(); -- DROP FUNCTION xyz_create_idxs_over_dblink(text, integer, integer, integer, text[], text, text, text,text, integer, text); -- DROP FUNCTION xyz_space_bbox(text, text, integer); -- DROP FUNCTION xyz_update_dummy_v5(); -- DROP FUNCTION xyz_index_check_comments(text, text); -- DROP FUNCTION xyz_index_creation_on_property_object(text, text, text, text, text, character); -- DROP FUNCTION xyz_maintain_idxs_for_space(text, text); -- DROP FUNCTION xyz_create_idxs(text, integer, integer, integer, text[]); -- DROP FUNCTION xyz_property_path_to_array(text); -- DROP FUNCTION xyz_property_path(text); -- DROP FUNCTION xyz_property_datatype(text, text, text, integer); -- DROP FUNCTION xyz_property_statistic(text, text, integer); -- DROP FUNCTION xyz_statistic_newest_spaces_changes(text, text[], integer); -- DROP FUNCTION xyz_write_newest_idx_analyses(text); -- DROP FUNCTION xyz_write_newest_statistics(text, text[], integer); -- DROP FUNCTION xyz_statistic_all_spaces(text, text[], integer); -- DROP FUNCTION xyz_property_evaluation(text, text, text, integer); -- DROP FUNCTION xyz_index_proposals_on_properties(text, text); -- DROP FUNCTION xyz_index_creation_on_property(text, text, text, character); -- DROP FUNCTION xyz_geotype(geometry); -- DROP FUNCTION xyz_index_name_for_property(text, text, character); -- DROP FUNCTION xyz_index_list_all_available(text, text); -- DROP FUNCTION xyz_index_name_dissolve_to_property(text,text); -- DROP FUNCTION xyz_index_property_available(text, text, text); -- DROP FUNCTION xyz_property_statistic_v2(text, text, integer); -- DROP FUNCTION xyz_tag_statistic(text, text, integer); -- DROP FUNCTION xyz_statistic_searchable(jsonb); -- DROP FUNCTION xyz_statistic_xl_space(text, text, integer); -- DROP FUNCTION xyz_statistic_space(text, text); -- DROP FUNCTION xyz_statistic_xs_space(text, text); -- DROP FUNCTION xyz_create_idxs_for_space(text, text); -- DROP FUNCTION xyz_remove_unnecessary_idx(text, integer); -- DROP FUNCTION xyz_index_dissolve_datatype(text); -- DROP FUNCTION xyz_index_get_plain_propkey(text); -- DROP FUNCTION IF EXISTS xyz_qk_point2lrc(geometry, integer); -- DROP FUNCTION IF EXISTS xyz_qk_lrc2qk(integer,integer,integer); -- DROP FUNCTION IF EXISTS xyz_qk_qk2lrc(text ); -- DROP FUNCTION IF EXISTS xyz_qk_lrc2bbox(integer,integer,integer); -- DROP FUNCTION IF EXISTS xyz_qk_qk2bbox(text ); -- DROP FUNCTION IF EXISTS xyz_qk_point2qk(geometry,integer ); -- DROP FUNCTION IF EXISTS xyz_qk_bbox2zooml(geometry); -- ------ SAMPLE QUERIES ---- ------ ENV: XYZ-CIT ; SPACE: QgQCHStH ; OWNER: psql --------------------------------------------------------------------------------- -- xyz_index_status : select * from xyz_index_status(); -- xyz_create_idxs_over_dblink : select xyz_create_idxs_over_dblink('xyz', 20, 0, 2, ARRAY['postgres'], 'psql', 'xxx', 'xyz', 'localhost', 5432, 'xyz,h3,public,topology'); -- xyz_space_bbox : select * from xyz_space_bbox('xyz', 'QgQCHStH', 1000); -- xyz_update_dummy_v5 : select xyz_update_dummy_v5(); -- xyz_index_check_comments : select xyz_index_check_comments('xyz', 'QgQCHStH'); -- xyz_index_creation_on_property_object : select xyz_index_creation_on_property_object('xyz','QgQCHStH', 'feature_type', 'idx_QgQCHStH_a306a6c_a', 'number', 'a'); -- xyz_maintain_idxs_for_space : select xyz_maintain_idxs_for_space('xyz','QgQCHStH'); -- xyz_create_idxs : select xyz_create_idxs_v2('public', 20, 0, 0, ARRAY['postgres']); -- xyz_property_path_to_array : select * from xyz_property_path_to_array('foo.bar'); -- xyz_property_path : select * from xyz_property_path('foo.bar'); -- xyz_property_datatype : select * from xyz_property_datatype('xyz','QgQCHStH', 'feature_type', 1000); -- xyz_property_statistic : select key,count,searchable from xyz_property_statistic('xyz', 'QgQCHStH', 1000); -- xyz_statistic_newest_spaces_changes : select spaceid,tablesize,geometrytypes,properties,tags,count,bbox from xyz_statistic_newest_spaces_changes('xyz',ARRAY['psql'],8000); -- xyz_write_newest_idx_analyses : select xyz_write_newest_idx_analyses('xyz'); -- xyz_write_newest_statistics : select xyz_write_newest_statistics('xyz', ARRAY['psql'], 10000); -- xyz_statistic_all_spaces : select spaceid,tablesize,geometrytypes,properties,tags,count,bbox from xyz_statistic_all_spaces('xyz', ARRAY['psql'], 10000); -- xyz_property_evaluation : select count,val,jtype from xyz_property_evaluation('xyz','QgQCHStH', 'fc', 1000); -- xyz_index_proposals_on_properties : select prop_key,prop_type from xyz_index_proposals_on_properties('xyz','QgQCHStH'); -- xyz_index_creation_on_property : select xyz_index_creation_on_property('xyz','QgQCHStH', 'feature_type', 'a'); -- xyz_ext_version : select xyz_ext_version(); -- xyz_geotype : select * from xyz_geotype(ST_GeomFromText('LINESTRING(-71.160281 42.258729,-71.160837 42.259113,-71.161144 42.25932)')); -- xyz_index_name_for_property : select * from xyz_index_name_for_property('QgQCHStH', 'fc', 'm'); -- xyz_index_list_all_available : select idx_name, idx_property, src from xyz_index_list_all_available('xyz', 'QgQCHStH'); -- xyz_index_find_missing_system_indexes : select has_createdat,has_updatedat,spaceid,cnt from xyz_index_find_missing_system_indexes('xyz', ARRAY['psql']); -- xyz_index_name_dissolve_to_property : select spaceid,propkey,source from xyz_index_name_dissolve_to_property('idx_QgQCHStH_a306a6c_m','QgQCHStH'); -- xyz_index_property_available : select * from xyz_index_property_available('xyz', 'QgQCHStH', 'feature_type'); -- xyz_property_statistic_v2 : select key,count,searchable from xyz_property_statistic_v2('xyz', 'QgQCHStH', 1000); -- xyz_tag_statistic : select key,count from xyz_tag_statistic('xyz', 'QgQCHStH', 1000); -- xyz_statistic_searchable : select * from xyz_statistic_searchable('[{"searchable":true},{"searchable":false}]'); -- xyz_statistic_xl_space : select tablesize,geometrytypes,properties,tags,count,bbox,searchable from xyz_statistic_xl_space('xyz', 'QgQCHStH', 1000); -- xyz_statistic_space : select tablesize,geometrytypes,properties,tags,count,bbox,searchable from xyz_statistic_space('xyz', 'QgQCHStH'); -- xyz_statistic_xs_space : select tablesize,geometrytypes,properties,tags,count,bbox,searchable from xyz_statistic_xs_space('xyz', 'QgQCHStH'); -- xyz_create_idxs_for_space : select xyz_create_idxs_for_space('xyz', 'QgQCHStH'); -- xyz_remove_unnecessary_idx : select xyz_remove_unnecessary_idx('xyz', 10000); -- xyz_qk_grird : select xyz_qk_grird(3) -- xyz_qk_child_calculation : select select * from xyz_qk_child_calculation('012',3,null) -- xyz_count_estimation : select xyz_count_estimation('select 1') -- xyz_index_get_plain_propkey : select xyz_index_get_plain_propkey('foo.bar::string') -- xyz_index_dissolve_datatype : select xyz_index_dissolve_datatype('foo.bar::array') --------------------------------------------------------------------------------- --------------------------------------------------------------------------------- -- xyz_qk_point2lrc : select * from xyz_qk_point2lrc( ST_GeomFromText( 'POINT( -64.78767 32.29703)' ), 3 ); -- xyz_qk_lrc2qk : select xyz_qk_lrc2qk(3,2,3); -- xyz_qk_qk2lrc : select xyz_qk_qk2lrc('032'); -- xyz_qk_lrc2bbox : select ST_ASText(xyz_qk_lrc2bbox(3,2,3)); -- xyz_qk_qk2bbox : select xyz_qk_qk2bbox( '001' ); -- xyz_qk_point2qk : select xyz_qk_point2qk(ST_GeomFromText( 'POINT( -64.78767 32.29703)' ), 3) -- xyz_qk_bbox2zooml : select xyz_qk_bbox2zooml( -- ST_GeomFromText('POLYGON((49.1430885846288 -122.003173828125,49.1430885846288 -122.001800537109,49.1439869452885 -- -122.001800537109,49.1439869452885 -122.003173828125,49.1430885846288 -122.003173828125))' )); --------------------------------------------------------------------------------- --------------------------------------------------------------------------------- ------ XYZ Index maintenance table : xyz_config.xyz_idxs_status maintenance ---- --------------------------------------------------------------------------------- ------ Field : written through : --------------------------------------------------------------------------------- ------ runts : xyz_write_newest_statistics() : timestamp of last auto-index run ------ idx_creation_finished : xyz_write_newest_statistics() : true if all Indices are available (Auto+On-Demand Indexing). Get set to false if more than 3000 ------ xyz_maintain_idxs_for_space() rows changes in the table, or if new On-Demand Indices are getting created. ------ idx_proposals : xyz_write_newest_idx_analyses() : select * from xyz_index_proposals_on_properties('xyz','QgQCHStH'); ------ xyz_maintain_idxs_for_space() ------ idx_available : xyz_write_newest_statistics() : select * from xyz_index_list_all_available('xyz', 'QgQCHStH'); ------ xyz_maintain_idxs_for_space() ------ xyz_maintain_idxs_for_space() ------ xyz_index_check_comments() ------ spaceid : xyz_write_newest_statistics() : id of XYZ-space ------ count : xyz_write_newest_statistics() : row count of XYZ-space ------ prop_stat : xyz_write_newest_statistics() : select properties ->'value' from xyz_statistic_xl_space('xyz', 'QgQCHStH', 1000); ------ schem : xyz_write_newest_statistics() : schema in which the XYZ-Spaces are located ------ idx_manual : xyz-psql-connector : On-Demand Index configuration ------ ---- -- select runts,idx_creation_finished,idx_proposals,idx_available,spaceid,count,prop_stat,schem,idx_manual -- from xyz_config.xyz_idxs_status -- where spaceid != 'idx_in_progess' order by count desc ------------------------------------------------------------------------------------------------ ------------------------------------------------ ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION xyz_ext_version() RETURNS integer AS $BODY$ select 132 $BODY$ LANGUAGE sql IMMUTABLE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_index_dissolve_datatype(text) -- DROP FUNCTION xyz_index_dissolve_datatype(text); CREATE OR REPLACE FUNCTION xyz_index_dissolve_datatype(propkey text) RETURNS text AS $BODY$ /** * Description: Get a specified datatype from a propkey. * * prefix = foo.bar::array => array * * Parameters: * @propkey - path of json-key inside jsondata->'properties' object (eg. foo | foo.bar) * * Returns: * datatype - array / object / string / number / boolean */ DECLARE datatype TEXT; BEGIN IF (POSITION('::' in propkey) > 0) THEN datatype := lower(substring(propkey, position('::' in propkey)+2)); IF datatype IN ('object','array','number','string','boolean') THEN RETURN datatype; END IF; END IF; RETURN NULL; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_index_get_plain_propkey(text) -- DROP FUNCTION xyz_index_get_plain_propkey(text); CREATE OR REPLACE FUNCTION xyz_index_get_plain_propkey(propkey text) RETURNS text AS $BODY$ /** * Description: Get the plain propkey. * * prefix = foo.bar::array => foo.bar * * Parameters: * @propkey - path of json-key inside jsondata->'properties' object (eg. foo | foo.bar) * * Returns: * propkey - json-key without datatype */ DECLARE datatype TEXT; BEGIN IF (POSITION('::' in propkey) > 0) THEN datatype := lower(substring(propkey, position('::' in propkey)+2)); IF datatype IN ('object','array','number','string','boolean') THEN return substring(propkey, 0, position('::' in propkey)); END IF; END IF; RETURN propkey; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION xyz_trigger_historywriter_full() RETURNS trigger AS $BODY$ DECLARE oldest_uuids text[]; DECLARE max_version_cnt integer := COALESCE(TG_ARGV[0]::NUMERIC::INTEGER,10); DECLARE max_version_diff integer; DECLARE uuid_deletes text[]; BEGIN IF TG_OP = 'INSERT' THEN EXECUTE format('INSERT INTO' ||' %s."%s_hst" (uuid,jsondata,geo)' ||' VALUES( %L,%L,%L)',TG_TABLE_SCHEMA, TG_TABLE_NAME, NEW.jsondata->'properties'->'@ns:com:here:xyz'->>'uuid', NEW.jsondata, NEW.geo); RETURN NEW; END IF; IF max_version_cnt != -1 THEN --IF MORE THAN max_version_cnt ARE EXISTING DELETE OLDEST ENTRIES EXECUTE format('SELECT array_agg(uuid)' || 'FROM( ' || ' select uuid FROM %s."%s_hst" ' || ' WHERE jsondata->>''id'' = %L ORDER BY jsondata->''properties''->''@ns:com:here:xyz''->''updatedAt'' ASC' || ') A',TG_TABLE_SCHEMA, TG_TABLE_NAME, OLD.jsondata->>'id' ) into oldest_uuids; max_version_diff := array_length(oldest_uuids,1) - max_version_cnt; IF max_version_diff >= 0 THEN -- DELETE OLDEST ENTRIES FOR i IN 1..max_version_diff+1 LOOP select array_append(uuid_deletes, oldest_uuids[i]) INTO uuid_deletes; END LOOP; EXECUTE format('DELETE FROM %s."%s_hst" WHERE uuid = ANY(%L)',TG_TABLE_SCHEMA, TG_TABLE_NAME, uuid_deletes); END IF; END IF; IF TG_OP = 'UPDATE' THEN EXECUTE format('INSERT INTO' ||' %s."%s_hst" (uuid,jsondata,geo)' ||' VALUES( %L,%L,%L)',TG_TABLE_SCHEMA, TG_TABLE_NAME, NEW.jsondata->'properties'->'@ns:com:here:xyz'->>'uuid', NEW.jsondata, NEW.geo); RETURN NEW; ELSEIF TG_OP = 'DELETE' THEN EXECUTE format('INSERT INTO' ||' %s."%s_hst" (uuid,jsondata,geo)' ||' VALUES( %L,%L,%L)',TG_TABLE_SCHEMA, TG_TABLE_NAME, OLD.jsondata->'properties'->'@ns:com:here:xyz'->>'uuid' || '_deleted', jsonb_set(OLD.jsondata,'{properties,@ns:com:here:xyz}', ('{"deleted":true}'::jsonb || (OLD.jsondata->'properties'->'@ns:com:here:xyz')::jsonb)), OLD.geo); RETURN OLD; END IF; END; $BODY$ language plpgsql; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION xyz_trigger_historywriter() RETURNS trigger AS $BODY$ DECLARE path text[]; DECLARE max_version_cnt integer := COALESCE(TG_ARGV[0]::NUMERIC::INTEGER,10); DECLARE max_version_diff integer; DECLARE uuid_deletes text[]; BEGIN IF max_version_cnt != -1 THEN --IF MORE THAN max_version_cnt ARE EXISTING DELETE OLDEST ENTRIES EXECUTE format('SELECT array_agg(uuid)' || 'FROM( ' || ' select uuid FROM %s."%s_hst" ' || ' WHERE jsondata->>''id'' = %L ORDER BY jsondata->''properties''->''@ns:com:here:xyz''->''updatedAt'' ASC' || ') A',TG_TABLE_SCHEMA, TG_TABLE_NAME, OLD.jsondata->>'id' ) into path; max_version_diff := array_length(path,1) - max_version_cnt; IF max_version_diff >= 0 THEN -- DELETE OLDEST ENTRIES FOR i IN 1..max_version_diff+1 LOOP select array_append(uuid_deletes, path[i]) INTO uuid_deletes; END LOOP; EXECUTE format('DELETE FROM %s."%s_hst" WHERE uuid = ANY(%L)',TG_TABLE_SCHEMA, TG_TABLE_NAME, uuid_deletes); END IF; END IF; IF TG_OP = 'UPDATE' THEN EXECUTE format('INSERT INTO' ||' %s."%s_hst" (uuid,jsondata,geo)' ||' VALUES( %L,%L,%L)',TG_TABLE_SCHEMA, TG_TABLE_NAME, OLD.jsondata->'properties'->'@ns:com:here:xyz'->>'uuid', OLD.jsondata, OLD.geo); RETURN NEW; ELSEIF TG_OP = 'DELETE' THEN EXECUTE format('INSERT INTO' ||' %s."%s_hst" (uuid,jsondata,geo)' ||' VALUES( %L,%L,%L)',TG_TABLE_SCHEMA, TG_TABLE_NAME, OLD.jsondata->'properties'->'@ns:com:here:xyz'->>'uuid', jsonb_set(OLD.jsondata,'{properties,@ns:com:here:xyz}', ('{"deleted":true}'::jsonb || (OLD.jsondata->'properties'->'@ns:com:here:xyz')::jsonb)), OLD.geo); RETURN OLD; END IF; END; $BODY$ language plpgsql; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION xyz_count_estimation(query text) RETURNS integer AS $BODY$ DECLARE rec record; rows integer; BEGIN FOR rec IN EXECUTE 'EXPLAIN ' || query LOOP rows := substring(rec."QUERY PLAN" FROM ' rows=([[:digit:]]+)'); EXIT WHEN rows IS NOT NULL; END LOOP; --IF ROWS <= 1 THEN -- RETURN null; --END IF; RETURN rows; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION xyz_qk_child_calculation(quadkey text,resolution integer, result text[]) RETURNS TEXT[] AS $BODY$ DECLARE i integer := 0; BEGIN IF resolution = 0 THEN select into result array_append(result, quadkey); return result; END IF; resolution := resolution-1; LOOP select into result xyz_qk_child_calculation(concat(quadkey,i),resolution,result); EXIT WHEN i = 3; i := i + 1; END LOOP; RETURN result; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_index_status() -- DROP FUNCTION xyz_index_status(); CREATE OR REPLACE FUNCTION xyz_index_status() RETURNS INTEGER AS $BODY$ /** * Description: Analyzes through pg_stat_activity table if an Index relevant process is running. * Thereto are counting: xyz_write_newest_statistics(..), xyz_write_newest_idx_analyses(..), xyz_create_idxs_over_dblink * * Returns: * Integer - process detection via bitmask * ((status & (1<<0)) == (1<<0) = statistics creation is running * ((status & (1<<1)) == (1<<1) = analyze process is running * ((status & (1<<2)) == (1<<2) = index creation is running * ((status & (1<<3)) == (1<<3) = idx_semaphore=16 (disable indexing completely) * ((status & (1<<4)) == (1<<4) = idx_semaphore=32 (disable auto-indexer) */ DECLARE /** if status is 0 no IDX relevant processing is running */ status INTEGER; BEGIN /** All psql-connector health-checks are arriving at the same time. We do not want to execute all status queries in parallel */ PERFORM setseed((extract(epoch from now()) -floor(extract(epoch from now()))) * (pg_backend_pid()%100)*0.01); PERFORM pg_sleep((random() * (4-1+1) + 1)/10.0::numeric); /** * If count is set to 16, whole indexing (auto / on-demand) is deactivated */ SELECT count into status from xyz_config.xyz_idxs_status WHERE spaceid='idx_in_progress'; IF status = 16 THEN RETURN status; END IF; SELECT (COALESCE(bit_or(statitics_running), 0::bit ) || COALESCE(bit_or(analyses_running), 0::bit ) || COALESCE(bit_or(idx_running), 0::bit ))::bit(3)::integer into status from( SELECT (CASE WHEN (position('xyz_write_newest_statistics' IN query) > 0) THEN 1 ELSE 0 END)::bit as statitics_running , (CASE WHEN(position('xyz_write_newest_idx_analyses' IN query) > 0) THEN 1 ELSE 0 END)::bit as analyses_running , (CASE WHEN (position('xyz_create_idxs' IN query) > 0) THEN 1 ELSE 0 END)::bit as idx_running, pid, now() - pg_stat_activity.query_start AS duration, query, state FROM pg_stat_activity )A where ((statitics_running||analyses_running||idx_running) not in (111::bit(3),000::bit(3))) AND state='active'; RETURN status; END $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_create_idxs_over_dblink(text, integer, integer, integer, text[], text, text, text, text, integer, text) -- DROP FUNCTION xyz_create_idxs_over_dblink(text, integer, integer, integer, text[], text, text, text, text, integer, text); CREATE OR REPLACE FUNCTION xyz_create_idxs_over_dblink( schema text, lim integer, off integer, mode integer, owner_list text[], usr text, pwd text, dbname text, host text, port integer, searchp text) RETURNS void AS $BODY$ /** * Description: Use dblink (requires installed extension) to trigger the index creation, to guaranty that the connection does not get interrupted through Lambda termination. * * Parameters: * @schema - schema in which the xyz-spaces are located * @lim - max amount of spaces to iterate over * @off - offset, required for parallel executions * @mode - 0 = only indexing, 1 = statistics+indexing, 2 = statistic, analyzing, indexing (auto-indexing) * @owner_list - list of database users which has the tables created (owner). Normally is this only one user. * @usr - database user * @pwd - <PASSWORD> * @dbname - database name * @port - database port * @searchp - searchpath */ DECLARE v_conn_str text := 'port='||port||' dbname='||dbname||' host='||host||' user='||usr||' password='||<PASSWORD>||' options=-csearch_path='||searchp||''; v_query text; BEGIN v_query := 'select xyz_create_idxs('''||schema||''',100, 0, '||mode||', '''||owner_list::text||''')'; /** Requires the installed dblink extension - we use dblink to avoid connection interruption through Lambda termination */ PERFORM * FROM dblink(v_conn_str, v_query) AS t1(test text); END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_space_bbox(text, text, integer) -- DROP FUNCTION xyz_space_bbox(text, text, integer); CREATE OR REPLACE FUNCTION xyz_space_bbox( schema text, space_id text, tablesamplecnt integer ) RETURNS box2d AS $BODY$ /** * Description: Covers the overall BBOX of the geometries within a space. If a tablesample value is provided only * a sample of the data get analyzed. * * Parameters: * @schema - schema in which the xyz-spaces are located * @spaceid - id of XYZ-space(tablename) * @tablesamplecnt - define the value which get further used in the tablesample statement. If it is null full table scans will be performed. * * Returns: * @bboxx - overall BBOX of the geometries within a space */ DECLARE bboxx box2d; BEGIN IF tablesamplecnt IS NULL THEN EXECUTE format( 'select ST_Extent(geo) ' ||' FROM "'||schema||'"."'||space_id||'" ' ) INTO bboxx; RETURN bboxx; ELSE EXECUTE format( 'select ST_EstimatedExtent('''||schema||''','''||space_id||''', ''geo'')') INTO bboxx; IF bboxx IS NOT NULL THEN RETURN bboxx; END IF; END IF; /** IF we are here we cant get information via ST_EstimatedExtent so we are using a sample of the data */ EXECUTE format( 'select ST_Extent(geo) ' ||' FROM '||schema||'."'||space_id||'" TABLESAMPLE SYSTEM_ROWS('||tablesamplecnt||') ' ) INTO bboxx; IF bboxx IS NULL THEN RETURN 'BOX(-180 -90, 180 90)'::box2d; END IF; RETURN bboxx; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_index_check_comments(text, text) -- DROP FUNCTION xyz_index_check_comments(text, text); CREATE OR REPLACE FUNCTION xyz_index_check_comments( schema text, space_id text) RETURNS void AS $BODY$ /** * Description: In some rare cases Comments are getting not written onto created Indices. For this we have that function * place. It re-creates the missing comment by analyzing the Index-Definition. Comments are required to * conclude which property inside the jsonb is indexed. * * Parameters: * @schema - schema in which the xyz-spaces are located * @spaceid - id of XYZ-space(tablename) */ DECLARE missing_idx_list record; jsonpath TEXT[]; comment_text TEXT; BEGIN FOR missing_idx_list IN /** check which comments are missing */ SELECT indexname, indexdef, (SELECT obj_description(format('%s."%s"',schema, indexname)::regclass)) from pg_indexes WHERE 1=1 AND schemaname = schema AND substring(indexname from char_length(indexname)-1) IN ('_a','_m') AND (select obj_description(format('%s."%s"',schema,indexname)::regclass)) IS NULL AND position(format('idx_%s',space_id) in indexname) > 0 LOOP /** get Property path out from index definition */ SELECT ( select array_agg( ii.regexp_replace ) from ( select regexp_replace( (regexp_matches( indexdef, '\s*->+\s*\''[^'']*','g'))[1], '\s*->+\s*\''', '' ) ) ii )as jsonpath INTO jsonpath from pg_indexes where 1 = 1 and schemaname = schema and indexname = missing_idx_list.indexname and strpos( indexdef, 'jsondata' ) > 0; /** generate comment out from Property path */ SELECT concat('p.name=', array_to_string( array_remove( jsonpath, jsonpath[1] ) ,'.','*') ) INTO comment_text; /** Add missing Comment */ IF comment_text IS NOT NULL THEN RAISE NOTICE 'Add comment % to %',comment_text,space_id; EXECUTE format('COMMENT ON INDEX %s."%s" IS ''%s''', schema, missing_idx_list.indexname, comment_text); UPDATE xyz_config.xyz_idxs_status SET idx_available = (select jsonb_agg(FORMAT('{"property":"%s","src":"%s"}',idx_property, src)::jsonb) from ( select * from xyz_index_list_all_available(schema,space_id) order by idx_property )b ) WHERE space_id = spaceid; END IF; END LOOP; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_index_creation_on_property_object(text, text, text, text, text, character); -- DROP FUNCTION xyz_index_creation_on_property_object(text, text, text, text, text, character); CREATE OR REPLACE FUNCTION xyz_index_creation_on_property_object( schema text, spaceid text, propkey text, idx_name text, datatype text, source character) RETURNS text AS $BODY$ /** * Description: This function creates an index for a properties.key in a XYZ-space. * The name of the indexed property get stored as an comment on the created index. * Get comment with: select obj_description( ('xyz."idx_name"')::regclass ) * The index get stored as JSONB Type by use of BTREE or GIN. * Its recommended to SET ENABLE_SEQSCAN = OFF; * * Parameters: * @schema - schema in which the XYZ-spaces are located * @spaceid - id of the XYZ-space (tablename) * @propkey - name of the property for a index should get created * @idx_name - name of the index (use xyz_index_name_for_property()) * @datatype - data type of the property (use xyz_property_datatype()) * @source - source = 'm' | 'a' <=> manual | automatic * * Returns: * @idx_name - name of the created Index */ DECLARE prop_path text; idx_type text := 'btree'; BEGIN source = lower(source); select into prop_path concat('''',replace(xyz_index_get_plain_propkey(propkey), '.', '''->'''),''''); IF source not in ('a','m') THEN RAISE NOTICE 'Source ''%'' not supported. Use ''m'' for manual or ''a'' for automatic!',source; END IF; /** In all other cases we are using btree */ IF datatype = 'array' THEN idx_type = 'GIN'; END IF; EXECUTE format('CREATE INDEX "%s" ' ||'ON %s."%s" ' ||' USING %s ' ||'((jsondata->''properties''->%s))', idx_name, schema, spaceid, idx_type, prop_path); EXECUTE format('COMMENT ON INDEX %s."%s" ' ||'IS ''p.name=%s''', schema, idx_name, xyz_index_get_plain_propkey(propkey)); RETURN idx_name; END $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_maintain_idxs_for_space(text, text) -- DROP FUNCTION xyz_maintain_idxs_for_space(text, text); CREATE OR REPLACE FUNCTION xyz_maintain_idxs_for_space( schema text, space text) RETURNS void AS $BODY$ /** * Description: This function creates all Indices for a given space. Therefore it uses the data which * is stored in the xyz_config.xyz_idxs_status maintenance table. * At first all required On-Demand Indices are getting created (if some exists). Afterwards * the properties which are determined through the Auto-Indexer are getting indexed (if some could * get found during the data-analysis. * * Parameters: * @schema - schema in which the XYZ-spaces are located * @space - id of the XYZ-space (tablename) */ DECLARE xyz_space_exists record; DECLARE xyz_space_stat record; DECLARE xyz_manual_idx record; DECLARE xyz_needless_manual_idx record; DECLARE xyz_idx_proposal record; DECLARE idx_false_list TEXT[]; BEGIN /** Check if table is present */ select 1 into xyz_space_exists from pg_tables WHERE tablename =space and schemaname = schema; IF xyz_space_exists IS NULL THEN DELETE FROM xyz_config.xyz_idxs_status WHERE spaceid = space AND schem = schema; RAISE NOTICE 'SPACE DOES NOT EXIST %."%" ', schema, space; RETURN; END IF; /** set indication that idx creation is running */ UPDATE xyz_config.xyz_idxs_status SET idx_creation_finished = false WHERE spaceid = space; EXECUTE xyz_index_check_comments(schema, space); /** Analyze IDX-ON DEMAND aka MANUAL MODE */ RAISE NOTICE 'ANALYSE MANUAL IDX on SPACE: %', space; /** Search missing ON-DEMAND IDXs */ FOR xyz_manual_idx IN SELECT *, (SELECT xyz_index_name_for_property(space, property, 'm')) as idx_name, (SELECT xyz_property_datatype(schema, space, property, 5000)) as datatype, (SELECT * from xyz_index_property_available(schema, space, property)) as idx_available from ( SELECT (jsonb_each(idx_manual)).key as property, (jsonb_each(idx_manual)).value::text::boolean as idx_required FROM xyz_config.xyz_idxs_status WHERE idx_creation_finished = false AND spaceid = space ) A LOOP IF xyz_manual_idx.idx_required = false THEN /** Add property to blacklist */ idx_false_list := array_append(idx_false_list,xyz_manual_idx.property); END IF; IF xyz_manual_idx.idx_required = true AND xyz_manual_idx.idx_available = false THEN RAISE NOTICE '-- PROPERTY: % | TYPE: % | SPACE: % |> CREATE MANUAL IDX: %!',xyz_manual_idx.property, xyz_manual_idx.datatype, space, xyz_manual_idx.idx_name; BEGIN PERFORM xyz_index_creation_on_property_object(schema, space, xyz_manual_idx.property, xyz_manual_idx.idx_name, xyz_manual_idx.datatype, 'm'); EXCEPTION WHEN OTHERS THEN RAISE NOTICE '-- PROPERTY: % | TYPE: % | SPACE: % |> ALREADY EXISTS: % - SKIP!', xyz_manual_idx.property, xyz_manual_idx.datatype, space, xyz_manual_idx.idx_name; END; ELSEIF xyz_manual_idx.idx_required = false AND xyz_manual_idx.idx_available = true THEN RAISE NOTICE '-- PROPERTY: % | TYPE: % | SPACE: % |> DELETE IDX: %!',xyz_manual_idx.property, xyz_manual_idx.datatype, space, xyz_manual_idx.idx_name; EXECUTE FORMAT ('DROP INDEX IF EXISTS %s."%s" ', schema, xyz_manual_idx.idx_name); /** If an automatic one exists delete it as well */ EXECUTE FORMAT ('DROP INDEX IF EXISTS %s."%s" ', schema, xyz_index_name_for_property(space, xyz_manual_idx.property, 'a')); ELSE RAISE NOTICE '-- PROPERTY: % | TYPE: % | SPACE: % |> Nothing to do: %!',xyz_manual_idx.property, xyz_manual_idx.datatype, space, xyz_manual_idx.idx_name; END IF; END LOOP; /** Search created ON-DEMAND IDXs which are no longer getting used */ FOR xyz_needless_manual_idx IN SELECT idx_name, idx_property FROM xyz_index_list_all_available(schema,space) WHERE src='m' EXCEPT SELECT idx_name, idx_property FROM( SELECT xyz_index_get_plain_propkey((jsonb_each(idx_manual)).key) as idx_property, xyz_index_name_for_property(space, (jsonb_each(idx_manual)).key, 'm') as idx_name, (jsonb_each(idx_manual)).value::text::boolean as idx_required FROM xyz_config.xyz_idxs_status where spaceid = space ) A WHERE idx_required = true LOOP RAISE NOTICE '-- PROPERTY: % | SPACE: % |> DELETE UNWANTED IDX: %!',xyz_needless_manual_idx.idx_property, space, xyz_needless_manual_idx.idx_name; EXECUTE FORMAT ('DROP INDEX IF EXISTS %s."%s" ', schema, xyz_needless_manual_idx.idx_name); END LOOP; /** Analyze IDX-Proposals aka AUTOMATIC MODE */ SELECT * FROM xyz_config.xyz_idxs_status INTO xyz_space_stat WHERE idx_proposals IS NOT NULL AND idx_creation_finished = false AND count >= 0 AND spaceid = space; IF xyz_space_stat.idx_proposals IS NOT NULL THEN RAISE NOTICE 'ANALYSE AUTOMATIC IDX PROPOSALS: % on SPACE:%', xyz_space_stat.idx_proposals, space; END IF; FOR xyz_idx_proposal IN SELECT value->>'property' as property, value->>'type' as type from jsonb_array_elements(xyz_space_stat.idx_proposals) LOOP IF idx_false_list @> ARRAY[xyz_idx_proposal.property] THEN RAISE NOTICE '-- PROPERTY: % | TYPE: % | SPACE: % |> IDX MANUAL DEACTIVATED -> SKIP!',xyz_idx_proposal.property, xyz_idx_proposal.type, space; CONTINUE; END IF; IF (SELECT * from xyz_index_property_available(schema, space, xyz_idx_proposal.property)) = true THEN RAISE NOTICE '-- PROPERTY: % | TYPE: % | SPACE: % |> IDX ALREADY EXISTS -> SKIP!', xyz_idx_proposal.property, xyz_idx_proposal.type, space; CONTINUE; END IF; BEGIN RAISE NOTICE '--PROPERTY: % | TYPE: % | SPACE: % |> CREATE AUTOMATIC IDX!',xyz_idx_proposal.property, xyz_idx_proposal.type, space; PERFORM xyz_index_creation_on_property(schema,space, xyz_idx_proposal.property,'a'); EXCEPTION WHEN OTHERS THEN RAISE NOTICE '--PROPERTY: % | TYPE: % | SPACE: % |> IDX CREATION ERROR -> SKIP!',xyz_idx_proposal.property, xyz_idx_proposal.type, space; END; END LOOP; /** set indication that idx creation is finished */ UPDATE xyz_config.xyz_idxs_status SET idx_creation_finished = true, idx_proposals = null, idx_available = (select jsonb_agg(FORMAT('{"property":"%s","src":"%s"}',idx_property, src)::jsonb) from ( select * from xyz_index_list_all_available(schema,space) order by idx_property )b ) WHERE spaceid = space; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_create_idxs(text, integer, integer, integer, text[]) -- DROP FUNCTION xyz_create_idxs(text, integer, integer, integer, text[]); CREATE OR REPLACE FUNCTION xyz_create_idxs( schema text, lim integer, off integer, mode integer, owner_list text[]) RETURNS void AS $BODY$ /** * Description: This function iterates over all spaces which are marked with idx_creation_finished=false in * the xyz_config.xyz_idxs_status maintenance table. * * Parameters: * @schema - schema in which the xyz-spaces are located * @lim - max amount of spaces to iterate over * @off - offset, required for parallel executions */ DECLARE xyz_space_stat record; DECLARE xyz_idx_proposal record; DECLARE big_space_threshold integer := 10000; BEGIN IF mode = 1 OR mode = 2 THEN RAISE NOTICE 'WRITE NEWEST STATISTICS!'; PERFORM xyz_write_newest_statistics(schema, owner_list, big_space_threshold); END IF; IF mode = 2 THEN RAISE NOTICE 'WRITE NEWEST ANALYSES!'; PERFORM xyz_write_newest_idx_analyses(schema); END IF; FOR xyz_space_stat IN SELECT * FROM xyz_config.xyz_idxs_status A LEFT JOIN pg_tables B ON (B.tablename = A.spaceid) WHERE idx_creation_finished = false AND b.tablename is not null AND schem = schema ORDER BY count, spaceid LIMIT lim OFFSET off LOOP RAISE NOTICE 'MAINTAIN IDX FOR: % !',xyz_space_stat.spaceid; PERFORM xyz_maintain_idxs_for_space(schema, xyz_space_stat.spaceid); END LOOP; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_property_path_to_array(text) -- DROP FUNCTION xyz_property_path_to_array(text); CREATE OR REPLACE FUNCTION xyz_property_path_to_array(propertypath text) RETURNS text[] AS $BODY$ /** * Description: Converts a jsonpath (e.g.: jsondata.foo.bar) to a text array ["jsondata","foo","bar"] * * Parameters: * @propertypath - path down to the json-field (e.g.: jsondata.foo.bar) * * Returns: * text[] with json path segments */ DECLARE property TEXT; DECLARE jsonarray TEXT[]; BEGIN FOR property IN SELECT * from regexp_split_to_table(propertypath,'\.') LOOP select array_append(jsonarray,property) into jsonarray; END LOOP; RETURN jsonarray; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_property_path(text) -- DROP FUNCTION xyz_property_path(text); CREATE OR REPLACE FUNCTION xyz_property_path(propertypath TEXT) RETURNS TEXT AS $BODY$ /** * Description: Converts a jsonpath (e.g.: jsondata.foo.bar) to a jsonb notation ('jsondata'->'foo'->'bar') * * Parameters: * @propertypath - path down to the json-field (e.g.: jsondata.foo.bar) * * Returns: * text with jsonb notation ('jsondata'->'foo'->'bar') */ DECLARE property TEXT; DECLARE jsonpath TEXT := ''; BEGIN FOR property IN SELECT * from regexp_split_to_table(propertypath,'\.') LOOP jsonpath := jsonpath || '''' ||property || '''' || '->'; END LOOP; jsonpath := substring(jsonpath from 0 for char_length(jsonpath)-1); RETURN jsonpath; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_property_datatype(text, text, text, integer) -- DROP FUNCTION xyz_property_datatype(text, text, text, integer); CREATE OR REPLACE FUNCTION xyz_property_datatype( schema text, spaceid text, propertypath text, tablesamplecnt integer) RETURNS TEXT AS $BODY$ /** * Description: * Tries to detect the data type of a jsonkey. {"foo" : "bar"} => "bar"=string * * Parameters: * @spaceid - id of the XYZ-space (tablename) * @propertypath - path down to the json-field (e.g.: jsondata.foo.bar) * @tablesamplecnt - define the value which get further used in the tablesample statement. If it is null full table scans s will be performed. * * Returns: * datatype - string | number | boolean | object | array | null */ DECLARE datatype TEXT := xyz_index_dissolve_datatype(propertypath); DECLARE json_proppath TEXT; BEGIN IF (datatype IS NOT NULL) THEN RETURN datatype; END IF; SELECT xyz_property_path(propertypath) into json_proppath; EXECUTE format('SELECT jsonb_typeof((jsondata->''properties''->%s)::jsonb)::text ' ||' FROM %s."%s" TABLESAMPLE SYSTEM_ROWS(%s) ' ||'where jsondata->''properties''->%s is not null limit 1', json_proppath, schema, spaceid, tablesamplecnt, json_proppath) INTO datatype; IF datatype IS NULL THEN RETURN 'unknown'; END IF; RETURN datatype; EXCEPTION WHEN OTHERS THEN RETURN 'unknown'; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_property_statistic(text, text, integer) -- DROP FUNCTION xyz_property_statistic(text, text, integer); CREATE OR REPLACE FUNCTION xyz_property_statistic_v2( IN schema text, IN spaceid text, IN tablesamplecnt integer) RETURNS TABLE(key text, count integer, searchable boolean, datatype text) AS $BODY$ /** * Description: Returns table which includes a overview about properties.keys, their counts and the information if they are searchable. * e.g: => fc, 544, true * name, 544, false * oda, 213, false * * Parameters: * @schema - schema in which the XYZ-spaces are located * @spaceid - id of the XYZ-space (tablename) * @tablesamplecnt - define the value which get further used in the tablesample statement. If it is null full table scans s will be performed. * * Returns (table): * key - property.key * count - number how often the property.key is present in the XYZ-space * datatype - string | number | boolean | object | array | null */ DECLARE /** used for big-spaces and get filled via pg_class */ estimate_cnt bigint; /** list of indexes which are already available in the space */ idxlist jsonb; BEGIN SELECT COALESCE(jsonb_agg(idx_property),'""'::jsonb) into idxlist FROM( select idx_property from xyz_index_list_all_available($1,$2) WHERE src IN ('a','m') )A; IF tablesamplecnt is NULL THEN RETURN QUERY EXECUTE 'SELECT DISTINCT ON(propkey) * FROM ( ' || ' SELECT propkey, ' || ' (SELECT COALESCE(COUNT(*)::numeric::INTEGER , 0) as count ' || ' FROM "'||schema||'"."'||spaceid||'" ' || ' WHERE jsondata#> xyz_property_path_to_array(''properties.''||propkey) IS NOT NULL), ' || ' true as searchable, ' || ' (SELECT * from xyz_property_datatype('''||schema||''','''||spaceid||''', propkey, 1000)) as datatype ' || ' FROM( ' || ' select idx_property as propkey from xyz_index_list_all_available('''||schema||''','''||spaceid||''') ' || ' WHERE src IN (''a'',''m'') ' || ' ) B group by propkey ' || ' UNION ' || ' SELECT propkey, ' || ' COALESCE(COUNT(*)::numeric::INTEGER, 0) as count, ' || ' (SELECT '''||idxlist||''' @> to_jsonb(propkey)) as searchable, ' || ' (SELECT * from xyz_property_datatype('''||schema||''','''||spaceid||''',propkey,1000)) as datatype ' || ' FROM( ' || ' SELECT jsonb_object_keys(jsondata->''properties'') as propkey ' || ' FROM "'||schema||'"."'||spaceid||'" ' || ' ) A WHERE propkey!=''@ns:com:here:xyz'' ' || ' GROUP BY propkey ORDER by propkey,count DESC ' || ') C'; ELSE SELECT reltuples into estimate_cnt FROM pg_class WHERE oid = concat('"',$1, '"."', $2, '"')::regclass; RETURN QUERY EXECUTE 'SELECT DISTINCT ON(propkey) * FROM ( ' || ' SELECT propkey, ' || ' (SELECT TRUNC(((COUNT(*)/1000::real) * '||estimate_cnt||')::numeric, 0)::INTEGER as count ' || ' FROM "'||schema||'"."'||spaceid||'" TABLESAMPLE SYSTEM_ROWS('||tablesamplecnt||') ' || ' WHERE jsondata#> xyz_property_path_to_array(''properties.''||propkey) IS NOT NULL), ' || ' true as searchable, ' || ' (SELECT * from xyz_property_datatype('''||schema||''','''||spaceid||''',propkey,'||tablesamplecnt||')) as datatype ' || ' FROM( ' || ' select idx_property as propkey from xyz_index_list_all_available('''||schema||''','''||spaceid||''') ' || ' WHERE src IN (''a'',''m'') ' || ' ) B group by propkey ' || ' UNION ' || ' SELECT propkey, ' || ' TRUNC(((COUNT(*)/1000::real) * '||estimate_cnt||')::numeric, 0)::INTEGER as count, ' || ' (SELECT '''||idxlist||''' @> to_jsonb(propkey)) as searchable, ' || ' (SELECT * from xyz_property_datatype('''||schema||''','''||spaceid||''',propkey,'||tablesamplecnt||')) as datatype ' || ' FROM( ' || ' SELECT jsonb_object_keys(jsondata->''properties'') as propkey ' || ' FROM "'||schema||'"."'||spaceid||'" TABLESAMPLE SYSTEM_ROWS('||tablesamplecnt||') ' || ' ) A WHERE propkey!=''@ns:com:here:xyz'' ' || ' GROUP BY propkey ORDER by propkey,count DESC ' || ') C'; END IF; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_statistic_newest_spaces_changes(text, text[], integer) -- DROP FUNCTION xyz_statistic_newest_spaces_changes(text, text[], integer); CREATE OR REPLACE FUNCTION xyz_statistic_newest_spaces_changes( IN schema text, IN owner_list text[], IN min_table_count integer) RETURNS TABLE(spaceid text, tablesize jsonb, geometrytypes jsonb, properties jsonb, tags jsonb, count jsonb, bbox jsonb) AS $BODY$ /** * Description: Returns complete statistic about all xyz-spaces: * - which are new to the system * - where more than 3000 rows as changed (added/deleted) * * Parameters: * @schema - schema in which the XYZ-spaces are located * @spaceid - id of the XYZ-space (tablename) * @min_table_count - defines the count of rows a table have to has to get included. * * Returns (table): * spaceid - id of the space * tabelsize - storage size of space * geometrytypes - list of geometry types which are present * properties - list of available properties and their counts * tags - number of tags found in space * count - number of records found in space * bbox - bbox in which the space objects are located */ /** List of all xyz-spaces */ DECLARE xyz_spaces record; /** used to store xyz-space statistic results */ DECLARE xyz_space_stat record; BEGIN FOR xyz_spaces IN SELECT relname as spaceid, E.spaceid as stat_spaceid, reltuples as current_cnt, E.count as old_cnt, (E.count-reltuples) as diff FROM pg_class C LEFT JOIN pg_tables D ON (D.tablename = C.relname) LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace) LEFT JOIN xyz_config.xyz_idxs_status E ON (E.spaceid = C.relname) WHERE relkind='r' AND nspname = ''||schema||'' AND array_position(owner_list, tableowner::text) > 0 /** More than 3000 objecs has changed OR space is new and has more than min_table_count entries */ AND ((ABS(COALESCE(E.count,0) - COALESCE(reltuples,0)) > 3000 AND reltuples > min_table_count ) OR ( E.count IS null AND reltuples > min_table_count )) AND relname != 'spatial_ref_sys' ORDER BY reltuples LOOP BEGIN spaceid := xyz_spaces.spaceid; EXECUTE format('SELECT tablesize, geometrytypes, properties, tags, count, bbox from xyz_statistic_space(''%s'',''%s'')',schema , xyz_spaces.spaceid) INTO tablesize, geometrytypes, properties, tags, count, bbox; RETURN NEXT; EXCEPTION WHEN OTHERS THEN RAISE NOTICE 'ERROR CREATING STATISTIC ON SPACE %', xyz_spaces.spaceid; END; END LOOP; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_write_newest_idx_analyses(text) -- DROP FUNCTION xyz_write_newest_idx_analyses(text); CREATE OR REPLACE FUNCTION xyz_write_newest_idx_analyses(schema text) RETURNS void AS $BODY$ /** * Description: Updates xyz_config.xyz_idxs_status maintenance table with idx_analyses data and information * which Indices are currently existing. Therefore xyz_index_proposals_on_properties() and xyz_index_list_all_available() * functions are getting used. Finally idx_proposalsm,idx_available on the maintenance table are getting updated accordingly. * All spaces are getting analyzed which are marked with idx_creation_finished=false in the maintenance table. * * Parameters: * @schema - schema in which the xyz-spaces are located */ DECLARE xyz_space_stat record; DECLARE idx_prop jsonb; DECLARE idx_av jsonb; BEGIN FOR xyz_space_stat IN SELECT * FROM xyz_config.xyz_idxs_status WHERE idx_creation_finished = false AND count > 0 --to avoid processing of spaces which are not already present (manual IDX) AND count < 5000000 --temp LOOP BEGIN IF xyz_space_stat.prop_stat != '[]'::jsonb THEN select jsonb_agg(FORMAT('{"property":"%s","type":"%s"}',prop_key, prop_type)::jsonb) INTO idx_prop from ( select * from xyz_index_proposals_on_properties(schema,xyz_space_stat.spaceid) order by prop_key )B; END IF; select jsonb_agg(FORMAT('{"property":"%s","src":"%s"}',idx_property, src)::jsonb) INTO idx_av from ( select * from xyz_index_list_all_available(schema,xyz_space_stat.spaceid) --where src='a' order by idx_property )A; UPDATE xyz_config.xyz_idxs_status SET idx_proposals = idx_prop, idx_available = idx_av WHERE spaceid = xyz_space_stat.spaceid; END; END LOOP; PERFORM pg_sleep(1.5); END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_write_newest_statistics(text, text[], integer) -- DROP FUNCTION xyz_write_newest_statistics(text, text[], integer); CREATE OR REPLACE FUNCTION xyz_write_newest_statistics( schema text, owner_list text[], min_table_count integer) RETURNS void AS $BODY$ /** * Description: writes newest statistic data into the xyz_config.xyz_idxs_status maintenance table. This data is getting used * later on from the Auto-Indexer to create index-proposals. * * Parameters: * @schema - schema in which the XYZ-spaces are located * @owner_list - list of database users which has the tables created (owner). Normally is this only one user. * @min_table_count - defines the count of rows a table have to has to get included. */ DECLARE xyz_spaces record; DECLARE xyz_idxs_status_exists text; BEGIN SELECT COALESCE (ex::text!='xyz_config.xyz_idxs_status') into xyz_idxs_status_exists from to_regclass('xyz_config.xyz_idxs_status') as ex; IF xyz_idxs_status_exists IS NULL THEN CREATE TABLE IF NOT EXISTS xyz_config.xyz_idxs_status ( runts timestamp with time zone, spaceid text NOT NULL, schem text, idx_available jsonb, idx_proposals jsonb, idx_creation_finished boolean, count bigint, prop_stat jsonb, idx_manual jsonb, CONSTRAINT xyz_idxs_status_pkey PRIMARY KEY (spaceid) ); INSERT INTO xyz_config.xyz_idxs_status (spaceid,count) VALUES ('idx_in_progress','0'); END IF; FOR xyz_spaces IN SELECT spaceid FROM xyz_config.xyz_idxs_status C LEFT JOIN pg_class A ON (A.relname = C.spaceid) LEFT JOIN pg_tables D ON (D.tablename = C.spaceid) WHERE ( D.tablename is null AND C.spaceid != 'idx_in_progress' AND C.count IS NOT NULL ) OR ( (COALESCE(reltuples,0) < min_table_count OR C.count IS NULL) AND (idx_manual IS NULL OR idx_manual = '{}') AND C.spaceid != 'idx_in_progress' ) LOOP RAISE NOTICE 'Remove deleted space %',xyz_spaces.spaceid; DELETE FROM xyz_config.xyz_idxs_status WHERE spaceid = xyz_spaces.spaceid; END LOOP; xyz_spaces := NULL; FOR xyz_spaces IN SELECT * from xyz_statistic_newest_spaces_changes(schema, owner_list , min_table_count) LOOP INSERT INTO xyz_config.xyz_idxs_status as x_s (runts,spaceid,schem,count,prop_stat,idx_creation_finished) VALUES ( CURRENT_TIMESTAMP, xyz_spaces.spaceid, schema, (xyz_spaces.count->>'value')::bigint, (xyz_spaces.properties->'value')::jsonb, false ) ON CONFLICT (spaceid) DO UPDATE SET runts = CURRENT_TIMESTAMP, count = (xyz_spaces.count->>'value')::bigint, prop_stat = (xyz_spaces.properties->'value')::jsonb, idx_creation_finished = false WHERE x_s.spaceid = xyz_spaces.spaceid; END LOOP; PERFORM pg_sleep(1.5); END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_statistic_all_spaces(text, text[], integer) -- DROP FUNCTION xyz_statistic_all_spaces(text, text[], integer); CREATE OR REPLACE FUNCTION xyz_statistic_all_spaces( IN schema text, IN owner_list text[], IN min_table_count integer) RETURNS TABLE(spaceid text, tablesize jsonb, geometrytypes jsonb, properties jsonb, tags jsonb, count jsonb, bbox jsonb) AS $BODY$ /** * Description: Returns complete statistic about all xyz-spaces. Takes a lot of time depending on the amount of spaces. * * Parameters: * @schema - schema in which the xyz-spaces are located * @owner_list - list of database users which has the tables created (owner). Normally is this only one user. * @min_table_count- defines the count of rows a table have to has to get included. * * Returns (table): * spaceid - id of the space * tabelsize - storage size of space * geometrytypes - list of geometrytypes which are present * properties - list of available properties and their counts * tags - number of tags found in space * count - number of records found in space * bbox - bbox in which the space objects are located */ /** List of all xyz-spaces */ DECLARE xyz_spaces record; /** used to store xyz-space statistic results */ DECLARE xyz_space_stat record; BEGIN FOR xyz_spaces IN SELECT relname as spaceid,reltuples as cnt FROM pg_class C LEFT JOIN pg_tables D ON (D.tablename = C.relname) LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace) WHERE relkind='r' AND nspname = ''||schema||'' AND array_position(owner_list, tableowner::text) > 0 ORDER BY reltuples DESC LOOP spaceid := xyz_spaces.spaceid; IF min_table_count > 0 AND min_table_count > xyz_spaces.cnt THEN RETURN; ELSE EXECUTE format('SELECT tablesize, geometrytypes, properties, tags, count, bbox from xyz_statistic_space(''%s'',''%s'')',schema , xyz_spaces.spaceid) INTO tablesize, geometrytypes, properties, tags, count, bbox; RETURN NEXT; END IF; END LOOP; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_property_evaluation(text, text, text, integer) -- DROP FUNCTION xyz_property_evaluation(text, text, text, integer); CREATE OR REPLACE FUNCTION xyz_property_evaluation( IN schema text, IN spaceid text, IN propkey text, IN tablesamplecnt integer) RETURNS TABLE(count bigint, val text, jtype text) AS $BODY$ /** * Description: Returns table which includes a overview about properties.key->values and their counts. * e.g.: properties.fc * => 233, 1, integer * 22, 2, integer * 577, 5, integer * Only primitive data type are allowed: string,number,boolean - object,array are getting ignored * If more than one data type exists in properties.key->values the result will be NULL (properties.fc = 5 AND properties.fc = 'foo') * * Parameters: * @schema - schema in which the xyz-spaces are located * @spaceid - id of the space (tablename) * @propkey - name of the property which should get evaluated. properties.>key< * @tablesamplecnt - define the value which get further used in the tablesample statement. If it is null full table scans s will be performed. * * Returns (table): * count - indicate how often the value exists * val - value of json.key * jtype - data type of value */ /** to store a distinct list of properties.key->values (properties.fc => { 1,2,3,4,5} */ DECLARE prop_values_distinct record; /** used for big spaces */ DECLARE tablesample_expression text := ''; /** to collect object-Types (string,text,boolean,array..) of properties.key->values */ DECLARE object_types text[]; BEGIN propkey := replace(propkey, '''', ''''''); IF tablesamplecnt is not NULL THEN tablesample_expression := concat('TABLESAMPLE SYSTEM_ROWS(',tablesamplecnt,')'); END IF; /** ignore: array, object, null */ EXECUTE format('SELECT array_agg(obj_type) FROM( ' ||'SELECT DISTINCT jsonb_typeof((jsondata->''properties''->%L)::jsonb) as obj_type ' ||' from %s."%s" %s ' ||' WHERE jsonb_typeof((jsondata->''properties''->''%s'')::jsonb) in (''string'', ''number'', ''boolean'')) B ' , propkey, schema, spaceid, tablesample_expression, propkey) INTO object_types; IF object_types is NULL OR cardinality(object_types) != 1 THEN -- Condition not met / only one primitive object Type allowed RAISE NOTICE 'object_types not supported: % ', object_types; RETURN; END IF; /** search distinct property values which can be found in properties.propkey */ FOR prop_values_distinct IN EXECUTE FORMAT( 'SELECT count(*) as cnt, COALESCE((jsondata->''properties''->%L)::text,'''') as val ' || ' from %s."%s" %s GROUP BY val ', propkey, schema, spaceid, tablesample_expression) LOOP /** count how often the current value exists */ jtype := object_types[1]; val := prop_values_distinct.val; count := prop_values_distinct.cnt; RETURN NEXT; END LOOP; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_index_proposals_on_properties(text, text) -- DROP FUNCTION xyz_index_proposals_on_properties(text, text); CREATE OR REPLACE FUNCTION xyz_index_proposals_on_properties( IN schema text, IN _spaceid text) RETURNS TABLE(prop_key text, prop_type text) AS $BODY$ /** * Description: Returns table which includes a list with flat properties.key's and their corresponding data types of the values. * This list represents proposals which can be used for index creations on property root-level. * * Only primitive data types are allowed (string,number,boolean). Already indexed properties are getting ignored. * * e.g.: => fc, integer * name, string * * Parameters: * @schema - schema in which the xyz-spaces are located * @spaceid - id of the space (tablename) * * Returns (table): * prop_key - property.key which should get indexed * prop_type - data type of prop_key values */ DECLARE index_limit integer := 8; cnt bigint; prop_stat record; prop_popularity real; prop_eval record; prop_val_popularity real; prop_is_relevant boolean; value_type text; value_loop_i integer; auto_tablescan integer := null; semantic_hit boolean; BEGIN SELECT reltuples into cnt FROM pg_class WHERE oid = concat('"',$1, '"."', $2, '"')::regclass; if cnt is null OR cnt <= 50000 THEN EXECUTE format('SELECT count(*) from %s."%s"', schema,_spaceid) INTO cnt; END IF; RAISE NOTICE 'TABLE CNT %',cnt; IF cnt > 10000 THEN auto_tablescan := 1000; END IF; /** Check which properties are available in the space */ FOR prop_stat IN /** Ignore manual deactivated idx */ SELECT * from( SELECT *, (SELECT idx_manual->key from xyz_config.xyz_idxs_status WHERE spaceid = _spaceid) as manual from ( SELECT * from xyz_property_statistic(schema, _spaceid, auto_tablescan) ) A ) B where manual = 'true' OR manual is NULL LIMIT index_limit LOOP prop_popularity := (prop_stat.count::real / cnt::real); IF prop_popularity > 0.8 THEN /** Property is in more than 80% of rows available */ RAISE NOTICE '-- KEY: % KEY_COUNT: % INDEXED: % PROP-POPULARITY: %', prop_stat.key, prop_stat.count, prop_stat.searchable, prop_popularity; /** Check if index is already available */ IF prop_stat.searchable THEN RAISE NOTICE '-- SKIP - Prop % because its already indexed!', prop_stat.key; CONTINUE; END IF; /** TODO: Semantic property name check */ /** * EXECUTE format('SELECT xyz_index_proposals_semantic_check(%L)', prop_stat.key) * INTO semantic_hit; * * IF semantic_hit THEN * prop_key := prop_stat.key::text; * EXECUTE format('SELECT jsonb_typeof((jsondata->''properties''->%L)::jsonb)::text ' * ||' FROM %s."%s" ' * ||'where jsondata->''properties''->>%L is not null limit 1', * prop_key, schema, _spaceid, prop_key) * INTO prop_type; * -- Only permit allowed datatypes * IF prop_type in ('string', 'number', 'boolean') THEN * RAISE NOTICE '-- Semantic Hit - Prop %!', prop_stat.key; * RAISE NOTICE '------>> ADD: % %',prop_stat.key, prop_type; * RETURN NEXT; * END IF; * CONTINUE; * END IF; */ prop_is_relevant := false; value_type := null; value_loop_i := 0; FOR prop_eval IN EXECUTE FORMAT( 'SELECT * FROM( ' ||' SELECT row_number() over() as res_cnt, * FROM(' ||' SELECT count,val,jtype FROM( ' ||' SELECT count,val,jtype FROM xyz_property_evaluation(%L,%L,%L,%L) order by count DESC limit 5 ' ||' )iii order by count ASC ' ||' )i ' ||')ii order by 1 desc', schema, _spaceid, prop_stat.key, auto_tablescan) LOOP /** If only 1 value or 2 different values for are properties.key are available we do not create an index */ IF value_loop_i = 0 AND prop_eval.res_cnt < 3 THEN RAISE NOTICE '------ SKIP - Prop % with only % different values!', prop_stat.key, prop_eval.res_cnt; EXIT; END IF; /** If we can find two different data-types we can't recommend an index-creation */ IF value_type != null AND prop_eval.jtype != value_type THEN RAISE NOTICE '------ SKIP - Prop % has values with different types! % != %', prop_stat.key, value_type, prop_eval.jtype; EXIT; END IF; prop_val_popularity := (prop_eval.count::real / cnt::real); /** NO value should exist more than 33% records of the table */ IF prop_val_popularity > 0.33 THEN RAISE NOTICE '------ SKIP - Val: % of Prop: % is to popular: %', prop_eval.val, prop_stat.key, prop_val_popularity; EXIT; END IF; /** * property has more than 2 values * each value has populariyt of < 33% * only one data_type is available */ prop_is_relevant := true; value_type := prop_eval.jtype; value_loop_i := value_loop_i + 1; END LOOP; IF prop_is_relevant THEN RAISE NOTICE'------>> ADD: % %',prop_stat.key,prop_eval.jtype; prop_key := prop_stat.key::text; prop_type := prop_eval.jtype::text; RETURN NEXT; END IF; ELSE RAISE NOTICE '-- SKIP (PROP-POP to low!) KEY: % KEY_COUNT: % INDEXED: % PROP-POPULARITY: %', prop_stat.key, prop_stat.count, prop_stat.searchable, prop_popularity; END IF; END LOOP; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_index_creation_on_property(text, text, text, character -- DROP FUNCTION xyz_index_creation_on_property(text, text, text, character); CREATE OR REPLACE FUNCTION xyz_index_creation_on_property( schema text, spaceid text, propkey text, source character) RETURNS text AS $BODY$ /** * Description: * This function creates concurrently an index for a properties.key in a XYZ-space. * The name of the indexed property get stored as an comment on the created index. * Get comment with: select obj_description( ('xyz."idx_name"')::regclass ) * The index get stored as JSONB Type by use of BTREE. * Its recommended to SET ENABLE_SEQSCAN = OFF; * * Parameters: * @schema - schema in which the XYZ-spaces are located * @spaceid - id of the XYZ-space (tablename) * @propkey - name of the property for a index should get created * @source - 'a'|'m' a=automatic m=manual * * Returns: * idx_name - name of the created Index */ DECLARE idx_name text; BEGIN source = lower(source); IF source not in ('a','m') THEN RAISE EXCEPTION 'Source ''%'' not supported. Use ''m'' for manual or ''a'' for automatic!',source; END IF; SELECT * into idx_name FROM xyz_index_name_for_property(spaceid, propkey, source); /** TODO: CREATE INDEX CONCURRENTLY - make use of dblink "%s" ' */ EXECUTE format('CREATE INDEX "%s" ' ||'ON %s."%s" ' ||'((jsondata->''properties''->''%s''))', idx_name, schema, spaceid, propkey); EXECUTE format('COMMENT ON INDEX %s."%s" ' ||'IS ''p.name=%s''', schema, idx_name, propkey); RETURN idx_name; END $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_geotype(geometry) -- DROP FUNCTION xyz_geotype(geometry); CREATE OR REPLACE FUNCTION xyz_geotype(geo geometry) RETURNS text AS $BODY$ /** * Description: Returns Geometry Types which are fit to XYZ models * * Parameters: * @geo - Geometry which should get translated * * Returns: * geometryText - Simple XYZ-Conform text representation of geometry */ BEGIN IF geo is NULL THEN RETURN 'NULL'; ELSE CASE ST_GeometryType(geo) WHEN 'ST_Point' THEN return 'Point'; WHEN 'ST_LineString' THEN return 'LineString'; WHEN 'ST_Polygon' THEN return 'Polygon'; WHEN 'ST_MultiPoint' THEN return 'MultiPoint'; WHEN 'ST_MultiLineString' THEN return 'MultiLineString'; WHEN 'ST_MultiPolygon' THEN return 'MultiPolygon'; ELSE return 'UNKNOWN'; END CASE; END IF; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_index_name_for_property(text, text, character) -- DROP FUNCTION xyz_index_name_for_property(text, text, character); CREATE OR REPLACE FUNCTION xyz_index_name_for_property( spaceid text, propkey text, source character) RETURNS text AS $BODY$ /** * Description: Create an index-name for a properties.key which is further used in XYZ-scope. * * idx_name = {prefix}_{spaceid}_{propkey}_{source} * prefix = 'idx' * propkey = (md5(properties.key1)).substring(0,8) * source = 'm' | 'a' <=> manual | automatic * * E.g.: idx_osm-building-world_098df_i_m * * Parameters: * @spaceid - id of the space (and tablename) * @propkey - name of the property for wich an index-name should get created. properties.>key< * @source - 'a'|'m' a=automatic m=manual * * Returns: * idx_name - XYZ-Index name which getting used for the Indices Creations. */ DECLARE prefix text :='idx'; idx_name text; BEGIN source = lower(source); IF source not in ('a','m') THEN RAISE EXCEPTION 'Source ''%'' not supported. Use ''m'' for manual or ''a'' for automatic!',source; END IF; select * into idx_name from concat(prefix, '_', spaceid, '_', substring(md5(propkey), 0 ,8 ),'_',source); RETURN idx_name; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_index_list_all_available(text, text) -- DROP FUNCTION xyz_index_list_all_available(text, text); CREATE OR REPLACE FUNCTION xyz_index_list_all_available( IN schema text, IN spaceid text) RETURNS TABLE(idx_name text, idx_property text, src character) AS $BODY$ /** * Description: This function return all properties which are indexed. * * Parameters: * @schema - schema in which the XYZ-spaces are located * @spaceid - id of XYZ-space (tablename) * * Returns (table): * idx_name - Index-name * idx_property - Property name on which the Index is based on * src - source (a - automatic ; m - manual; s - system/unknown) */ DECLARE /** blacklist of XYZ-System indexes */ ignore_idx text := 'NOT IN(''id'',''tags'',''geo'',''serial'')'; av_idx_list record; comment_prefix text:='p.name='; BEGIN FOR av_idx_list IN SELECT indexname, substring(indexname from char_length(spaceid) + 6) as idx_on, COALESCE((SELECT source from xyz_index_name_dissolve_to_property(indexname,spaceid)),'s') as source FROM pg_indexes WHERE schemaname = ''||schema||'' AND tablename = ''||spaceid||'' LOOP src := av_idx_list.source; idx_name := av_idx_list.indexname; BEGIN /** Check if comment with the property-name is present */ select * into idx_property from obj_description( (concat('"',av_idx_list.indexname,'"')::regclass )); EXCEPTION WHEN OTHERS THEN /** do nothing - This Index is not a property index! */ END; IF idx_property IS NOT null THEN IF (position(''||comment_prefix||'' in ''||idx_property||'')) != 0 THEN /** we found the name of the property in the comment */ idx_property := substring(idx_property, char_length(''||comment_prefix||'')+1); END IF; ELSE idx_property := av_idx_list.idx_on; END IF; RETURN NEXT; END LOOP; END $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_index_find_missing_system_indexes(text, text[]) -- DROP FUNCTION xyz_index_find_missing_system_indexes(text, text[]); CREATE OR REPLACE FUNCTION xyz_index_find_missing_system_indexes( IN schema text, IN owner_list text[]) RETURNS TABLE(has_createdat boolean, has_updatedat boolean, spaceid text, cnt bigint) AS $BODY$ /** * Description: Find missing XYZ-System Indices (createdAt,updatedAt). * * Parameters: * @schema - schema in which the XYZ-spaces are located * @owner_list - list of database users which has the tables created (owner). Normally is this only one user. * * Returns (table): * has_createdat - true if Index is present * has_updatedat - true if Index is present * spaceid - id of XYZ-space * cnt - row count of XYZ-space */ BEGIN RETURN QUERY SELECT COALESCE((idx_available ? 'createdAt'), false) AS has_createdAt, COALESCE((idx_available ? 'updatedAt'), false) AS has_updatedAt, s_id::text, table_cnt from ( SELECT relname as s_id,reltuples::bigint as table_cnt , (SELECT jsonb_agg(FORMAT('"%s"',idx_property)::jsonb) from ( SELECT * from xyz_index_list_all_available(''||schema||'',relname) WHERE idx_property IN ('createdAt','updatedAt') and src = 's' order by idx_property )A ) as idx_available FROM pg_class C LEFT JOIN pg_tables D ON (D.tablename = C.relname) LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace) WHERE relkind='r' AND nspname = ''||schema||'' AND array_position(owner_list, tableowner::text) > 0 ORDER BY reltuples ASC, spaceid ) B WHERE idx_available IS NULL OR jsonb_array_length(idx_available) < 2; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_index_name_dissolve_to_property(text,text) -- DROP FUNCTION xyz_index_name_dissolve_to_property(text,text); CREATE OR REPLACE FUNCTION xyz_index_name_dissolve_to_property(IN idx_name text, space_id text) RETURNS TABLE(spaceid text, propkey text, source character) AS $BODY$ /** * Description: Get spaceid, propkey and source from Index-name. * * Index-Name: {prefix}_{spaceid}_{propkey}_{source} * prefix = 'idx' * propkey = (md5(properties.key1)).substring(0,8) * source = 'm' | 'a' <=> manual | automatic * * Parameters: * @idx_name - name of Index * @space_id - id of XYZ-space * * Returns: * spaceid - id of XYZ-space(tablename) * propkey - (md5(properties.key1)).substring(0,8) of the property for which an index-name should get created. properties.>key< * source - 'a'|'m' a=automatic m=manual */ DECLARE idx_split text[]; BEGIN /** idx begins with idx_{spaceid} so we cut this part out */ SELECT * INTO idx_split FROM regexp_split_to_array(substring(idx_name from char_length(space_id) + 6), '_'); spaceid := space_id; propkey := xyz_index_get_plain_propkey(idx_split[1]); source := idx_split[2]; RETURN NEXT; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_index_property_available(text, text, text) -- DROP FUNCTION xyz_index_property_available(text, text, text); CREATE OR REPLACE FUNCTION xyz_index_property_available( schema text, spaceid text, propkey text) RETURNS boolean AS $BODY$ /** * Description: This function can be used to check if a json-property is indexed * * Index-Name: {prefix}_{spaceid}_{propkey}_{source} * prefix = 'idx' * propkey = (md5(properties.key1)).substring(0,8) * source = 'm' | 'a' <=> manual | automatic * * Parameters: * @schema - schema in which the XYZ-spaces are located * @spaceid - id of XYZ-space(tablename) * @propkey - path of json-key inside jsondata->'properties' object (eg. foo | foo.bar) * * Returns: * true - if property is indexed. */ DECLARE ret boolean; BEGIN SELECT indexname IS NOT NULL FROM pg_indexes WHERE schemaname = ''||schema||'' AND tablename = ''||spaceid||'' AND ( indexname = xyz_index_name_for_property(''||spaceid||'',''||propkey||'','a') OR -- Check if its really needed indexname = xyz_index_name_for_property(''||spaceid||'',''||propkey||'','m') ) INTO ret; return ret is not null; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_property_statistic(text, text, integer) -- DROP FUNCTION xyz_property_statistic(text, text, integer); CREATE OR REPLACE FUNCTION xyz_property_statistic( IN schema text, IN spaceid text, IN tablesamplecnt integer) RETURNS TABLE(key text, count integer, searchable boolean) AS $BODY$ /** * Description: Returns table which includes a overview about properties.keys and their counts. * e.g. => fc, 544, false * name, 544, false * oda, 213, false * * Parameters: * @schema - schema in which the XYZ-spaces are located * @spaceid - id of the XYZ-space (tablename) * @tablesamplecnt - define the value which get further used in the tablesample statement. If it is null full table scans s will be performed. * * Returns (table): * key - path of json-key inside jsondata->'properties' object (eg. foo | foo.bar) * count - how often does the key exists in the dataset * searchable - true if an index is existing */ DECLARE /** used for big-spaces and get filled via pg_class */ estimate_cnt bigint; /** list of indexes which are already available in the space */ idxlist jsonb; BEGIN /** @TODO: check if idx_list is null */ SELECT COALESCE(jsonb_agg(idx_property),'""'::jsonb) into idxlist FROM( select idx_property from xyz_index_list_all_available($1,$2) WHERE src IN ('a','m') )A; IF tablesamplecnt is NULL THEN RETURN QUERY EXECUTE 'SELECT key, ' || ' COUNT(key)::numeric::INTEGER as count, ' || ' (SELECT position(key in '''||idxlist||''') > 0) as searchable ' || 'FROM( ' || ' SELECT jsonb_object_keys(jsondata->''properties'') as key ' || ' FROM "'||schema||'"."'||spaceid||'" ' || ' ) a ' || 'WHERE key!=''@ns:com:here:xyz'' GROUP BY key ORDER by count DESC, key'; ELSE SELECT reltuples into estimate_cnt FROM pg_class WHERE oid = concat('"',$1, '"."', $2, '"')::regclass; RETURN QUERY EXECUTE 'SELECT key, ' || ' TRUNC(((COUNT(key)/'||tablesamplecnt||'::real)* '||estimate_cnt||')::numeric, 0)::INTEGER as count, ' || ' (SELECT position(key in '''||idxlist||''') > 0) as searchable ' || 'FROM( ' || ' SELECT jsonb_object_keys(jsondata->''properties'') as key ' || ' FROM "'||schema||'"."'||spaceid||'" TABLESAMPLE SYSTEM_ROWS('||tablesamplecnt||') ' || ' ) a ' || 'WHERE key!=''@ns:com:here:xyz'' GROUP BY key ORDER by count DESC, key '; END IF; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_tag_statistic(text, text, integer) -- DROP FUNCTION xyz_tag_statistic(text, text, integer); CREATE OR REPLACE FUNCTION xyz_tag_statistic( IN schema text, IN spaceid text, IN samplecnt integer) RETURNS TABLE(key jsonb, count integer) AS $BODY$ /** * Description: Returns table which includes a overview about properties.@ns:com:here:xyz->tags and their counts. * e.g. => foo, 544 * bar, 123 * * Parameters: * @schema - schema in which the XYZ-spaces are located * @spaceid - id of the XYZ-space (tablename) * @tablesamplecnt - define the value which get further used in the tablesample statement. If it is null full table scans will be performed. * * Returns (table): * tag - tag name * count - how often does the tag exists in the dataset */ DECLARE /** used for big-spaces and get filled via pg_class */ estimate_cnt bigint; BEGIN IF samplecnt is NULL THEN RETURN QUERY EXECUTE 'SELECT tag, ' || ' COUNT(tag)::numeric::INTEGER as count ' || 'FROM( ' || ' SELECT jsonb_array_elements(jsondata->''properties''->''@ns:com:here:xyz''->''tags'') as tag ' || ' FROM "'||schema||'"."'||spaceid||'" ' || ' ) a ' || 'GROUP BY tag ORDER by count DESC, tag'; ELSE SELECT reltuples into estimate_cnt FROM pg_class WHERE oid = concat('"',$1, '"."', $2, '"')::regclass; RETURN QUERY EXECUTE 'SELECT tag, ' || ' TRUNC(((COUNT(tag)/'||samplecnt||'::real)* '||estimate_cnt||')::numeric, 0)::INTEGER as count ' || 'FROM( ' || ' SELECT jsonb_array_elements(jsondata->''properties''->''@ns:com:here:xyz''->''tags'') as tag ' || ' FROM "'||schema||'"."'||spaceid||'" TABLESAMPLE SYSTEM_ROWS('||samplecnt||') ' || ' ) a ' || 'GROUP BY tag ORDER by count DESC, tag'; END IF; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_statistic_searchable(jsonb) -- DROP FUNCTION xyz_statistic_searchable(jsonb); CREATE OR REPLACE FUNCTION xyz_statistic_searchable(prop_stat jsonb) RETURNS text AS $BODY$ /** * Description: Determine which root-properties are searchable in a XYZ-space. * ALL = means that all root.properties are searchable * PARTIAL = means that some root.properties are searchable * Not used anymore: (NONE = means that no root.propertiy is searchable) * * Returns: * ALL | PARTIAL */ DECLARE is_searchable_cnt integer := 0; DECLARE prop_cnt integer; DECLARE cur_rec record; BEGIN select jsonb_array_length(prop_stat) into prop_cnt; FOR cur_rec IN SELECT COALESCE((t->'searchable')::text, 'false')::boolean as searchable from jsonb_array_elements(prop_stat) as t LOOP IF cur_rec.searchable = true THEN is_searchable_cnt = is_searchable_cnt + 1; END IF; END LOOP; IF is_searchable_cnt = 0 THEN /** Was NONE, but we have id,updatedAt,createAt as SystemProperties -> so the space is PARITAL searchable */ return 'PARTIAL'; ELSEIF is_searchable_cnt < prop_cnt THEN return 'PARTIAL'; ELSEIF is_searchable_cnt = prop_cnt THEN return 'ALL'; END IF; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_statistic_xl_space(text, text, integer) -- DROP FUNCTION xyz_statistic_xl_space(text, text, integer); CREATE OR REPLACE FUNCTION xyz_statistic_xl_space( IN schema text, IN spaceid text, IN tablesamplecnt integer) RETURNS TABLE(tablesize jsonb, geometrytypes jsonb, properties jsonb, tags jsonb, count jsonb, bbox jsonb, searchable text) AS $BODY$ /** * Description: Returns completet statisic about a big xyz-space. Therefor the results are including estimated values to reduce * the runtime of the query. * * Parameters: * @schema - schema in which the XYZ-spaces are located * @spaceid - id of the XYZ-space (tablename) * @tablesamplecnt - define the value which get further used in the tablesample statement. If it is null full table scans will be performed. * * Returns (table): * tabelsize - storage size of space * geometrytypes - list of geometry-types which are present * properties - list of available properties and their counts * tags - number of tags found in space * count - number of records found in space * bbox - bbox in which the space objects are located * searchable - ALL | PARTIAL */ BEGIN RETURN QUERY EXECUTE 'SELECT format(''{"value": %s, "estimated" : true}'', tablesize)::jsonb as tablesize, ' ||' format(''{"value": %s, "estimated" : true}'', COALESCE(geometrytypes,''[]''))::jsonb as geometrytypes, ' ||' format(''{"value": %s, "estimated" : true}'', COALESCE((prop->''properties''),''[]''))::jsonb, ' ||' format(''{"value": %s, "estimated" : true}'', COALESCE(tags,''[]''))::jsonb as tags, ' ||' format(''{"value": %s, "estimated" : true}'', count)::jsonb as count, ' ||' format(''{"value": "%s", "estimated" : true}'', bbox)::jsonb as bbox, ' ||' prop->>''searchable'' as searchable FROM (' ||' SELECT pg_total_relation_size('''||schema||'."'||spaceid||'"'') AS tablesize, ' ||' (SELECT jsonb_agg(type) as geometryTypes from (' ||' SELECT distinct xyz_geotype(geo) as type ' ||' FROM "'||schema||'"."'||spaceid||'" TABLESAMPLE SYSTEM_ROWS('||tablesamplecnt||') ' ||' ) geo_type ' ||' ), ' ||' (select format(''{"searchable": "%s", "properties" : %s}'',searchable, COALESCE (properties,''[]''))::jsonb ' ||' from ( ' ||' select jsonb_agg( ' ||' case when t = 0 OR t = c then ' ||' ( select row_to_json( prop ) from ( select key, count, datatype ) prop ) ' ||' else ' ||' ( select row_to_json( prop ) from ( select key, count, searchable, datatype ) prop ) ' ||' end ' ||' ) as properties, ' ||' xyz_statistic_searchable(jsonb_agg( (select row_to_json( prop ) from ( select key, count, searchable, datatype ) prop ) ) )as searchable ' ||' from ( ' ||' select *, (sum( searchable::integer ) over ()) t, count(1) over() c ' ||' from ( ' ||' select key,count, searchable, datatype ' ||' FROM xyz_property_statistic_v2('''||schema||''','''||spaceid||''', '||tablesamplecnt||') ' ||' ) oo ' ||' ) ooo ' ||' )d ' ||' ) as prop, ' ||' (SELECT COALESCE(jsonb_agg(tag_stat), ''[]''::jsonb) as tags ' ||' FROM ( ' ||' select * FROM xyz_tag_statistic('''||schema||''','''||spaceid||''', '||tablesamplecnt||') ' ||' ) as tag_stat ' ||' ),' ||' reltuples AS count, ' ||' (SELECT xyz_space_bbox('''||schema||''','''||spaceid||''', '||tablesamplecnt||')) AS bbox ' ||' FROM pg_class ' ||' WHERE oid='''||schema||'."'||spaceid||'"''::regclass) A'; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_statistic_space(text, text) -- DROP FUNCTION xyz_statistic_space(text, text); CREATE OR REPLACE FUNCTION xyz_statistic_space( IN schema text, IN spaceid text) RETURNS TABLE(tablesize jsonb, geometrytypes jsonb, properties jsonb, tags jsonb, count jsonb, bbox jsonb, searchable text) AS $BODY$ /** * Description: Returns complete statistic about a XYZ-space. The thresholds for small and big tables are defined here. * * Parameters: * @schema - schema in which the XYZ-spaces are located * @spaceid - id of the space (tablename) * * Returns (table): * tabelsize - storage size of space * geometrytypes - list of geometrytypes which are present * properties - list of available properties and their counts * tags - number of tags found in space * count - number of records found in space * bbox - bbox in which the space objects are located * searchable - ALL | PARTIAL */ /** Defines how much records a big table has */ DECLARE big_space_threshold integer := 10000; /** Defines the value for the tablesample statement */ DECLARE tablesamplecnt integer := 1000; /** used for big-spaces and get filled via pg_class */ DECLARE estimate_cnt bigint; BEGIN SELECT reltuples into estimate_cnt FROM pg_class WHERE oid = concat('"',$1, '"."', $2, '"')::regclass; IF estimate_cnt > big_space_threshold THEN RETURN QUERY EXECUTE 'select * from xyz_statistic_xl_space('''||schema||''', '''||spaceid||''' , '||tablesamplecnt||')'; ELSE RETURN QUERY EXECUTE 'select * from xyz_statistic_xs_space('''||schema||''','''||spaceid||''')'; END IF; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_statistic_xs_space(text, text) -- DROP FUNCTION xyz_statistic_xs_space(text, text); CREATE OR REPLACE FUNCTION xyz_statistic_xs_space( IN schema text, IN spaceid text) RETURNS TABLE(tablesize jsonb, geometrytypes jsonb, properties jsonb, tags jsonb, count jsonb, bbox jsonb, searchable text) AS $BODY$ /** * Description: Returns complete statistic about a small XYZ-space. It should not get used to analyze big spaces because * full table scans are getting performed. * * Parameters: * @schema - schema in which the XYZ-spaces are located * @spaceid - id of the XYZ-space (tablename) * * Returns (table): * tabelsize - storage size of space * geometrytypes - list of geometrytypes which are present * properties - list of available properties and their counts * tags - number of tags found in space * count - number of records found in space * bbox - bbox in which the space objects are located * estimated - true if values are estimated * searchable - ALL */ BEGIN RETURN QUERY EXECUTE 'SELECT format(''{"value": %s, "estimated" : true}'', tablesize)::jsonb as tablesize, ' ||' format(''{"value": %s, "estimated" : false}'', COALESCE(geometrytypes,''[]''))::jsonb as geometrytypes, ' ||' format(''{"value": %s, "estimated" : false}'', COALESCE(properties,''[]''))::jsonb, ' ||' format(''{"value": %s, "estimated" : false}'', COALESCE(tags,''[]''))::jsonb as tags, ' ||' format(''{"value": %s, "estimated" : false}'', count)::jsonb as count, ' ||' format(''{"value": "%s", "estimated" : false}'', bbox)::jsonb as bbox, ' ||' ''ALL''::text AS searchable FROM (' ||' SELECT pg_total_relation_size('''||schema||'."'||spaceid||'"'') AS tablesize, ' ||' (SELECT jsonb_agg(type) as geometryTypes from ( ' ||' SELECT distinct xyz_geotype(geo) as type ' ||' FROM "'||schema||'"."'||spaceid||'" ' ||' ) geo_type ' ||' ),' ||' (SELECT COALESCE(jsonb_agg(prop_stat), ''[]''::jsonb) as properties ' ||' FROM ( ' ||' select key,count,datatype FROM xyz_property_statistic_v2('''||schema||''','''||spaceid||''', null) ' ||' )as prop_stat ' ||' ), ' ||' (SELECT COALESCE(jsonb_agg(tag_stat), ''[]''::jsonb) as tags ' ||' FROM ( ' ||' select * FROM xyz_tag_statistic('''||schema||''','''||spaceid||''', null) ' ||' ) as tag_stat ' ||' ), ' ||' (SELECT count(*) FROM "'||schema||'"."'||spaceid||'") AS count, ' ||' (SELECT xyz_space_bbox('''||schema||''','''||spaceid||''', null)) AS bbox ' ||' FROM pg_class ' ||' WHERE oid='''||schema||'."'||spaceid||'"''::regclass) A'; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_create_idxs_for_space(text, text) -- DROP FUNCTION xyz_create_idxs_for_space(text, text); CREATE OR REPLACE FUNCTION xyz_create_idxs_for_space( schema text, space text) RETURNS void AS $BODY$ /** * Description: Creates missing Indices on a XYZ-Space based on the index-proposals written down in the xyz_config.xyz_idxs_status maintenance table. * Only used manually in case of errors. * * Parameters: * @schema - schema in which the XYZ-spaces are located * @spaceid - id of the XYZ-space (tablename) */ DECLARE xyz_space_stat record; DECLARE xyz_idx_proposal record; BEGIN FOR xyz_space_stat IN SELECT * FROM xyz_config.xyz_idxs_status WHERE idx_proposals IS NOT NULL AND idx_creation_finished = false AND count >= 10000 AND spaceid = space LOOP RAISE NOTICE 'CREATE IDX FOR: % - PROPOSALS ARE: %',xyz_space_stat.spaceid,xyz_space_stat.idx_proposals; /** set indication that idx creation is running */ UPDATE xyz_config.xyz_idxs_status SET idx_creation_finished = false WHERE spaceid = xyz_space_stat.spaceid; FOR xyz_idx_proposal IN SELECT value->>'property' as property, value->>'type' as type from jsonb_array_elements(xyz_space_stat.idx_proposals) LOOP RAISE NOTICE '---PROPERTY: % - TYPE: %',xyz_idx_proposal.property, xyz_idx_proposal.type; BEGIN PERFORM xyz_index_creation_on_property(schema,xyz_space_stat.spaceid, xyz_idx_proposal.property,'a'); EXCEPTION WHEN OTHERS THEN RAISE NOTICE '---IDX FOR PROPERTY % already exists on %s - ABBORT!',xyz_space_stat.spaceid,xyz_idx_proposal.property; END; END LOOP; /** set indication that idx creation is finished */ UPDATE xyz_config.xyz_idxs_status SET idx_creation_finished = true, idx_proposals = null, idx_available = (select jsonb_agg(FORMAT('{"property":"%s","src":"%s"}',idx_property, src)::jsonb) from ( select * from xyz_index_list_all_available(schema,xyz_space_stat.spaceid) order by idx_property )b ) WHERE spaceid = xyz_space_stat.spaceid; END LOOP; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ -- Function: xyz_remove_unnecessary_idx(text, integer) -- DROP FUNCTION xyz_remove_unnecessary_idx(text, integer); CREATE OR REPLACE FUNCTION xyz_remove_unnecessary_idx( schema text, min_table_count integer) RETURNS void AS $BODY$ /** * Description: Deletes unwanted Indices from XYZ-Space. If a space has less then min_table_count objects, it should not have Indices. * All properties can be used for searches in a small space. So we can delete the existing ones. * Currently only manually used. * * Parameters: * @schema - schema in which the XYZ-spaces are located * @min_table_count - defines the count of rows a table have to has to get included. */ DECLARE xyz_space_list record; DECLARE xyz_idx text; BEGIN FOR xyz_space_list IN select spaceid, idx, count from( select spaceid,count,(select array_agg(idx_name) from xyz_index_list_all_available(schema,spaceid) where src='a') as idx FROM ( select spaceid,count from xyz_config.xyz_idxs_status where count < min_table_count )A )B where idx IS NOT null ORDER BY count LOOP RAISE NOTICE 'DELETE IDX FROM: % [%]',xyz_space_list.spaceid , xyz_space_list.count; FOREACH xyz_idx IN ARRAY xyz_space_list.idx LOOP RAISE NOTICE '-- DROP INDEX %s."%" ', schema, xyz_idx; EXECUTE FORMAT ('DROP INDEX IF EXISTS %s."%s" ', schema, xyz_idx); END LOOP; RAISE NOTICE '- DELETE SPACE ENTRY FORM xyz_idxs_status TABLE: % ',xyz_space_list.spaceid; EXECUTE FORMAT ('DELETE FROM xyz_config.xyz_idxs_status WHERE spaceid=''%s''', xyz_space_list.spaceid); END LOOP; END; $BODY$ LANGUAGE plpgsql VOLATILE; ------------------------------------------------ ------------------------------------------------ ------------------------------------------------ ------ ADD property projection functions CREATE OR REPLACE FUNCTION _prj_jsonb_each(jdoc jsonb) RETURNS TABLE( key text, value jsonb) AS $body$ declare begin if ( jsonb_typeof( jdoc ) = 'object' ) then return query select jsonb_each.key, jsonb_each.value from jsonb_each( jdoc ); elseif ( jsonb_typeof( jdoc ) = 'array' ) then return query select null::text as key, jsonb_array_elements.value from jsonb_array_elements( jdoc ); else return query select null::text as key, jdoc as value; end if; end $body$ language plpgsql immutable; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION prj_flatten(jdoc jsonb) RETURNS TABLE(level integer, jkey text, jval jsonb) AS $body$ with recursive searchobj( level, jkey, jval ) as ( select 0::integer as level, key as jkey, value as jval from jsonb_each( jdoc ) union all select i.level + 1 as level, i.jkey || '.' || coalesce(key, ((row_number() over ( partition by i.jkey ) ) - 1)::text ), i.value as jval from ( select level, jkey, (_prj_jsonb_each( jval )).* from searchobj where 1 = 1 and jsonb_typeof( jval ) in ( 'object', 'array' ) and level < 100 ) i ) select level, jkey, jval from searchobj where 1 = 1 and jsonb_typeof( jval ) in ( 'string', 'number', 'boolean', 'null' ) $body$ LANGUAGE sql IMMUTABLE; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION prj_input_validate(plist text[]) RETURNS text[] AS $body$ select array_agg( i.jpth ) from ( with t1 as ( select unnest( plist ) jpth ) select l.jpth from t1 l join t1 r on ( strpos( l.jpth, r.jpth ) = 1 ) group by 1 having count(1) = 1 ) i $body$ LANGUAGE sql IMMUTABLE; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION prj_rebuild_elem( jpath text, jval jsonb ) RETURNS jsonb AS $body$ select ( string_agg( case when ia then '[' else format('{"%s":',fn) end,'' ) || jval::text || reverse( string_agg( case when ia then ']' else '}' end,'' ) ) )::jsonb from ( select fn, ( fn ~ '^\d+$' ) as ia from regexp_split_to_table( jpath, '\.') fn ) i $body$ LANGUAGE sql IMMUTABLE; ------------------------------------------------ ------------------------------------------------ create or replace function prj_jmerge(CurrentData jsonb,newData jsonb) returns jsonb as $body$ select case jsonb_typeof(CurrentData) when 'object' then case jsonb_typeof(newData) when 'object' then ( select jsonb_object_agg(k, case when e2.v is null then e1.v when e1.v is null then e2.v when e1.v = e2.v then e1.v else prj_jmerge(e1.v, e2.v) end ) from jsonb_each(CurrentData) e1(k, v) full join jsonb_each(newData) e2(k, v) using (k) ) else newData end when 'array' then CurrentData || newData else newData end $body$ language sql immutable; ------------------------------------------------ ------------------------------------------------ create or replace function prj_build( jpaths text[], indata jsonb ) returns jsonb as $body$ declare rval jsonb := '{}'::jsonb; r jsonb; jpath text; jpatharr text[]; begin jpaths = prj_input_validate( jpaths ); foreach jpath in array jpaths loop jpatharr = regexp_split_to_array( jpath, '\.'); r = ( indata#> jpatharr ); if( r notnull ) then if ( cardinality( jpatharr ) = 1 ) then rval := jsonb_set( rval, jpatharr, r ); else rval := prj_jmerge( rval, prj_rebuild_elem( jpath, r )); end if; end if; end loop; return rval; end $body$ language plpgsql immutable; ------------------------------------------------ ---------------- QUADKEY_FUNCTIONS ------------- ------------------------------------------------ CREATE OR REPLACE FUNCTION xyz_qk_point2lrc( geo geometry(Point,4326), lev integer ) RETURNS TABLE(rowY integer, colX integer, level integer) AS $$ DECLARE longitude numeric := ST_X( geo ); latitude numeric := ST_Y( geo ); sinLatitude numeric; numRowsCols constant integer := 1 << lev; BEGIN sinLatitude = sin( latitude * pi() / 180.0 ); colX := floor(((longitude + 180.0) / 360.0) * numRowsCols); rowY := floor((0.5 - ln((1 + sinLatitude) / (1 - sinLatitude)) / (4 * pi())) * numRowsCols ); level := lev; RETURN next; END; $$ LANGUAGE plpgsql IMMUTABLE; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION xyz_qk_lrc2qk(rowY integer, colX integer, level integer ) RETURNS text AS $$ DECLARE qk text := ''; digit integer; digits char(1)[] = array[ '0', '1', '2', '3' ]; mask bit(32); BEGIN for i in reverse level .. 1 LOOP digit = 1; mask = 1::bit(32) << ( i - 1 ); if (colX::bit(32) & mask) <> 0::bit(32) then digit = digit + 1; end if; if (rowY::bit(32) & mask) <> 0::bit(32) then digit = digit + 2; end if; qk = qk || digits[ digit ]; end loop; return qk; END; $$ LANGUAGE plpgsql IMMUTABLE; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION xyz_qk_qk2lrc( qid text ) RETURNS TABLE(rowY integer, colX integer, level integer) AS $$ BEGIN level = length(qid); rowY = 0; colX = 0; for i in 1 .. level loop colX = colX << 1; rowY = rowY << 1; case substr( qid, i, 1 ) when '0' then null; -- nop when '1' then colX = colX + 1; when '2' then rowY = rowY + 1; when '3' then colX = colX + 1; rowY = rowY + 1; end case; end loop; RETURN next; END; $$ LANGUAGE plpgsql IMMUTABLE; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION xyz_qk_lrc2bbox(rowY integer, colX integer, level integer) RETURNS geometry AS $$ DECLARE numRowsCols constant integer := 1 << level; tileSize constant numeric := 2.0 * pi() / numRowsCols; RAD_TO_WGS84 constant numeric := 180. / pi(); maxX numeric; maxY numeric; minX numeric; minY numeric; BEGIN maxX = ((-pi()) + tileSize * (colX + 1)) * RAD_TO_WGS84; minX = ((-pi()) + tileSize * colX) * RAD_TO_WGS84; maxY = pi() - tileSize * rowY; minY = pi() - tileSize * (rowY + 1); maxY = atan( (exp(maxY) - exp(-maxY)) / 2 ) * RAD_TO_WGS84; minY = atan( (exp(minY) - exp(-minY)) / 2 ) * RAD_TO_WGS84; return ST_MakeEnvelope( minX, minY, maxX, maxY, 4326 ); END; $$ LANGUAGE plpgsql IMMUTABLE; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION xyz_qk_qk2bbox( qid text ) RETURNS geometry AS $$ DECLARE geo geometry; BEGIN select into geo xyz_qk_lrc2bbox(rowY,colX,level) from( select rowY,colX,level from xyz_qk_qk2lrc( qid ) )A; return geo; END; $$ LANGUAGE plpgsql IMMUTABLE; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION xyz_qk_point2qk( geo geometry(Point,4326), level integer ) RETURNS text AS $$ DECLARE xyzTile record; BEGIN select * from xyz_qk_point2lrc( geo, level ) into xyzTile; return xyz_qk_lrc2qk(xyzTile.rowY, xyzTile.colX, level); END; $$ LANGUAGE plpgsql IMMUTABLE; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION xyz_qk_bbox2zooml( geometry ) RETURNS integer AS $body$ -- select round( ( ln( 360 ) - ln( st_xmax(i.env) - st_xmin(i.env) ) )/ ln(2) )::integer as zm select round( ( 5.88610403145016 - ln( st_xmax(i.env) - st_xmin(i.env) ) )/ 0.693147180559945 )::integer as zm from ( select st_envelope( $1 ) as env ) i $body$ LANGUAGE sql IMMUTABLE; ------------------------------------------------ ------ftm - fast tile mode ------------------------------------------ CREATE OR REPLACE FUNCTION ftm_SimplifyPreserveTopology( geo geometry, tolerance float) RETURNS geometry AS $BODY$ select case ST_NPoints( geo ) < 20 when true then geo else st_simplifypreservetopology( geo, tolerance ) end $BODY$ LANGUAGE sql IMMUTABLE; ------------------------------------------------ ------------------------------------------------ CREATE OR REPLACE FUNCTION ftm_Simplify( geo geometry, tolerance float) RETURNS geometry AS $BODY$ select case ST_NPoints( geo ) < 20 when true then geo else (select case st_issimple( i.g ) when true then i.g else null end from ( select st_simplify( geo, tolerance,false ) as g ) i ) end $BODY$ LANGUAGE sql IMMUTABLE; ------------------------------------------------ ------------------------------------------------
<filename>grouper/conf/ddl/GrouperDdl_Grouper_install_postgres.sql CREATE TABLE grouper_ddl ( id VARCHAR(40) NOT NULL, object_name VARCHAR(128), db_version INTEGER, last_updated VARCHAR(50), history VARCHAR(4000), PRIMARY KEY (id) ); CREATE UNIQUE INDEX grouper_ddl_object_name_idx ON grouper_ddl (object_name); CREATE TABLE grouper_composites ( id VARCHAR(40) NOT NULL, owner VARCHAR(40) NOT NULL, left_factor VARCHAR(40) NOT NULL, right_factor VARCHAR(40) NOT NULL, type VARCHAR(32) NOT NULL, creator_id VARCHAR(40) NOT NULL, create_time BIGINT NOT NULL, hibernate_version_number BIGINT, context_id VARCHAR(40), PRIMARY KEY (id) ); CREATE UNIQUE INDEX composite_composite_idx ON grouper_composites (owner); CREATE INDEX composite_createtime_idx ON grouper_composites (create_time); CREATE INDEX composite_creator_idx ON grouper_composites (creator_id); CREATE INDEX composite_factor_idx ON grouper_composites (left_factor, right_factor); CREATE INDEX composite_left_factor_idx ON grouper_composites (left_factor); CREATE INDEX composite_right_factor_idx ON grouper_composites (right_factor); CREATE INDEX composite_type_idx ON grouper_composites (type); CREATE INDEX composite_context_idx ON grouper_composites (context_id); CREATE TABLE grouper_fields ( id VARCHAR(40) NOT NULL, name VARCHAR(32) NOT NULL, read_privilege VARCHAR(32) NOT NULL, type VARCHAR(32) NOT NULL, write_privilege VARCHAR(32) NOT NULL, hibernate_version_number BIGINT, context_id VARCHAR(40), PRIMARY KEY (id) ); CREATE UNIQUE INDEX name_and_type ON grouper_fields (name, type); CREATE INDEX fields_context_idx ON grouper_fields (context_id); CREATE INDEX grouper_fields_type_idx ON grouper_fields (type); CREATE TABLE grouper_groups ( id VARCHAR(40) NOT NULL, parent_stem VARCHAR(40) NOT NULL, creator_id VARCHAR(40) NOT NULL, create_time BIGINT NOT NULL, modifier_id VARCHAR(40), modify_time BIGINT, last_membership_change BIGINT, last_imm_membership_change BIGINT, alternate_name VARCHAR(1024), enabled VARCHAR(1) DEFAULT 'T' NOT NULL, enabled_timestamp BIGINT, disabled_timestamp BIGINT, hibernate_version_number BIGINT, name VARCHAR(1024), display_name VARCHAR(1024), extension VARCHAR(255), display_extension VARCHAR(255), description VARCHAR(1024), context_id VARCHAR(40), type_of_group VARCHAR(10) DEFAULT 'group' NOT NULL, id_index BIGINT NOT NULL, PRIMARY KEY (id) ); CREATE INDEX group_alternate_name_idx ON grouper_groups (alternate_name); CREATE INDEX group_enabled_idx ON grouper_groups (enabled); CREATE INDEX group_enabled_time_idx ON grouper_groups (enabled_timestamp); CREATE INDEX group_disabled_time_idx ON grouper_groups (disabled_timestamp); CREATE INDEX group_last_membership_idx ON grouper_groups (last_membership_change); CREATE INDEX group_last_imm_membership_idx ON grouper_groups (last_imm_membership_change); CREATE INDEX group_creator_idx ON grouper_groups (creator_id); CREATE INDEX group_createtime_idx ON grouper_groups (create_time); CREATE INDEX group_modifier_idx ON grouper_groups (modifier_id); CREATE INDEX group_modifytime_idx ON grouper_groups (modify_time); CREATE INDEX group_context_idx ON grouper_groups (context_id); CREATE INDEX group_type_of_group_idx ON grouper_groups (type_of_group); CREATE UNIQUE INDEX group_id_index_idx ON grouper_groups (id_index); CREATE UNIQUE INDEX group_name_idx ON grouper_groups (name); CREATE INDEX group_display_name_idx ON grouper_groups (display_name); CREATE UNIQUE INDEX group_parent_idx ON grouper_groups (parent_stem, extension); CREATE INDEX group_parent_display_idx ON grouper_groups (parent_stem, display_extension); CREATE TABLE grouper_members ( id VARCHAR(40) NOT NULL, subject_id VARCHAR(255) NOT NULL, subject_source VARCHAR(255) NOT NULL, subject_type VARCHAR(255) NOT NULL, hibernate_version_number BIGINT, subject_identifier0 VARCHAR(255), sort_string0 VARCHAR(50), sort_string1 VARCHAR(50), sort_string2 VARCHAR(50), sort_string3 VARCHAR(50), sort_string4 VARCHAR(50), search_string0 VARCHAR(2048), search_string1 VARCHAR(2048), search_string2 VARCHAR(2048), search_string3 VARCHAR(2048), search_string4 VARCHAR(2048), name VARCHAR(2048), description VARCHAR(2048), context_id VARCHAR(40), subject_resolution_deleted VARCHAR(1) DEFAULT 'F' NOT NULL, subject_resolution_resolvable VARCHAR(1) DEFAULT 'T' NOT NULL, PRIMARY KEY (id) ); CREATE UNIQUE INDEX member_subjectsourcetype_idx ON grouper_members (subject_id, subject_source, subject_type); CREATE INDEX member_subjectsource_idx ON grouper_members (subject_source); CREATE INDEX member_subjectid_idx ON grouper_members (subject_id); CREATE INDEX member_subjecttype_idx ON grouper_members (subject_type); CREATE INDEX member_sort_string0_idx ON grouper_members (sort_string0); CREATE INDEX member_sort_string1_idx ON grouper_members (sort_string1); CREATE INDEX member_sort_string2_idx ON grouper_members (sort_string2); CREATE INDEX member_sort_string3_idx ON grouper_members (sort_string3); CREATE INDEX member_sort_string4_idx ON grouper_members (sort_string4); CREATE INDEX member_name_idx ON grouper_members (name); CREATE INDEX member_description_idx ON grouper_members (description); CREATE INDEX member_context_idx ON grouper_members (context_id); CREATE INDEX member_subjidentifier0_idx ON grouper_members (subject_identifier0); CREATE INDEX member_resolvable_idx ON grouper_members (subject_resolution_resolvable); CREATE INDEX member_deleted_idx ON grouper_members (subject_resolution_deleted); CREATE TABLE grouper_memberships ( id VARCHAR(40) NOT NULL, member_id VARCHAR(40) NOT NULL, owner_id VARCHAR(40) NOT NULL, field_id VARCHAR(40) NOT NULL, owner_group_id VARCHAR(40), owner_stem_id VARCHAR(40), owner_attr_def_id VARCHAR(40), via_composite_id VARCHAR(40), enabled VARCHAR(1) DEFAULT 'T' NOT NULL, enabled_timestamp BIGINT, disabled_timestamp BIGINT, mship_type VARCHAR(32) NOT NULL, creator_id VARCHAR(40), create_time BIGINT NOT NULL, hibernate_version_number BIGINT, context_id VARCHAR(40), PRIMARY KEY (id) ); CREATE INDEX membership_owner_group_idx ON grouper_memberships (owner_group_id); CREATE INDEX membership_owner_stem_idx ON grouper_memberships (owner_stem_id); CREATE INDEX membership_owner_attr_idx ON grouper_memberships (owner_attr_def_id); CREATE INDEX membership_via_composite_idx ON grouper_memberships (via_composite_id); CREATE INDEX membership_member_cvia_idx ON grouper_memberships (member_id, via_composite_id); CREATE INDEX membership_gowner_member_idx ON grouper_memberships (owner_group_id, member_id, field_id); CREATE INDEX membership_sowner_member_idx ON grouper_memberships (owner_stem_id, member_id, field_id); CREATE INDEX membership_aowner_member_idx ON grouper_memberships (owner_attr_def_id, member_id, field_id); CREATE INDEX membership_enabled_idx ON grouper_memberships (enabled); CREATE INDEX membership_enabled_time_idx ON grouper_memberships (enabled_timestamp); CREATE INDEX membership_disabled_time_idx ON grouper_memberships (disabled_timestamp); CREATE INDEX membership_createtime_idx ON grouper_memberships (create_time); CREATE INDEX membership_creator_idx ON grouper_memberships (creator_id); CREATE INDEX membership_member_idx ON grouper_memberships (member_id); CREATE INDEX membership_member_list_idx ON grouper_memberships (member_id, field_id); CREATE INDEX membership_gown_field_type_idx ON grouper_memberships (owner_group_id, field_id, mship_type); CREATE INDEX membership_sown_field_type_idx ON grouper_memberships (owner_stem_id, field_id, mship_type); CREATE INDEX membership_type_idx ON grouper_memberships (mship_type); CREATE INDEX membership_context_idx ON grouper_memberships (context_id); CREATE UNIQUE INDEX membership_uniq_idx ON grouper_memberships (owner_id, member_id, field_id); CREATE INDEX groupmem_ownid_fieldid_idx ON grouper_memberships (owner_id, field_id); CREATE TABLE grouper_group_set ( id VARCHAR(40) NOT NULL, owner_attr_def_id VARCHAR(40), owner_attr_def_id_null VARCHAR(40) DEFAULT '<NULL>' NOT NULL, owner_group_id VARCHAR(40), owner_group_id_null VARCHAR(40) DEFAULT '<NULL>' NOT NULL, owner_stem_id VARCHAR(40), owner_stem_id_null VARCHAR(40) DEFAULT '<NULL>' NOT NULL, member_attr_def_id VARCHAR(40), member_group_id VARCHAR(40), member_stem_id VARCHAR(40), member_id VARCHAR(40) NOT NULL, field_id VARCHAR(40) NOT NULL, member_field_id VARCHAR(40) NOT NULL, owner_id VARCHAR(40) NOT NULL, mship_type VARCHAR(16) NOT NULL, depth INTEGER NOT NULL, via_group_id VARCHAR(40), parent_id VARCHAR(40), creator_id VARCHAR(40) NOT NULL, create_time BIGINT NOT NULL, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX group_set_owner_field_idx ON grouper_group_set (owner_id, field_id); CREATE UNIQUE INDEX group_set_uniq_idx ON grouper_group_set (member_id, field_id, owner_id, parent_id, mship_type); CREATE INDEX group_set_creator_idx ON grouper_group_set (creator_id); CREATE INDEX group_set_parent_idx ON grouper_group_set (parent_id); CREATE INDEX group_set_via_group_idx ON grouper_group_set (via_group_id); CREATE INDEX group_set_context_idx ON grouper_group_set (context_id); CREATE INDEX group_set_gmember_idx ON grouper_group_set (member_group_id); CREATE INDEX group_set_smember_idx ON grouper_group_set (member_stem_id); CREATE INDEX group_set_amember_idx ON grouper_group_set (member_attr_def_id); CREATE INDEX group_set_gowner_field_idx ON grouper_group_set (owner_group_id, field_id); CREATE INDEX group_set_sowner_field_idx ON grouper_group_set (owner_stem_id, field_id); CREATE INDEX group_set_aowner_field_idx ON grouper_group_set (owner_attr_def_id, field_id); CREATE INDEX group_set_gowner_member_idx ON grouper_group_set (owner_group_id, member_group_id, field_id, depth); CREATE INDEX group_set_sowner_member_idx ON grouper_group_set (owner_stem_id, member_stem_id, field_id, depth); CREATE INDEX group_set_aowner_member_idx ON grouper_group_set (owner_attr_def_id, member_attr_def_id, field_id, depth); CREATE TABLE grouper_stems ( id VARCHAR(40) NOT NULL, parent_stem VARCHAR(40), name VARCHAR(255) NOT NULL, display_name VARCHAR(255) NOT NULL, creator_id VARCHAR(40) NOT NULL, create_time BIGINT NOT NULL, modifier_id VARCHAR(40), modify_time BIGINT, display_extension VARCHAR(255) NOT NULL, extension VARCHAR(255) NOT NULL, description VARCHAR(1024), last_membership_change BIGINT, alternate_name VARCHAR(255), hibernate_version_number BIGINT, context_id VARCHAR(40), id_index BIGINT NOT NULL, PRIMARY KEY (id) ); CREATE INDEX stem_alternate_name_idx ON grouper_stems (alternate_name); CREATE INDEX stem_last_membership_idx ON grouper_stems (last_membership_change); CREATE INDEX stem_createtime_idx ON grouper_stems (create_time); CREATE INDEX stem_creator_idx ON grouper_stems (creator_id); CREATE INDEX stem_dislpayextn_idx ON grouper_stems (display_extension); CREATE INDEX stem_displayname_idx ON grouper_stems (display_name); CREATE INDEX stem_extn_idx ON grouper_stems (extension); CREATE INDEX stem_modifier_idx ON grouper_stems (modifier_id); CREATE INDEX stem_modifytime_idx ON grouper_stems (modify_time); CREATE UNIQUE INDEX stem_name_idx ON grouper_stems (name); CREATE INDEX stem_parent_idx ON grouper_stems (parent_stem); CREATE INDEX stem_context_idx ON grouper_stems (context_id); CREATE UNIQUE INDEX stem_id_index_idx ON grouper_stems (id_index); CREATE TABLE grouper_audit_type ( action_name VARCHAR(50), audit_category VARCHAR(50), context_id VARCHAR(40), created_on BIGINT, hibernate_version_number BIGINT, id VARCHAR(40) NOT NULL, label_int01 VARCHAR(50), label_int02 VARCHAR(50), label_int03 VARCHAR(50), label_int04 VARCHAR(50), label_int05 VARCHAR(50), label_string01 VARCHAR(50), label_string02 VARCHAR(50), label_string03 VARCHAR(50), label_string04 VARCHAR(50), label_string05 VARCHAR(50), label_string06 VARCHAR(50), label_string07 VARCHAR(50), label_string08 VARCHAR(50), last_updated BIGINT, PRIMARY KEY (id) ); CREATE UNIQUE INDEX audit_type_category_type_idx ON grouper_audit_type (audit_category, action_name); CREATE TABLE grouper_audit_entry ( act_as_member_id VARCHAR(40), audit_type_id VARCHAR(40) NOT NULL, context_id VARCHAR(40), created_on BIGINT, description VARCHAR(4000), env_name VARCHAR(50), grouper_engine VARCHAR(50), grouper_version VARCHAR(20), hibernate_version_number BIGINT, id VARCHAR(40) NOT NULL, int01 BIGINT, int02 BIGINT, int03 BIGINT, int04 BIGINT, int05 BIGINT, last_updated BIGINT, logged_in_member_id VARCHAR(40), server_host VARCHAR(50), string01 VARCHAR(4000), string02 VARCHAR(4000), string03 VARCHAR(4000), string04 VARCHAR(4000), string05 VARCHAR(4000), string06 VARCHAR(4000), string07 VARCHAR(4000), string08 VARCHAR(4000), user_ip_address VARCHAR(50), duration_microseconds BIGINT, query_count INTEGER, server_user_name VARCHAR(50), PRIMARY KEY (id) ); CREATE INDEX audit_entry_act_as_idx ON grouper_audit_entry (act_as_member_id); CREATE INDEX audit_entry_act_as_created_idx ON grouper_audit_entry (act_as_member_id, created_on); CREATE INDEX audit_entry_type_idx ON grouper_audit_entry (audit_type_id); CREATE INDEX audit_entry_context_idx ON grouper_audit_entry (context_id); CREATE INDEX audit_entry_logged_in_idx ON grouper_audit_entry (logged_in_member_id); CREATE INDEX audit_entry_string01_idx ON grouper_audit_entry (string01); CREATE INDEX audit_entry_string02_idx ON grouper_audit_entry (string02); CREATE INDEX audit_entry_string03_idx ON grouper_audit_entry (string03); CREATE INDEX audit_entry_string04_idx ON grouper_audit_entry (string04); CREATE INDEX audit_entry_string05_idx ON grouper_audit_entry (string05); CREATE INDEX audit_entry_string06_idx ON grouper_audit_entry (string06); CREATE INDEX audit_entry_string07_idx ON grouper_audit_entry (string07); CREATE INDEX audit_entry_string08_idx ON grouper_audit_entry (string08); CREATE TABLE grouper_change_log_type ( action_name VARCHAR(50), change_log_category VARCHAR(50), context_id VARCHAR(40), created_on BIGINT, hibernate_version_number BIGINT, id VARCHAR(40) NOT NULL, label_string01 VARCHAR(50), label_string02 VARCHAR(50), label_string03 VARCHAR(50), label_string04 VARCHAR(50), label_string05 VARCHAR(50), label_string06 VARCHAR(50), label_string07 VARCHAR(50), label_string08 VARCHAR(50), label_string09 VARCHAR(50), label_string10 VARCHAR(50), label_string11 VARCHAR(50), label_string12 VARCHAR(50), last_updated BIGINT, PRIMARY KEY (id) ); CREATE UNIQUE INDEX change_log_type_cat_type_idx ON grouper_change_log_type (change_log_category, action_name); CREATE TABLE grouper_change_log_consumer ( name VARCHAR(100) NOT NULL, last_sequence_processed BIGINT, last_updated BIGINT, created_on BIGINT, id VARCHAR(40) NOT NULL, hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE UNIQUE INDEX change_log_consumer_name_idx ON grouper_change_log_consumer (name); CREATE TABLE grouper_change_log_entry_temp ( id VARCHAR(40) NOT NULL, change_log_type_id VARCHAR(40) NOT NULL, context_id VARCHAR(40), created_on BIGINT NOT NULL, string01 VARCHAR(4000), string02 VARCHAR(4000), string03 VARCHAR(4000), string04 VARCHAR(4000), string05 VARCHAR(4000), string06 VARCHAR(4000), string07 VARCHAR(4000), string08 VARCHAR(4000), string09 VARCHAR(4000), string10 VARCHAR(4000), string11 VARCHAR(4000), string12 VARCHAR(4000), PRIMARY KEY (id) ); CREATE INDEX change_log_temp_string01_idx ON grouper_change_log_entry_temp (string01); CREATE INDEX change_log_temp_string02_idx ON grouper_change_log_entry_temp (string02); CREATE INDEX change_log_temp_string03_idx ON grouper_change_log_entry_temp (string03); CREATE INDEX change_log_temp_string04_idx ON grouper_change_log_entry_temp (string04); CREATE INDEX change_log_temp_string05_idx ON grouper_change_log_entry_temp (string05); CREATE INDEX change_log_temp_string06_idx ON grouper_change_log_entry_temp (string06); CREATE INDEX change_log_temp_string07_idx ON grouper_change_log_entry_temp (string07); CREATE INDEX change_log_temp_string08_idx ON grouper_change_log_entry_temp (string08); CREATE INDEX change_log_temp_string09_idx ON grouper_change_log_entry_temp (string09); CREATE INDEX change_log_temp_string10_idx ON grouper_change_log_entry_temp (string10); CREATE INDEX change_log_temp_string11_idx ON grouper_change_log_entry_temp (string11); CREATE INDEX change_log_temp_string12_idx ON grouper_change_log_entry_temp (string12); CREATE INDEX change_log_temp_created_on_idx ON grouper_change_log_entry_temp (created_on); CREATE TABLE grouper_change_log_entry ( change_log_type_id VARCHAR(40) NOT NULL, context_id VARCHAR(40), created_on BIGINT, sequence_number BIGINT, string01 VARCHAR(4000), string02 VARCHAR(4000), string03 VARCHAR(4000), string04 VARCHAR(4000), string05 VARCHAR(4000), string06 VARCHAR(4000), string07 VARCHAR(4000), string08 VARCHAR(4000), string09 VARCHAR(4000), string10 VARCHAR(4000), string11 VARCHAR(4000), string12 VARCHAR(4000), PRIMARY KEY (sequence_number) ); CREATE INDEX change_log_entry_string01_idx ON grouper_change_log_entry (string01); CREATE INDEX change_log_entry_string02_idx ON grouper_change_log_entry (string02); CREATE INDEX change_log_entry_string03_idx ON grouper_change_log_entry (string03); CREATE INDEX change_log_entry_string04_idx ON grouper_change_log_entry (string04); CREATE INDEX change_log_entry_string05_idx ON grouper_change_log_entry (string05); CREATE INDEX change_log_entry_string06_idx ON grouper_change_log_entry (string06); CREATE INDEX change_log_entry_string07_idx ON grouper_change_log_entry (string07); CREATE INDEX change_log_entry_string08_idx ON grouper_change_log_entry (string08); CREATE INDEX change_log_entry_string09_idx ON grouper_change_log_entry (string09); CREATE INDEX change_log_entry_string10_idx ON grouper_change_log_entry (string10); CREATE INDEX change_log_entry_string11_idx ON grouper_change_log_entry (string11); CREATE INDEX change_log_entry_string12_idx ON grouper_change_log_entry (string12); CREATE INDEX change_log_sequence_number_idx ON grouper_change_log_entry (sequence_number, created_on); CREATE INDEX change_log_context_id_idx ON grouper_change_log_entry (context_id); CREATE INDEX change_log_created_on_idx ON grouper_change_log_entry (created_on); CREATE TABLE grouper_attribute_def ( attribute_def_public VARCHAR(1) DEFAULT 'F' NOT NULL, attribute_def_type VARCHAR(32) DEFAULT 'attr' NOT NULL, context_id VARCHAR(40), created_on BIGINT, creator_id VARCHAR(40), hibernate_version_number BIGINT, last_updated BIGINT, id VARCHAR(40) NOT NULL, description VARCHAR(1024), extension VARCHAR(255) NOT NULL, name VARCHAR(1024) NOT NULL, multi_assignable VARCHAR(1) DEFAULT 'F' NOT NULL, multi_valued VARCHAR(1) DEFAULT 'F' NOT NULL, stem_id VARCHAR(40) NOT NULL, value_type VARCHAR(32) DEFAULT 'marker' NOT NULL, assign_to_attribute_def VARCHAR(1) DEFAULT 'F' NOT NULL, assign_to_attribute_def_assn VARCHAR(1) DEFAULT 'F' NOT NULL, assign_to_eff_membership VARCHAR(1) DEFAULT 'F' NOT NULL, assign_to_eff_membership_assn VARCHAR(1) DEFAULT 'F' NOT NULL, assign_to_group VARCHAR(1) DEFAULT 'F' NOT NULL, assign_to_group_assn VARCHAR(1) DEFAULT 'F' NOT NULL, assign_to_imm_membership VARCHAR(1) DEFAULT 'F' NOT NULL, assign_to_imm_membership_assn VARCHAR(1) DEFAULT 'F' NOT NULL, assign_to_member VARCHAR(1) DEFAULT 'F' NOT NULL, assign_to_member_assn VARCHAR(1) DEFAULT 'F' NOT NULL, assign_to_stem VARCHAR(1) DEFAULT 'F' NOT NULL, assign_to_stem_assn VARCHAR(1) DEFAULT 'F' NOT NULL, id_index BIGINT NOT NULL, PRIMARY KEY (id) ); CREATE UNIQUE INDEX attribute_def_name_idx ON grouper_attribute_def (name); CREATE INDEX attribute_def_type_idx ON grouper_attribute_def (attribute_def_type); CREATE UNIQUE INDEX attribute_def_id_index_idx ON grouper_attribute_def (id_index); CREATE TABLE grouper_attribute_def_name ( context_id VARCHAR(40), created_on BIGINT, hibernate_version_number BIGINT, last_updated BIGINT, id VARCHAR(40) NOT NULL, description VARCHAR(1024), extension VARCHAR(255) NOT NULL, name VARCHAR(1024) NOT NULL, stem_id VARCHAR(40) NOT NULL, attribute_def_id VARCHAR(40) NOT NULL, display_extension VARCHAR(128) NOT NULL, display_name VARCHAR(1024) NOT NULL, id_index BIGINT NOT NULL, PRIMARY KEY (id) ); CREATE UNIQUE INDEX attribute_def_name_name_idx ON grouper_attribute_def_name (name); CREATE UNIQUE INDEX attr_def_name_id_index_idx ON grouper_attribute_def_name (id_index); CREATE TABLE grouper_attribute_assign ( attribute_assign_action_id VARCHAR(40) NOT NULL, attribute_def_name_id VARCHAR(40) NOT NULL, context_id VARCHAR(40), created_on BIGINT, disabled_time BIGINT, enabled VARCHAR(1) DEFAULT 'T' NOT NULL, enabled_time BIGINT, hibernate_version_number BIGINT, id VARCHAR(40) NOT NULL, last_updated BIGINT, notes VARCHAR(1024), attribute_assign_delegatable VARCHAR(15) NOT NULL, attribute_assign_type VARCHAR(15) NOT NULL, owner_attribute_assign_id VARCHAR(40), owner_attribute_def_id VARCHAR(40), owner_group_id VARCHAR(40), owner_member_id VARCHAR(40), owner_membership_id VARCHAR(40), owner_stem_id VARCHAR(40), disallowed VARCHAR(1), PRIMARY KEY (id) ); CREATE INDEX attribute_asgn_attr_name_idx ON grouper_attribute_assign (attribute_def_name_id, attribute_assign_action_id); CREATE INDEX attr_asgn_own_asgn_idx ON grouper_attribute_assign (owner_attribute_assign_id, attribute_assign_action_id); CREATE INDEX attr_asgn_own_def_idx ON grouper_attribute_assign (owner_attribute_def_id, attribute_assign_action_id); CREATE INDEX attr_asgn_own_group_idx ON grouper_attribute_assign (owner_group_id, attribute_assign_action_id); CREATE INDEX attr_asgn_own_mem_idx ON grouper_attribute_assign (owner_member_id, attribute_assign_action_id); CREATE INDEX attr_asgn_own_mship_idx ON grouper_attribute_assign (owner_membership_id, attribute_assign_action_id); CREATE INDEX attr_asgn_own_stem_idx ON grouper_attribute_assign (owner_stem_id, attribute_assign_action_id); CREATE INDEX attr_asgn_type_idx ON grouper_attribute_assign (attribute_assign_type); CREATE TABLE grouper_attribute_assign_value ( attribute_assign_id VARCHAR(40) NOT NULL, context_id VARCHAR(40), created_on BIGINT, hibernate_version_number BIGINT, id VARCHAR(40) NOT NULL, last_updated BIGINT, value_integer BIGINT, value_floating DOUBLE PRECISION, value_string VARCHAR(4000), value_member_id VARCHAR(40), PRIMARY KEY (id) ); CREATE INDEX attribute_val_assign_idx ON grouper_attribute_assign_value (attribute_assign_id); CREATE INDEX attribute_val_string_idx ON grouper_attribute_assign_value (value_string); CREATE INDEX attribute_val_integer_idx ON grouper_attribute_assign_value (value_integer); CREATE INDEX attribute_val_member_id_idx ON grouper_attribute_assign_value (value_member_id); CREATE TABLE grouper_attribute_def_scope ( attribute_def_id VARCHAR(40) NOT NULL, context_id VARCHAR(40), created_on BIGINT, hibernate_version_number BIGINT, id VARCHAR(40) NOT NULL, last_updated BIGINT, attribute_def_scope_type VARCHAR(32), scope_string VARCHAR(1024), scope_string2 VARCHAR(1024), PRIMARY KEY (id) ); CREATE INDEX attribute_def_scope_atdef_idx ON grouper_attribute_def_scope (attribute_def_id); CREATE TABLE grouper_attribute_def_name_set ( context_id VARCHAR(40), created_on BIGINT, hibernate_version_number BIGINT, id VARCHAR(40) NOT NULL, last_updated BIGINT, depth BIGINT NOT NULL, if_has_attribute_def_name_id VARCHAR(40) NOT NULL, then_has_attribute_def_name_id VARCHAR(40) NOT NULL, parent_attr_def_name_set_id VARCHAR(40), type VARCHAR(32) NOT NULL, PRIMARY KEY (id) ); CREATE INDEX attr_def_name_set_ifhas_idx ON grouper_attribute_def_name_set (if_has_attribute_def_name_id); CREATE INDEX attr_def_name_set_then_idx ON grouper_attribute_def_name_set (then_has_attribute_def_name_id); CREATE UNIQUE INDEX attr_def_name_set_unq_idx ON grouper_attribute_def_name_set (parent_attr_def_name_set_id, if_has_attribute_def_name_id, then_has_attribute_def_name_id); CREATE TABLE grouper_attr_assign_action ( attribute_def_id VARCHAR(40) NOT NULL, context_id VARCHAR(40), created_on BIGINT, hibernate_version_number BIGINT, id VARCHAR(40) NOT NULL, last_updated BIGINT, name VARCHAR(40), PRIMARY KEY (id) ); CREATE INDEX attr_assn_act_def_id_idx ON grouper_attr_assign_action (attribute_def_id); CREATE TABLE grouper_attr_assign_action_set ( context_id VARCHAR(40), created_on BIGINT, hibernate_version_number BIGINT, id VARCHAR(40) NOT NULL, last_updated BIGINT, depth BIGINT NOT NULL, if_has_attr_assn_action_id VARCHAR(40) NOT NULL, then_has_attr_assn_action_id VARCHAR(40) NOT NULL, parent_attr_assn_action_id VARCHAR(40), type VARCHAR(32) NOT NULL, PRIMARY KEY (id) ); CREATE INDEX action_set_ifhas_idx ON grouper_attr_assign_action_set (if_has_attr_assn_action_id); CREATE INDEX action_set_then_idx ON grouper_attr_assign_action_set (then_has_attr_assn_action_id); CREATE UNIQUE INDEX action_set_unq_idx ON grouper_attr_assign_action_set (parent_attr_assn_action_id, if_has_attr_assn_action_id, then_has_attr_assn_action_id); CREATE TABLE grouper_role_set ( context_id VARCHAR(40), created_on BIGINT, hibernate_version_number BIGINT, id VARCHAR(40) NOT NULL, last_updated BIGINT, depth BIGINT NOT NULL, if_has_role_id VARCHAR(40) NOT NULL, then_has_role_id VARCHAR(40) NOT NULL, parent_role_set_id VARCHAR(40), type VARCHAR(32) NOT NULL, PRIMARY KEY (id) ); CREATE INDEX role_set_ifhas_idx ON grouper_role_set (if_has_role_id); CREATE INDEX role_set_then_idx ON grouper_role_set (then_has_role_id); CREATE UNIQUE INDEX role_set_unq_idx ON grouper_role_set (parent_role_set_id, if_has_role_id, then_has_role_id); CREATE TABLE grouper_pit_members ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, subject_id VARCHAR(255) NOT NULL, subject_source VARCHAR(255) NOT NULL, subject_type VARCHAR(255) NOT NULL, subject_identifier0 VARCHAR(255), active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_member_source_id_idx ON grouper_pit_members (source_id); CREATE INDEX pit_member_subject_id_idx ON grouper_pit_members (subject_id); CREATE INDEX pit_member_context_idx ON grouper_pit_members (context_id); CREATE UNIQUE INDEX pit_member_start_idx ON grouper_pit_members (start_time, source_id); CREATE INDEX pit_member_end_idx ON grouper_pit_members (end_time); CREATE INDEX pit_member_subjidentifier0_idx ON grouper_pit_members (subject_identifier0); CREATE TABLE grouper_pit_fields ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, name VARCHAR(32) NOT NULL, type VARCHAR(32) NOT NULL, active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_field_source_id_idx ON grouper_pit_fields (source_id); CREATE INDEX pit_field_name_idx ON grouper_pit_fields (name); CREATE INDEX pit_field_context_idx ON grouper_pit_fields (context_id); CREATE UNIQUE INDEX pit_field_start_idx ON grouper_pit_fields (start_time, source_id); CREATE INDEX pit_field_end_idx ON grouper_pit_fields (end_time); CREATE TABLE grouper_pit_groups ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, name VARCHAR(1024) NOT NULL, stem_id VARCHAR(40) NOT NULL, active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_group_source_id_idx ON grouper_pit_groups (source_id); CREATE INDEX pit_group_name_idx ON grouper_pit_groups (name); CREATE INDEX pit_group_parent_idx ON grouper_pit_groups (stem_id); CREATE INDEX pit_group_context_idx ON grouper_pit_groups (context_id); CREATE UNIQUE INDEX pit_group_start_idx ON grouper_pit_groups (start_time, source_id); CREATE INDEX pit_group_end_idx ON grouper_pit_groups (end_time); CREATE TABLE grouper_pit_stems ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, name VARCHAR(1024) NOT NULL, parent_stem_id VARCHAR(40), active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_stem_source_id_idx ON grouper_pit_stems (source_id); CREATE INDEX pit_stem_name_idx ON grouper_pit_stems (name); CREATE INDEX pit_stem_parent_idx ON grouper_pit_stems (parent_stem_id); CREATE INDEX pit_stem_context_idx ON grouper_pit_stems (context_id); CREATE UNIQUE INDEX pit_stem_start_idx ON grouper_pit_stems (start_time, source_id); CREATE INDEX pit_stem_end_idx ON grouper_pit_stems (end_time); CREATE TABLE grouper_pit_attribute_def ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, name VARCHAR(1024) NOT NULL, stem_id VARCHAR(40) NOT NULL, attribute_def_type VARCHAR(32) NOT NULL, active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_attr_def_source_id_idx ON grouper_pit_attribute_def (source_id); CREATE INDEX pit_attribute_def_name_idx ON grouper_pit_attribute_def (name); CREATE INDEX pit_attribute_def_parent_idx ON grouper_pit_attribute_def (stem_id); CREATE INDEX pit_attribute_def_context_idx ON grouper_pit_attribute_def (context_id); CREATE INDEX pit_attribute_def_type_idx ON grouper_pit_attribute_def (attribute_def_type); CREATE UNIQUE INDEX pit_attribute_def_start_idx ON grouper_pit_attribute_def (start_time, source_id); CREATE INDEX pit_attribute_def_end_idx ON grouper_pit_attribute_def (end_time); CREATE TABLE grouper_pit_memberships ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, owner_id VARCHAR(40) NOT NULL, owner_attr_def_id VARCHAR(40), owner_group_id VARCHAR(40), owner_stem_id VARCHAR(40), member_id VARCHAR(40) NOT NULL, field_id VARCHAR(40) NOT NULL, active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_ms_source_id_idx ON grouper_pit_memberships (source_id); CREATE INDEX pit_ms_context_idx ON grouper_pit_memberships (context_id); CREATE INDEX pit_ms_owner_attr_def_idx ON grouper_pit_memberships (owner_attr_def_id); CREATE INDEX pit_ms_owner_stem_idx ON grouper_pit_memberships (owner_stem_id); CREATE INDEX pit_ms_owner_group_idx ON grouper_pit_memberships (owner_group_id); CREATE INDEX pit_ms_member_idx ON grouper_pit_memberships (member_id); CREATE INDEX pit_ms_field_idx ON grouper_pit_memberships (field_id); CREATE INDEX pit_ms_owner_field_idx ON grouper_pit_memberships (owner_id, field_id); CREATE INDEX pit_ms_owner_member_field_idx ON grouper_pit_memberships (owner_id, member_id, field_id); CREATE UNIQUE INDEX pit_ms_start_idx ON grouper_pit_memberships (start_time, source_id); CREATE INDEX pit_ms_end_idx ON grouper_pit_memberships (end_time); CREATE TABLE grouper_pit_group_set ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, owner_id VARCHAR(40) NOT NULL, owner_attr_def_id VARCHAR(40), owner_group_id VARCHAR(40), owner_stem_id VARCHAR(40), member_id VARCHAR(40) NOT NULL, member_attr_def_id VARCHAR(40), member_group_id VARCHAR(40), member_stem_id VARCHAR(40), field_id VARCHAR(40) NOT NULL, member_field_id VARCHAR(40) NOT NULL, depth INTEGER NOT NULL, parent_id VARCHAR(40), active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_gs_source_id_idx ON grouper_pit_group_set (source_id); CREATE INDEX pit_gs_context_idx ON grouper_pit_group_set (context_id); CREATE INDEX pit_gs_owner_attr_def_idx ON grouper_pit_group_set (owner_attr_def_id); CREATE INDEX pit_gs_owner_group_idx ON grouper_pit_group_set (owner_group_id); CREATE INDEX pit_gs_owner_stem_idx ON grouper_pit_group_set (owner_stem_id); CREATE INDEX pit_gs_member_idx ON grouper_pit_group_set (member_id); CREATE INDEX pit_gs_member_attr_def_idx ON grouper_pit_group_set (member_attr_def_id); CREATE INDEX pit_gs_member_group_idx ON grouper_pit_group_set (member_group_id); CREATE INDEX pit_gs_member_stem_idx ON grouper_pit_group_set (member_stem_id); CREATE INDEX pit_gs_field_idx ON grouper_pit_group_set (field_id); CREATE INDEX pit_gs_member_field_idx ON grouper_pit_group_set (member_field_id); CREATE INDEX pit_gs_parent_idx ON grouper_pit_group_set (parent_id); CREATE INDEX pit_gs_member_member_field_idx ON grouper_pit_group_set (member_id, member_field_id); CREATE INDEX pit_gs_group_field_member_idx ON grouper_pit_group_set (owner_group_id, field_id, member_id); CREATE INDEX pit_gs_owner_field_idx ON grouper_pit_group_set (owner_id, field_id); CREATE INDEX pit_gs_owner_member_field_idx ON grouper_pit_group_set (owner_id, member_id, field_id); CREATE UNIQUE INDEX pit_gs_start_idx ON grouper_pit_group_set (start_time, source_id); CREATE INDEX pit_gs_end_idx ON grouper_pit_group_set (end_time); CREATE TABLE grouper_pit_attribute_assign ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, attribute_def_name_id VARCHAR(40) NOT NULL, attribute_assign_action_id VARCHAR(40) NOT NULL, attribute_assign_type VARCHAR(15) NOT NULL, owner_attribute_assign_id VARCHAR(40), owner_attribute_def_id VARCHAR(40), owner_group_id VARCHAR(40), owner_member_id VARCHAR(40), owner_membership_id VARCHAR(40), owner_stem_id VARCHAR(40), active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, disallowed VARCHAR(1), PRIMARY KEY (id) ); CREATE INDEX pit_attr_assn_source_id_idx ON grouper_pit_attribute_assign (source_id); CREATE INDEX pit_attr_assn_action_idx ON grouper_pit_attribute_assign (attribute_assign_action_id); CREATE INDEX pit_attr_assn_type_idx ON grouper_pit_attribute_assign (attribute_assign_type); CREATE INDEX pit_attr_assn_def_name_idx ON grouper_pit_attribute_assign (attribute_def_name_id, attribute_assign_action_id); CREATE INDEX pit_attr_assn_own_assn_idx ON grouper_pit_attribute_assign (owner_attribute_assign_id, attribute_assign_action_id); CREATE INDEX pit_attr_assn_own_def_idx ON grouper_pit_attribute_assign (owner_attribute_def_id, attribute_assign_action_id); CREATE INDEX pit_attr_assn_own_group_idx ON grouper_pit_attribute_assign (owner_group_id, attribute_assign_action_id); CREATE INDEX pit_attr_assn_own_mem_idx ON grouper_pit_attribute_assign (owner_member_id, attribute_assign_action_id); CREATE INDEX pit_attr_assn_own_mship_idx ON grouper_pit_attribute_assign (owner_membership_id, attribute_assign_action_id); CREATE INDEX pit_attr_assn_own_stem_idx ON grouper_pit_attribute_assign (owner_stem_id, attribute_assign_action_id); CREATE UNIQUE INDEX pit_attr_assn_start_idx ON grouper_pit_attribute_assign (start_time, source_id); CREATE INDEX pit_attr_assn_end_idx ON grouper_pit_attribute_assign (end_time); CREATE TABLE grouper_pit_attr_assn_value ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, attribute_assign_id VARCHAR(40) NOT NULL, value_integer BIGINT, value_floating DOUBLE PRECISION, value_string VARCHAR(4000), value_member_id VARCHAR(40), active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_attr_val_source_id_idx ON grouper_pit_attr_assn_value (source_id); CREATE INDEX pit_attr_val_assign_idx ON grouper_pit_attr_assn_value (attribute_assign_id); CREATE INDEX pit_attr_val_string_idx ON grouper_pit_attr_assn_value (value_string); CREATE INDEX pit_attr_val_integer_idx ON grouper_pit_attr_assn_value (value_integer); CREATE INDEX pit_attr_val_floating_idx ON grouper_pit_attr_assn_value (value_floating); CREATE INDEX pit_attr_val_member_id_idx ON grouper_pit_attr_assn_value (value_member_id); CREATE UNIQUE INDEX pit_attr_val_start_idx ON grouper_pit_attr_assn_value (start_time, source_id); CREATE INDEX pit_attr_val_end_idx ON grouper_pit_attr_assn_value (end_time); CREATE TABLE grouper_pit_attr_assn_actn ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, attribute_def_id VARCHAR(40) NOT NULL, name VARCHAR(40), active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_attr_asn_act_source_id_idx ON grouper_pit_attr_assn_actn (source_id); CREATE INDEX pit_attr_assn_act_def_id_idx ON grouper_pit_attr_assn_actn (attribute_def_id); CREATE UNIQUE INDEX pit_attr_assn_act_start_idx ON grouper_pit_attr_assn_actn (start_time, source_id); CREATE INDEX pit_attr_assn_act_end_idx ON grouper_pit_attr_assn_actn (end_time); CREATE TABLE grouper_pit_attr_def_name ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, stem_id VARCHAR(40) NOT NULL, attribute_def_id VARCHAR(40) NOT NULL, name VARCHAR(1024) NOT NULL, active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_attrdef_name_srcid_idx ON grouper_pit_attr_def_name (source_id); CREATE INDEX pit_attr_def_name_name_idx ON grouper_pit_attr_def_name (name); CREATE INDEX pit_attr_def_name_stem_idx ON grouper_pit_attr_def_name (stem_id); CREATE INDEX pit_attr_def_name_def_idx ON grouper_pit_attr_def_name (attribute_def_id); CREATE UNIQUE INDEX pit_attr_def_name_start_idx ON grouper_pit_attr_def_name (start_time, source_id); CREATE INDEX pit_attr_def_name_end_idx ON grouper_pit_attr_def_name (end_time); CREATE TABLE grouper_pit_attr_def_name_set ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, depth BIGINT NOT NULL, if_has_attribute_def_name_id VARCHAR(40) NOT NULL, then_has_attribute_def_name_id VARCHAR(40) NOT NULL, parent_attr_def_name_set_id VARCHAR(40), active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_attrdef_name_set_srcid_idx ON grouper_pit_attr_def_name_set (source_id); CREATE INDEX pit_attr_def_name_set_if_idx ON grouper_pit_attr_def_name_set (if_has_attribute_def_name_id); CREATE INDEX pit_attr_def_name_set_then_idx ON grouper_pit_attr_def_name_set (then_has_attribute_def_name_id); CREATE INDEX pit_attr_def_name_set_prnt_idx ON grouper_pit_attr_def_name_set (parent_attr_def_name_set_id); CREATE UNIQUE INDEX pit_attr_def_name_set_strt_idx ON grouper_pit_attr_def_name_set (start_time, source_id); CREATE INDEX pit_attr_def_name_set_end_idx ON grouper_pit_attr_def_name_set (end_time); CREATE TABLE grouper_pit_attr_assn_actn_set ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, depth BIGINT NOT NULL, if_has_attr_assn_action_id VARCHAR(40) NOT NULL, then_has_attr_assn_action_id VARCHAR(40) NOT NULL, parent_attr_assn_action_id VARCHAR(40), active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_action_set_source_id_idx ON grouper_pit_attr_assn_actn_set (source_id); CREATE INDEX pit_action_set_if_idx ON grouper_pit_attr_assn_actn_set (if_has_attr_assn_action_id); CREATE INDEX pit_action_set_then_idx ON grouper_pit_attr_assn_actn_set (then_has_attr_assn_action_id); CREATE INDEX pit_action_set_parent_idx ON grouper_pit_attr_assn_actn_set (parent_attr_assn_action_id); CREATE UNIQUE INDEX pit_action_set_start_idx ON grouper_pit_attr_assn_actn_set (start_time, source_id); CREATE INDEX pit_action_set_end_idx ON grouper_pit_attr_assn_actn_set (end_time); CREATE TABLE grouper_pit_role_set ( id VARCHAR(40) NOT NULL, source_id VARCHAR(40) NOT NULL, depth BIGINT NOT NULL, if_has_role_id VARCHAR(40) NOT NULL, then_has_role_id VARCHAR(40) NOT NULL, parent_role_set_id VARCHAR(40), active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_rs_source_id_idx ON grouper_pit_role_set (source_id); CREATE INDEX pit_rs_if_idx ON grouper_pit_role_set (if_has_role_id); CREATE INDEX pit_rs_then_idx ON grouper_pit_role_set (then_has_role_id); CREATE INDEX pit_rs_parent_idx ON grouper_pit_role_set (parent_role_set_id); CREATE UNIQUE INDEX pit_rs_start_idx ON grouper_pit_role_set (start_time, source_id); CREATE INDEX pit_rs_end_idx ON grouper_pit_role_set (end_time); CREATE TABLE grouper_ext_subj ( uuid VARCHAR(40) NOT NULL, name VARCHAR(200), identifier VARCHAR(300), description VARCHAR(500), institution VARCHAR(200), email VARCHAR(200), search_string_lower VARCHAR(4000), create_time BIGINT NOT NULL, creator_member_id VARCHAR(40) NOT NULL, modify_time BIGINT NOT NULL, modifier_member_id VARCHAR(40) NOT NULL, context_id VARCHAR(40) NOT NULL, enabled VARCHAR(1) NOT NULL, disabled_time BIGINT, hibernate_version_number BIGINT NOT NULL, vetted_email_addresses VARCHAR(4000), PRIMARY KEY (uuid) ); CREATE INDEX grouper_ext_subj_cxt_id_idx ON grouper_ext_subj (context_id); CREATE UNIQUE INDEX grouper_ext_subj_idfr_idx ON grouper_ext_subj (identifier); CREATE TABLE grouper_ext_subj_attr ( uuid VARCHAR(40) NOT NULL, attribute_system_name VARCHAR(200) NOT NULL, attribute_value VARCHAR(600), subject_uuid VARCHAR(40) NOT NULL, create_time BIGINT NOT NULL, creator_member_id VARCHAR(40) NOT NULL, modify_time BIGINT NOT NULL, modifier_member_id VARCHAR(40) NOT NULL, context_id VARCHAR(40) NOT NULL, hibernate_version_number BIGINT NOT NULL, PRIMARY KEY (uuid) ); CREATE INDEX grouper_extsubjattr_cxtid_idx ON grouper_ext_subj_attr (context_id); CREATE UNIQUE INDEX grouper_extsubjattr_subj_idx ON grouper_ext_subj_attr (subject_uuid, attribute_system_name); CREATE INDEX grouper_extsubjattr_value_idx ON grouper_ext_subj_attr (attribute_value); CREATE TABLE grouper_stem_set ( id VARCHAR(40) NOT NULL, if_has_stem_id VARCHAR(40) NOT NULL, then_has_stem_id VARCHAR(40) NOT NULL, parent_stem_set_id VARCHAR(40), type VARCHAR(32) NOT NULL, depth BIGINT NOT NULL, created_on BIGINT, last_updated BIGINT, context_id VARCHAR(40), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE INDEX stem_set_ifhas_idx ON grouper_stem_set (if_has_stem_id); CREATE INDEX stem_set_then_idx ON grouper_stem_set (then_has_stem_id); CREATE UNIQUE INDEX stem_set_unq_idx ON grouper_stem_set (parent_stem_set_id, if_has_stem_id, then_has_stem_id); CREATE TABLE grouper_table_index ( id VARCHAR(40) NOT NULL, type VARCHAR(32) NOT NULL, last_index_reserved BIGINT, created_on BIGINT, last_updated BIGINT, hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE UNIQUE INDEX table_index_type_idx ON grouper_table_index (type); CREATE TABLE grouper_loader_log ( id VARCHAR(40) NOT NULL, job_name VARCHAR(512), status VARCHAR(20), started_time TIMESTAMP, ended_time TIMESTAMP, millis INTEGER, millis_get_data INTEGER, millis_load_data INTEGER, job_type VARCHAR(128), job_schedule_type VARCHAR(128), job_description VARCHAR(4000), job_message VARCHAR(4000), host VARCHAR(128), group_uuid VARCHAR(40), job_schedule_quartz_cron VARCHAR(128), job_schedule_interval_seconds INTEGER, last_updated TIMESTAMP, unresolvable_subject_count INTEGER, insert_count INTEGER, update_count INTEGER, delete_count INTEGER, total_count INTEGER, parent_job_name VARCHAR(512), parent_job_id VARCHAR(40), and_group_names VARCHAR(512), job_schedule_priority INTEGER, context_id VARCHAR(40), PRIMARY KEY (id) ); CREATE INDEX grouper_loader_job_name_idx ON grouper_loader_log (job_name, status, ended_time); CREATE INDEX loader_context_idx ON grouper_loader_log (context_id); CREATE TABLE grouper_message ( id VARCHAR(40) NOT NULL, sent_time_micros BIGINT NOT NULL, get_attempt_time_millis BIGINT NOT NULL, get_attempt_count BIGINT NOT NULL, state VARCHAR(20) NOT NULL, get_time_millis BIGINT, from_member_id VARCHAR(40) NOT NULL, queue_name VARCHAR(100) NOT NULL, message_body VARCHAR(4000), hibernate_version_number BIGINT NOT NULL, attempt_time_expires_millis BIGINT, PRIMARY KEY (id) ); CREATE INDEX grpmessage_sent_time_idx ON grouper_message (sent_time_micros); CREATE INDEX grpmessage_state_idx ON grouper_message (state); CREATE INDEX grpmessage_queue_name_idx ON grouper_message (queue_name); CREATE INDEX grpmessage_from_mem_id_idx ON grouper_message (from_member_id); CREATE INDEX grpmessage_attempt_exp_idx ON grouper_message (attempt_time_expires_millis); CREATE UNIQUE INDEX grpmessage_query_idx ON grouper_message (queue_name, state, sent_time_micros, id); CREATE TABLE grouper_QZ_JOB_DETAILS ( sched_name VARCHAR(120) NOT NULL, job_name VARCHAR(200) NOT NULL, job_group VARCHAR(200) NOT NULL, description VARCHAR(250), job_class_name VARCHAR(250) NOT NULL, is_durable BOOLEAN NOT NULL, is_nonconcurrent BOOLEAN NOT NULL, is_update_data BOOLEAN NOT NULL, requests_recovery BOOLEAN NOT NULL, job_data BYTEA, PRIMARY KEY (sched_name, job_name, job_group) ); CREATE INDEX idx_qrtz_j_req_recovery ON grouper_QZ_JOB_DETAILS (sched_name, requests_recovery); CREATE INDEX idx_qrtz_j_grp ON grouper_QZ_JOB_DETAILS (sched_name, job_group); CREATE TABLE grouper_QZ_TRIGGERS ( sched_name VARCHAR(120) NOT NULL, trigger_name VARCHAR(200) NOT NULL, trigger_group VARCHAR(200) NOT NULL, job_name VARCHAR(200) NOT NULL, job_group VARCHAR(200) NOT NULL, description VARCHAR(250), next_fire_time BIGINT, prev_fire_time BIGINT, priority BIGINT, trigger_state VARCHAR(16) NOT NULL, trigger_type VARCHAR(8) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, calendar_name VARCHAR(200), misfire_instr BIGINT, job_data BYTEA, PRIMARY KEY (sched_name, trigger_name, trigger_group) ); CREATE INDEX idx_qrtz_t_j ON grouper_QZ_TRIGGERS (sched_name, job_name, job_group); CREATE INDEX idx_qrtz_t_jg ON grouper_QZ_TRIGGERS (sched_name, job_group); CREATE INDEX idx_qrtz_t_c ON grouper_QZ_TRIGGERS (sched_name, calendar_name); CREATE INDEX idx_qrtz_t_g ON grouper_QZ_TRIGGERS (sched_name, trigger_group); CREATE INDEX idx_qrtz_t_state ON grouper_QZ_TRIGGERS (sched_name, trigger_state); CREATE INDEX idx_qrtz_t_n_state ON grouper_QZ_TRIGGERS (sched_name, trigger_name, trigger_group, trigger_state); CREATE INDEX idx_qrtz_t_n_g_state ON grouper_QZ_TRIGGERS (sched_name, trigger_group, trigger_state); CREATE INDEX idx_qrtz_t_next_fire_time ON grouper_QZ_TRIGGERS (sched_name, next_fire_time); CREATE INDEX idx_qrtz_t_nft_st ON grouper_QZ_TRIGGERS (sched_name, trigger_state, next_fire_time); CREATE INDEX idx_qrtz_t_nft_misfire ON grouper_QZ_TRIGGERS (sched_name, misfire_instr, next_fire_time); CREATE INDEX idx_qrtz_t_nft_st_misfire ON grouper_QZ_TRIGGERS (sched_name, misfire_instr, next_fire_time, trigger_state); CREATE INDEX idx_qrtz_t_nft_st_misfire_grp ON grouper_QZ_TRIGGERS (sched_name, misfire_instr, next_fire_time, trigger_group, trigger_state); CREATE TABLE grouper_QZ_SIMPLE_TRIGGERS ( sched_name VARCHAR(120) NOT NULL, trigger_name VARCHAR(200) NOT NULL, trigger_group VARCHAR(200) NOT NULL, repeat_count BIGINT NOT NULL, repeat_interval BIGINT NOT NULL, times_triggered BIGINT NOT NULL, PRIMARY KEY (sched_name, trigger_name, trigger_group) ); CREATE TABLE grouper_QZ_CRON_TRIGGERS ( sched_name VARCHAR(120) NOT NULL, trigger_name VARCHAR(200) NOT NULL, trigger_group VARCHAR(200) NOT NULL, cron_expression VARCHAR(120) NOT NULL, time_zone_id VARCHAR(80), PRIMARY KEY (sched_name, trigger_name, trigger_group) ); CREATE TABLE grouper_QZ_SIMPROP_TRIGGERS ( sched_name VARCHAR(120) NOT NULL, trigger_name VARCHAR(200) NOT NULL, trigger_group VARCHAR(200) NOT NULL, str_prop_1 VARCHAR(512), str_prop_2 VARCHAR(512), str_prop_3 VARCHAR(512), int_prop_1 BIGINT, int_prop_2 BIGINT, long_prop_1 BIGINT, long_prop_2 BIGINT, dec_prop_1 DOUBLE PRECISION, dec_prop_2 DOUBLE PRECISION, bool_prop_1 BOOLEAN, bool_prop_2 BOOLEAN, PRIMARY KEY (sched_name, trigger_name, trigger_group) ); CREATE TABLE grouper_QZ_BLOB_TRIGGERS ( sched_name VARCHAR(120) NOT NULL, trigger_name VARCHAR(200) NOT NULL, trigger_group VARCHAR(200) NOT NULL, blob_data BYTEA, PRIMARY KEY (sched_name, trigger_name, trigger_group) ); CREATE TABLE grouper_QZ_CALENDARS ( sched_name VARCHAR(120) NOT NULL, calendar_name VARCHAR(200) NOT NULL, calendar BYTEA NOT NULL, PRIMARY KEY (sched_name, calendar_name) ); CREATE TABLE grouper_QZ_PAUSED_TRIGGER_GRPS ( sched_name VARCHAR(120) NOT NULL, trigger_group VARCHAR(200) NOT NULL, PRIMARY KEY (sched_name, trigger_group) ); CREATE TABLE grouper_QZ_FIRED_TRIGGERS ( sched_name VARCHAR(120) NOT NULL, entry_id VARCHAR(95) NOT NULL, trigger_name VARCHAR(200) NOT NULL, trigger_group VARCHAR(200) NOT NULL, instance_name VARCHAR(200) NOT NULL, fired_time BIGINT NOT NULL, sched_time BIGINT NOT NULL, priority BIGINT NOT NULL, state VARCHAR(16) NOT NULL, job_name VARCHAR(200), job_group VARCHAR(200), is_nonconcurrent BOOLEAN, requests_recovery BOOLEAN, PRIMARY KEY (sched_name, entry_id) ); CREATE INDEX idx_qrtz_ft_trig_inst_name ON grouper_QZ_FIRED_TRIGGERS (sched_name, instance_name); CREATE INDEX idx_qrtz_ft_inst_job_req_rcvry ON grouper_QZ_FIRED_TRIGGERS (sched_name, instance_name, requests_recovery); CREATE INDEX idx_qrtz_ft_j_g ON grouper_QZ_FIRED_TRIGGERS (sched_name, job_name, job_group); CREATE INDEX idx_qrtz_ft_jg ON grouper_QZ_FIRED_TRIGGERS (sched_name, job_group); CREATE INDEX idx_qrtz_ft_t_g ON grouper_QZ_FIRED_TRIGGERS (sched_name, trigger_name, trigger_group); CREATE INDEX idx_qrtz_ft_tg ON grouper_QZ_FIRED_TRIGGERS (sched_name, trigger_group); CREATE TABLE grouper_QZ_SCHEDULER_STATE ( sched_name VARCHAR(120) NOT NULL, instance_name VARCHAR(200) NOT NULL, last_checkin_time BIGINT NOT NULL, checkin_interval BIGINT NOT NULL, PRIMARY KEY (sched_name, instance_name) ); CREATE TABLE grouper_QZ_LOCKS ( sched_name VARCHAR(120) NOT NULL, lock_name VARCHAR(40) NOT NULL, PRIMARY KEY (sched_name, lock_name) ); CREATE TABLE grouper_config ( id VARCHAR(40) NOT NULL, config_file_name VARCHAR(100) NOT NULL, config_key VARCHAR(400) NOT NULL, config_value VARCHAR(4000), config_comment VARCHAR(4000), config_file_hierarchy VARCHAR(50) NOT NULL, config_encrypted VARCHAR(1) NOT NULL, config_sequence BIGINT NOT NULL, config_version_index BIGINT, last_updated BIGINT NOT NULL, hibernate_version_number BIGINT NOT NULL, config_value_clob VARCHAR(10000000), config_value_bytes BIGINT, PRIMARY KEY (id) ); CREATE INDEX grpconfig_config_file_idx ON grouper_config (config_file_name, last_updated); CREATE INDEX grpconfig_config_key_idx ON grouper_config (config_key, config_file_name); CREATE INDEX grpconfig_last_updated_idx ON grouper_config (last_updated); CREATE UNIQUE INDEX grpconfig_unique_idx ON grouper_config (config_file_name, config_file_hierarchy, config_key, config_sequence); CREATE TABLE grouper_password ( id VARCHAR(40) NOT NULL, username VARCHAR(255) NOT NULL, member_id VARCHAR(40), entity_type VARCHAR(20), is_hashed VARCHAR(1) NOT NULL, encryption_type VARCHAR(20) NOT NULL, the_salt VARCHAR(255), the_password VARCHAR(4000), application VARCHAR(20) NOT NULL, allowed_from_cidrs VARCHAR(4000), recent_source_addresses VARCHAR(4000), failed_source_addresses VARCHAR(4000), last_authenticated BIGINT, last_edited BIGINT NOT NULL, failed_logins VARCHAR(4000), hibernate_version_number BIGINT, PRIMARY KEY (id) ); CREATE UNIQUE INDEX grppassword_username_idx ON grouper_password (username, application); CREATE TABLE grouper_password_recently_used ( id VARCHAR(40) NOT NULL, grouper_password_id VARCHAR(40) NOT NULL, jwt_jti VARCHAR(100) NOT NULL, jwt_iat INTEGER NOT NULL, PRIMARY KEY (id) ); CREATE TABLE grouper_sync ( id VARCHAR(40) NOT NULL, sync_engine VARCHAR(50), provisioner_name VARCHAR(100) NOT NULL, group_count INTEGER, user_count INTEGER, records_count INTEGER, incremental_index BIGINT, incremental_timestamp TIMESTAMP, last_incremental_sync_run TIMESTAMP, last_full_sync_start TIMESTAMP, last_full_sync_run TIMESTAMP, last_full_metadata_sync_start TIMESTAMP, last_full_metadata_sync_run TIMESTAMP, last_updated TIMESTAMP NOT NULL, PRIMARY KEY (id) ); CREATE UNIQUE INDEX grouper_sync_eng_idx ON grouper_sync (sync_engine, provisioner_name); CREATE UNIQUE INDEX grouper_sync_eng_prov_idx ON grouper_sync (provisioner_name); CREATE TABLE grouper_sync_job ( id VARCHAR(40) NOT NULL, grouper_sync_id VARCHAR(40) NOT NULL, sync_type VARCHAR(50) NOT NULL, job_state VARCHAR(50), last_sync_index BIGINT, last_sync_start TIMESTAMP, last_sync_timestamp TIMESTAMP, last_time_work_was_done TIMESTAMP, heartbeat TIMESTAMP, quartz_job_name VARCHAR(400), percent_complete INTEGER, last_updated TIMESTAMP NOT NULL, error_message VARCHAR(4000), error_timestamp TIMESTAMP, PRIMARY KEY (id) ); CREATE UNIQUE INDEX grouper_sync_st_ty_idx ON grouper_sync_job (grouper_sync_id, sync_type); CREATE TABLE grouper_sync_group ( id VARCHAR(40) NOT NULL, grouper_sync_id VARCHAR(40) NOT NULL, group_id VARCHAR(40) NOT NULL, group_name VARCHAR(1024), group_id_index BIGINT, provisionable VARCHAR(1), in_target VARCHAR(1), in_target_insert_or_exists VARCHAR(1), in_target_start TIMESTAMP, in_target_end TIMESTAMP, provisionable_start TIMESTAMP, provisionable_end TIMESTAMP, last_updated TIMESTAMP NOT NULL, last_group_sync_start TIMESTAMP, last_group_sync TIMESTAMP, last_group_metadata_sync_start TIMESTAMP, last_group_metadata_sync TIMESTAMP, group_from_id2 VARCHAR(4000), group_from_id3 VARCHAR(4000), group_to_id2 VARCHAR(4000), group_to_id3 VARCHAR(4000), metadata_updated TIMESTAMP, error_message VARCHAR(4000), error_timestamp TIMESTAMP, last_time_work_was_done TIMESTAMP, error_code VARCHAR(3), PRIMARY KEY (id) ); CREATE INDEX grouper_sync_gr_sync_id_idx ON grouper_sync_group (grouper_sync_id, last_updated); CREATE INDEX grouper_sync_gr_group_id_idx ON grouper_sync_group (group_id, last_updated); CREATE UNIQUE INDEX grouper_sync_gr_sy_gr_idx ON grouper_sync_group (grouper_sync_id, group_id); CREATE INDEX grouper_sync_gr_f2_idx ON grouper_sync_group (grouper_sync_id, group_from_id2); CREATE INDEX grouper_sync_gr_f3_idx ON grouper_sync_group (grouper_sync_id, group_from_id3); CREATE INDEX grouper_sync_gr_t2_idx ON grouper_sync_group (grouper_sync_id, group_to_id2); CREATE INDEX grouper_sync_gr_t3_idx ON grouper_sync_group (grouper_sync_id, group_to_id3); CREATE INDEX grouper_sync_gr_er_idx ON grouper_sync_group (grouper_sync_id, error_code, error_timestamp); CREATE TABLE grouper_sync_member ( id VARCHAR(40) NOT NULL, grouper_sync_id VARCHAR(40) NOT NULL, member_id VARCHAR(128) NOT NULL, source_id VARCHAR(255), subject_id VARCHAR(255), subject_identifier VARCHAR(255), in_target VARCHAR(1), in_target_insert_or_exists VARCHAR(1), in_target_start TIMESTAMP, in_target_end TIMESTAMP, provisionable VARCHAR(1), provisionable_start TIMESTAMP, provisionable_end TIMESTAMP, last_updated TIMESTAMP NOT NULL, last_user_sync_start TIMESTAMP, last_user_sync TIMESTAMP, last_user_metadata_sync_start TIMESTAMP, last_user_metadata_sync TIMESTAMP, member_from_id2 VARCHAR(4000), member_from_id3 VARCHAR(4000), member_to_id2 VARCHAR(4000), member_to_id3 VARCHAR(4000), metadata_updated TIMESTAMP, last_time_work_was_done TIMESTAMP, error_message VARCHAR(4000), error_timestamp TIMESTAMP, error_code VARCHAR(3), PRIMARY KEY (id) ); CREATE INDEX grouper_sync_us_sync_id_idx ON grouper_sync_member (grouper_sync_id, last_updated); CREATE INDEX grouper_sync_us_mem_id_idx ON grouper_sync_member (member_id, last_updated); CREATE UNIQUE INDEX grouper_sync_us_sm_idx ON grouper_sync_member (grouper_sync_id, member_id); CREATE INDEX grouper_sync_us_f2_idx ON grouper_sync_member (grouper_sync_id, member_from_id2); CREATE INDEX grouper_sync_us_f3_idx ON grouper_sync_member (grouper_sync_id, member_from_id3); CREATE INDEX grouper_sync_us_t2_idx ON grouper_sync_member (grouper_sync_id, member_to_id2); CREATE INDEX grouper_sync_us_t3_idx ON grouper_sync_member (grouper_sync_id, member_to_id3); CREATE INDEX grouper_sync_us_st_gr_idx ON grouper_sync_member (grouper_sync_id, source_id, subject_id); CREATE INDEX grouper_sync_us_er_idx ON grouper_sync_member (grouper_sync_id, error_code, error_timestamp); CREATE TABLE grouper_sync_membership ( id VARCHAR(40) NOT NULL, grouper_sync_id VARCHAR(40) NOT NULL, grouper_sync_group_id VARCHAR(40) NOT NULL, grouper_sync_member_id VARCHAR(40) NOT NULL, in_target VARCHAR(1), in_target_insert_or_exists VARCHAR(1), in_target_start TIMESTAMP, in_target_end TIMESTAMP, last_updated TIMESTAMP NOT NULL, membership_id VARCHAR(4000), membership_id2 VARCHAR(4000), metadata_updated TIMESTAMP, error_message VARCHAR(4000), error_timestamp TIMESTAMP, error_code VARCHAR(3), PRIMARY KEY (id) ); CREATE UNIQUE INDEX grouper_sync_mship_gr_idx ON grouper_sync_membership (grouper_sync_id, grouper_sync_group_id, grouper_sync_member_id); CREATE INDEX grouper_sync_mship_me_idx ON grouper_sync_membership (grouper_sync_group_id, last_updated); CREATE INDEX grouper_sync_mship_sy_idx ON grouper_sync_membership (grouper_sync_id, last_updated); CREATE INDEX grouper_sync_mship_f1_idx ON grouper_sync_membership (grouper_sync_id, membership_id); CREATE INDEX grouper_sync_mship_f2_idx ON grouper_sync_membership (grouper_sync_id, membership_id2); CREATE INDEX grouper_sync_mship_er_idx ON grouper_sync_membership (grouper_sync_id, error_code, error_timestamp); CREATE TABLE grouper_sync_log ( id VARCHAR(40) NOT NULL, grouper_sync_owner_id VARCHAR(40), grouper_sync_id VARCHAR(40), status VARCHAR(20), sync_timestamp_start TIMESTAMP, sync_timestamp TIMESTAMP, description VARCHAR(4000), records_processed INTEGER, records_changed INTEGER, job_took_millis INTEGER, server VARCHAR(200), last_updated TIMESTAMP NOT NULL, description_clob VARCHAR(10000000), description_bytes BIGINT, PRIMARY KEY (id) ); CREATE INDEX grouper_sync_log_sy_idx ON grouper_sync_log (grouper_sync_id, sync_timestamp); CREATE INDEX grouper_sync_log_ow_idx ON grouper_sync_log (grouper_sync_owner_id, sync_timestamp); CREATE TABLE grouper_time ( time_label VARCHAR(10) NOT NULL, the_utc_timestamp TIMESTAMP NOT NULL, this_tz_timestamp TIMESTAMP NOT NULL, utc_millis_since_1970 BIGINT NOT NULL, utc_micros_since_1970 BIGINT NOT NULL, PRIMARY KEY (time_label) ); CREATE TABLE grouper_cache_overall ( overall_cache INTEGER NOT NULL, nanos_since_1970 BIGINT NOT NULL, PRIMARY KEY (overall_cache) ); CREATE TABLE grouper_cache_instance ( cache_name VARCHAR(250) NOT NULL, nanos_since_1970 BIGINT NOT NULL, PRIMARY KEY (cache_name) ); CREATE INDEX grouper_cache_inst_cache_idx ON grouper_cache_instance (nanos_since_1970); CREATE TABLE grouper_recent_mships_conf ( group_uuid_to VARCHAR(40) NOT NULL, group_name_to VARCHAR(1024) NOT NULL, group_uuid_from VARCHAR(40) NOT NULL, group_name_from VARCHAR(1024) NOT NULL, recent_micros BIGINT NOT NULL, include_eligible VARCHAR(1) NOT NULL, PRIMARY KEY (group_uuid_to) ); CREATE INDEX grouper_recent_mships_idfr_idx ON grouper_recent_mships_conf (group_uuid_from); CREATE TABLE grouper_pit_config ( id VARCHAR(40) NOT NULL, config_file_name VARCHAR(100) NOT NULL, config_key VARCHAR(400) NOT NULL, config_value VARCHAR(4000), config_comment VARCHAR(4000), config_file_hierarchy VARCHAR(50) NOT NULL, config_encrypted VARCHAR(1) NOT NULL, config_sequence BIGINT NOT NULL, config_version_index BIGINT, last_updated BIGINT NOT NULL, hibernate_version_number BIGINT NOT NULL, config_value_clob VARCHAR(10000000), config_value_bytes BIGINT, prev_config_value VARCHAR(4000), prev_config_value_clob VARCHAR(10000000), source_id VARCHAR(40) NOT NULL, context_id VARCHAR(40), active VARCHAR(1) NOT NULL, start_time BIGINT NOT NULL, end_time BIGINT, PRIMARY KEY (id) ); CREATE INDEX pit_config_context_idx ON grouper_pit_config (context_id); CREATE INDEX pit_config_source_id_idx ON grouper_pit_config (source_id); CREATE UNIQUE INDEX pit_config_start_idx ON grouper_pit_config (start_time, source_id); CREATE INDEX pit_config_end_idx ON grouper_pit_config (end_time); CREATE TABLE grouper_file ( id VARCHAR(40) NOT NULL, system_name VARCHAR(100) NOT NULL, file_name VARCHAR(100) NOT NULL, file_path VARCHAR(400) NOT NULL, hibernate_version_number BIGINT NOT NULL, context_id VARCHAR(40), file_contents_varchar VARCHAR(4000), file_contents_bytes BIGINT, file_contents_clob VARCHAR(10000000), PRIMARY KEY (id) ); CREATE UNIQUE INDEX grpfile_unique_idx ON grouper_file (file_path); ALTER TABLE grouper_composites ADD CONSTRAINT fk_composites_owner FOREIGN KEY (owner) REFERENCES grouper_groups (id); ALTER TABLE grouper_composites ADD CONSTRAINT fk_composites_left_factor FOREIGN KEY (left_factor) REFERENCES grouper_groups (id); ALTER TABLE grouper_composites ADD CONSTRAINT fk_composites_right_factor FOREIGN KEY (right_factor) REFERENCES grouper_groups (id); ALTER TABLE grouper_composites ADD CONSTRAINT fk_composites_creator_id FOREIGN KEY (creator_id) REFERENCES grouper_members (id); ALTER TABLE grouper_groups ADD CONSTRAINT fk_groups_parent_stem FOREIGN KEY (parent_stem) REFERENCES grouper_stems (id); ALTER TABLE grouper_groups ADD CONSTRAINT fk_groups_creator_id FOREIGN KEY (creator_id) REFERENCES grouper_members (id); ALTER TABLE grouper_groups ADD CONSTRAINT fk_groups_modifier_id FOREIGN KEY (modifier_id) REFERENCES grouper_members (id); ALTER TABLE grouper_memberships ADD CONSTRAINT fk_memberships_member_id FOREIGN KEY (member_id) REFERENCES grouper_members (id); ALTER TABLE grouper_memberships ADD CONSTRAINT fk_membership_field_id FOREIGN KEY (field_id) REFERENCES grouper_fields (id); ALTER TABLE grouper_memberships ADD CONSTRAINT fk_memberships_creator_id FOREIGN KEY (creator_id) REFERENCES grouper_members (id); ALTER TABLE grouper_memberships ADD CONSTRAINT fk_memberships_group_owner_id FOREIGN KEY (owner_group_id) REFERENCES grouper_groups (id); ALTER TABLE grouper_memberships ADD CONSTRAINT fk_memberships_stem_owner_id FOREIGN KEY (owner_stem_id) REFERENCES grouper_stems (id); ALTER TABLE grouper_memberships ADD CONSTRAINT fk_memberships_comp_via_id FOREIGN KEY (via_composite_id) REFERENCES grouper_composites (id); ALTER TABLE grouper_memberships ADD CONSTRAINT fk_mship_attr_def_owner_id FOREIGN KEY (owner_attr_def_id) REFERENCES grouper_attribute_def (id); ALTER TABLE grouper_group_set ADD CONSTRAINT fk_group_set_creator_id FOREIGN KEY (creator_id) REFERENCES grouper_members (id); ALTER TABLE grouper_group_set ADD CONSTRAINT fk_group_set_field_id FOREIGN KEY (field_id) REFERENCES grouper_fields (id); ALTER TABLE grouper_group_set ADD CONSTRAINT fk_group_set_via_group_id FOREIGN KEY (via_group_id) REFERENCES grouper_groups (id); ALTER TABLE grouper_group_set ADD CONSTRAINT fk_group_set_parent_id FOREIGN KEY (parent_id) REFERENCES grouper_group_set (id); ALTER TABLE grouper_group_set ADD CONSTRAINT fk_group_set_owner_attr_def_id FOREIGN KEY (owner_attr_def_id) REFERENCES grouper_attribute_def (id); ALTER TABLE grouper_group_set ADD CONSTRAINT fk_group_set_owner_group_id FOREIGN KEY (owner_group_id) REFERENCES grouper_groups (id); ALTER TABLE grouper_group_set ADD CONSTRAINT fk_group_set_member_group_id FOREIGN KEY (member_group_id) REFERENCES grouper_groups (id); ALTER TABLE grouper_group_set ADD CONSTRAINT fk_group_set_owner_stem_id FOREIGN KEY (owner_stem_id) REFERENCES grouper_stems (id); ALTER TABLE grouper_group_set ADD CONSTRAINT fk_group_set_member_stem_id FOREIGN KEY (member_stem_id) REFERENCES grouper_stems (id); ALTER TABLE grouper_group_set ADD CONSTRAINT fk_group_set_member_field_id FOREIGN KEY (member_field_id) REFERENCES grouper_fields (id); ALTER TABLE grouper_stems ADD CONSTRAINT fk_stems_parent_stem FOREIGN KEY (parent_stem) REFERENCES grouper_stems (id); ALTER TABLE grouper_stems ADD CONSTRAINT fk_stems_creator_id FOREIGN KEY (creator_id) REFERENCES grouper_members (id); ALTER TABLE grouper_stems ADD CONSTRAINT fk_stems_modifier_id FOREIGN KEY (modifier_id) REFERENCES grouper_members (id); ALTER TABLE grouper_audit_entry ADD CONSTRAINT fk_audit_entry_type_id FOREIGN KEY (audit_type_id) REFERENCES grouper_audit_type (id); ALTER TABLE grouper_change_log_entry ADD CONSTRAINT fk_change_log_entry_type_id FOREIGN KEY (change_log_type_id) REFERENCES grouper_change_log_type (id); ALTER TABLE grouper_attribute_def ADD CONSTRAINT fk_attr_def_stem FOREIGN KEY (stem_id) REFERENCES grouper_stems (id); ALTER TABLE grouper_attribute_def_name ADD CONSTRAINT fk_attr_def_name_stem FOREIGN KEY (stem_id) REFERENCES grouper_stems (id); ALTER TABLE grouper_attribute_def_name ADD CONSTRAINT fk_attr_def_name_def_id FOREIGN KEY (attribute_def_id) REFERENCES grouper_attribute_def (id); ALTER TABLE grouper_attribute_assign ADD CONSTRAINT fk_attr_assign_action_id FOREIGN KEY (attribute_assign_action_id) REFERENCES grouper_attr_assign_action (id); ALTER TABLE grouper_attribute_assign ADD CONSTRAINT fk_attr_assign_def_name_id FOREIGN KEY (attribute_def_name_id) REFERENCES grouper_attribute_def_name (id); ALTER TABLE grouper_attribute_assign ADD CONSTRAINT fk_attr_assign_owner_assign_id FOREIGN KEY (owner_attribute_assign_id) REFERENCES grouper_attribute_assign (id); ALTER TABLE grouper_attribute_assign ADD CONSTRAINT fk_attr_assign_owner_def_id FOREIGN KEY (owner_attribute_def_id) REFERENCES grouper_attribute_def (id); ALTER TABLE grouper_attribute_assign ADD CONSTRAINT fk_attr_assign_owner_group_id FOREIGN KEY (owner_group_id) REFERENCES grouper_groups (id); ALTER TABLE grouper_attribute_assign ADD CONSTRAINT fk_attr_assign_owner_member_id FOREIGN KEY (owner_member_id) REFERENCES grouper_members (id); ALTER TABLE grouper_attribute_assign ADD CONSTRAINT fk_attr_assign_owner_mship_id FOREIGN KEY (owner_membership_id) REFERENCES grouper_memberships (id); ALTER TABLE grouper_attribute_assign ADD CONSTRAINT fk_attr_assign_owner_stem_id FOREIGN KEY (owner_stem_id) REFERENCES grouper_stems (id); ALTER TABLE grouper_attribute_assign_value ADD CONSTRAINT fk_attr_assign_value_assign_id FOREIGN KEY (attribute_assign_id) REFERENCES grouper_attribute_assign (id); ALTER TABLE grouper_attribute_def_scope ADD CONSTRAINT fk_attr_def_scope_def_id FOREIGN KEY (attribute_def_id) REFERENCES grouper_attribute_def (id); ALTER TABLE grouper_attribute_def_name_set ADD CONSTRAINT fk_attr_def_name_set_parent FOREIGN KEY (parent_attr_def_name_set_id) REFERENCES grouper_attribute_def_name_set (id); ALTER TABLE grouper_attribute_def_name_set ADD CONSTRAINT fk_attr_def_name_if FOREIGN KEY (if_has_attribute_def_name_id) REFERENCES grouper_attribute_def_name (id); ALTER TABLE grouper_attribute_def_name_set ADD CONSTRAINT fk_attr_def_name_then FOREIGN KEY (then_has_attribute_def_name_id) REFERENCES grouper_attribute_def_name (id); ALTER TABLE grouper_attr_assign_action ADD CONSTRAINT fk_attr_assn_attr_def_id FOREIGN KEY (attribute_def_id) REFERENCES grouper_attribute_def (id); ALTER TABLE grouper_attr_assign_action_set ADD CONSTRAINT fk_attr_action_set_parent FOREIGN KEY (parent_attr_assn_action_id) REFERENCES grouper_attr_assign_action_set (id); ALTER TABLE grouper_attr_assign_action_set ADD CONSTRAINT fk_attr_action_set_if FOREIGN KEY (if_has_attr_assn_action_id) REFERENCES grouper_attr_assign_action (id); ALTER TABLE grouper_attr_assign_action_set ADD CONSTRAINT fk_attr_action_set_then FOREIGN KEY (then_has_attr_assn_action_id) REFERENCES grouper_attr_assign_action (id); ALTER TABLE grouper_role_set ADD CONSTRAINT fk_role_set_parent FOREIGN KEY (parent_role_set_id) REFERENCES grouper_role_set (id); ALTER TABLE grouper_role_set ADD CONSTRAINT fk_role_if FOREIGN KEY (if_has_role_id) REFERENCES grouper_groups (id); ALTER TABLE grouper_role_set ADD CONSTRAINT fk_role_then FOREIGN KEY (then_has_role_id) REFERENCES grouper_groups (id); ALTER TABLE grouper_pit_groups ADD CONSTRAINT fk_pit_group_stem FOREIGN KEY (stem_id) REFERENCES grouper_pit_stems (id); ALTER TABLE grouper_pit_stems ADD CONSTRAINT fk_pit_stem_parent FOREIGN KEY (parent_stem_id) REFERENCES grouper_pit_stems (id); ALTER TABLE grouper_pit_attribute_def ADD CONSTRAINT fk_pit_attr_def_stem FOREIGN KEY (stem_id) REFERENCES grouper_pit_stems (id); ALTER TABLE grouper_pit_memberships ADD CONSTRAINT fk_pit_ms_owner_attrdef_id FOREIGN KEY (owner_attr_def_id) REFERENCES grouper_pit_attribute_def (id); ALTER TABLE grouper_pit_memberships ADD CONSTRAINT fk_pit_ms_owner_group_id FOREIGN KEY (owner_group_id) REFERENCES grouper_pit_groups (id); ALTER TABLE grouper_pit_memberships ADD CONSTRAINT fk_pit_ms_owner_stem_id FOREIGN KEY (owner_stem_id) REFERENCES grouper_pit_stems (id); ALTER TABLE grouper_pit_memberships ADD CONSTRAINT fk_pit_ms_member_id FOREIGN KEY (member_id) REFERENCES grouper_pit_members (id); ALTER TABLE grouper_pit_memberships ADD CONSTRAINT fk_pit_ms_field_id FOREIGN KEY (field_id) REFERENCES grouper_pit_fields (id); ALTER TABLE grouper_pit_group_set ADD CONSTRAINT fk_pit_gs_owner_attrdef_id FOREIGN KEY (owner_attr_def_id) REFERENCES grouper_pit_attribute_def (id); ALTER TABLE grouper_pit_group_set ADD CONSTRAINT fk_pit_gs_owner_group_id FOREIGN KEY (owner_group_id) REFERENCES grouper_pit_groups (id); ALTER TABLE grouper_pit_group_set ADD CONSTRAINT fk_pit_gs_owner_stem_id FOREIGN KEY (owner_stem_id) REFERENCES grouper_pit_stems (id); ALTER TABLE grouper_pit_group_set ADD CONSTRAINT fk_pit_gs_member_attrdef_id FOREIGN KEY (member_attr_def_id) REFERENCES grouper_pit_attribute_def (id); ALTER TABLE grouper_pit_group_set ADD CONSTRAINT fk_pit_gs_member_group_id FOREIGN KEY (member_group_id) REFERENCES grouper_pit_groups (id); ALTER TABLE grouper_pit_group_set ADD CONSTRAINT fk_pit_gs_member_stem_id FOREIGN KEY (member_stem_id) REFERENCES grouper_pit_stems (id); ALTER TABLE grouper_pit_group_set ADD CONSTRAINT fk_pit_gs_field_id FOREIGN KEY (field_id) REFERENCES grouper_pit_fields (id); ALTER TABLE grouper_pit_group_set ADD CONSTRAINT fk_pit_gs_member_field_id FOREIGN KEY (member_field_id) REFERENCES grouper_pit_fields (id); ALTER TABLE grouper_pit_group_set ADD CONSTRAINT fk_pit_gs_parent_id FOREIGN KEY (parent_id) REFERENCES grouper_pit_group_set (id); ALTER TABLE grouper_pit_attribute_assign ADD CONSTRAINT fk_pit_attr_assn_action_id FOREIGN KEY (attribute_assign_action_id) REFERENCES grouper_pit_attr_assn_actn (id); ALTER TABLE grouper_pit_attribute_assign ADD CONSTRAINT fk_pit_attr_assn_def_name_id FOREIGN KEY (attribute_def_name_id) REFERENCES grouper_pit_attr_def_name (id); ALTER TABLE grouper_pit_attribute_assign ADD CONSTRAINT fk_pit_attr_assn_owner_assn_id FOREIGN KEY (owner_attribute_assign_id) REFERENCES grouper_pit_attribute_assign (id); ALTER TABLE grouper_pit_attribute_assign ADD CONSTRAINT fk_pit_attr_assn_owner_def_id FOREIGN KEY (owner_attribute_def_id) REFERENCES grouper_pit_attribute_def (id); ALTER TABLE grouper_pit_attribute_assign ADD CONSTRAINT fk_pit_attr_assn_owner_grp_id FOREIGN KEY (owner_group_id) REFERENCES grouper_pit_groups (id); ALTER TABLE grouper_pit_attribute_assign ADD CONSTRAINT fk_pit_attr_assn_owner_mem_id FOREIGN KEY (owner_member_id) REFERENCES grouper_pit_members (id); ALTER TABLE grouper_pit_attribute_assign ADD CONSTRAINT fk_pit_attr_assn_owner_ms_id FOREIGN KEY (owner_membership_id) REFERENCES grouper_pit_memberships (id); ALTER TABLE grouper_pit_attribute_assign ADD CONSTRAINT fk_pit_attr_assn_owner_stem_id FOREIGN KEY (owner_stem_id) REFERENCES grouper_pit_stems (id); ALTER TABLE grouper_pit_attr_assn_value ADD CONSTRAINT fk_pit_attr_assn_value_assn_id FOREIGN KEY (attribute_assign_id) REFERENCES grouper_pit_attribute_assign (id); ALTER TABLE grouper_pit_attr_assn_actn ADD CONSTRAINT fk_pit_attr_assn_attr_def_id FOREIGN KEY (attribute_def_id) REFERENCES grouper_pit_attribute_def (id); ALTER TABLE grouper_pit_attr_def_name ADD CONSTRAINT fk_pit_attr_def_name_stem FOREIGN KEY (stem_id) REFERENCES grouper_pit_stems (id); ALTER TABLE grouper_pit_attr_def_name ADD CONSTRAINT fk_pit_attr_def_name_def_id FOREIGN KEY (attribute_def_id) REFERENCES grouper_pit_attribute_def (id); ALTER TABLE grouper_pit_attr_def_name_set ADD CONSTRAINT fk_pit_attr_def_name_set_parnt FOREIGN KEY (parent_attr_def_name_set_id) REFERENCES grouper_pit_attr_def_name_set (id); ALTER TABLE grouper_pit_attr_def_name_set ADD CONSTRAINT fk_pit_attr_def_name_if FOREIGN KEY (if_has_attribute_def_name_id) REFERENCES grouper_pit_attr_def_name (id); ALTER TABLE grouper_pit_attr_def_name_set ADD CONSTRAINT fk_pit_attr_def_name_then FOREIGN KEY (then_has_attribute_def_name_id) REFERENCES grouper_pit_attr_def_name (id); ALTER TABLE grouper_pit_attr_assn_actn_set ADD CONSTRAINT fk_pit_attr_action_set_parent FOREIGN KEY (parent_attr_assn_action_id) REFERENCES grouper_pit_attr_assn_actn_set (id); ALTER TABLE grouper_pit_attr_assn_actn_set ADD CONSTRAINT fk_pit_attr_action_set_if FOREIGN KEY (if_has_attr_assn_action_id) REFERENCES grouper_pit_attr_assn_actn (id); ALTER TABLE grouper_pit_attr_assn_actn_set ADD CONSTRAINT fk_pit_attr_action_set_then FOREIGN KEY (then_has_attr_assn_action_id) REFERENCES grouper_pit_attr_assn_actn (id); ALTER TABLE grouper_pit_role_set ADD CONSTRAINT fk_pit_role_set_parent FOREIGN KEY (parent_role_set_id) REFERENCES grouper_pit_role_set (id); ALTER TABLE grouper_pit_role_set ADD CONSTRAINT fk_pit_role_if FOREIGN KEY (if_has_role_id) REFERENCES grouper_pit_groups (id); ALTER TABLE grouper_pit_role_set ADD CONSTRAINT fk_pit_role_then FOREIGN KEY (then_has_role_id) REFERENCES grouper_pit_groups (id); ALTER TABLE grouper_ext_subj_attr ADD CONSTRAINT fk_ext_subj_attr_subj_uuid FOREIGN KEY (subject_uuid) REFERENCES grouper_ext_subj (uuid); ALTER TABLE grouper_stem_set ADD CONSTRAINT fk_stem_set_parent FOREIGN KEY (parent_stem_set_id) REFERENCES grouper_stem_set (id); ALTER TABLE grouper_stem_set ADD CONSTRAINT fk_stem_set_if FOREIGN KEY (if_has_stem_id) REFERENCES grouper_stems (id); ALTER TABLE grouper_stem_set ADD CONSTRAINT fk_stem_set_then FOREIGN KEY (then_has_stem_id) REFERENCES grouper_stems (id); ALTER TABLE grouper_message ADD CONSTRAINT fk_message_from_member_id FOREIGN KEY (from_member_id) REFERENCES grouper_members (id); ALTER TABLE grouper_QZ_TRIGGERS ADD CONSTRAINT qrtz_trigger_to_jobs_fk FOREIGN KEY (sched_name, job_name, job_group) REFERENCES grouper_QZ_JOB_DETAILS (sched_name, job_name, job_group); ALTER TABLE grouper_QZ_SIMPLE_TRIGGERS ADD CONSTRAINT qrtz_simple_trig_to_trig_fk FOREIGN KEY (sched_name, trigger_name, trigger_group) REFERENCES grouper_QZ_TRIGGERS (sched_name, trigger_name, trigger_group); ALTER TABLE grouper_QZ_CRON_TRIGGERS ADD CONSTRAINT qrtz_cron_trig_to_trig_fk FOREIGN KEY (sched_name, trigger_name, trigger_group) REFERENCES grouper_QZ_TRIGGERS (sched_name, trigger_name, trigger_group); ALTER TABLE grouper_QZ_SIMPROP_TRIGGERS ADD CONSTRAINT qrtz_simprop_trig_to_trig_fk FOREIGN KEY (sched_name, trigger_name, trigger_group) REFERENCES grouper_QZ_TRIGGERS (sched_name, trigger_name, trigger_group); ALTER TABLE grouper_QZ_BLOB_TRIGGERS ADD CONSTRAINT qrtz_blob_trig_to_trig_fk FOREIGN KEY (sched_name, trigger_name, trigger_group) REFERENCES grouper_QZ_TRIGGERS (sched_name, trigger_name, trigger_group); ALTER TABLE grouper_password_recently_used ADD CONSTRAINT fk_grouper_password_id FOREIGN KEY (grouper_password_id) REFERENCES grouper_password (id); ALTER TABLE grouper_sync_job ADD CONSTRAINT grouper_sync_job_id_fk FOREIGN KEY (grouper_sync_id) REFERENCES grouper_sync (id); ALTER TABLE grouper_sync_group ADD CONSTRAINT grouper_sync_gr_id_fk FOREIGN KEY (grouper_sync_id) REFERENCES grouper_sync (id); ALTER TABLE grouper_sync_member ADD CONSTRAINT grouper_sync_us_id_fk FOREIGN KEY (grouper_sync_id) REFERENCES grouper_sync (id); ALTER TABLE grouper_sync_membership ADD CONSTRAINT grouper_sync_me_gid_fk FOREIGN KEY (grouper_sync_group_id) REFERENCES grouper_sync_group (id); ALTER TABLE grouper_sync_membership ADD CONSTRAINT grouper_sync_me_uid_fk FOREIGN KEY (grouper_sync_member_id) REFERENCES grouper_sync_member (id); ALTER TABLE grouper_sync_membership ADD CONSTRAINT grouper_sync_me_id_fk FOREIGN KEY (grouper_sync_id) REFERENCES grouper_sync (id); ALTER TABLE grouper_sync_log ADD CONSTRAINT grouper_sync_log_sy_fk FOREIGN KEY (grouper_sync_id) REFERENCES grouper_sync (id); COMMENT ON COLUMN grouper_members.subject_identifier0 IS 'subject identifier of the subject'; COMMENT ON COLUMN grouper_pit_members.subject_identifier0 IS 'subject identifier of the subject'; CREATE VIEW grouper_groups_v (EXTENSION, NAME, DISPLAY_EXTENSION, DISPLAY_NAME, DESCRIPTION, PARENT_STEM_NAME, TYPE_OF_GROUP, GROUP_ID, PARENT_STEM_ID, ENABLED, ENABLED_TIMESTAMP, DISABLED_TIMESTAMP, MODIFIER_SOURCE, MODIFIER_SUBJECT_ID, CREATOR_SOURCE, CREATOR_SUBJECT_ID, IS_COMPOSITE_OWNER, IS_COMPOSITE_FACTOR, CREATOR_ID, CREATE_TIME, MODIFIER_ID, MODIFY_TIME, HIBERNATE_VERSION_NUMBER, CONTEXT_ID) AS select gg.extension as extension, gg.name as name, gg.display_extension as display_extension, gg.display_name as display_name, gg.description as description, gs.NAME as parent_stem_name, gg.type_of_group, gg.id as group_id, gs.ID as parent_stem_id, gg.enabled, gg.enabled_timestamp, gg.disabled_timestamp, (select gm.SUBJECT_SOURCE from grouper_members gm where gm.ID = gg.MODIFIER_ID) as modifier_source, (select gm.SUBJECT_ID from grouper_members gm where gm.ID = gg.MODIFIER_ID) as modifier_subject_id, (select gm.SUBJECT_SOURCE from grouper_members gm where gm.ID = gg.CREATOR_ID) as creator_source, (select gm.SUBJECT_ID from grouper_members gm where gm.ID = gg.CREATOR_ID) as creator_subject_id, (select distinct 'T' from grouper_composites gc where gc.OWNER = gg.ID) as is_composite_owner, (select distinct 'T' from grouper_composites gc where gc.LEFT_FACTOR = gg.ID or gc.right_factor = gg.id) as is_composite_factor, gg.CREATOR_ID, gg.CREATE_TIME, gg.MODIFIER_ID, gg.MODIFY_TIME, gg.HIBERNATE_VERSION_NUMBER, gg.context_id from grouper_groups gg, grouper_stems gs where gg.PARENT_STEM = gs.ID ; COMMENT ON VIEW grouper_groups_v IS 'Contains one record for each group, with friendly names for some attributes and some more information'; COMMENT ON COLUMN grouper_groups_v.EXTENSION IS 'EXTENSION: part of group name not including path information, e.g. theGroup'; COMMENT ON COLUMN grouper_groups_v.NAME IS 'NAME: name of the group, e.g. school:stem1:theGroup'; COMMENT ON COLUMN grouper_groups_v.DISPLAY_EXTENSION IS 'DISPLAY_EXTENSION: name for display of the group, e.g. My school:The stem 1:The group'; COMMENT ON COLUMN grouper_groups_v.DISPLAY_NAME IS 'DISPLAY_NAME: name for display of the group without any path information, e.g. The group'; COMMENT ON COLUMN grouper_groups_v.DESCRIPTION IS 'DESCRIPTION: contains user entered information about the group e.g. why it exists'; COMMENT ON COLUMN grouper_groups_v.PARENT_STEM_NAME IS 'PARENT_STEM_NAME: name of the stem this group is in, e.g. school:stem1'; COMMENT ON COLUMN grouper_groups_v.TYPE_OF_GROUP IS 'TYPE_OF_GROUP: group if it is a group, role if it is a role'; COMMENT ON COLUMN grouper_groups_v.GROUP_ID IS 'GROUP_ID: uuid unique id of the group'; COMMENT ON COLUMN grouper_groups_v.PARENT_STEM_ID IS 'PARENT_STEM_ID: uuid unique id of the stem this group is in'; COMMENT ON COLUMN grouper_groups_v.ENABLED IS 'ENABLED: T or F to indicate if this group is enabled'; COMMENT ON COLUMN grouper_groups_v.ENABLED_TIMESTAMP IS 'ENABLED_TIMESTAMP: when the group will be enabled if the time is in the future'; COMMENT ON COLUMN grouper_groups_v.DISABLED_TIMESTAMP IS 'DISABLED_TIMESTAMP: when the group will be disabled if the time is in the future'; COMMENT ON COLUMN grouper_groups_v.MODIFIER_SOURCE IS 'MODIFIER_SOURCE: source name of the subject who last modified this group, e.g. schoolPersonSource'; COMMENT ON COLUMN grouper_groups_v.MODIFIER_SUBJECT_ID IS 'MODIFIER_SUBJECT_ID: subject id of the subject who last modified this group, e.g. 12345'; COMMENT ON COLUMN grouper_groups_v.CREATOR_SOURCE IS 'CREATOR_SOURCE: source name of the subject who created this group, e.g. schoolPersonSource'; COMMENT ON COLUMN grouper_groups_v.CREATOR_SUBJECT_ID IS 'CREATOR_SUBJECT_ID: subject id of the subject who created this group, e.g. 12345'; COMMENT ON COLUMN grouper_groups_v.IS_COMPOSITE_OWNER IS 'IS_COMPOSITE_OWNER: T if this is a result of a composite operation (union, intersection, complement), or blank if not'; COMMENT ON COLUMN grouper_groups_v.IS_COMPOSITE_FACTOR IS 'IS_COMPOSITE_FACTOR: T if this is a member of a composite operation, e.g. one of the grouper being unioned, intersected, or complemeneted'; COMMENT ON COLUMN grouper_groups_v.CREATOR_ID IS 'CREATOR_ID: member id of the subject who created this group, foreign key to grouper_members'; COMMENT ON COLUMN grouper_groups_v.CREATE_TIME IS 'CREATE_TIME: number of millis since 1970 since this group was created'; COMMENT ON COLUMN grouper_groups_v.MODIFIER_ID IS 'MODIFIER_ID: member id of the subject who last modified this group, foreign key to grouper_members'; COMMENT ON COLUMN grouper_groups_v.MODIFY_TIME IS 'MODIFY_TIME: number of millis since 1970 since this group was last changed'; COMMENT ON COLUMN grouper_groups_v.HIBERNATE_VERSION_NUMBER IS 'HIBERNATE_VERSION_NUMBER: increments by 1 for each update'; COMMENT ON COLUMN grouper_groups_v.CONTEXT_ID IS 'Context id links together multiple operations into one high level action'; CREATE VIEW grouper_roles_v (EXTENSION, NAME, DISPLAY_EXTENSION, DISPLAY_NAME, DESCRIPTION, PARENT_STEM_NAME, ROLE_ID, PARENT_STEM_ID, ENABLED, ENABLED_TIMESTAMP, DISABLED_TIMESTAMP, MODIFIER_SOURCE, MODIFIER_SUBJECT_ID, CREATOR_SOURCE, CREATOR_SUBJECT_ID, IS_COMPOSITE_OWNER, IS_COMPOSITE_FACTOR, CREATOR_ID, CREATE_TIME, MODIFIER_ID, MODIFY_TIME, HIBERNATE_VERSION_NUMBER, CONTEXT_ID) AS select gg.extension as extension, gg.name as name, gg.display_extension as display_extension, gg.display_name as display_name, gg.description as description, gs.NAME as parent_stem_name, gg.id as role_id, gs.ID as parent_stem_id, gg.enabled, gg.enabled_timestamp, gg.disabled_timestamp, (select gm.SUBJECT_SOURCE from grouper_members gm where gm.ID = gg.MODIFIER_ID) as modifier_source, (select gm.SUBJECT_ID from grouper_members gm where gm.ID = gg.MODIFIER_ID) as modifier_subject_id, (select gm.SUBJECT_SOURCE from grouper_members gm where gm.ID = gg.CREATOR_ID) as creator_source, (select gm.SUBJECT_ID from grouper_members gm where gm.ID = gg.CREATOR_ID) as creator_subject_id, (select distinct 'T' from grouper_composites gc where gc.OWNER = gg.ID) as is_composite_owner, (select distinct 'T' from grouper_composites gc where gc.LEFT_FACTOR = gg.ID or gc.right_factor = gg.id) as is_composite_factor, gg.CREATOR_ID, gg.CREATE_TIME, gg.MODIFIER_ID, gg.MODIFY_TIME, gg.HIBERNATE_VERSION_NUMBER, gg.context_id from grouper_groups gg, grouper_stems gs where gg.PARENT_STEM = gs.ID and type_of_group = 'role' ; COMMENT ON VIEW grouper_roles_v IS 'Contains one record for each role, with friendly names for some attributes and some more information'; COMMENT ON COLUMN grouper_roles_v.EXTENSION IS 'EXTENSION: part of role name not including path information, e.g. theRole'; COMMENT ON COLUMN grouper_roles_v.NAME IS 'NAME: name of the role, e.g. school:stem1:theRole'; COMMENT ON COLUMN grouper_roles_v.DISPLAY_EXTENSION IS 'DISPLAY_EXTENSION: name for display of the role, e.g. My school:The stem 1:The role'; COMMENT ON COLUMN grouper_roles_v.DISPLAY_NAME IS 'DISPLAY_NAME: name for display of the role without any path information, e.g. The role'; COMMENT ON COLUMN grouper_roles_v.DESCRIPTION IS 'DESCRIPTION: contains user entered information about the group e.g. why it exists'; COMMENT ON COLUMN grouper_roles_v.PARENT_STEM_NAME IS 'PARENT_STEM_NAME: name of the stem this role is in, e.g. school:stem1'; COMMENT ON COLUMN grouper_roles_v.ROLE_ID IS 'ROLE_ID: uuid unique id of the role'; COMMENT ON COLUMN grouper_roles_v.PARENT_STEM_ID IS 'PARENT_STEM_ID: uuid unique id of the stem this role is in'; COMMENT ON COLUMN grouper_roles_v.ENABLED IS 'ENABLED: T or F to indicate if this role is enabled'; COMMENT ON COLUMN grouper_roles_v.ENABLED_TIMESTAMP IS 'ENABLED_TIMESTAMP: when the role will be enabled if the time is in the future'; COMMENT ON COLUMN grouper_roles_v.DISABLED_TIMESTAMP IS 'DISABLED_TIMESTAMP: when the role will be disabled if the time is in the future'; COMMENT ON COLUMN grouper_roles_v.MODIFIER_SOURCE IS 'MODIFIER_SOURCE: source name of the subject who last modified this role, e.g. schoolPersonSource'; COMMENT ON COLUMN grouper_roles_v.MODIFIER_SUBJECT_ID IS 'MODIFIER_SUBJECT_ID: subject id of the subject who last modified this role, e.g. 12345'; COMMENT ON COLUMN grouper_roles_v.CREATOR_SOURCE IS 'CREATOR_SOURCE: source name of the subject who created this role, e.g. schoolPersonSource'; COMMENT ON COLUMN grouper_roles_v.CREATOR_SUBJECT_ID IS 'CREATOR_SUBJECT_ID: subject id of the subject who created this role, e.g. 12345'; COMMENT ON COLUMN grouper_roles_v.IS_COMPOSITE_OWNER IS 'IS_COMPOSITE_OWNER: T if this is a result of a composite operation (union, intersection, complement), or blank if not'; COMMENT ON COLUMN grouper_roles_v.IS_COMPOSITE_FACTOR IS 'IS_COMPOSITE_FACTOR: T if this is a member of a composite operation, e.g. one of the grouper being unioned, intersected, or complemented'; COMMENT ON COLUMN grouper_roles_v.CREATOR_ID IS 'CREATOR_ID: member id of the subject who created this role, foreign key to grouper_members'; COMMENT ON COLUMN grouper_roles_v.CREATE_TIME IS 'CREATE_TIME: number of millis since 1970 since this role was created'; COMMENT ON COLUMN grouper_roles_v.MODIFIER_ID IS 'MODIFIER_ID: member id of the subject who last modified this role, foreign key to grouper_members'; COMMENT ON COLUMN grouper_roles_v.MODIFY_TIME IS 'MODIFY_TIME: number of millis since 1970 since this role was last changed'; COMMENT ON COLUMN grouper_roles_v.HIBERNATE_VERSION_NUMBER IS 'HIBERNATE_VERSION_NUMBER: increments by 1 for each update'; COMMENT ON COLUMN grouper_roles_v.CONTEXT_ID IS 'Context id links together multiple operations into one high level action'; COMMENT ON TABLE grouper_password IS 'entries for grouper usernames passwords'; COMMENT ON COLUMN grouper_password.id IS 'uuid of this entry (one user could have ui and ws credential)'; COMMENT ON COLUMN grouper_password.username IS 'username or local entity system name'; COMMENT ON COLUMN grouper_password.member_id IS 'this is a reference to the grouper members table'; COMMENT ON COLUMN grouper_password.entity_type IS 'username or localEntity'; COMMENT ON COLUMN grouper_password.is_hashed IS 'T for is hashed, F for is public key'; COMMENT ON COLUMN grouper_password.encryption_type IS 'key type. eg: SHA-256 or RS-256'; COMMENT ON COLUMN grouper_password.the_salt IS 'secure random prepended to hashed pass'; COMMENT ON COLUMN grouper_password.the_password IS 'encrypted public key or encrypted hashed salted password'; COMMENT ON COLUMN grouper_password.application IS 'ws (includes scim) or ui'; COMMENT ON COLUMN grouper_password.allowed_from_cidrs IS 'network cidrs where credential is allowed from'; COMMENT ON COLUMN grouper_password.recent_source_addresses IS 'json with timestamps'; COMMENT ON COLUMN grouper_password.failed_source_addresses IS 'if restricted by cidr, this was failed IPs (json with timestamp)'; COMMENT ON COLUMN grouper_password.last_authenticated IS 'when last authenticated'; COMMENT ON COLUMN grouper_password.last_edited IS 'when last edited'; COMMENT ON COLUMN grouper_password.failed_logins IS 'json of failed attempts'; COMMENT ON COLUMN grouper_password.hibernate_version_number IS 'hibernate uses this to version rows'; COMMENT ON TABLE grouper_password_recently_used IS 'recently used jwt tokens so they arent re-used'; COMMENT ON COLUMN grouper_password_recently_used.id IS 'uuid of this entry'; COMMENT ON COLUMN grouper_password_recently_used.grouper_password_id IS '<PASSWORD> this <PASSWORD>'; COMMENT ON COLUMN grouper_password_recently_used.jwt_jti IS 'unique identifier of the login'; COMMENT ON COLUMN grouper_password_recently_used.jwt_iat IS 'timestamp of this entry'; COMMENT ON TABLE grouper_sync IS 'One record for every provisioner (not different records for full and real time)'; COMMENT ON COLUMN grouper_sync.id IS 'uuid of this record in this table'; COMMENT ON COLUMN grouper_sync.sync_engine IS 'e.g. for syncing sql, it sqlTableSync'; COMMENT ON COLUMN grouper_sync.provisioner_name IS 'name of provisioner must be unique. this is the config key generally'; COMMENT ON COLUMN grouper_sync.group_count IS 'if group this is the number of groups'; COMMENT ON COLUMN grouper_sync.user_count IS 'if has users, this is the number of users'; COMMENT ON COLUMN grouper_sync.records_count IS 'number of records including users, groups, etc'; COMMENT ON COLUMN grouper_sync.incremental_index IS 'int of last record processed'; COMMENT ON COLUMN grouper_sync.incremental_timestamp IS 'timestamp of last record processed'; COMMENT ON COLUMN grouper_sync.last_incremental_sync_run IS 'when incremental sync ran'; COMMENT ON COLUMN grouper_sync.last_full_sync_run IS 'when last full sync ran'; COMMENT ON COLUMN grouper_sync.last_full_metadata_sync_run IS 'when last full metadata sync ran. this needs to run when groups get renamed'; COMMENT ON COLUMN grouper_sync.last_updated IS 'when this record was last updated'; COMMENT ON TABLE grouper_sync_job IS 'Status of all jobs for the sync. one record for full, one for incremental, etc'; COMMENT ON COLUMN grouper_sync_job.id IS 'uuid of this record in this table'; COMMENT ON COLUMN grouper_sync_job.grouper_sync_id IS 'uuid of the job in grouper_sync table'; COMMENT ON COLUMN grouper_sync_job.sync_type IS 'type of sync, e.g. for sql sync this is the job subtype'; COMMENT ON COLUMN grouper_sync_job.job_state IS 'running, pending (if waiting for another job to finish), notRunning'; COMMENT ON COLUMN grouper_sync_job.last_sync_index IS 'either an int of last record checked, or an int of millis since 1970 of last record processed'; COMMENT ON COLUMN grouper_sync_job.last_sync_timestamp IS 'when last record processed if timestamp and not integer'; COMMENT ON COLUMN grouper_sync_job.heartbeat IS 'when a job is running this must be updated every 60 seconds in a thread or the job will be deemed not running by other jobs'; COMMENT ON COLUMN grouper_sync_job.last_time_work_was_done IS 'last time a record was processed'; COMMENT ON COLUMN grouper_sync_job.quartz_job_name IS 'name of quartz job if applicable'; COMMENT ON COLUMN grouper_sync_job.percent_complete IS '0-100 percent complete of this job'; COMMENT ON COLUMN grouper_sync_job.last_updated IS 'when this record was last updated'; COMMENT ON COLUMN grouper_sync_job.error_message IS 'if there was an error when syncing this group, this is the message'; COMMENT ON COLUMN grouper_sync_job.error_timestamp IS 'timestamp of error if there was an error when syncing this group'; COMMENT ON COLUMN grouper_sync_group.id IS 'uuid of this record'; COMMENT ON COLUMN grouper_sync_group.grouper_sync_id IS 'foreign key back to the sync table'; COMMENT ON COLUMN grouper_sync_group.group_id IS 'if this is groups, then this is the uuid of the group, though not a real foreign key'; COMMENT ON COLUMN grouper_sync_group.group_name IS 'if this is groups, then this is the system name of the group'; COMMENT ON COLUMN grouper_sync_group.group_id_index IS 'if this is groups, then this is the id index of the group'; COMMENT ON COLUMN grouper_sync_group.provisionable IS 'T if provisionable and F is not'; COMMENT ON COLUMN grouper_sync_group.in_target IS 'T if exists in target/destination and F is not. blank if not sure'; COMMENT ON COLUMN grouper_sync_group.in_target_insert_or_exists IS 'T if inserted on the in_target_start date, or F if it existed then and not sure when inserted'; COMMENT ON COLUMN grouper_sync_group.in_target_start IS 'when this was put in target'; COMMENT ON COLUMN grouper_sync_group.in_target_end IS 'when this was taken out of target'; COMMENT ON COLUMN grouper_sync_group.provisionable_start IS 'when this group started to be provisionable'; COMMENT ON COLUMN grouper_sync_group.provisionable_end IS 'when this group ended being provisionable'; COMMENT ON COLUMN grouper_sync_group.last_updated IS 'when this record was last updated'; COMMENT ON COLUMN grouper_sync_group.last_group_sync IS 'when this group was last synced'; COMMENT ON COLUMN grouper_sync_group.last_group_metadata_sync IS 'when this groups name and description and metadata was synced'; COMMENT ON COLUMN grouper_sync_group.group_from_id2 IS 'other metadata on groups'; COMMENT ON COLUMN grouper_sync_group.group_from_id3 IS 'other metadata on groups'; COMMENT ON COLUMN grouper_sync_group.group_to_id2 IS 'other metadata on groups'; COMMENT ON COLUMN grouper_sync_group.group_to_id3 IS 'other metadata on groups'; COMMENT ON COLUMN grouper_sync_group.last_time_work_was_done IS 'last time a record was processed'; COMMENT ON COLUMN grouper_sync_group.metadata_updated IS 'when the metadata was last updated (if it times out)'; COMMENT ON COLUMN grouper_sync_group.error_message IS 'if there was an error when syncing this object, this is the message'; COMMENT ON COLUMN grouper_sync_group.error_timestamp IS 'timestamp of error if there was an error when syncing this object'; COMMENT ON COLUMN grouper_sync_group.error_code IS 'Error code e.g. ERR error, INV invalid based on script, LEN attribute too large, REQ required attribute missing, DNE data in target does not exist'; COMMENT ON TABLE grouper_sync_member IS 'user metadata for sync'; COMMENT ON COLUMN grouper_sync_member.id IS 'uuid of this record in this table'; COMMENT ON COLUMN grouper_sync_member.grouper_sync_id IS 'foreign key to grouper_sync table'; COMMENT ON COLUMN grouper_sync_member.member_id IS 'foreign key to the members table, though not a real foreign key'; COMMENT ON COLUMN grouper_sync_member.source_id IS 'subject source id'; COMMENT ON COLUMN grouper_sync_member.subject_id IS 'subject id'; COMMENT ON COLUMN grouper_sync_member.subject_identifier IS 'netId or eppn or whatever'; COMMENT ON COLUMN grouper_sync_member.in_target IS 'T if exists in target/destination and F is not. blank if not sure'; COMMENT ON COLUMN grouper_sync_member.in_target_insert_or_exists IS 'T if inserted on the in_target_start date, or F if it existed then and not sure when inserted'; COMMENT ON COLUMN grouper_sync_member.in_target_start IS 'when the user was put in the target'; COMMENT ON COLUMN grouper_sync_member.in_target_end IS 'when the user was taken out of the target'; COMMENT ON COLUMN grouper_sync_member.provisionable IS 'T if provisionable and F is not'; COMMENT ON COLUMN grouper_sync_member.provisionable_start IS 'when this user started to be provisionable'; COMMENT ON COLUMN grouper_sync_member.provisionable_end IS 'when this user ended being provisionable'; COMMENT ON COLUMN grouper_sync_member.last_updated IS 'when this record was last updated'; COMMENT ON COLUMN grouper_sync_member.last_user_sync IS 'when this user was last synced, includes metadata and memberships'; COMMENT ON COLUMN grouper_sync_member.last_user_metadata_sync IS 'when this users name and description and metadata was synced'; COMMENT ON COLUMN grouper_sync_member.member_from_id2 IS 'for users this is the user idIndex'; COMMENT ON COLUMN grouper_sync_member.member_from_id3 IS 'other metadata on users'; COMMENT ON COLUMN grouper_sync_member.member_to_id2 IS 'other metadat on users'; COMMENT ON COLUMN grouper_sync_member.member_to_id3 IS 'other metadata on users'; COMMENT ON COLUMN grouper_sync_member.last_time_work_was_done IS 'last time a record was processed'; COMMENT ON COLUMN grouper_sync_member.metadata_updated IS 'when the metadata was last updated (if it times out)'; COMMENT ON COLUMN grouper_sync_member.error_message IS 'if there was an error when syncing this object, this is the message'; COMMENT ON COLUMN grouper_sync_member.error_timestamp IS 'timestamp of error if there was an error when syncing this object'; COMMENT ON COLUMN grouper_sync_member.error_code IS 'Error code e.g. ERR error, INV invalid based on script, LEN attribute too large, REQ required attribute missing, DNE data in target does not exist'; COMMENT ON TABLE grouper_sync_membership IS 'record of a sync_group and a sync_member represents a sync^ed membership'; COMMENT ON COLUMN grouper_sync_membership.id IS 'uuid of this record'; COMMENT ON COLUMN grouper_sync_membership.grouper_sync_id IS 'foreign key back to sync table'; COMMENT ON COLUMN grouper_sync_membership.grouper_sync_group_id IS 'foreign key back to sync group table'; COMMENT ON COLUMN grouper_sync_membership.grouper_sync_member_id IS 'foreign key back to sync member table'; COMMENT ON COLUMN grouper_sync_membership.in_target IS 'T if exists in target/destination and F is not. blank if not sure'; COMMENT ON COLUMN grouper_sync_membership.in_target_insert_or_exists IS 'T if inserted on the in_target_start date, or F if it existed then and not sure when inserted'; COMMENT ON COLUMN grouper_sync_membership.in_target_start IS 'when this was put in target'; COMMENT ON COLUMN grouper_sync_membership.in_target_end IS 'when this was taken out of target'; COMMENT ON COLUMN grouper_sync_membership.last_updated IS 'when this record was last updated'; COMMENT ON COLUMN grouper_sync_membership.membership_id IS 'other metadata on membership'; COMMENT ON COLUMN grouper_sync_membership.membership_id2 IS 'other metadata on membership'; COMMENT ON COLUMN grouper_sync_membership.metadata_updated IS 'when the metadata was last updated (if it times out)'; COMMENT ON COLUMN grouper_sync_membership.error_message IS 'if there was an error when syncing this object, this is the message'; COMMENT ON COLUMN grouper_sync_membership.error_timestamp IS 'timestamp of error if there was an error when syncing this object'; COMMENT ON COLUMN grouper_sync_membership.error_code IS 'Error code e.g. ERR error, INV invalid based on script, LEN attribute too large, REQ required attribute missing, DNE data in target does not exist'; COMMENT ON TABLE grouper_sync_log IS 'last log for this sync that affected this group or member etc'; COMMENT ON COLUMN grouper_sync_log.id IS 'uuid of this record in this table'; COMMENT ON COLUMN grouper_sync_log.grouper_sync_owner_id IS 'either the grouper_sync_membership_id or the grouper_sync_member_id or the grouper_sync_group_id or grouper_sync_job_id (if log for job wide)'; COMMENT ON COLUMN grouper_sync_log.grouper_sync_id IS 'foreign key to grouper_sync table'; COMMENT ON COLUMN grouper_sync_log.status IS 'SUCCESS, ERROR, WARNING, CONFIG_ERROR'; COMMENT ON COLUMN grouper_sync_log.sync_timestamp IS 'when the last sync started'; COMMENT ON COLUMN grouper_sync_log.description IS 'description of last sync'; COMMENT ON COLUMN grouper_sync_log.records_processed IS 'how many records were processed the last time this sync ran'; COMMENT ON COLUMN grouper_sync_log.records_changed IS 'how many records were changed the last time this sync ran'; COMMENT ON COLUMN grouper_sync_log.job_took_millis IS 'how many millis it took to run this job'; COMMENT ON COLUMN grouper_sync_log.server IS 'which server this occurred on'; COMMENT ON COLUMN grouper_sync_log.last_updated IS 'when this record was last updated'; COMMENT ON TABLE grouper_config IS 'database configuration for config files which allowe database overrides'; COMMENT ON COLUMN grouper_config.id IS 'uuid of record is unique for all records in table and primary key'; COMMENT ON COLUMN grouper_config.config_file_name IS 'Config file name of the config this record relates to, e.g. grouper.config.properties'; COMMENT ON COLUMN grouper_config.config_key IS 'key of the config, not including elConfig'; COMMENT ON COLUMN grouper_config.config_value IS 'Value of the config'; COMMENT ON COLUMN grouper_config.config_comment IS 'documentation of the config value'; COMMENT ON COLUMN grouper_config.config_file_hierarchy IS 'config file hierarchy, e.g. base, institution, or env'; COMMENT ON COLUMN grouper_config.config_encrypted IS 'if the value is encrypted'; COMMENT ON COLUMN grouper_config.config_sequence IS 'if there is more data than fits in the column this is the 0 indexed order'; COMMENT ON COLUMN grouper_config.config_version_index IS 'for built in configs, this is the index that will identify if the database configs should be replaced from the java code'; COMMENT ON COLUMN grouper_config.last_updated IS 'when this record was inserted or last updated'; COMMENT ON COLUMN grouper_config.hibernate_version_number IS 'hibernate version for optimistic locking'; COMMENT ON TABLE grouper_time IS 'Update the row with current time before joining to other tables (e.g. for recent memberships)'; COMMENT ON COLUMN grouper_time.time_label IS 'should only need one row with value: now'; COMMENT ON COLUMN grouper_time.the_utc_timestamp IS 'timestamp with time zone utc'; COMMENT ON COLUMN grouper_time.this_tz_timestamp IS 'timestamp with this time zone (from java)'; COMMENT ON COLUMN grouper_time.utc_millis_since_1970 IS 'millis since 1970 utc'; COMMENT ON COLUMN grouper_time.utc_micros_since_1970 IS 'micros since 1970 utc'; COMMENT ON TABLE grouper_cache_overall IS 'One row for the most time that any cache needs to be cleared'; COMMENT ON COLUMN grouper_cache_overall.overall_cache IS 'One row with an integer of 0 only'; COMMENT ON COLUMN grouper_cache_overall.nanos_since_1970 IS 'nanos since 1970 that the most recent cache was cleared'; COMMENT ON TABLE grouper_cache_instance IS 'Row for each cache instance and the time that it needs to be cleared'; COMMENT ON COLUMN grouper_cache_instance.cache_name IS 'cache name, if there are two underscores, split and the first part is cache, and second part is instance'; COMMENT ON COLUMN grouper_cache_instance.nanos_since_1970 IS 'time the cache was last changed'; COMMENT ON TABLE grouper_recent_mships_conf IS 'Contains one row for each recent membership configured on a group, sourced from grouper_recent_mships_conf_v'; COMMENT ON COLUMN grouper_recent_mships_conf.group_uuid_to IS 'group_uuid_to: uuid of the group which has the destination for the recent memberships'; COMMENT ON COLUMN grouper_recent_mships_conf.group_name_to IS 'group_name_to: name of the group which has the destination for the recent memberships'; COMMENT ON COLUMN grouper_recent_mships_conf.group_name_from IS 'group_name_from: group name of the group where the recent memberships are sourced from'; COMMENT ON COLUMN grouper_recent_mships_conf.group_uuid_from IS 'group_uuid_from: group uuid of the group where the recent memberships are sourced from'; COMMENT ON COLUMN grouper_recent_mships_conf.recent_micros IS 'recent_micros: number of microseconds of recent memberships'; COMMENT ON COLUMN grouper_recent_mships_conf.include_eligible IS 'include_eligible: T to include people still in group, F if not'; COMMENT ON COLUMN grouper_config.config_value_clob IS 'config value for large data'; COMMENT ON COLUMN grouper_config.config_value_bytes IS 'size of config value in bytes'; COMMENT ON TABLE grouper_pit_config IS 'keeps track of grouper config. Records are never deleted from this table'; COMMENT ON COLUMN grouper_pit_config.id IS 'uuid of record is unique for all records in table and primary key'; COMMENT ON COLUMN grouper_pit_config.source_id IS 'source_id: id of the grouper_config table'; COMMENT ON COLUMN grouper_pit_config.config_value_bytes IS 'size of config value in bytes'; COMMENT ON COLUMN grouper_pit_config.config_value_clob IS 'config value for large data'; COMMENT ON COLUMN grouper_pit_config.config_file_name IS 'Config file name of the config this record relates to, e.g. grouper.config.properties'; COMMENT ON COLUMN grouper_pit_config.config_key IS 'key of the config, not including elConfig'; COMMENT ON COLUMN grouper_pit_config.config_value IS 'Value of the config'; COMMENT ON COLUMN grouper_pit_config.config_comment IS 'documentation of the config value'; COMMENT ON COLUMN grouper_pit_config.config_file_hierarchy IS 'config file hierarchy, e.g. base, institution, or env'; COMMENT ON COLUMN grouper_pit_config.config_encrypted IS 'if the value is encrypted'; COMMENT ON COLUMN grouper_pit_config.config_sequence IS 'if there is more data than fits in the column this is the 0 indexed order'; COMMENT ON COLUMN grouper_pit_config.config_version_index IS 'for built in configs, this is the index that will identify if the database configs should be replaced from the java code'; COMMENT ON COLUMN grouper_pit_config.last_updated IS 'when this record was inserted or last updated'; COMMENT ON COLUMN grouper_pit_config.hibernate_version_number IS 'hibernate uses this to version rows'; COMMENT ON COLUMN grouper_pit_config.active IS 'T or F if this is an active record based on start and end dates'; COMMENT ON COLUMN grouper_pit_config.start_time IS 'millis from 1970 when this record was inserted'; COMMENT ON COLUMN grouper_pit_config.end_time IS 'millis from 1970 when this record was deleted'; COMMENT ON COLUMN grouper_pit_config.context_id IS 'Context id links together audit entry with the row'; COMMENT ON TABLE grouper_file IS 'table to store files for grouper. eg: workflow, reports'; COMMENT ON COLUMN grouper_file.id IS 'uuid of record is unique for all records in table and primary key'; COMMENT ON COLUMN grouper_file.system_name IS 'System name this file belongs to eg: workflow'; COMMENT ON COLUMN grouper_file.file_name IS 'Name of the file'; COMMENT ON COLUMN grouper_file.file_path IS 'Unique path of the file'; COMMENT ON COLUMN grouper_file.hibernate_version_number IS 'hibernate uses this to version rows'; COMMENT ON COLUMN grouper_file.context_id IS 'Context id links together audit entry with the row'; COMMENT ON COLUMN grouper_file.file_contents_varchar IS 'contents of the file if can fit into 4000 bytes'; COMMENT ON COLUMN grouper_file.file_contents_clob IS 'large contents of the file'; COMMENT ON COLUMN grouper_file.file_contents_bytes IS 'size of file contents in bytes'; COMMENT ON COLUMN grouper_sync.last_full_sync_start IS 'start time of last successful full sync'; COMMENT ON COLUMN grouper_sync.last_full_metadata_sync_start IS 'start time of last successful full metadata sync'; COMMENT ON COLUMN grouper_sync_job.last_sync_start IS 'start time of this job'; COMMENT ON COLUMN grouper_sync_log.description_clob IS 'description for large data'; COMMENT ON COLUMN grouper_sync_log.description_bytes IS 'size of description in bytes'; COMMENT ON COLUMN grouper_sync_log.sync_timestamp_start IS 'start of sync operation for log'; COMMENT ON COLUMN grouper_sync_group.last_group_sync_start IS 'start of last successful group sync'; COMMENT ON COLUMN grouper_sync_group.last_group_metadata_sync_start IS 'start of last successful group metadata sync'; COMMENT ON COLUMN grouper_sync_member.last_user_sync_start IS 'start of last successful user sync'; COMMENT ON COLUMN grouper_sync_member.last_user_metadata_sync_start IS 'start of last successful user metadata sync'; CREATE VIEW grouper_sync_membership_v (g_group_name, g_group_id_index, u_source_id, u_subject_id, u_subject_identifier, m_in_target, m_id, m_in_target_insert_or_exists, m_in_target_start, m_in_target_end, m_last_updated, m_membership_id, m_membership_id2, m_metadata_updated, m_error_message, m_error_timestamp, s_id, s_sync_engine, s_provisioner_name, u_id, u_member_id, u_in_target, u_in_target_insert_or_exists, u_in_target_start, u_in_target_end, u_provisionable, u_provisionable_start, u_provisionable_end, u_last_updated, u_last_user_sync_start, u_last_user_sync, u_last_user_meta_sync_start, u_last_user_metadata_sync, u_member_from_id2, u_member_from_id3, u_member_to_id2, u_member_to_id3, u_metadata_updated, u_last_time_work_was_done, u_error_message, u_error_timestamp, g_id, g_group_id, g_provisionable, g_in_target, g_in_target_insert_or_exists, g_in_target_start, g_in_target_end, g_provisionable_start, g_provisionable_end, g_last_updated, g_last_group_sync_start, g_last_group_sync, g_last_group_meta_sync_start, g_last_group_metadata_sync, g_group_from_id2, g_group_from_id3, g_group_to_id2, g_group_to_id3, g_metadata_updated, g_error_message, g_error_timestamp, g_last_time_work_was_done, m_error_code, u_error_code, g_error_code) AS select g.group_name as g_group_name, g.group_id_index as g_group_id_index, u.source_id as u_source_id, u.subject_id as u_subject_id, u.subject_identifier as u_subject_identifier, m.in_target as m_in_target, m.id as m_id, m.in_target_insert_or_exists as m_in_target_insert_or_exists, m.in_target_start as m_in_target_start, m.in_target_end as m_in_target_end, m.last_updated as m_last_updated, m.membership_id as m_membership_id, m.membership_id2 as m_membership_id2, m.metadata_updated as m_metadata_updated, m.error_message as m_error_message, m.error_timestamp as m_error_timestamp, s.id as s_id, s.sync_engine as s_sync_engine, s.provisioner_name as s_provisioner_name, u.id as u_id, u.member_id as u_member_id, u.in_target as u_in_target, u.in_target_insert_or_exists as u_in_target_insert_or_exists, u.in_target_start as u_in_target_start, u.in_target_end as u_in_target_end, u.provisionable as u_provisionable, u.provisionable_start as u_provisionable_start, u.provisionable_end as u_provisionable_end, u.last_updated as u_last_updated, u.last_user_sync_start as u_last_user_sync_start, u.last_user_sync as u_last_user_sync, u.last_user_metadata_sync_start as u_last_user_meta_sync_start, u.last_user_metadata_sync as u_last_user_metadata_sync, u.member_from_id2 as u_member_from_id2, u.member_from_id3 as u_member_from_id3, u.member_to_id2 as u_member_to_id2, u.member_to_id3 as u_member_to_id3, u.metadata_updated as u_metadata_updated, u.last_time_work_was_done as u_last_time_work_was_done, u.error_message as u_error_message, u.error_timestamp as u_error_timestamp, g.id as g_id, g.group_id as g_group_id, g.provisionable as g_provisionable, g.in_target as g_in_target, g.in_target_insert_or_exists as g_in_target_insert_or_exists, g.in_target_start as g_in_target_start, g.in_target_end as g_in_target_end, g.provisionable_start as g_provisionable_start, g.provisionable_end as g_provisionable_end, g.last_updated as g_last_updated, g.last_group_sync_start as g_last_group_sync_start, g.last_group_sync as g_last_group_sync, g.last_group_metadata_sync_start as g_last_group_meta_sync_start, g.last_group_metadata_sync as g_last_group_metadata_sync, g.group_from_id2 as g_group_from_id2, g.group_from_id3 as g_group_from_id3, g.group_to_id2 as g_group_to_id2, g.group_to_id3 as g_group_to_id3, g.metadata_updated as g_metadata_updated, g.error_message as g_error_message, g.error_timestamp as g_error_timestamp, g.last_time_work_was_done as g_last_time_work_was_done, m.error_code as m_error_code, u.error_code as u_error_code, g.error_code as g_error_code from grouper_sync_membership m, grouper_sync_member u, grouper_sync_group g, grouper_sync s where m.grouper_sync_id = s.id and u.grouper_sync_id = s.id and g.grouper_sync_id = s.id and m.grouper_sync_group_id = g.id and m.grouper_sync_member_id = u.id; COMMENT ON VIEW grouper_sync_membership_v IS 'Memberships for provisioning joined with the group, member, and sync tables'; COMMENT ON COLUMN grouper_sync_membership_v.g_group_name IS 'g_group_name: grouper group system name'; COMMENT ON COLUMN grouper_sync_membership_v.g_group_id_index IS 'g_group_id_index: grouper group id index'; COMMENT ON COLUMN grouper_sync_membership_v.u_source_id IS 'u_source_id: subject source id'; COMMENT ON COLUMN grouper_sync_membership_v.u_subject_id IS 'u_subject_id: subject id'; COMMENT ON COLUMN grouper_sync_membership_v.u_subject_identifier IS 'u_subject_identifier: subject identifier0'; COMMENT ON COLUMN grouper_sync_membership_v.m_in_target IS 'm_in_target: t/f if provisioned to target'; COMMENT ON COLUMN grouper_sync_membership_v.m_id IS 'm_id: sync membership id'; COMMENT ON COLUMN grouper_sync_membership_v.m_in_target_insert_or_exists IS 'm_in_target_insert_or_exists: t/f if it was inserted into target or already existed'; COMMENT ON COLUMN grouper_sync_membership_v.m_in_target_start IS 'm_in_target_start: timestamp was inserted or detected to be in target'; COMMENT ON COLUMN grouper_sync_membership_v.m_in_target_end IS 'm_in_target_end: timestamp was removed from target or detected not there'; COMMENT ON COLUMN grouper_sync_membership_v.m_last_updated IS 'm_last_updated: when sync membership last updated'; COMMENT ON COLUMN grouper_sync_membership_v.m_membership_id IS 'm_membership_id: link membership id'; COMMENT ON COLUMN grouper_sync_membership_v.m_membership_id2 IS 'm_membership_id2: link membership id2'; COMMENT ON COLUMN grouper_sync_membership_v.m_metadata_updated IS 'm_metadata_updated: when metadata e.g. links was last updated'; COMMENT ON COLUMN grouper_sync_membership_v.m_error_message IS 'm_error_message: error message when last operation occurred unless a success happened afterward'; COMMENT ON COLUMN grouper_sync_membership_v.m_error_timestamp IS 'm_error_timestamp: timestamp last error occurred unless a success happened afterward'; COMMENT ON COLUMN grouper_sync_membership_v.s_id IS 's_id: sync id overall'; COMMENT ON COLUMN grouper_sync_membership_v.s_sync_engine IS 's_sync_engine: sync engine'; COMMENT ON COLUMN grouper_sync_membership_v.s_provisioner_name IS 's_provisioner_name: name of provisioner'; COMMENT ON COLUMN grouper_sync_membership_v.u_id IS 'u_id: sync member id'; COMMENT ON COLUMN grouper_sync_membership_v.u_member_id IS 'u_member_id: grouper member uuid for subject'; COMMENT ON COLUMN grouper_sync_membership_v.u_in_target IS 'u_in_target: t/f if entity is in target'; COMMENT ON COLUMN grouper_sync_membership_v.u_in_target_insert_or_exists IS 'u_in_target_insert_or_exists: t/f if grouper inserted the entity or if it already existed'; COMMENT ON COLUMN grouper_sync_membership_v.u_in_target_start IS 'u_in_target_start: when this entity started being in target or detected there'; COMMENT ON COLUMN grouper_sync_membership_v.u_in_target_end IS 'u_in_target_end: when this entity stopped being in target or detected not there'; COMMENT ON COLUMN grouper_sync_membership_v.u_provisionable IS 'u_provisionable: t/f if the entity is provisionable'; COMMENT ON COLUMN grouper_sync_membership_v.u_provisionable_start IS 'u_provisionable_start: when this entity started being provisionable'; COMMENT ON COLUMN grouper_sync_membership_v.u_provisionable_end IS 'u_provisionable_end: when this entity stopped being provisionable'; COMMENT ON COLUMN grouper_sync_membership_v.u_last_updated IS 'u_last_updated: when the sync member was last updated'; COMMENT ON COLUMN grouper_sync_membership_v.u_last_user_sync_start IS 'u_last_user_sync_start: when the user was last overall sync started'; COMMENT ON COLUMN grouper_sync_membership_v.u_last_user_sync IS 'u_last_user_sync: when the user was last overall synced'; COMMENT ON COLUMN grouper_sync_membership_v.u_last_user_meta_sync_start IS 'u_last_user_meta_sync_start: when the metadata was sync started'; COMMENT ON COLUMN grouper_sync_membership_v.u_last_user_metadata_sync IS 'u_last_user_metadata_sync: when the metadata was last synced'; COMMENT ON COLUMN grouper_sync_membership_v.u_member_from_id2 IS 'u_member_from_id2: link data from id2'; COMMENT ON COLUMN grouper_sync_membership_v.u_member_from_id3 IS 'u_member_from_id3: link data from id3'; COMMENT ON COLUMN grouper_sync_membership_v.u_member_to_id2 IS 'u_member_to_id2: link data to id2'; COMMENT ON COLUMN grouper_sync_membership_v.u_member_to_id3 IS 'u_member_to_id3: link data to id3'; COMMENT ON COLUMN grouper_sync_membership_v.u_metadata_updated IS 'u_metadata_updated: when metadata was last updated for entity'; COMMENT ON COLUMN grouper_sync_membership_v.u_last_time_work_was_done IS 'u_last_time_work_was_done: time last work was done on user object'; COMMENT ON COLUMN grouper_sync_membership_v.u_error_message IS 'u_error_message: error message last time work was done on user unless a success happened afterward'; COMMENT ON COLUMN grouper_sync_membership_v.u_error_timestamp IS 'u_error_timestamp: timestamp the last error occurred unless a success happened afterwards'; COMMENT ON COLUMN grouper_sync_membership_v.g_id IS 'g_id: sync group id'; COMMENT ON COLUMN grouper_sync_membership_v.g_group_id IS 'g_group_id: grouper group id'; COMMENT ON COLUMN grouper_sync_membership_v.g_provisionable IS 'g_provisionable: t/f if group is provisionable'; COMMENT ON COLUMN grouper_sync_membership_v.g_in_target IS 'g_in_target: t/f if the group is in target'; COMMENT ON COLUMN grouper_sync_membership_v.g_in_target_insert_or_exists IS 'g_in_target_insert_or_exists: t/f if the group was inserted by grouper or already existed in target'; COMMENT ON COLUMN grouper_sync_membership_v.g_in_target_start IS 'g_in_target_start: when the group was detected to be in the target'; COMMENT ON COLUMN grouper_sync_membership_v.g_in_target_end IS 'g_in_target_end: when the group was detected to not be in the target anymore'; COMMENT ON COLUMN grouper_sync_membership_v.g_provisionable_start IS 'g_provisionable_start: when this group started being provisionable'; COMMENT ON COLUMN grouper_sync_membership_v.g_provisionable_end IS 'g_provisionable_end: when this group stopped being provisionable'; COMMENT ON COLUMN grouper_sync_membership_v.g_last_updated IS 'g_last_updated: when the sync group was last updated'; COMMENT ON COLUMN grouper_sync_membership_v.g_last_group_sync_start IS 'g_last_group_sync_start: when the group was sync started'; COMMENT ON COLUMN grouper_sync_membership_v.g_last_group_sync IS 'g_last_group_sync: when the group was last synced'; COMMENT ON COLUMN grouper_sync_membership_v.g_last_group_meta_sync_start IS 'g_last_group_meta_sync_start: when the metadata sync started'; COMMENT ON COLUMN grouper_sync_membership_v.g_last_group_metadata_sync IS 'g_last_group_metadata_sync: when the metadata was last synced'; COMMENT ON COLUMN grouper_sync_membership_v.g_group_from_id2 IS 'g_group_from_id2: link data from id2'; COMMENT ON COLUMN grouper_sync_membership_v.g_group_from_id3 IS 'g_group_from_id3: link data from id3'; COMMENT ON COLUMN grouper_sync_membership_v.g_group_to_id2 IS 'g_group_to_id2: link data to id2'; COMMENT ON COLUMN grouper_sync_membership_v.g_group_to_id3 IS 'g_group_to_id3: link data to id3'; COMMENT ON COLUMN grouper_sync_membership_v.g_metadata_updated IS 'g_metadata_updated: when metadata e.g. link data was last updated'; COMMENT ON COLUMN grouper_sync_membership_v.g_error_message IS 'g_error_message: if there is an error message last time work was done it is here'; COMMENT ON COLUMN grouper_sync_membership_v.g_error_timestamp IS 'g_error_timestamp: timestamp if last time work was done there was an error'; COMMENT ON COLUMN grouper_sync_membership_v.g_last_time_work_was_done IS 'g_last_time_work_was_done: timestamp of last time work was done on group'; COMMENT ON COLUMN grouper_sync_membership_v.m_error_code IS 'm_error_code: Error code e.g. ERR error, INV invalid based on script, LEN attribute too large, REQ required attribute missing, DNE data in target does not exist'; COMMENT ON COLUMN grouper_sync_membership_v.u_error_code IS 'u_error_code: Error code e.g. ERR error, INV invalid based on script, LEN attribute too large, REQ required attribute missing, DNE data in target does not exist'; COMMENT ON COLUMN grouper_sync_membership_v.g_error_code IS 'g_error_code: Error code e.g. ERR error, INV invalid based on script, LEN attribute too large, REQ required attribute missing, DNE data in target does not exist'; COMMENT ON TABLE grouper_ddl IS 'holds a record for each database object name, and db version, and java version'; COMMENT ON COLUMN grouper_ddl.id IS 'uuid of this ddl record'; COMMENT ON COLUMN grouper_ddl.object_name IS 'Corresponds to an enum in grouper.ddl package (with Ddl on end), represents one module, so grouper itself is one object'; COMMENT ON COLUMN grouper_ddl.db_version IS 'Version of this object as far as DB knows about'; COMMENT ON COLUMN grouper_ddl.last_updated IS 'last update timestamp, string so it can easily be used from update statement'; COMMENT ON COLUMN grouper_ddl.history IS 'history of this object name, with most recent first (truncated after 4k)'; COMMENT ON TABLE grouper_attr_assign_action IS 'list of actions that are available for attributes'; COMMENT ON COLUMN grouper_attr_assign_action.attribute_def_id IS 'attribute definition foreign key'; COMMENT ON COLUMN grouper_attr_assign_action.context_id IS 'context id in the auditing table'; COMMENT ON COLUMN grouper_attr_assign_action.created_on IS 'number of millis since 1970 when this was created'; COMMENT ON COLUMN grouper_attr_assign_action.id IS 'uuid of this record'; COMMENT ON COLUMN grouper_attr_assign_action.last_updated IS 'number of millis since 1970 when this was created'; COMMENT ON COLUMN grouper_attr_assign_action.name IS 'name of this action'; COMMENT ON COLUMN grouper_attr_assign_action.hibernate_version_number IS 'optimistic locking for grouper updates/deletes'; COMMENT ON TABLE grouper_pit_attr_assn_actn IS 'point in time: list of actions that are available for attributes'; COMMENT ON COLUMN grouper_pit_attr_assn_actn.attribute_def_id IS 'attribute definition foreign key'; COMMENT ON COLUMN grouper_pit_attr_assn_actn.context_id IS 'context id in the auditing table'; COMMENT ON COLUMN grouper_pit_attr_assn_actn.active IS 'T or F for if this row is active, based on start and end time'; COMMENT ON COLUMN grouper_pit_attr_assn_actn.start_time IS 'number of millis since 1970 when this row was inserted'; COMMENT ON COLUMN grouper_pit_attr_assn_actn.end_time IS 'number of millis since 1970 when this row was deleted'; COMMENT ON COLUMN grouper_pit_attr_assn_actn.id IS 'uuid of this record'; COMMENT ON COLUMN grouper_pit_attr_assn_actn.name IS 'name of this action'; COMMENT ON COLUMN grouper_pit_attr_assn_actn.hibernate_version_number IS 'optimistic locking for grouper updates/deletes'; COMMENT ON TABLE grouper_attr_assign_action_set IS 'relationships in action inheritance... e.g. admin action implies read and write actions. also holds effective relationships'; COMMENT ON COLUMN grouper_attr_assign_action_set.context_id IS 'uuid for the audit table'; COMMENT ON COLUMN grouper_attr_assign_action_set.created_on IS 'millis since 1970 when this row was created'; COMMENT ON COLUMN grouper_attr_assign_action_set.depth IS 'number of hops from one node to another, immediate is one'; COMMENT ON COLUMN grouper_attr_assign_action_set.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_attr_assign_action_set.if_has_attr_assn_action_id IS 'uuid foreign key of left hand side of this relationship, if you have this action, it implies the then_has action'; COMMENT ON COLUMN grouper_attr_assign_action_set.last_updated IS 'millis since 1970 when this was last updated'; COMMENT ON COLUMN grouper_attr_assign_action_set.parent_attr_assn_action_id IS 'if this is not immediate, then this is the row that puts this relationship n-1 almost there'; COMMENT ON COLUMN grouper_attr_assign_action_set.then_has_attr_assn_action_id IS 'uuid foreign key of the right hand side of this relationship, if you have the if_has action, then you have this one'; COMMENT ON COLUMN grouper_attr_assign_action_set.type IS 'from enum AttributeAssignActionType: self, immediate, effective'; COMMENT ON COLUMN grouper_attr_assign_action_set.hibernate_version_number IS 'hibernate optimistic locking number for updates and deletes'; COMMENT ON TABLE grouper_pit_attr_assn_actn_set IS 'point in time relationships in action inheritance... e.g. admin action implies read and write actions. also holds effective relationships'; COMMENT ON COLUMN grouper_pit_attr_assn_actn_set.context_id IS 'uuid for the audit table'; COMMENT ON COLUMN grouper_pit_attr_assn_actn_set.active IS 'T or F for if this row is active based on start and end times'; COMMENT ON COLUMN grouper_pit_attr_assn_actn_set.start_time IS 'millis since 1970 that this row was inserted'; COMMENT ON COLUMN grouper_pit_attr_assn_actn_set.end_time IS 'millis since 1970 that this row was deleted'; COMMENT ON COLUMN grouper_pit_attr_assn_actn_set.depth IS 'number of hops from one node to another, immediate is one'; COMMENT ON COLUMN grouper_pit_attr_assn_actn_set.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_pit_attr_assn_actn_set.if_has_attr_assn_action_id IS 'uuid foreign key of left hand side of this relationship, if you have this action, it implies the then_has action'; COMMENT ON COLUMN grouper_pit_attr_assn_actn_set.parent_attr_assn_action_id IS 'if this is not immediate, then this is the row that puts this relationship n-1 almost there'; COMMENT ON COLUMN grouper_pit_attr_assn_actn_set.then_has_attr_assn_action_id IS 'uuid foreign key of the right hand side of this relationship, if you have the if_has action, then you have this one'; COMMENT ON COLUMN grouper_pit_attr_assn_actn_set.hibernate_version_number IS 'hibernate optimistic locking number for updates and deletes'; COMMENT ON TABLE grouper_attribute_assign IS 'table that assigns an attribute def name to an owner (one of various types), and has an action'; COMMENT ON COLUMN grouper_attribute_assign.attribute_assign_action_id IS 'foreign key to the action which is in this attribute assignment, or permissions, it could be custom, for attributes, it is assign'; COMMENT ON COLUMN grouper_attribute_assign.attribute_assign_delegatable IS 'AttributeAssignDelegatable enum, TRUE, FALSE, or GRANT (can grant to someone else)'; COMMENT ON COLUMN grouper_attribute_assign.attribute_assign_type IS 'AttributeAssignType enum, what is the type of owner: any_mem, any_mem_asgn, attr_def, attr_def_asgn, group, group_asgn, imm_mem, imm_mem_asgn, mem_asgn, member, stem, stem_asgn'; COMMENT ON COLUMN grouper_attribute_assign.attribute_def_name_id IS 'foreign key to the attribute def name is which attribute is assigned'; COMMENT ON COLUMN grouper_attribute_assign.context_id IS 'links this row to an audit record'; COMMENT ON COLUMN grouper_attribute_assign.created_on IS 'number of millis since 1970 when this was created'; COMMENT ON COLUMN grouper_attribute_assign.disabled_time IS 'null if not disabled, or the number of millis since 1970 when this was or will be disabled. if in the future, Grouper will disable this row at that time.'; COMMENT ON COLUMN grouper_attribute_assign.disallowed IS 'T or F for if disallowed'; COMMENT ON COLUMN grouper_attribute_assign.enabled_time IS 'number of millis since 1970 when this was or will be enabled. if it future then this row will not be enabled'; COMMENT ON COLUMN grouper_attribute_assign.id IS 'uuid of row'; COMMENT ON COLUMN grouper_attribute_assign.last_updated IS 'millis since 1970 when this row was last updated'; COMMENT ON COLUMN grouper_attribute_assign.notes IS 'notes about this assignment to describe why it exists or anything else, freeform'; COMMENT ON COLUMN grouper_attribute_assign.owner_attribute_assign_id IS 'if this is an assignment on an assignment, then this is the foreign key to this table which is which assignment owns this assignment'; COMMENT ON COLUMN grouper_attribute_assign.owner_attribute_def_id IS 'if this is an assignment on an attribute definition, then this is the foreign key to the attribute definition table'; COMMENT ON COLUMN grouper_attribute_assign.owner_group_id IS 'if this is an assignment on a group or role or effective membership then this is the foreign key to the grouper_groups table'; COMMENT ON COLUMN grouper_attribute_assign.owner_member_id IS 'if this is an assignment on a member or effective membership, then this is the foreign key to the grouper_members table'; COMMENT ON COLUMN grouper_attribute_assign.owner_membership_id IS 'if this is an assignment on an immediate membership, then this is the foreign key to the grouper_memberships table'; COMMENT ON COLUMN grouper_attribute_assign.owner_stem_id IS 'if this is an assignment on a stem aka folder, then this is the foreign key to the grouper_stems table'; COMMENT ON COLUMN grouper_attribute_assign.hibernate_version_number IS 'optimistic locking column for hibernate on updates or deletes'; COMMENT ON COLUMN grouper_attribute_assign.enabled IS 'T or F to indicate if this assignment is enabled'; COMMENT ON TABLE grouper_pit_attribute_assign IS 'point in time table that assigns an attribute def name to an owner (one of various types), and has an action'; COMMENT ON COLUMN grouper_pit_attribute_assign.attribute_assign_action_id IS 'foreign key to the action which is in this attribute assignment, or permissions, it could be custom, for attributes, it is assign'; COMMENT ON COLUMN grouper_pit_attribute_assign.active IS 'T of F for if this row is active or not based on start and end dates'; COMMENT ON COLUMN grouper_pit_attribute_assign.start_time IS 'number of millis since 1970 that this row was inserted'; COMMENT ON COLUMN grouper_pit_attribute_assign.end_time IS 'number of millis since 1970 that this row was deleted'; COMMENT ON COLUMN grouper_pit_attribute_assign.attribute_assign_type IS 'AttributeAssignType enum, what is the type of owner: any_mem, any_mem_asgn, attr_def, attr_def_asgn, group, group_asgn, imm_mem, imm_mem_asgn, mem_asgn, member, stem, stem_asgn'; COMMENT ON COLUMN grouper_pit_attribute_assign.attribute_def_name_id IS 'foreign key to the attribute def name is which attribute is assigned'; COMMENT ON COLUMN grouper_pit_attribute_assign.context_id IS 'links this row to an audit record'; COMMENT ON COLUMN grouper_pit_attribute_assign.disallowed IS 'T or F for if disallowed or not'; COMMENT ON COLUMN grouper_pit_attribute_assign.id IS 'uuid of row'; COMMENT ON COLUMN grouper_pit_attribute_assign.owner_attribute_assign_id IS 'if this is an assignment on an assignment, then this is the foreign key to this table which is which assignment owns this assignment'; COMMENT ON COLUMN grouper_pit_attribute_assign.owner_attribute_def_id IS 'if this is an assignment on an attribute definition, then this is the foreign key to the attribute definition table'; COMMENT ON COLUMN grouper_pit_attribute_assign.owner_group_id IS 'if this is an assignment on a group or role or effective membership then this is the foreign key to the grouper_pit_groups table'; COMMENT ON COLUMN grouper_pit_attribute_assign.owner_member_id IS 'if this is an assignment on a member or effective membership, then this is the foreign key to the grouper_pit_members table'; COMMENT ON COLUMN grouper_pit_attribute_assign.owner_membership_id IS 'if this is an assignment on an immediate membership, then this is the foreign key to the grouper_pit_memberships table'; COMMENT ON COLUMN grouper_pit_attribute_assign.owner_stem_id IS 'if this is an assignment on a stem aka folder, then this is the foreign key to the grouper_pit_stems table'; COMMENT ON COLUMN grouper_pit_attribute_assign.hibernate_version_number IS 'optimistic locking column for hibernate on updates or deletes'; COMMENT ON TABLE grouper_attribute_def IS 'table that holds attribute definitions, which is the first part of the attribute framework'; COMMENT ON COLUMN grouper_attribute_def.assign_to_attribute_def IS 'T or F if you can assign this attribute to an attribute definition'; COMMENT ON COLUMN grouper_attribute_def.assign_to_attribute_def_assn IS 'T or F if you can assign this attribute to an assignment on an attribute definition'; COMMENT ON COLUMN grouper_attribute_def.assign_to_eff_membership IS 'T or F if you you can assign this attribute to an effective membership: group/member pair'; COMMENT ON COLUMN grouper_attribute_def.assign_to_eff_membership_assn IS 'T or F if you can assign this attribute to an effective membership attribute assignment: group/member pair'; COMMENT ON COLUMN grouper_attribute_def.assign_to_group IS 'T or F if you can assign this attribute to a group or role'; COMMENT ON COLUMN grouper_attribute_def.assign_to_group_assn IS 'T or F if you can assign this attribute to an assignment on a group or role'; COMMENT ON COLUMN grouper_attribute_def.assign_to_imm_membership IS 'T or F if you can assign this attribute to an immediate membership'; COMMENT ON COLUMN grouper_attribute_def.assign_to_imm_membership_assn IS 'T or F if you can assign this attribute to an attribute assignment on an immediate membership'; COMMENT ON COLUMN grouper_attribute_def.assign_to_member IS 'T or F if you can assign this attribute to a member'; COMMENT ON COLUMN grouper_attribute_def.assign_to_member_assn IS 'T or F if you can assign this attribute to an assignment on a member'; COMMENT ON COLUMN grouper_attribute_def.assign_to_stem IS 'T or F if you can assign this attribute to a stem/folder'; COMMENT ON COLUMN grouper_attribute_def.assign_to_stem_assn IS 'T or F if you can assign this attribute to an assignment on an attribute definition'; COMMENT ON COLUMN grouper_attribute_def.attribute_def_public IS 'T or F if this is a public attribute'; COMMENT ON COLUMN grouper_attribute_def.attribute_def_type IS 'AttributeDefType enum: attr, domain, type, limit, perm'; COMMENT ON COLUMN grouper_attribute_def.context_id IS 'links back to the grouper audit entry table'; COMMENT ON COLUMN grouper_attribute_def.created_on IS 'number of millis since 1970 when this row was created'; COMMENT ON COLUMN grouper_attribute_def.creator_id IS 'member id of the subject who created this row'; COMMENT ON COLUMN grouper_attribute_def.description IS 'freeform text that describes this attribute definition'; COMMENT ON COLUMN grouper_attribute_def.extension IS 'system name in the folder of this attribute definition'; COMMENT ON COLUMN grouper_attribute_def.id IS 'uuid of this record'; COMMENT ON COLUMN grouper_attribute_def.last_updated IS 'number of millis since 1970 when this row was last updated'; COMMENT ON COLUMN grouper_attribute_def.multi_assignable IS 'T or F if you can assign this attribute to the same owner twice'; COMMENT ON COLUMN grouper_attribute_def.multi_valued IS 'T or F if this assignment can have multiple values'; COMMENT ON COLUMN grouper_attribute_def.name IS 'full system name including system folder names separated by colons'; COMMENT ON COLUMN grouper_attribute_def.stem_id IS 'uuid of the stem/folder where this attribute definition lives'; COMMENT ON COLUMN grouper_attribute_def.value_type IS 'AttributeAssignValueType enum: floating, integerValue, memberId, nullValue, string'; COMMENT ON COLUMN grouper_attribute_def.hibernate_version_number IS 'hibernate version number for optimistic locking during updates and deletes'; COMMENT ON TABLE grouper_pit_attribute_def IS 'point in time table that holds attribute definitions, which is the first part of the attribute framework'; COMMENT ON COLUMN grouper_pit_attribute_def.attribute_def_type IS 'AttributeDefType enum: attr, domain, type, limit, perm'; COMMENT ON COLUMN grouper_pit_attribute_def.context_id IS 'links back to the grouper audit entry table'; COMMENT ON COLUMN grouper_pit_attribute_def.id IS 'uuid of this record'; COMMENT ON COLUMN grouper_pit_attribute_def.name IS 'full system name including system folder names separated by colons'; COMMENT ON COLUMN grouper_pit_attribute_def.stem_id IS 'uuid of the stem/folder where this attribute definition lives'; COMMENT ON COLUMN grouper_pit_attribute_def.hibernate_version_number IS 'hibernate version number for optimistic locking during updates and deletes'; COMMENT ON COLUMN grouper_pit_attribute_def.active IS 'T or F if this row is active based on start and end time'; COMMENT ON COLUMN grouper_pit_attribute_def.start_time IS 'millis since 1970 that this row was inserted'; COMMENT ON COLUMN grouper_pit_attribute_def.end_time IS 'millis since 1970 that this row was deleted'; COMMENT ON TABLE grouper_attribute_def_name IS 'table that holds attribute names, which is the second part of the attribute framework, along with the attribute definition'; COMMENT ON COLUMN grouper_attribute_def_name.attribute_def_id IS 'uuid foreign key links back to the attribute definition'; COMMENT ON COLUMN grouper_attribute_def_name.context_id IS 'uuid that links to the audit entry table'; COMMENT ON COLUMN grouper_attribute_def_name.created_on IS 'number of millis since 1970 when this row was created'; COMMENT ON COLUMN grouper_attribute_def_name.description IS 'freeform description of this attribute name'; COMMENT ON COLUMN grouper_attribute_def_name.display_extension IS 'display name (can change) of this attribute name, not including the stem/folder names'; COMMENT ON COLUMN grouper_attribute_def_name.display_name IS 'display name (can change) of this attribute name, including the display names of folders separated by colons'; COMMENT ON COLUMN grouper_attribute_def_name.extension IS 'system name (should not change often) of this attribute name, not including the stem/folder names'; COMMENT ON COLUMN grouper_attribute_def_name.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_attribute_def_name.last_updated IS 'number of millis since 1970 when this row was created'; COMMENT ON COLUMN grouper_attribute_def_name.name IS 'system name (should not change often) of this attribute name, including the stem/folder system names separated by colons'; COMMENT ON COLUMN grouper_attribute_def_name.stem_id IS 'uuid of the stem where this attribute name lives'; COMMENT ON COLUMN grouper_attribute_def_name.hibernate_version_number IS 'optimistic locking column for this row for updates and deletes'; COMMENT ON TABLE grouper_pit_attr_def_name IS 'point in time table that holds attribute names, which is the second part of the attribute framework, along with the attribute definition'; COMMENT ON COLUMN grouper_pit_attr_def_name.attribute_def_id IS 'uuid foreign key links back to the attribute definition'; COMMENT ON COLUMN grouper_pit_attr_def_name.context_id IS 'uuid that links to the audit entry table'; COMMENT ON COLUMN grouper_pit_attr_def_name.active IS 'T or F if this row is active based on start and end times'; COMMENT ON COLUMN grouper_pit_attr_def_name.start_time IS 'millis since 1970 that this row was inserted'; COMMENT ON COLUMN grouper_pit_attr_def_name.end_time IS 'millis since 1970 that this row was deleted'; COMMENT ON COLUMN grouper_pit_attr_def_name.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_pit_attr_def_name.name IS 'system name (should not change often) of this attribute name, including the stem/folder system names separated by colons'; COMMENT ON COLUMN grouper_pit_attr_def_name.stem_id IS 'uuid of the stem where this attribute name lives'; COMMENT ON COLUMN grouper_pit_attr_def_name.hibernate_version_number IS 'optimistic locking column for this row for updates and deletes'; COMMENT ON TABLE grouper_attribute_def_scope IS 'table that holds rules for where attributes can be assigned (i.e. only to objects in a certain folder etc)'; COMMENT ON COLUMN grouper_attribute_def_scope.attribute_def_id IS 'foreign key to the uuid of the attribute definition: grouper_attribute_def'; COMMENT ON COLUMN grouper_attribute_def_scope.attribute_def_scope_type IS 'AttributeDefScopeType enum: attributeDefNameIdAssigned, idEquals, inStem, nameEquals, nameLike, sourceId'; COMMENT ON COLUMN grouper_attribute_def_scope.context_id IS 'uuid of the audit entry'; COMMENT ON COLUMN grouper_attribute_def_scope.created_on IS 'number of millis since 1970 when this was created'; COMMENT ON COLUMN grouper_attribute_def_scope.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_attribute_def_scope.last_updated IS 'number of millis since 1970 when this attribute was last updated'; COMMENT ON COLUMN grouper_attribute_def_scope.scope_string IS 'describes where this can be assigned depending on the type of this constraint'; COMMENT ON COLUMN grouper_attribute_def_scope.scope_string2 IS 'describes where this can be assigned depending on the type of this constraint'; COMMENT ON COLUMN grouper_attribute_def_scope.hibernate_version_number IS 'optimistic locking column used by hibernate for updates and deletes'; COMMENT ON TABLE grouper_attribute_def_name_set IS 'table that holds immediate and effective relationships for attribute names that are permissions for inheritance... e.g. artsAndSciences implies english'; COMMENT ON COLUMN grouper_attribute_def_name_set.context_id IS 'uuid of the audit entry for the last change of this record'; COMMENT ON COLUMN grouper_attribute_def_name_set.created_on IS 'number of millis since 1970 when this record was created'; COMMENT ON COLUMN grouper_attribute_def_name_set.depth IS 'number of hops from one node to another: 0 is self, 1 is immediate, etc'; COMMENT ON COLUMN grouper_attribute_def_name_set.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_attribute_def_name_set.if_has_attribute_def_name_id IS 'left hand side of this relationship: if it has this uuid of foreign key of grouper_attribute_def_name then it implies the then_has column'; COMMENT ON COLUMN grouper_attribute_def_name_set.last_updated IS 'number of millis since 1970 when this row was last updated'; COMMENT ON COLUMN grouper_attribute_def_name_set.parent_attr_def_name_set_id IS 'link to the relationship above this one (hops-1)'; COMMENT ON COLUMN grouper_attribute_def_name_set.then_has_attribute_def_name_id IS 'right hand side of this relationship: if it has the if_has then it implies this uuid of the foreign key of the grouper_attribute_def_name'; COMMENT ON COLUMN grouper_attribute_def_name_set.type IS 'AttributeDefAssignmentType enum: effective, immediate, self'; COMMENT ON COLUMN grouper_attribute_def_name_set.hibernate_version_number IS 'column for hibernate optimistic locking for updates and deletes'; COMMENT ON TABLE grouper_pit_attr_def_name_set IS 'point in time: table that holds immediate and effective relationships for attribute names that are permissions for inheritance... e.g. artsAndSciences implies english'; COMMENT ON COLUMN grouper_pit_attr_def_name_set.context_id IS 'uuid of the audit entry for the last change of this record'; COMMENT ON COLUMN grouper_pit_attr_def_name_set.active IS 'T or F if this row is active based on start and end times'; COMMENT ON COLUMN grouper_pit_attr_def_name_set.start_time IS 'number of millis since 1970 when this row was inserted'; COMMENT ON COLUMN grouper_pit_attr_def_name_set.end_time IS 'number of millis since 1970 when this row was deleted'; COMMENT ON COLUMN grouper_pit_attr_def_name_set.depth IS 'number of hops from one node to another: 0 is self, 1 is immediate, etc'; COMMENT ON COLUMN grouper_pit_attr_def_name_set.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_pit_attr_def_name_set.if_has_attribute_def_name_id IS 'left hand side of this relationship: if it has this uuid of foreign key of grouper_pit_attr_def_name then it implies the then_has column'; COMMENT ON COLUMN grouper_pit_attr_def_name_set.parent_attr_def_name_set_id IS 'link to the relationship above this one (hops-1)'; COMMENT ON COLUMN grouper_pit_attr_def_name_set.then_has_attribute_def_name_id IS 'right hand side of this relationship: if it has the if_has then it implies this uuid of the foreign key of the grouper_pit_attr_def_name'; COMMENT ON COLUMN grouper_pit_attr_def_name_set.hibernate_version_number IS 'column for hibernate optimistic locking for updates and deletes'; COMMENT ON TABLE grouper_attribute_assign_value IS 'value assignment on an attribute assignment'; COMMENT ON COLUMN grouper_attribute_assign_value.attribute_assign_id IS 'foreign key to the attribute assignment grouper_attribute_assign for this assignment'; COMMENT ON COLUMN grouper_attribute_assign_value.context_id IS 'uuid of the audit entry for the last action on this row'; COMMENT ON COLUMN grouper_attribute_assign_value.created_on IS 'number of millis since 1970 when this row was created'; COMMENT ON COLUMN grouper_attribute_assign_value.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_attribute_assign_value.last_updated IS 'number of millis since 1970 when this row was last updated'; COMMENT ON COLUMN grouper_attribute_assign_value.value_floating IS 'if this is a floating type attribute definition, this is the value'; COMMENT ON COLUMN grouper_attribute_assign_value.value_integer IS 'if this is an integer type attribute definition, this is the value'; COMMENT ON COLUMN grouper_attribute_assign_value.value_member_id IS 'if this is a member type attribute definition, this is the value'; COMMENT ON COLUMN grouper_attribute_assign_value.value_string IS 'if this is a string type attribute definition, this is the value'; COMMENT ON COLUMN grouper_attribute_assign_value.hibernate_version_number IS 'hibernate optimistic locking column for updates and deletes'; COMMENT ON TABLE grouper_pit_attr_assn_value IS 'point in time history of value assignment on an attribute assignment'; COMMENT ON COLUMN grouper_pit_attr_assn_value.attribute_assign_id IS 'foreign key to the attribute assignment grouper_pit_attribute_assign for this assignment'; COMMENT ON COLUMN grouper_pit_attr_assn_value.context_id IS 'uuid of the audit entry for the last action on this row'; COMMENT ON COLUMN grouper_pit_attr_assn_value.start_time IS 'number of millis since 1970 when this row started in point in time'; COMMENT ON COLUMN grouper_pit_attr_assn_value.end_time IS 'number of millis since 1970 when this row ended in point in time'; COMMENT ON COLUMN grouper_pit_attr_assn_value.active IS 'T or F if this is an active record based on start and end dates'; COMMENT ON COLUMN grouper_pit_attr_assn_value.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_pit_attr_assn_value.end_time IS 'number of millis since 1970 when this row row ended in point in time'; COMMENT ON COLUMN grouper_pit_attr_assn_value.value_floating IS 'if this is a floating type attribute definition, this is the value'; COMMENT ON COLUMN grouper_pit_attr_assn_value.value_integer IS 'if this is an integer type attribute definition, this is the value'; COMMENT ON COLUMN grouper_pit_attr_assn_value.value_member_id IS 'if this is a member type attribute definition, this is the value'; COMMENT ON COLUMN grouper_pit_attr_assn_value.value_string IS 'if this is a string type attribute definition, this is the value'; COMMENT ON COLUMN grouper_pit_attr_assn_value.hibernate_version_number IS 'hibernate optimistic locking column for updates and deletes'; COMMENT ON TABLE grouper_change_log_type IS 'type of this change log entry, e.g. an insert into grouper groups'; COMMENT ON COLUMN grouper_change_log_type.action_name IS 'action name, e.g. addGroup, deleteMember'; COMMENT ON COLUMN grouper_change_log_type.change_log_category IS 'action category, e.g. group, member'; COMMENT ON COLUMN grouper_change_log_type.context_id IS 'uuid of the change log entry for this row'; COMMENT ON COLUMN grouper_change_log_type.created_on IS 'number of millis since 1970 when this row was created'; COMMENT ON COLUMN grouper_change_log_type.hibernate_version_number IS 'hibernate version for optimistic locking for updates and deletes'; COMMENT ON COLUMN grouper_change_log_type.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_change_log_type.label_string01 IS 'label of the 01 string entry'; COMMENT ON COLUMN grouper_change_log_type.label_string02 IS 'label of the 02 string entry'; COMMENT ON COLUMN grouper_change_log_type.label_string03 IS 'label of the 03 string entry'; COMMENT ON COLUMN grouper_change_log_type.label_string04 IS 'label of the 04 string entry'; COMMENT ON COLUMN grouper_change_log_type.label_string05 IS 'label of the 05 string entry'; COMMENT ON COLUMN grouper_change_log_type.label_string06 IS 'label of the 06 string entry'; COMMENT ON COLUMN grouper_change_log_type.label_string07 IS 'label of the 07 string entry'; COMMENT ON COLUMN grouper_change_log_type.label_string08 IS 'label of the 08 string entry'; COMMENT ON COLUMN grouper_change_log_type.label_string09 IS 'label of the 09 string entry'; COMMENT ON COLUMN grouper_change_log_type.label_string10 IS 'label of the 10 string entry'; COMMENT ON COLUMN grouper_change_log_type.label_string11 IS 'label of the 11 string entry'; COMMENT ON COLUMN grouper_change_log_type.label_string12 IS 'label of the 12 string entry'; COMMENT ON COLUMN grouper_change_log_type.last_updated IS 'number of millis since 1970 when this row was last changed'; COMMENT ON TABLE grouper_change_log_consumer IS 'table keeps track of change log consumers so if they stop, they will start at the place where they left off in processing change log entries'; COMMENT ON COLUMN grouper_change_log_consumer.created_on IS 'number of millis since 1970 when this record was created'; COMMENT ON COLUMN grouper_change_log_consumer.hibernate_version_number IS 'hibernate optimistic locking versioning column for updates and deletes'; COMMENT ON COLUMN grouper_change_log_consumer.id IS 'UUID of this row'; COMMENT ON COLUMN grouper_change_log_consumer.last_sequence_processed IS 'index of the change log row which was last processed by this consumer'; COMMENT ON COLUMN grouper_change_log_consumer.last_updated IS 'millis since 1970 that this row was last updated'; COMMENT ON COLUMN grouper_change_log_consumer.name IS 'name of the consumer'; COMMENT ON TABLE grouper_change_log_entry_temp IS 'rows are inserted here in the transaction of the actual action, e.g. an add member. The change log daemon will move records from here to the change log entry table in order, to be processed by consumers'; COMMENT ON COLUMN grouper_change_log_entry_temp.change_log_type_id IS 'foreign key to the grouper_change_log_type table'; COMMENT ON COLUMN grouper_change_log_entry_temp.context_id IS 'uuid to the grouper_audit_entry table'; COMMENT ON COLUMN grouper_change_log_entry_temp.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_change_log_entry_temp.string01 IS 'value of the string for value 01 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry_temp.string02 IS 'value of the string for value 02 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry_temp.string03 IS 'value of the string for value 03 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry_temp.string04 IS 'value of the string for value 04 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry_temp.string05 IS 'value of the string for value 05 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry_temp.string06 IS 'value of the string for value 06 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry_temp.string07 IS 'value of the string for value 07 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry_temp.string08 IS 'value of the string for value 08 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry_temp.string09 IS 'value of the string for value 09 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry_temp.string10 IS 'value of the string for value 10 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry_temp.string11 IS 'value of the string for value 11 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry_temp.string12 IS 'value of the string for value 12 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry_temp.created_on IS 'number of thousandths of millis from 1970 when this row was created'; COMMENT ON TABLE grouper_change_log_entry IS 'The change log daemon will move records from grouper_change_log_entry_temp to this table in time order, to be processed by consumers'; COMMENT ON COLUMN grouper_change_log_entry.change_log_type_id IS 'foreign key to the grouper_change_log_type table, the type of action'; COMMENT ON COLUMN grouper_change_log_entry.context_id IS 'uuid referencing the grouper_audit_entry table'; COMMENT ON COLUMN grouper_change_log_entry.created_on IS 'number of thousandths of millis from 1970 when this row was created'; COMMENT ON COLUMN grouper_change_log_entry.sequence_number IS 'integer which is in order which these records should be processed by change log consumers'; COMMENT ON COLUMN grouper_change_log_entry.string01 IS 'value of the string for value 01 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry.string02 IS 'value of the string for value 02 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry.string03 IS 'value of the string for value 03 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry.string04 IS 'value of the string for value 04 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry.string05 IS 'value of the string for value 05 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry.string06 IS 'value of the string for value 06 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry.string07 IS 'value of the string for value 07 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry.string08 IS 'value of the string for value 08 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry.string09 IS 'value of the string for value 09 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry.string10 IS 'value of the string for value 10 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry.string11 IS 'value of the string for value 11 which corresponds to the grouper_change_log_type table label'; COMMENT ON COLUMN grouper_change_log_entry.string12 IS 'value of the string for value 12 which corresponds to the grouper_change_log_type table label'; COMMENT ON TABLE grouper_message IS 'If using the default internal messaging with Grouper, this is the table that holds the messages and state of messages'; COMMENT ON COLUMN grouper_message.from_member_id IS 'member id of user who sent the message'; COMMENT ON COLUMN grouper_message.get_attempt_count IS 'how many times this message has been attempted to be retrieved'; COMMENT ON COLUMN grouper_message.get_attempt_time_millis IS 'milliseconds since 1970 that the message was attempted to be received'; COMMENT ON COLUMN grouper_message.get_time_millis IS 'millis since 1970 that this message was successfully received'; COMMENT ON COLUMN grouper_message.attempt_time_expires_millis IS 'millis since 1970 that this message attempt expires if not sent successfully'; COMMENT ON COLUMN grouper_message.hibernate_version_number IS 'hibernate version, optimistic locking so multiple processes dont update the same record at the same time'; COMMENT ON COLUMN grouper_message.id IS 'db uuid for this row'; COMMENT ON COLUMN grouper_message.message_body IS 'message body'; COMMENT ON COLUMN grouper_message.queue_name IS 'queue name for the message'; COMMENT ON COLUMN grouper_message.sent_time_micros IS 'microseconds since 1970 this message was sent (note this is probably unique, but not necessarily)'; COMMENT ON COLUMN grouper_message.state IS 'state of this message: IN_QUEUE, GET_ATTEMPTED, PROCESSED'; COMMENT ON TABLE grouper_group_set IS 'This table holds relationships for memberships or privileges on groups, stems, attributes. This allows quick joining of who is in a group effectively'; COMMENT ON COLUMN grouper_group_set.context_id IS 'uuid that links to the grouper_audit_entry'; COMMENT ON COLUMN grouper_group_set.create_time IS 'number of millis since 1970 that this row was created'; COMMENT ON COLUMN grouper_group_set.creator_id IS 'uuid of grouper_members of who created this row'; COMMENT ON COLUMN grouper_group_set.depth IS '0 for self, 1 for immediate, or more for effective. this is the number of hops between nodes'; COMMENT ON COLUMN grouper_group_set.field_id IS 'uuid foreign key from grouper_fields which is the list of the membership, normally members or the privilege in question'; COMMENT ON COLUMN grouper_group_set.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_group_set.member_attr_def_id IS 'foreign key of grouper_attribute_def of the member record'; COMMENT ON COLUMN grouper_group_set.member_field_id IS 'uuid foreign key from grouper_fields which is the list of the membership, normally members'; COMMENT ON COLUMN grouper_group_set.member_group_id IS 'uuid to the grouper_groups table which is the group that is a member of the owner'; COMMENT ON COLUMN grouper_group_set.member_id IS 'whether this is groups, stems, or attribute definitions, this is the member'; COMMENT ON COLUMN grouper_group_set.member_stem_id IS 'uuid to the grouper_stems table which is the stem that is implied by the owner'; COMMENT ON COLUMN grouper_group_set.mship_type IS 'MembershipType enum, effective or immediate'; COMMENT ON COLUMN grouper_group_set.owner_attr_def_id IS 'uuid to the grouper_attribute_def table which is the owner of this record, which implies a relationship to the member, if null, it will have (NULL) which helps with some DB vendors'; COMMENT ON COLUMN grouper_group_set.owner_attr_def_id_null IS 'uuid to the grouper_attribute_def table which is the owner of this record, which implies a relationship to the member, if null, it will be null'; COMMENT ON COLUMN grouper_group_set.owner_group_id IS 'uuid to the grouper_groups table which is the owner of this record, which implies a membership to the member uuid, if null, it will be (NULL) which helps with some DB vendors'; COMMENT ON COLUMN grouper_group_set.owner_group_id_null IS 'uuid to the grouper_groups table which is the owner of this record, which implies a membership to the member uuid, if null, it will be null'; COMMENT ON COLUMN grouper_group_set.owner_id IS 'whether this is '; COMMENT ON COLUMN grouper_group_set.owner_stem_id IS 'uuid to the grouper_stems table which is the owner of this record, which implies a privilege to the member uuid, if null, it will be (NULL) which helps with some DB vendors'; COMMENT ON COLUMN grouper_group_set.owner_stem_id_null IS 'uuid to the grouper_stems table which is the owner of this record, which implies a privilege to the member uuid, if null, it will be null'; COMMENT ON COLUMN grouper_group_set.parent_id IS 'this is the link back to the grouper_group_set table which is the one one hop away and related to this one...'; COMMENT ON COLUMN grouper_group_set.via_group_id IS 'same as member_group_id if depth is not 0 otherwise null'; COMMENT ON COLUMN grouper_group_set.hibernate_version_number IS 'optimistic locking column for hibernate used for updates and deletes'; COMMENT ON TABLE grouper_pit_group_set IS 'point in time: This table holds relationships for memberships or privileges on groups, stems, attributes. This allows quick joining of who is in a group effectively'; COMMENT ON COLUMN grouper_pit_group_set.context_id IS 'uuid that links to the grouper_audit_entry'; COMMENT ON COLUMN grouper_pit_group_set.active IS 'T or F for if this is active, based on start and end time'; COMMENT ON COLUMN grouper_pit_group_set.start_time IS 'number of millis since 1970 that this row was created'; COMMENT ON COLUMN grouper_pit_group_set.end_time IS 'number of millis since 1970 that this row was deleted'; COMMENT ON COLUMN grouper_pit_group_set.depth IS '0 for self, 1 for immediate, or more for effective. this is the number of hops between nodes'; COMMENT ON COLUMN grouper_pit_group_set.field_id IS 'uuid foreign key from grouper_pit_fields which is the list of the membership, normally members or the privilege in question'; COMMENT ON COLUMN grouper_pit_group_set.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_pit_group_set.member_attr_def_id IS 'foreign key of grouper_pit_attribute_def of the member record'; COMMENT ON COLUMN grouper_pit_group_set.member_field_id IS 'uuid foreign key from grouper_pit_fields which is the list of the membership, normally members'; COMMENT ON COLUMN grouper_pit_group_set.member_group_id IS 'uuid to the grouper_pit_groups table which is the group that is a member of the owner'; COMMENT ON COLUMN grouper_pit_group_set.member_id IS 'whether this is groups, stems, or attribute definitions, this is the member'; COMMENT ON COLUMN grouper_pit_group_set.member_stem_id IS 'uuid to the grouper_pit_stems table which is the stem that is implied by the owner'; COMMENT ON COLUMN grouper_pit_group_set.owner_attr_def_id IS 'uuid to the grouper_pit_attribute_def table which is the owner of this record, which implies a relationship to the member, if null, it will have (NULL) which helps with some DB vendors'; COMMENT ON COLUMN grouper_pit_group_set.owner_group_id IS 'uuid to the grouper_pit_groups table which is the owner of this record, which implies a membership to the member uuid, if null, it will be (NULL) which helps with some DB vendors'; COMMENT ON COLUMN grouper_pit_group_set.owner_id IS 'this is the owner id regardless of the type of owner'; COMMENT ON COLUMN grouper_pit_group_set.owner_stem_id IS 'uuid to the grouper_pit_stems table which is the owner of this record, which implies a privilege to the member uuid, if null, it will be (NULL) which helps with some DB vendors'; COMMENT ON COLUMN grouper_pit_group_set.parent_id IS 'this is the link back to the grouper_pit_group_set table which is the one one hop away and related to this one...'; COMMENT ON COLUMN grouper_pit_group_set.hibernate_version_number IS 'optimistic locking column for hibernate used for updates and deletes'; COMMENT ON TABLE grouper_role_set IS 'This table holds relationships between roles if one role inherits permissions from another role'; COMMENT ON COLUMN grouper_role_set.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_role_set.context_id IS 'links to the grouper_audit_entry for the last change of this row'; COMMENT ON COLUMN grouper_role_set.created_on IS 'millis since 1970 that this row was created'; COMMENT ON COLUMN grouper_role_set.depth IS 'number of hops across the relationship, 0 means self, 1 is immediate, more is effective'; COMMENT ON COLUMN grouper_role_set.if_has_role_id IS 'this is the foreign key uuid in grouper_groups where if the user has this role then they get the permissions assigned to another role then_has'; COMMENT ON COLUMN grouper_role_set.last_updated IS 'millis since 1970 when this row was last updated'; COMMENT ON COLUMN grouper_role_set.parent_role_set_id IS 'this is the foreign key to the uuid in this table grouper_role_set which is the next closest to the underlying assignment'; COMMENT ON COLUMN grouper_role_set.then_has_role_id IS 'this is the foreign key uuid in grouper_gropus where if the user has the if_has role then the user gets the permissions assigned to this then_has role'; COMMENT ON COLUMN grouper_role_set.type IS 'RoleHierarchyType enum: self, immediate, effective'; COMMENT ON COLUMN grouper_role_set.hibernate_version_number IS 'optimistic logging integer used by hibernate during updates and deletes'; COMMENT ON TABLE grouper_pit_role_set IS 'point in time: This table holds relationships between roles if one role inherits permissions from another role'; COMMENT ON COLUMN grouper_pit_role_set.context_id IS 'links to the grouper_audit_entry for the last change of this row'; COMMENT ON COLUMN grouper_pit_role_set.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_pit_role_set.active IS 'T or F for if this row is active based on start time and end time'; COMMENT ON COLUMN grouper_pit_role_set.start_time IS 'number of millis since 1970 that this row was inserted'; COMMENT ON COLUMN grouper_pit_role_set.end_time IS 'number of millis since 1970 that this row was deleted'; COMMENT ON COLUMN grouper_pit_role_set.depth IS 'number of hops across the relationship, 0 means self, 1 is immediate, more is effective'; COMMENT ON COLUMN grouper_pit_role_set.if_has_role_id IS 'this is the foreign key uuid in grouper_pit_groups where if the user has this role then they get the permissions assigned to another role then_has'; COMMENT ON COLUMN grouper_pit_role_set.parent_role_set_id IS 'this is the foreign key to the uuid in this table grouper_pit_role_set which is the next closest to the underlying assignment'; COMMENT ON COLUMN grouper_pit_role_set.then_has_role_id IS 'this is the foreign key uuid in grouper_pit_gropus where if the user has the if_has role then the user gets the permissions assigned to this then_has role'; COMMENT ON COLUMN grouper_pit_role_set.hibernate_version_number IS 'optimistic logging integer used by hibernate during updates and deletes'; COMMENT ON TABLE grouper_audit_entry IS 'holds one record for each audit entry record which is a high level action that ties together lower level actions'; COMMENT ON COLUMN grouper_audit_entry.act_as_member_id IS 'Member id (foreign key) of the user who is being acted as'; COMMENT ON COLUMN grouper_audit_entry.audit_type_id IS 'foreign key to the grouper_audit_type table which is the type of this entry'; COMMENT ON COLUMN grouper_audit_entry.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON COLUMN grouper_audit_entry.created_on IS 'When this audit entry record was created'; COMMENT ON COLUMN grouper_audit_entry.description IS 'Description is a sentence form expression of what is being audited'; COMMENT ON COLUMN grouper_audit_entry.env_name IS 'environment label of the system running, from grouper.properties'; COMMENT ON COLUMN grouper_audit_entry.grouper_engine IS 'Grouper engine is e.g. UI, WS, GSH, loader, etc'; COMMENT ON COLUMN grouper_audit_entry.grouper_version IS 'Grouper version of the API executing'; COMMENT ON COLUMN grouper_audit_entry.hibernate_version_number IS 'hibernate version number keeps track of if multiple sessions step on toes'; COMMENT ON COLUMN grouper_audit_entry.id IS 'db id of this audit entry record'; COMMENT ON COLUMN grouper_audit_entry.int01 IS 'The int 01 value'; COMMENT ON COLUMN grouper_audit_entry.int02 IS 'The int 02 value'; COMMENT ON COLUMN grouper_audit_entry.int03 IS 'The int 03 value'; COMMENT ON COLUMN grouper_audit_entry.int04 IS 'The int 04 value'; COMMENT ON COLUMN grouper_audit_entry.int05 IS 'The int 05 value'; COMMENT ON COLUMN grouper_audit_entry.last_updated IS 'When this audit entry was last updated'; COMMENT ON COLUMN grouper_audit_entry.logged_in_member_id IS 'Member id (foreign key) of the user logged in'; COMMENT ON COLUMN grouper_audit_entry.server_host IS 'Host of the system running the grouper API'; COMMENT ON COLUMN grouper_audit_entry.string01 IS 'The string 01 value'; COMMENT ON COLUMN grouper_audit_entry.string02 IS 'The string 02 value'; COMMENT ON COLUMN grouper_audit_entry.string03 IS 'The string 03 value'; COMMENT ON COLUMN grouper_audit_entry.string04 IS 'The string 04 value'; COMMENT ON COLUMN grouper_audit_entry.string05 IS 'The string 05 value'; COMMENT ON COLUMN grouper_audit_entry.string06 IS 'The string 06 value'; COMMENT ON COLUMN grouper_audit_entry.string07 IS 'The string 07 value'; COMMENT ON COLUMN grouper_audit_entry.string08 IS 'The string 08 value'; COMMENT ON COLUMN grouper_audit_entry.user_ip_address IS 'IP address of the user connecting to the system (e.g. from UI or WS)'; COMMENT ON COLUMN grouper_audit_entry.duration_microseconds IS 'Duration of the context, in microseconds (millionths of a second)'; COMMENT ON COLUMN grouper_audit_entry.query_count IS 'Number of database queries required for this context'; COMMENT ON COLUMN grouper_audit_entry.server_user_name IS 'Username of the OS user running the API. This might identify who ran a GSH call'; COMMENT ON TABLE grouper_audit_type IS 'audit type is a category and an action that organizes audits. Also holds labels for all the misc string and int fields'; COMMENT ON COLUMN grouper_audit_type.action_name IS 'The action in this audit category to differentiate from others'; COMMENT ON COLUMN grouper_audit_type.audit_category IS 'The category of this audit in logical grouping'; COMMENT ON COLUMN grouper_audit_type.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON COLUMN grouper_audit_type.created_on IS 'When this audit type was created'; COMMENT ON COLUMN grouper_audit_type.hibernate_version_number IS 'Hibernate version number makes sure multiple sessions do not step on toes'; COMMENT ON COLUMN grouper_audit_type.id IS 'Unique id of this audit entry'; COMMENT ON COLUMN grouper_audit_type.label_int01 IS 'The int 01 value'; COMMENT ON COLUMN grouper_audit_type.label_int02 IS 'The int 02 value'; COMMENT ON COLUMN grouper_audit_type.label_int03 IS 'The int 03 value'; COMMENT ON COLUMN grouper_audit_type.label_int04 IS 'The int 04 value'; COMMENT ON COLUMN grouper_audit_type.label_int05 IS 'The int 05 value'; COMMENT ON COLUMN grouper_audit_type.label_string01 IS 'The label of the string field 01 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_type.label_string02 IS 'The label of the string field 02 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_type.label_string03 IS 'The label of the string field 03 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_type.label_string04 IS 'The label of the string field 04 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_type.label_string05 IS 'The label of the string field 05 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_type.label_string06 IS 'The label of the string field 06 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_type.label_string07 IS 'The label of the string field 07 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_type.label_string08 IS 'The label of the string field 08 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_type.last_updated IS 'When this audit type was last updated'; COMMENT ON TABLE grouper_composites IS 'records the composite group, and its factors'; COMMENT ON COLUMN grouper_composites.id IS 'db id of this composite record'; COMMENT ON COLUMN grouper_composites.owner IS 'group uuid of the composite group'; COMMENT ON COLUMN grouper_composites.left_factor IS 'left factor of the composite group'; COMMENT ON COLUMN grouper_composites.right_factor IS 'right factor of the composite group'; COMMENT ON COLUMN grouper_composites.type IS 'e.g. union, complement, intersection'; COMMENT ON COLUMN grouper_composites.creator_id IS 'member uuid of who created this'; COMMENT ON COLUMN grouper_composites.create_time IS 'number of millis since 1970 until when created'; COMMENT ON COLUMN grouper_composites.hibernate_version_number IS 'hibernate uses this to version rows'; COMMENT ON COLUMN grouper_composites.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON TABLE grouper_ext_subj IS 'external subjects stored in grouper'; COMMENT ON COLUMN grouper_ext_subj.context_id IS 'context id links back to an auditing record'; COMMENT ON COLUMN grouper_ext_subj.create_time IS 'when this record was created in millis from 1970'; COMMENT ON COLUMN grouper_ext_subj.creator_member_id IS 'member id of who created this record'; COMMENT ON COLUMN grouper_ext_subj.description IS 'description field of the subject object'; COMMENT ON COLUMN grouper_ext_subj.email IS 'email address of subject (optional)'; COMMENT ON COLUMN grouper_ext_subj.identifier IS 'identifier of subject, e.g. the eppn.'; COMMENT ON COLUMN grouper_ext_subj.institution IS 'institution name where the subject is from'; COMMENT ON COLUMN grouper_ext_subj.modifier_member_id IS 'member id of who last edited the record'; COMMENT ON COLUMN grouper_ext_subj.modify_time IS 'when the record was last modified'; COMMENT ON COLUMN grouper_ext_subj.name IS 'name field of the subject object'; COMMENT ON COLUMN grouper_ext_subj.search_string_lower IS 'subject searches will use this field, it should contain most of the other fields, lower case'; COMMENT ON COLUMN grouper_ext_subj.uuid IS 'unique identifier for row'; COMMENT ON COLUMN grouper_ext_subj.enabled IS 'T or F for if this subject is enabled'; COMMENT ON COLUMN grouper_ext_subj.disabled_time IS 'number of millis since 1970 when this row was disabled'; COMMENT ON COLUMN grouper_ext_subj.hibernate_version_number IS 'hibernate optimistic locking value for updates and deletes'; COMMENT ON COLUMN grouper_ext_subj.vetted_email_addresses IS 'comma separated email addresses that this user has responded to'; COMMENT ON TABLE grouper_ext_subj_attr IS 'external subjects stored in grouper'; COMMENT ON COLUMN grouper_ext_subj_attr.attribute_system_name IS 'system name of the attribute, should not change, used as column name in view'; COMMENT ON COLUMN grouper_ext_subj_attr.attribute_value IS 'value of the attribute'; COMMENT ON COLUMN grouper_ext_subj_attr.context_id IS 'context id links back to an auditing record'; COMMENT ON COLUMN grouper_ext_subj_attr.create_time IS 'when this record was created in millis from 1970'; COMMENT ON COLUMN grouper_ext_subj_attr.creator_member_id IS 'member id of who created this record'; COMMENT ON COLUMN grouper_ext_subj_attr.modifier_member_id IS 'member id of who last edited the record'; COMMENT ON COLUMN grouper_ext_subj_attr.modify_time IS 'when the record was last modified'; COMMENT ON COLUMN grouper_ext_subj_attr.subject_uuid IS 'foreign key back to external subject'; COMMENT ON COLUMN grouper_ext_subj_attr.uuid IS 'unique identifier for row'; COMMENT ON COLUMN grouper_ext_subj_attr.hibernate_version_number IS 'hibernate optimistic locking value for updates and deletes'; COMMENT ON TABLE grouper_fields IS 'describes fields related to types'; COMMENT ON COLUMN grouper_fields.id IS 'db id of this field record'; COMMENT ON COLUMN grouper_fields.hibernate_version_number IS 'hibernate optimistic locking version number for updates and deletes'; COMMENT ON COLUMN grouper_fields.name IS 'name of the field'; COMMENT ON COLUMN grouper_fields.read_privilege IS 'which privilege is required to read this field'; COMMENT ON COLUMN grouper_fields.type IS 'type of field (e.g. attribute, list, access, naming)'; COMMENT ON COLUMN grouper_fields.write_privilege IS 'which privilege is required to write this attribute'; COMMENT ON COLUMN grouper_fields.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON TABLE grouper_pit_fields IS 'point in time history that describes fields related to types'; COMMENT ON COLUMN grouper_pit_fields.id IS 'db id of this field record'; COMMENT ON COLUMN grouper_pit_fields.active IS 'T or F if this record is currently active'; COMMENT ON COLUMN grouper_pit_fields.start_time IS 'number of millis since 1970 that this record was inserted'; COMMENT ON COLUMN grouper_pit_fields.end_time IS 'number of millis since 1970 that this record was deleted'; COMMENT ON COLUMN grouper_pit_fields.hibernate_version_number IS 'hibernate optimistic locking id for updates and deletes'; COMMENT ON COLUMN grouper_pit_fields.name IS 'name of the field'; COMMENT ON COLUMN grouper_pit_fields.type IS 'type of field (e.g. attribute, list, access, naming)'; COMMENT ON COLUMN grouper_pit_fields.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON TABLE grouper_groups IS 'holds the groups in the grouper system'; COMMENT ON COLUMN grouper_groups.id IS 'db id of this group record'; COMMENT ON COLUMN grouper_groups.parent_stem IS 'uuid of the stem that this group refers to'; COMMENT ON COLUMN grouper_groups.creator_id IS 'member uuid of the creator of this group'; COMMENT ON COLUMN grouper_groups.create_time IS 'number of millis since 1970 that this group was created'; COMMENT ON COLUMN grouper_groups.modifier_id IS 'member uuid of the last modifier of this group'; COMMENT ON COLUMN grouper_groups.modify_time IS 'number of millis since 1970 that this group was modified'; COMMENT ON COLUMN grouper_groups.hibernate_version_number IS 'hibernate uses this to version rows'; COMMENT ON COLUMN grouper_groups.name IS 'group name is the fully qualified extension of group and all parent stems. It shouldnt change much, and can be used to reference group from external systems'; COMMENT ON COLUMN grouper_groups.display_name IS 'group display name is the fully qualified display extension of group and all parent stems. It can change as needed, and can not be used to reference group from external systems'; COMMENT ON COLUMN grouper_groups.extension IS 'group extension is the label for this group inside a stem. It shouldnt change much, and can be used to reference group from external systems (in conjunction with parent stem id)'; COMMENT ON COLUMN grouper_groups.display_extension IS 'group display extension is the display label for this group inside a stem. It cant change as needed, and can not be used to reference group from external systems'; COMMENT ON COLUMN grouper_groups.description IS 'group description is an optional text blurb that can be used to describe the group'; COMMENT ON COLUMN grouper_groups.last_membership_change IS 'If configured to keep track, this is the last membership change for this group'; COMMENT ON COLUMN grouper_groups.last_imm_membership_change IS 'If configured to keep track, this is the last immediate membership change for this group'; COMMENT ON COLUMN grouper_groups.alternate_name IS 'An alternate name for this group'; COMMENT ON COLUMN grouper_groups.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON COLUMN grouper_groups.type_of_group IS 'if this is a group or role'; COMMENT ON TABLE grouper_pit_groups IS 'point in time info about groups in the grouper system'; COMMENT ON COLUMN grouper_pit_groups.id IS 'db id of this group record'; COMMENT ON COLUMN grouper_pit_groups.start_time IS 'millis since 1970 when this record was inserted'; COMMENT ON COLUMN grouper_pit_groups.end_time IS 'millis since 1970 when this record was deleted'; COMMENT ON COLUMN grouper_pit_groups.active IS 'T or F if this record is currently active'; COMMENT ON COLUMN grouper_pit_groups.stem_id IS 'uuid of the stem that this group refers to'; COMMENT ON COLUMN grouper_pit_groups.hibernate_version_number IS 'hibernate uses this to version rows'; COMMENT ON COLUMN grouper_pit_groups.name IS 'group name is the fully qualified extension of group and all parent stems. It shouldnt change much, and can be used to reference group from external systems'; COMMENT ON COLUMN grouper_pit_groups.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON TABLE grouper_members IS 'keeps track of subjects used in grouper. Records are never deleted from this table'; COMMENT ON COLUMN grouper_members.id IS 'db id of this row'; COMMENT ON COLUMN grouper_members.subject_id IS 'subject id is the id from the subject source'; COMMENT ON COLUMN grouper_members.subject_source IS 'id of the source from subject.properties'; COMMENT ON COLUMN grouper_members.subject_type IS 'type of subject, e.g. person'; COMMENT ON COLUMN grouper_members.sort_string0 IS 'string that can be used to sort results'; COMMENT ON COLUMN grouper_members.sort_string1 IS 'string that can be used to sort results'; COMMENT ON COLUMN grouper_members.sort_string2 IS 'string that can be used to sort results'; COMMENT ON COLUMN grouper_members.sort_string3 IS 'string that can be used to sort results'; COMMENT ON COLUMN grouper_members.sort_string4 IS 'string that can be used to sort results'; COMMENT ON COLUMN grouper_members.search_string0 IS 'string that can be used to filter results'; COMMENT ON COLUMN grouper_members.search_string1 IS 'string that can be used to filter results'; COMMENT ON COLUMN grouper_members.search_string2 IS 'string that can be used to filter results'; COMMENT ON COLUMN grouper_members.search_string3 IS 'string that can be used to filter results'; COMMENT ON COLUMN grouper_members.search_string4 IS 'string that can be used to filter results'; COMMENT ON COLUMN grouper_members.name IS 'name of subject'; COMMENT ON COLUMN grouper_members.description IS 'description of subject'; COMMENT ON COLUMN grouper_members.hibernate_version_number IS 'hibernate uses this to version rows'; COMMENT ON COLUMN grouper_members.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON TABLE grouper_pit_members IS 'keeps track of subjects used in grouper. Records are never deleted from this table'; COMMENT ON COLUMN grouper_pit_members.id IS 'db id of this row'; COMMENT ON COLUMN grouper_pit_members.subject_id IS 'subject id is the id from the subject source'; COMMENT ON COLUMN grouper_pit_members.subject_source IS 'id of the source from subject.properties'; COMMENT ON COLUMN grouper_pit_members.subject_type IS 'type of subject, e.g. person'; COMMENT ON COLUMN grouper_pit_members.active IS 'T or F if this is an active record based on start and end dates'; COMMENT ON COLUMN grouper_pit_members.start_time IS 'millis from 1970 when this record was inserted'; COMMENT ON COLUMN grouper_pit_members.end_time IS 'millis from 1970 when this record was deleted'; COMMENT ON COLUMN grouper_pit_members.hibernate_version_number IS 'hibernate uses this to version rows'; COMMENT ON COLUMN grouper_pit_members.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON TABLE grouper_memberships IS 'keeps track of memberships and permissions'; COMMENT ON COLUMN grouper_memberships.id IS 'db id of this row'; COMMENT ON COLUMN grouper_memberships.owner_group_id IS 'group of the membership if applicable'; COMMENT ON COLUMN grouper_memberships.owner_stem_id IS 'stem of the membership if applicable'; COMMENT ON COLUMN grouper_memberships.member_id IS 'member of the memership'; COMMENT ON COLUMN grouper_memberships.owner_id IS 'owner of the memership'; COMMENT ON COLUMN grouper_memberships.field_id IS 'foreign key to field by id'; COMMENT ON COLUMN grouper_memberships.mship_type IS 'type of membership, immediate or composite'; COMMENT ON COLUMN grouper_memberships.via_composite_id IS 'for composite, this is the composite uuid'; COMMENT ON COLUMN grouper_memberships.creator_id IS 'member uuid of the creator of this record'; COMMENT ON COLUMN grouper_memberships.create_time IS 'number of millis since 1970 that this record was created'; COMMENT ON COLUMN grouper_memberships.hibernate_version_number IS 'hibernate uses this to version rows'; COMMENT ON COLUMN grouper_memberships.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON COLUMN grouper_memberships.enabled IS 'T or F to indicate if the membership is enabled'; COMMENT ON COLUMN grouper_memberships.enabled_timestamp IS 'When the membership will be enabled if the time is in the future.'; COMMENT ON COLUMN grouper_memberships.disabled_timestamp IS 'When the membership will be disabled if the time is in the future.'; COMMENT ON COLUMN grouper_memberships.owner_attr_def_id IS 'For attribute definition privileges, this is the foreign key to the grouper_attribute_def table'; COMMENT ON TABLE grouper_pit_memberships IS 'keeps track of memberships and permissions'; COMMENT ON COLUMN grouper_pit_memberships.id IS 'db id of this row'; COMMENT ON COLUMN grouper_pit_memberships.owner_group_id IS 'group of the membership if applicable'; COMMENT ON COLUMN grouper_pit_memberships.owner_stem_id IS 'stem of the membership if applicable'; COMMENT ON COLUMN grouper_pit_memberships.owner_attr_def_id IS 'attribute def of the membership if applicable'; COMMENT ON COLUMN grouper_pit_memberships.member_id IS 'member of the memership'; COMMENT ON COLUMN grouper_pit_memberships.owner_id IS 'owner of the memership'; COMMENT ON COLUMN grouper_pit_memberships.field_id IS 'foreign key to field by id'; COMMENT ON COLUMN grouper_pit_memberships.active IS 'T or F if this row is active based on start_time and end_time'; COMMENT ON COLUMN grouper_pit_memberships.start_time IS 'number of millis since 1970 when this record was inserted'; COMMENT ON COLUMN grouper_pit_memberships.end_time IS 'number of millis since 1970 when this record was deleted'; COMMENT ON COLUMN grouper_pit_memberships.hibernate_version_number IS 'hibernate uses this to version rows'; COMMENT ON COLUMN grouper_pit_memberships.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON TABLE grouper_group_set IS 'keeps track of the set of immediate and effective group members for all groups and stems'; COMMENT ON COLUMN grouper_group_set.id IS 'db id of this row'; COMMENT ON COLUMN grouper_group_set.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON COLUMN grouper_group_set.hibernate_version_number IS 'hibernate uses this to version rows'; COMMENT ON COLUMN grouper_group_set.field_id IS 'field represented by this group set'; COMMENT ON COLUMN grouper_group_set.mship_type IS 'type of membership represented by this group set, immediate or composite or effective'; COMMENT ON COLUMN grouper_group_set.via_group_id IS 'same as member_group_id if depth is greater than 0, otherwise null.'; COMMENT ON COLUMN grouper_group_set.depth IS 'number of hops in directed graph'; COMMENT ON COLUMN grouper_group_set.parent_id IS 'parent group set'; COMMENT ON COLUMN grouper_group_set.creator_id IS 'member uuid of the creator of this record'; COMMENT ON COLUMN grouper_group_set.create_time IS 'number of millis since 1970 that this record was created'; COMMENT ON COLUMN grouper_group_set.owner_id IS 'owner id'; COMMENT ON COLUMN grouper_group_set.owner_attr_def_id IS 'owner attr def if applicable'; COMMENT ON COLUMN grouper_group_set.owner_attr_def_id_null IS 'same as owner_attr_def_id except nulls are replaced with the string <NULL>'; COMMENT ON COLUMN grouper_group_set.owner_group_id IS 'owner group if applicable'; COMMENT ON COLUMN grouper_group_set.owner_group_id_null IS 'same as owner_group_id except nulls are replaced with the string <NULL>'; COMMENT ON COLUMN grouper_group_set.owner_stem_id IS 'owner stem if applicable'; COMMENT ON COLUMN grouper_group_set.owner_stem_id_null IS 'same as owner_stem_id except nulls are replaced with the string <NULL>'; COMMENT ON COLUMN grouper_group_set.member_attr_def_id IS 'member attr def if applicable'; COMMENT ON COLUMN grouper_group_set.member_group_id IS 'member group if applicable'; COMMENT ON COLUMN grouper_group_set.member_stem_id IS 'member stem if applicable'; COMMENT ON COLUMN grouper_group_set.member_id IS 'member id'; COMMENT ON COLUMN grouper_group_set.member_field_id IS 'used to join with the field_id column in the grouper_memberships table'; COMMENT ON TABLE grouper_stems IS 'entries for stems and their attributes'; COMMENT ON COLUMN grouper_stems.id IS 'db id of this row'; COMMENT ON COLUMN grouper_stems.parent_stem IS 'stem uuid of parent stem or empty if under root'; COMMENT ON COLUMN grouper_stems.name IS 'full name (id) path of stem'; COMMENT ON COLUMN grouper_stems.display_name IS 'full dislpay name path of stem'; COMMENT ON COLUMN grouper_stems.creator_id IS 'member_id of who created this stem'; COMMENT ON COLUMN grouper_stems.create_time IS 'number of millis since 1970 since this was created'; COMMENT ON COLUMN grouper_stems.modifier_id IS 'member_id of modifier who last edited'; COMMENT ON COLUMN grouper_stems.modify_time IS 'number of millis since 1970 since this was edited'; COMMENT ON COLUMN grouper_stems.display_extension IS 'display extension (not full path) of stem'; COMMENT ON COLUMN grouper_stems.extension IS 'extension (id) (not full path) of this stem'; COMMENT ON COLUMN grouper_stems.description IS 'description of stem'; COMMENT ON COLUMN grouper_stems.hibernate_version_number IS 'hibernate uses this to version rows'; COMMENT ON COLUMN grouper_stems.last_membership_change IS 'If configured to keep track, this is the last membership change for this stem'; COMMENT ON COLUMN grouper_stems.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON TABLE grouper_pit_stems IS 'entries for stems and their attributes'; COMMENT ON COLUMN grouper_pit_stems.id IS 'db id of this row'; COMMENT ON COLUMN grouper_pit_stems.parent_stem_id IS 'stem uuid of parent stem or empty if under root'; COMMENT ON COLUMN grouper_pit_stems.name IS 'full name (id) path of stem'; COMMENT ON COLUMN grouper_pit_stems.hibernate_version_number IS 'hibernate uses this to version rows'; COMMENT ON COLUMN grouper_pit_stems.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON COLUMN grouper_pit_stems.active IS 'T or F if this row is active by start and end time'; COMMENT ON COLUMN grouper_pit_stems.start_time IS 'millis sinve 1970 that this row was inserted'; COMMENT ON COLUMN grouper_pit_stems.end_time IS 'millis since 1970 that this row was deleted'; COMMENT ON TABLE grouper_loader_log IS 'log table with a row for each grouper loader job run'; COMMENT ON COLUMN grouper_loader_log.id IS 'uuid of this log record'; COMMENT ON COLUMN grouper_loader_log.job_name IS 'Could be group name (friendly) or just config name'; COMMENT ON COLUMN grouper_loader_log.status IS 'STARTED, RUNNING, SUCCESS, ERROR, WARNING, CONFIG_ERROR'; COMMENT ON COLUMN grouper_loader_log.started_time IS 'When the job was started'; COMMENT ON COLUMN grouper_loader_log.ended_time IS 'When the job ended (might be blank if daemon died)'; COMMENT ON COLUMN grouper_loader_log.millis IS 'Milliseconds this process took'; COMMENT ON COLUMN grouper_loader_log.millis_get_data IS 'Milliseconds this process took to get the data from the source'; COMMENT ON COLUMN grouper_loader_log.millis_load_data IS 'Milliseconds this process took to load the data to grouper'; COMMENT ON COLUMN grouper_loader_log.job_type IS 'GrouperLoaderJobType enum value'; COMMENT ON COLUMN grouper_loader_log.job_schedule_type IS 'GrouperLoaderJobscheduleType enum value'; COMMENT ON COLUMN grouper_loader_log.job_description IS 'More information about the job'; COMMENT ON COLUMN grouper_loader_log.job_message IS 'Could be a status or error message or stack'; COMMENT ON COLUMN grouper_loader_log.host IS 'Host that this job ran on'; COMMENT ON COLUMN grouper_loader_log.group_uuid IS 'If this job involves one group, this is uuid'; COMMENT ON COLUMN grouper_loader_log.job_schedule_quartz_cron IS 'Quartz cron string for this col'; COMMENT ON COLUMN grouper_loader_log.job_schedule_interval_seconds IS 'How many seconds this is supposed to wait between runs'; COMMENT ON COLUMN grouper_loader_log.last_updated IS 'When this record was last updated'; COMMENT ON COLUMN grouper_loader_log.unresolvable_subject_count IS 'The number of records which were not subject resolvable'; COMMENT ON COLUMN grouper_loader_log.insert_count IS 'The number of records inserted'; COMMENT ON COLUMN grouper_loader_log.update_count IS 'The number of records updated'; COMMENT ON COLUMN grouper_loader_log.delete_count IS 'The number of records deleted'; COMMENT ON COLUMN grouper_loader_log.total_count IS 'The total number of records (e.g. total number of members)'; COMMENT ON COLUMN grouper_loader_log.parent_job_name IS 'If this job is a subjob of another job, then put the parent job name here'; COMMENT ON COLUMN grouper_loader_log.parent_job_id IS 'If this job is a subjob of another job, then put the parent job id here'; COMMENT ON COLUMN grouper_loader_log.and_group_names IS 'If this group query is anded with another group or groups, they are listed here comma separated'; COMMENT ON COLUMN grouper_loader_log.job_schedule_priority IS 'Priority of this job (5 is unprioritized, higher the better)'; COMMENT ON COLUMN grouper_loader_log.context_id IS 'link to the audit entry table'; COMMENT ON TABLE grouper_stem_set IS 'This table holds the relationship between stems by easily indicating all the ancestors of a stem.'; COMMENT ON COLUMN grouper_stem_set.context_id IS 'uuid for the audit table'; COMMENT ON COLUMN grouper_stem_set.created_on IS 'millis since 1970 when this row was created'; COMMENT ON COLUMN grouper_stem_set.depth IS 'number of hops from one node to another, immediate is one'; COMMENT ON COLUMN grouper_stem_set.id IS 'uuid of this row'; COMMENT ON COLUMN grouper_stem_set.if_has_stem_id IS 'uuid foreign key of left hand side of this relationship. If an object is in this stem, it is also in the then_has stem.'; COMMENT ON COLUMN grouper_stem_set.last_updated IS 'millis since 1970 when this was last updated'; COMMENT ON COLUMN grouper_stem_set.parent_stem_set_id IS 'link back to this table for the parent entry of this stem set'; COMMENT ON COLUMN grouper_stem_set.then_has_stem_id IS 'uuid foreign key of the right hand side of this relationship. If an object is in the if_has stem, it is also in this stem.'; COMMENT ON COLUMN grouper_stem_set.type IS 'from enum StemHierarchyType: self, immediate, effective'; COMMENT ON COLUMN grouper_stem_set.hibernate_version_number IS 'hibernate optimistic locking number for updates and deletes'; CREATE VIEW grouper_audit_entry_v (created_on, audit_category, action_name, logged_in_subject_id, act_as_subject_id, label_string01, string01, label_string02, string02, label_string03, string03, label_string04, string04, label_string05, string05, label_string06, string06, label_string07, string07, label_string08, string08, label_int01, int01, label_int02, int02, label_int03, int03, label_int04, int04, label_int05, int05, context_id, grouper_engine, description, logged_in_source_id, act_as_source_id, logged_in_member_id, act_as_member_id, audit_type_id, user_ip_address, server_host, audit_entry_last_updated, audit_entry_id, grouper_version, env_name) AS select gae.created_on, gat.audit_category, gat.action_name, (select gm.subject_id from grouper_members gm where gm.id = gae.logged_in_member_id) as logged_in_subject_id, (select gm.subject_id from grouper_members gm where gm.id = gae.act_as_member_id) as act_as_subject_id, gat.label_string01, gae.string01, gat.label_string02, gae.string02, gat.label_string03, gae.string03, gat.label_string04, gae.string04, gat.label_string05, gae.string05, gat.label_string06, gae.string06, gat.label_string07, gae.string07, gat.label_string08, gae.string08, gat.label_int01, gae.int01, gat.label_int02, gae.int02, gat.label_int03, gae.int03, gat.label_int04, gae.int04, gat.label_int05, gae.int05, gae.context_id, gae.grouper_engine, gae.description, (select gm.subject_source from grouper_members gm where gm.id = gae.logged_in_member_id) as logged_in_source_id, (select gm.subject_source from grouper_members gm where gm.id = gae.act_as_member_id) as act_as_source_id, gae.logged_in_member_id, gae.act_as_member_id, gat.id as audit_type_id, gae.user_ip_address, gae.server_host, gae.last_updated, gae.id as audit_entry_id, gae.grouper_version, gae.env_name from grouper_audit_type gat, grouper_audit_entry gae where gat.id = gae.audit_type_id ; COMMENT ON VIEW grouper_audit_entry_v IS 'Join of audit entry and audit type, and converts member ids to subject ids'; COMMENT ON COLUMN grouper_audit_entry_v.created_on IS 'When this audit entry record was created'; COMMENT ON COLUMN grouper_audit_entry_v.audit_category IS 'The category of this audit from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.action_name IS 'The action in this audit category from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.logged_in_subject_id IS 'The subject id of the logged in subject, e.g. from WS or UI'; COMMENT ON COLUMN grouper_audit_entry_v.act_as_subject_id IS 'The subject id of the user using the system if they are acting as another user, e.g. from WS'; COMMENT ON COLUMN grouper_audit_entry_v.label_string01 IS 'The label of the string field 01 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.string01 IS 'The string 01 value'; COMMENT ON COLUMN grouper_audit_entry_v.label_string02 IS 'The label of the string field 02 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.string02 IS 'The string 02 value'; COMMENT ON COLUMN grouper_audit_entry_v.label_string03 IS 'The label of the string field 03 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.string03 IS 'The string 03 value'; COMMENT ON COLUMN grouper_audit_entry_v.label_string04 IS 'The label of the string field 04 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.string04 IS 'The string 04 value'; COMMENT ON COLUMN grouper_audit_entry_v.label_string05 IS 'The label of the string field 05 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.string05 IS 'The string 05 value'; COMMENT ON COLUMN grouper_audit_entry_v.label_string06 IS 'The label of the string field 06 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.string06 IS 'The string 06 value'; COMMENT ON COLUMN grouper_audit_entry_v.label_string07 IS 'The label of the string field 07 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.string07 IS 'The string 07 value'; COMMENT ON COLUMN grouper_audit_entry_v.label_string08 IS 'The label of the string field 08 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.string08 IS 'The string 08 value'; COMMENT ON COLUMN grouper_audit_entry_v.label_int01 IS 'The label of the int field 01 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.int01 IS 'The int 01 value'; COMMENT ON COLUMN grouper_audit_entry_v.label_int02 IS 'The label of the int field 02 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.int02 IS 'The int 02 value'; COMMENT ON COLUMN grouper_audit_entry_v.label_int03 IS 'The label of the int field 03 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.int03 IS 'The int 03 value'; COMMENT ON COLUMN grouper_audit_entry_v.label_int04 IS 'The label of the int field 04 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.int04 IS 'The int 04 value'; COMMENT ON COLUMN grouper_audit_entry_v.label_int05 IS 'The label of the int field 05 from grouper_audit_type'; COMMENT ON COLUMN grouper_audit_entry_v.int05 IS 'The int 05 value'; COMMENT ON COLUMN grouper_audit_entry_v.context_id IS 'Context id links together multiple operations into one high level action'; COMMENT ON COLUMN grouper_audit_entry_v.grouper_engine IS 'Grouper engine is e.g. UI, WS, GSH, loader, etc'; COMMENT ON COLUMN grouper_audit_entry_v.description IS 'Description is a sentence form expression of what is being audited'; COMMENT ON COLUMN grouper_audit_entry_v.logged_in_source_id IS 'Source id of the user who is logged in'; COMMENT ON COLUMN grouper_audit_entry_v.act_as_source_id IS 'Source id of the user who is being acted as (e.g. in WS)'; COMMENT ON COLUMN grouper_audit_entry_v.logged_in_member_id IS 'Member id (foreign key) of the user logged in'; COMMENT ON COLUMN grouper_audit_entry_v.act_as_member_id IS 'Member id (foreign key) of the user who is being acted as'; COMMENT ON COLUMN grouper_audit_entry_v.audit_type_id IS 'ID of the audit type row'; COMMENT ON COLUMN grouper_audit_entry_v.user_ip_address IS 'IP address of the user connecting to the system (e.g. from UI or WS)'; COMMENT ON COLUMN grouper_audit_entry_v.server_host IS 'Host of the system running the grouper API'; COMMENT ON COLUMN grouper_audit_entry_v.audit_entry_last_updated IS 'When this audit entry was last updated'; COMMENT ON COLUMN grouper_audit_entry_v.audit_entry_id IS 'ID of this audit entry'; COMMENT ON COLUMN grouper_audit_entry_v.grouper_version IS 'Grouper version of the API executing'; COMMENT ON COLUMN grouper_audit_entry_v.env_name IS 'environment label of the system running, from grouper.properties'; CREATE VIEW grouper_change_log_entry_v (created_on, change_log_category, action_name, sequence_number, label_string01, string01, label_string02, string02, label_string03, string03, label_string04, string04, label_string05, string05, label_string06, string06, label_string07, string07, label_string08, string08, label_string09, string09, label_string10, string10, label_string11, string11, label_string12, string12, context_id, change_log_type_id) AS SELECT gcle.created_on, gclt.change_log_category, gclt.action_name, gcle.sequence_number, gclt.label_string01, gcle.string01, gclt.label_string02, gcle.string02, gclt.label_string03, gcle.string03, gclt.label_string04, gcle.string04, gclt.label_string05, gcle.string05, gclt.label_string06, gcle.string06, gclt.label_string07, gcle.string07, gclt.label_string08, gcle.string08, gclt.label_string09, gcle.string09, gclt.label_string10, gcle.string10, gclt.label_string11, gcle.string11, gclt.label_string12, gcle.string12, gcle.context_id, gcle.change_log_type_id FROM grouper_change_log_type gclt, grouper_change_log_entry gcle WHERE gclt.id = gcle.change_log_type_id; COMMENT ON VIEW grouper_change_log_entry_v IS 'Join of change log entry and change log type'; COMMENT ON COLUMN grouper_change_log_entry_v.created_on IS 'created_on: when this change happened, number of millis since 1970'; COMMENT ON COLUMN grouper_change_log_entry_v.change_log_category IS 'change_log_category: category of this change'; COMMENT ON COLUMN grouper_change_log_entry_v.action_name IS 'action_name: action of this change'; COMMENT ON COLUMN grouper_change_log_entry_v.sequence_number IS 'sequence_number: increasing integer of each change'; COMMENT ON COLUMN grouper_change_log_entry_v.label_string01 IS 'label_string01: label of first string'; COMMENT ON COLUMN grouper_change_log_entry_v.string01 IS 'string01: value of first string'; COMMENT ON COLUMN grouper_change_log_entry_v.label_string02 IS 'label_string02: label of second string'; COMMENT ON COLUMN grouper_change_log_entry_v.string02 IS 'string02: value of second string'; COMMENT ON COLUMN grouper_change_log_entry_v.label_string03 IS 'label_string03: label of third string'; COMMENT ON COLUMN grouper_change_log_entry_v.string03 IS 'string03: value of third string'; COMMENT ON COLUMN grouper_change_log_entry_v.label_string04 IS 'label_string04: label of fourth string'; COMMENT ON COLUMN grouper_change_log_entry_v.string04 IS 'string04: value of fourth string'; COMMENT ON COLUMN grouper_change_log_entry_v.label_string05 IS 'label_string05: label of fifth string'; COMMENT ON COLUMN grouper_change_log_entry_v.string05 IS 'string05: value of fifth string'; COMMENT ON COLUMN grouper_change_log_entry_v.label_string06 IS 'label_string06: label of sixth string'; COMMENT ON COLUMN grouper_change_log_entry_v.string06 IS 'string06: value of sixth string'; COMMENT ON COLUMN grouper_change_log_entry_v.label_string07 IS 'label_string07: label of seventh string'; COMMENT ON COLUMN grouper_change_log_entry_v.string07 IS 'string07: value of seventh string'; COMMENT ON COLUMN grouper_change_log_entry_v.label_string08 IS 'label_string08: label of eighth string'; COMMENT ON COLUMN grouper_change_log_entry_v.string08 IS 'string08: value of eighth string'; COMMENT ON COLUMN grouper_change_log_entry_v.label_string09 IS 'label_string09: label of ninth string'; COMMENT ON COLUMN grouper_change_log_entry_v.string09 IS 'string09: value of ninth string'; COMMENT ON COLUMN grouper_change_log_entry_v.label_string10 IS 'label_string10: label of tenth string'; COMMENT ON COLUMN grouper_change_log_entry_v.string10 IS 'string10: value of tenth string'; COMMENT ON COLUMN grouper_change_log_entry_v.label_string11 IS 'label_string11: label of eleventh string'; COMMENT ON COLUMN grouper_change_log_entry_v.string11 IS 'string11: value of eleventh string'; COMMENT ON COLUMN grouper_change_log_entry_v.label_string12 IS 'label_string12: label of twelfth string'; COMMENT ON COLUMN grouper_change_log_entry_v.string12 IS 'string12: value of twelfth string'; COMMENT ON COLUMN grouper_change_log_entry_v.context_id IS 'context_id: links this record with an audit record'; COMMENT ON COLUMN grouper_change_log_entry_v.change_log_type_id IS 'change_log_type_id: id of this category and name'; CREATE VIEW grouper_composites_v (OWNER_GROUP_NAME, COMPOSITE_TYPE, LEFT_FACTOR_GROUP_NAME, RIGHT_FACTOR_GROUP_NAME, OWNER_GROUP_DISPLAYNAME, LEFT_FACTOR_GROUP_DISPLAYNAME, RIGHT_FACTOR_GROUP_DISPLAYNAME, owner_group_id, LEFT_FACTOR_GROUP_ID, RIGHT_FACTOR_GROUP_ID, COMPOSITE_ID, CREATE_TIME, CREATOR_ID, HIBERNATE_VERSION_NUMBER, CONTEXT_ID) AS select (select gg.name from grouper_groups gg where gg.id = gc.owner) as owner_group_name, gc.TYPE as composite_type, (select gg.name from grouper_groups gg where gg.id = gc.left_factor) as left_factor_group_name, (select gg.name from grouper_groups gg where gg.id = gc.right_factor) as right_factor_group_name, (select gg.display_name from grouper_groups gg where gg.id = gc.owner) as owner_group_displayname, (select gg.display_name from grouper_groups gg where gg.id = gc.left_factor) as left_factor_group_displayname, (select gg.display_name from grouper_groups gg where gg.id = gc.right_factor) as right_factor_group_displayname, gc.OWNER as owner_group_id, gc.LEFT_FACTOR as left_factor_group_id, gc.RIGHT_FACTOR as right_factor_group_id, gc.ID as composite_id, gc.CREATE_TIME, gc.CREATOR_ID, gc.HIBERNATE_VERSION_NUMBER, gc.context_id from grouper_composites gc ; COMMENT ON VIEW grouper_composites_v IS 'Grouper_composites_v is a view of composite relationships with friendly names. A composite is a joining of two groups with a group math operator of: union, intersection, or complement.'; COMMENT ON COLUMN grouper_composites_v.OWNER_GROUP_NAME IS 'OWNER_GROUP_NAME: Name of the group which is the result of the composite operation, e.g. school:stem1:allPeople'; COMMENT ON COLUMN grouper_composites_v.COMPOSITE_TYPE IS 'COMPOSITE_TYPE: union (all members), intersection (only members in both), or complement (in first, not in second)'; COMMENT ON COLUMN grouper_composites_v.LEFT_FACTOR_GROUP_NAME IS 'LEFT_FACTOR_GROUP_NAME: Name of group which is the first of two groups in the composite operation, e.g. school:stem1:part1'; COMMENT ON COLUMN grouper_composites_v.RIGHT_FACTOR_GROUP_NAME IS 'RIGHT_FACTOR_GROUP_NAME: Name of group which is the second of two groups in the composite operation, e.g. school:stem1:part2'; COMMENT ON COLUMN grouper_composites_v.OWNER_GROUP_DISPLAYNAME IS 'OWNER_GROUP_DISPLAYNAME: Display name of result group of composite operation, e.g. My school:The stem1:All people'; COMMENT ON COLUMN grouper_composites_v.LEFT_FACTOR_GROUP_DISPLAYNAME IS 'LEFT_FACTOR_GROUP_DISPLAYNAME: Display name of group which is the first of two groups in the composite operation, e.g. My school:The stem1:Part 1'; COMMENT ON COLUMN grouper_composites_v.RIGHT_FACTOR_GROUP_DISPLAYNAME IS 'RIGHT_FACTOR_GROUP_DISPLAYNAME: Display name of group which is the second of two groups in the composite operation, e.g. My school:The stem1:Part 1'; COMMENT ON COLUMN grouper_composites_v.owner_group_id IS 'OWNER_GROUP_ID: UUID of the result group'; COMMENT ON COLUMN grouper_composites_v.LEFT_FACTOR_GROUP_ID IS 'LEFT_FACTOR_GROUP_ID: UUID of the first group of the composite operation'; COMMENT ON COLUMN grouper_composites_v.RIGHT_FACTOR_GROUP_ID IS 'RIGHT_FACTOR_GROUP_ID: UUID of the second group of the composite operation'; COMMENT ON COLUMN grouper_composites_v.COMPOSITE_ID IS 'COMPOSITE_ID: UUID of the composite relationship among the three groups'; COMMENT ON COLUMN grouper_composites_v.CREATE_TIME IS 'CREATE_TIME: number of millis since 1970 that the composite was created'; COMMENT ON COLUMN grouper_composites_v.CREATOR_ID IS 'CREATOR_ID: member id of the subject that created the composite relationship'; COMMENT ON COLUMN grouper_composites_v.HIBERNATE_VERSION_NUMBER IS 'HIBERNATE_VERSION_NUMBER: increments with each update, starts at 0'; COMMENT ON COLUMN grouper_composites_v.CONTEXT_ID IS 'CONTEXT_ID: Context id links together multiple operations into one high level action'; CREATE VIEW grouper_ext_subj_v (uuid, name, identifier, description, institution, email, search_string_lower) AS SELECT ges.uuid, ges.name, ges.identifier, ges.description , ges.institution , ges.email , ges.search_string_lower FROM grouper_ext_subj ges WHERE ges.enabled = 'T'; COMMENT ON VIEW grouper_ext_subj_v IS 'grouper_ext_subj_v is a view of external subjects, and they attributes'; COMMENT ON COLUMN grouper_ext_subj_v.uuid IS 'uuid: universally unique id of subject'; COMMENT ON COLUMN grouper_ext_subj_v.name IS 'name: name field of the subject object'; COMMENT ON COLUMN grouper_ext_subj_v.identifier IS 'identifier: identifier of subject, e.g. the eppn'; COMMENT ON COLUMN grouper_ext_subj_v.description IS 'description: description field of the subject object'; COMMENT ON COLUMN grouper_ext_subj_v.institution IS 'institution: where the subject comes from'; COMMENT ON COLUMN grouper_ext_subj_v.email IS 'email: email address of the subject'; COMMENT ON COLUMN grouper_ext_subj_v.search_string_lower IS 'search_string_lower: lower case list of strings that the search will return results for subject'; CREATE VIEW grouper_memberships_all_v (MEMBERSHIP_ID, IMMEDIATE_MEMBERSHIP_ID, GROUP_SET_ID, MEMBER_ID, FIELD_ID, IMMEDIATE_FIELD_ID, OWNER_ID, OWNER_ATTR_DEF_ID, OWNER_GROUP_ID, OWNER_STEM_ID, VIA_GROUP_ID, VIA_COMPOSITE_ID, DEPTH, MSHIP_TYPE, IMMEDIATE_MSHIP_ENABLED, IMMEDIATE_MSHIP_ENABLED_TIME, IMMEDIATE_MSHIP_DISABLED_TIME, GROUP_SET_PARENT_ID, MEMBERSHIP_CREATOR_ID, MEMBERSHIP_CREATE_TIME, GROUP_SET_CREATOR_ID, GROUP_SET_CREATE_TIME, HIBERNATE_VERSION_NUMBER, CONTEXT_ID) AS select ms.id || ':' || gs.id as membership_id, ms.id as immediate_membership_id, gs.id as group_set_id, ms.member_id, gs.field_id, ms.field_id, gs.owner_id, gs.owner_attr_def_id, gs.owner_group_id, gs.owner_stem_id, gs.via_group_id, ms.via_composite_id, gs.depth, gs.mship_type, ms.enabled, ms.enabled_timestamp, ms.disabled_timestamp, gs.parent_id as group_set_parent_id, ms.creator_id as membership_creator_id, ms.create_time as membership_create_time, gs.creator_id as group_set_creator_id, gs.create_time as group_set_create_time, ms.hibernate_version_number, ms.context_id from grouper_memberships ms, grouper_group_set gs where ms.owner_id = gs.member_id and ms.field_id = gs.member_field_id; COMMENT ON VIEW grouper_memberships_all_v IS 'Grouper_memberships_all_v holds one record for each immediate, composite and effective membership or privilege in the system for members to groups or stems (for privileges).'; COMMENT ON COLUMN grouper_memberships_all_v.MEMBERSHIP_ID IS 'MEMBERSHIP_ID: uuid unique id of this membership'; COMMENT ON COLUMN grouper_memberships_all_v.IMMEDIATE_MEMBERSHIP_ID IS 'IMMEDIATE_MEMBERSHIP_ID: uuid of the immediate (or composite) membership that causes this membership'; COMMENT ON COLUMN grouper_memberships_all_v.GROUP_SET_ID IS 'GROUP_SET_ID: uuid of the group set that causes this membership'; COMMENT ON COLUMN grouper_memberships_all_v.MEMBER_ID IS 'MEMBER_ID: id in the grouper_members table'; COMMENT ON COLUMN grouper_memberships_all_v.FIELD_ID IS 'FIELD_ID: id in the grouper_fields table'; COMMENT ON COLUMN grouper_memberships_all_v.IMMEDIATE_FIELD_ID IS 'IMMEDIATE_FIELD_ID: id in the grouper_fields table for the immediate (or composite) membership that causes this membership'; COMMENT ON COLUMN grouper_memberships_all_v.OWNER_ID IS 'OWNER_ID: owner id'; COMMENT ON COLUMN grouper_memberships_all_v.OWNER_ATTR_DEF_ID IS 'OWNER_ATTR_DEF_ID: owner attribute def id if applicable'; COMMENT ON COLUMN grouper_memberships_all_v.OWNER_GROUP_ID IS 'OWNER_GROUP_ID: owner group if applicable'; COMMENT ON COLUMN grouper_memberships_all_v.OWNER_STEM_ID IS 'OWNER_STEM_ID: owner stem if applicable'; COMMENT ON COLUMN grouper_memberships_all_v.VIA_GROUP_ID IS 'VIA_GROUP_ID: membership is due to this group if effective'; COMMENT ON COLUMN grouper_memberships_all_v.VIA_COMPOSITE_ID IS 'VIA_COMPOSITE_ID: membership is due to this composite if applicable'; COMMENT ON COLUMN grouper_memberships_all_v.DEPTH IS 'DEPTH: number of hops in a directed graph'; COMMENT ON COLUMN grouper_memberships_all_v.MSHIP_TYPE IS 'MSHIP_TYPE: type of membership, immediate or effective or composite'; COMMENT ON COLUMN grouper_memberships_all_v.IMMEDIATE_MSHIP_ENABLED IS 'IMMEDIATE_MSHIP_ENABLED: T or F to indicate if this membership is enabled'; COMMENT ON COLUMN grouper_memberships_all_v.IMMEDIATE_MSHIP_ENABLED_TIME IS 'IMMEDIATE_MSHIP_ENABLED_TIME: when the membership will be enabled if the time is in the future'; COMMENT ON COLUMN grouper_memberships_all_v.IMMEDIATE_MSHIP_DISABLED_TIME IS 'IMMEDIATE_MSHIP_DISABLED_TIME: when the membership will be disabled if the time is in the future.'; COMMENT ON COLUMN grouper_memberships_all_v.GROUP_SET_PARENT_ID IS 'GROUP_SET_PARENT_ID: parent group set'; COMMENT ON COLUMN grouper_memberships_all_v.MEMBERSHIP_CREATOR_ID IS 'MEMBERSHIP_CREATOR_ID: member uuid of the creator of the immediate or composite membership'; COMMENT ON COLUMN grouper_memberships_all_v.MEMBERSHIP_CREATE_TIME IS 'MEMBERSHIP_CREATOR_TIME: number of millis since 1970 the immedate or composite membership was created'; COMMENT ON COLUMN grouper_memberships_all_v.GROUP_SET_CREATOR_ID IS 'GROUP_SET_CREATOR_ID: member uuid of the creator of the group set'; COMMENT ON COLUMN grouper_memberships_all_v.GROUP_SET_CREATE_TIME IS 'GROUP_SET_CREATE_TIME: number of millis since 1970 the group set was created'; COMMENT ON COLUMN grouper_memberships_all_v.HIBERNATE_VERSION_NUMBER IS 'HIBERNATE_VERSION_NUMBER: hibernate uses this to version rows'; COMMENT ON COLUMN grouper_memberships_all_v.CONTEXT_ID IS 'CONTEXT_ID: Context id links together multiple operations into one high level action'; CREATE VIEW grouper_pit_memberships_all_v (ID, MEMBERSHIP_ID, MEMBERSHIP_SOURCE_ID, GROUP_SET_ID, MEMBER_ID, FIELD_ID, MEMBERSHIP_FIELD_ID, OWNER_ID, OWNER_ATTR_DEF_ID, OWNER_GROUP_ID, OWNER_STEM_ID, GROUP_SET_ACTIVE, GROUP_SET_START_TIME, GROUP_SET_END_TIME, MEMBERSHIP_ACTIVE, MEMBERSHIP_START_TIME, MEMBERSHIP_END_TIME, DEPTH, GROUP_SET_PARENT_ID) AS select ms.id || ':' || gs.id as membership_id, ms.id as immediate_membership_id, ms.source_id as membership_source_id, gs.id as group_set_id, ms.member_id, gs.field_id, ms.field_id, gs.owner_id, gs.owner_attr_def_id, gs.owner_group_id, gs.owner_stem_id, gs.active, gs.start_time, gs.end_time, ms.active, ms.start_time, ms.end_time, gs.depth, gs.parent_id as group_set_parent_id from grouper_pit_memberships ms, grouper_pit_group_set gs where ms.owner_id = gs.member_id and ms.field_id = gs.member_field_id; COMMENT ON VIEW grouper_pit_memberships_all_v IS 'Grouper_pit_memberships_all_v holds one record for each immediate, composite and effective membership or privilege in the system that currently exists or has existed in the past for members to groups or stems (for privileges).'; COMMENT ON COLUMN grouper_pit_memberships_all_v.ID IS 'ID: id of this membership'; COMMENT ON COLUMN grouper_pit_memberships_all_v.MEMBERSHIP_ID IS 'MEMBERSHIP_ID: id of the immediate (or composite) membership that causes this membership'; COMMENT ON COLUMN grouper_pit_memberships_all_v.MEMBERSHIP_SOURCE_ID IS 'MEMBERSHIP_SOURCE_ID: id of the actual (non-pit) immediate (or composite) membership that causes this membership'; COMMENT ON COLUMN grouper_pit_memberships_all_v.GROUP_SET_ID IS 'GROUP_SET_ID: id of the group set that causes this membership'; COMMENT ON COLUMN grouper_pit_memberships_all_v.MEMBER_ID IS 'MEMBER_ID: member id'; COMMENT ON COLUMN grouper_pit_memberships_all_v.FIELD_ID IS 'FIELD_ID: field id'; COMMENT ON COLUMN grouper_pit_memberships_all_v.MEMBERSHIP_FIELD_ID IS 'MEMBERSHIP_FIELD_ID: field id of the immediate (or composite) membership that causes this membership'; COMMENT ON COLUMN grouper_pit_memberships_all_v.OWNER_ID IS 'OWNER_ID: owner id'; COMMENT ON COLUMN grouper_pit_memberships_all_v.OWNER_ATTR_DEF_ID IS 'OWNER_ATTR_DEF_ID: owner attribute def id if applicable'; COMMENT ON COLUMN grouper_pit_memberships_all_v.OWNER_GROUP_ID IS 'OWNER_GROUP_ID: owner group id if applicable'; COMMENT ON COLUMN grouper_pit_memberships_all_v.OWNER_STEM_ID IS 'OWNER_STEM_ID: owner stem id if applicable'; COMMENT ON COLUMN grouper_pit_memberships_all_v.GROUP_SET_ACTIVE IS 'GROUP_SET_ACTIVE: whether the group set is active'; COMMENT ON COLUMN grouper_pit_memberships_all_v.GROUP_SET_START_TIME IS 'GROUP_SET_START_TIME: start time of the group set'; COMMENT ON COLUMN grouper_pit_memberships_all_v.GROUP_SET_END_TIME IS 'GROUP_SET_END_TIME: end time of the group set'; COMMENT ON COLUMN grouper_pit_memberships_all_v.MEMBERSHIP_ACTIVE IS 'MEMBERSHIP_ACTIVE: whether the immediate (or composite) membership is active'; COMMENT ON COLUMN grouper_pit_memberships_all_v.MEMBERSHIP_START_TIME IS 'MEMBERSHIP_START_TIME: start time of the immediate (or composite) membership'; COMMENT ON COLUMN grouper_pit_memberships_all_v.MEMBERSHIP_END_TIME IS 'MEMBERSHIP_END_TIME: end time of the immediate (or composite) membership'; COMMENT ON COLUMN grouper_pit_memberships_all_v.DEPTH IS 'DEPTH: depth of this membership'; COMMENT ON COLUMN grouper_pit_memberships_all_v.GROUP_SET_PARENT_ID IS 'GROUP_SET_PARENT_ID: parent group set'; CREATE VIEW grouper_memberships_lw_v (SUBJECT_ID, SUBJECT_SOURCE, GROUP_NAME, LIST_NAME, LIST_TYPE, GROUP_ID, MEMBER_ID) AS select distinct gm.SUBJECT_ID, gm.SUBJECT_SOURCE, gg.name as group_name, gfl.NAME as list_name, gfl.TYPE as list_type, gg.ID as group_id, gm.ID as member_id from grouper_memberships_all_v gms, grouper_members gm, grouper_groups gg, grouper_fields gfl where gms.OWNER_GROUP_ID = gg.id and gms.FIELD_ID = gfl.ID and gms.MEMBER_ID = gm.ID and gms.IMMEDIATE_MSHIP_ENABLED = 'T'; COMMENT ON VIEW grouper_memberships_lw_v IS 'Grouper_memberships_lw_v unique membership records that can be read from a SQL interface outside of grouper. Immediate and effective memberships are represented here (distinct)'; COMMENT ON COLUMN grouper_memberships_lw_v.SUBJECT_ID IS 'SUBJECT_ID: of the member of the group'; COMMENT ON COLUMN grouper_memberships_lw_v.SUBJECT_SOURCE IS 'SUBJECT_SOURCE: of the member of the group'; COMMENT ON COLUMN grouper_memberships_lw_v.GROUP_NAME IS 'GROUP_NAME: system name of the group'; COMMENT ON COLUMN grouper_memberships_lw_v.LIST_NAME IS 'LIST_NAME: name of the list, e.g. members'; COMMENT ON COLUMN grouper_memberships_lw_v.LIST_TYPE IS 'LIST_TYPE: type of list e.g. access or list'; COMMENT ON COLUMN grouper_memberships_lw_v.GROUP_ID IS 'GROUP_ID: uuid of the group'; COMMENT ON COLUMN grouper_memberships_lw_v.MEMBER_ID IS 'MEMBER_ID: uuid of the member'; CREATE VIEW grouper_mship_stem_lw_v (SUBJECT_ID, SUBJECT_SOURCE, STEM_NAME, LIST_NAME, LIST_TYPE, STEM_ID) AS select distinct gm.SUBJECT_ID, gm.SUBJECT_SOURCE, gs.name as stem_name, gfl.NAME as list_name, gfl.TYPE as list_type, gs.ID as stem_id from grouper_memberships_all_v gms, grouper_members gm, grouper_stems gs, grouper_fields gfl where gms.OWNER_STEM_ID = gs.id and gms.FIELD_ID = gfl.ID and gms.MEMBER_ID = gm.ID; COMMENT ON VIEW grouper_mship_stem_lw_v IS 'grouper_mship_stem_lw_v unique membership records that can be read from a SQL interface outside of grouper for stems. Immediate and effective memberships are represented here (distinct)'; COMMENT ON COLUMN grouper_mship_stem_lw_v.SUBJECT_ID IS 'SUBJECT_ID: of the member of the stem'; COMMENT ON COLUMN grouper_mship_stem_lw_v.SUBJECT_SOURCE IS 'SUBJECT_SOURCE: of the member of the stem'; COMMENT ON COLUMN grouper_mship_stem_lw_v.STEM_NAME IS 'STEM_NAME: system name of the stem'; COMMENT ON COLUMN grouper_mship_stem_lw_v.LIST_NAME IS 'LIST_NAME: name of the list, e.g. members'; COMMENT ON COLUMN grouper_mship_stem_lw_v.LIST_TYPE IS 'LIST_TYPE: type of list e.g. access or list'; COMMENT ON COLUMN grouper_mship_stem_lw_v.STEM_ID IS 'STEM_ID: uuid of the stem'; CREATE VIEW grouper_mship_attrdef_lw_v (SUBJECT_ID, SUBJECT_SOURCE, ATTRIBUTE_DEF_NAME, LIST_NAME, LIST_TYPE, ATTRIBUTE_DEF_ID) AS select distinct gm.SUBJECT_ID, gm.SUBJECT_SOURCE, gad.name as attribute_def_name, gfl.NAME as list_name, gfl.TYPE as list_type, gad.id as attribute_def_id from grouper_memberships_all_v gms, grouper_members gm, grouper_attribute_def gad, grouper_fields gfl where gms.OWNER_ATTR_DEF_ID = gad.id and gms.FIELD_ID = gfl.ID and gms.MEMBER_ID = gm.ID; COMMENT ON VIEW grouper_mship_attrdef_lw_v IS 'grouper_mship_attrdef_lw_v unique membership records of attr defs that can be read from a SQL interface outside of grouper. Immediate and effective memberships are represented here (distinct)'; COMMENT ON COLUMN grouper_mship_attrdef_lw_v.SUBJECT_ID IS 'SUBJECT_ID: of the member of the group'; COMMENT ON COLUMN grouper_mship_attrdef_lw_v.SUBJECT_SOURCE IS 'SUBJECT_SOURCE: of the member of the attributeDef'; COMMENT ON COLUMN grouper_mship_attrdef_lw_v.ATTRIBUTE_DEF_NAME IS 'ATTRIBUTE_DEF_NAME: system name of the attributeDef'; COMMENT ON COLUMN grouper_mship_attrdef_lw_v.LIST_NAME IS 'LIST_NAME: name of the list, e.g. members'; COMMENT ON COLUMN grouper_mship_attrdef_lw_v.LIST_TYPE IS 'LIST_TYPE: type of list e.g. access or list'; COMMENT ON COLUMN grouper_mship_attrdef_lw_v.ATTRIBUTE_DEF_ID IS 'ATTRIBUTE_DEF_ID: uuid of the attributeDef'; CREATE VIEW grouper_memberships_v (GROUP_NAME, GROUP_DISPLAYNAME, STEM_NAME, STEM_DISPLAYNAME, SUBJECT_ID, SUBJECT_SOURCE, MEMBER_ID, LIST_TYPE, LIST_NAME, MEMBERSHIP_TYPE, COMPOSITE_PARENT_GROUP_NAME, DEPTH, CREATOR_SOURCE, CREATOR_SUBJECT_ID, MEMBERSHIP_ID, IMMEDIATE_MEMBERSHIP_ID, GROUP_SET_ID, STEM_ID, GROUP_ID, CREATE_TIME, CREATOR_ID, FIELD_ID, CONTEXT_ID) AS select (select gg.name from grouper_groups gg where gg.id = gms.owner_group_id) as group_name, (select gg.display_name from grouper_groups gg where gg.id = gms.owner_group_id) as group_displayname, (select gs.NAME from grouper_stems gs where gs.ID = gms.owner_stem_id) as stem_name, (select gs.display_NAME from grouper_stems gs where gs.ID = gms.owner_stem_id) as stem_displayname, gm.subject_id, gm.subject_source, gms.member_id, gf.TYPE as list_type, gf.NAME as list_name, gms.MSHIP_TYPE as membership_type, (select gg.name from grouper_groups gg, grouper_composites gc where gg.id = gms.VIA_composite_ID and gg.id = gc.OWNER) as composite_parent_group_name, depth, (select gm.SUBJECT_SOURCE from grouper_members gm where gm.ID = gms.membership_creator_ID) as creator_source, (select gm.SUBJECT_ID from grouper_members gm where gm.ID = gms.membership_creator_ID) as creator_subject_id, gms.membership_id as membership_id, gms.immediate_membership_id as immediate_membership_id, gms.GROUP_SET_ID as group_set_id, (select gs.id from grouper_stems gs where gs.ID = gms.owner_stem_id) as stem_id, (select gg.id from grouper_groups gg where gg.id = gms.owner_group_id) as group_id, gms.membership_create_time, gms.membership_creator_id, gms.field_id, gms.context_id from grouper_memberships_all_v gms, grouper_members gm, grouper_fields gf where gms.MEMBER_ID = gm.ID and gms.field_id = gf.id ; COMMENT ON VIEW grouper_memberships_v IS 'Grouper_memberships_v holds one record for each membership or privilege in the system for members to groups or stems (for privileges). This is denormalized so there are records for the actual immediate relationships, and the cascaded effective relationships. This has friendly names.'; COMMENT ON COLUMN grouper_memberships_v.GROUP_NAME IS 'GROUP_NAME: name of the group if this is a group membership, e.g. school:stem1:theGroup'; COMMENT ON COLUMN grouper_memberships_v.GROUP_DISPLAYNAME IS 'GROUP_DISPLAYNAME: display name of the group if this is a group membership, e.g. My school:The stem1:The group'; COMMENT ON COLUMN grouper_memberships_v.STEM_NAME IS 'STEM_NAME: name of the stem if this is a stem privilege, e.g. school:stem1'; COMMENT ON COLUMN grouper_memberships_v.STEM_DISPLAYNAME IS 'STEM_DISPLAYNAME: display name of the stems if this is a stem privilege, e.g. My school:The stem1'; COMMENT ON COLUMN grouper_memberships_v.SUBJECT_ID IS 'SUBJECT_ID: e.g. a school id of a person in the membership e.g. 12345'; COMMENT ON COLUMN grouper_memberships_v.SUBJECT_SOURCE IS 'SUBJECT_SOURCE: source where the subject in the membership is from e.g. mySchoolPeople'; COMMENT ON COLUMN grouper_memberships_v.MEMBER_ID IS 'MEMBER_ID: id in the grouper_members table'; COMMENT ON COLUMN grouper_memberships_v.LIST_TYPE IS 'LIST_TYPE: list: members of a group, access: privilege of a group, naming: privilege of a stem'; COMMENT ON COLUMN grouper_memberships_v.LIST_NAME IS 'LIST_NAME: subset of list type. which list if a list membership. which privilege if a privilege. e.g. members'; COMMENT ON COLUMN grouper_memberships_v.MEMBERSHIP_TYPE IS 'MEMBERSHIP_TYPE: either immediate (direct membership or privilege), of effective (membership due to a composite or a group being a member of another group)'; COMMENT ON COLUMN grouper_memberships_v.COMPOSITE_PARENT_GROUP_NAME IS 'COMPOSITE_PARENT_GROUP_NAME: name of group if this membership relates to a composite relationship, e.g. school:stem:allStudents'; COMMENT ON COLUMN grouper_memberships_v.DEPTH IS 'DEPTH: 0 for composite, if not then it is the 0 indexed count of number of group hops between member and group'; COMMENT ON COLUMN grouper_memberships_v.CREATOR_SOURCE IS 'CREATOR_SOURCE: subject source where the creator of the group is from'; COMMENT ON COLUMN grouper_memberships_v.CREATOR_SUBJECT_ID IS 'CREATOR_SUBJECT_ID: subject id of the creator of the group, e.g. 12345'; COMMENT ON COLUMN grouper_memberships_v.MEMBERSHIP_ID IS 'MEMBERSHIP_ID: uuid unique id of this membership'; COMMENT ON COLUMN grouper_memberships_v.IMMEDIATE_MEMBERSHIP_ID IS 'IMMEDIATE_MEMBERSHIP_ID: uuid of the immediate membership that causes this membership'; COMMENT ON COLUMN grouper_memberships_v.GROUP_SET_ID IS 'GROUP_SET_ID: uuid of the group set that causes this membership'; COMMENT ON COLUMN grouper_memberships_v.STEM_ID IS 'STEM_ID: if this is a stem privilege, this is the stem uuid unique id'; COMMENT ON COLUMN grouper_memberships_v.GROUP_ID IS 'GROUP_ID: if this is a group list or privilege, this is the group uuid unique id'; COMMENT ON COLUMN grouper_memberships_v.CREATE_TIME IS 'CREATE_TIME: number of millis since 1970 since this membership was created'; COMMENT ON COLUMN grouper_memberships_v.CREATOR_ID IS 'CREATOR_ID: member_id of the creator, foreign key into grouper_members'; COMMENT ON COLUMN grouper_memberships_v.FIELD_ID IS 'FIELD_ID: uuid unique id of the field. foreign key to grouper_fields. This represents the list_type and list_name'; COMMENT ON COLUMN grouper_memberships_v.CONTEXT_ID IS 'CONTEXT_ID: Context id links together multiple operations into one high level action'; CREATE VIEW grouper_stems_v (EXTENSION, NAME, DISPLAY_EXTENSION, DISPLAY_NAME, DESCRIPTION, PARENT_STEM_NAME, PARENT_STEM_DISPLAYNAME, CREATOR_SOURCE, CREATOR_SUBJECT_ID, MODIFIER_SOURCE, MODIFIER_SUBJECT_ID, CREATE_TIME, CREATOR_ID, STEM_ID, MODIFIER_ID, MODIFY_TIME, PARENT_STEM, HIBERNATE_VERSION_NUMBER, CONTEXT_ID) AS select gs.extension, gs.NAME, gs.DISPLAY_EXTENSION, gs.DISPLAY_NAME, gs.DESCRIPTION, (select gs_parent.NAME from grouper_stems gs_parent where gs_parent.id = gs.PARENT_STEM) as parent_stem_name, (select gs_parent.DISPLAY_NAME from grouper_stems gs_parent where gs_parent.id = gs.PARENT_STEM) as parent_stem_displayname, (select gm.SUBJECT_SOURCE from grouper_members gm where gm.ID = gs.creator_ID) as creator_source, (select gm.SUBJECT_ID from grouper_members gm where gm.ID = gs.creator_ID) as creator_subject_id, (select gm.SUBJECT_SOURCE from grouper_members gm where gm.ID = gs.MODIFIER_ID) as modifier_source, (select gm.SUBJECT_ID from grouper_members gm where gm.ID = gs.MODIFIER_ID) as modifier_subject_id, gs.CREATE_TIME, gs.CREATOR_ID, gs.ID as stem_id, gs.MODIFIER_ID, gs.MODIFY_TIME, gs.PARENT_STEM, gs.HIBERNATE_VERSION_NUMBER, gs.context_id from grouper_stems gs ; COMMENT ON VIEW grouper_stems_v IS 'GROUPER_STEMS_V: holds one record for each stem (folder) in grouper, with friendly names'; COMMENT ON COLUMN grouper_stems_v.EXTENSION IS 'EXTENSION: name of the stem without the parent stem names, e.g. stem1'; COMMENT ON COLUMN grouper_stems_v.NAME IS 'NAME: name of the stem including parent stem names, e.g. school:stem1'; COMMENT ON COLUMN grouper_stems_v.DISPLAY_EXTENSION IS 'DISPLAY_EXTENSION: display name of the stem without parent stem names, e.g. The stem 1'; COMMENT ON COLUMN grouper_stems_v.DISPLAY_NAME IS 'DISPLAY_NAME: display name of the stem including parent stem names, e.g. My school: The stem 1'; COMMENT ON COLUMN grouper_stems_v.DESCRIPTION IS 'DESCRIPTION: description entered in about the stem, for example including why the stem exists and who has access'; COMMENT ON COLUMN grouper_stems_v.PARENT_STEM_NAME IS 'PARENT_STEM_NAME: name of the stem (folder) that this stem is in. e.g. school'; COMMENT ON COLUMN grouper_stems_v.PARENT_STEM_DISPLAYNAME IS 'PARENT_STEM_DISPLAYNAME: display name of the stem (folder) that this stem is in. e.g. My school'; COMMENT ON COLUMN grouper_stems_v.CREATOR_SOURCE IS 'CREATOR_SOURCE: subject source where the subject that created this stem is from, e.g. mySchoolPeople'; COMMENT ON COLUMN grouper_stems_v.CREATOR_SUBJECT_ID IS 'CREATOR_SUBJECT_ID: e.g. the school id of the subject that created this stem, e.g. 12345'; COMMENT ON COLUMN grouper_stems_v.MODIFIER_SOURCE IS 'MODIFIER_SOURCE: subject source where the subject that last modified this stem is from, e.g. mySchoolPeople'; COMMENT ON COLUMN grouper_stems_v.MODIFIER_SUBJECT_ID IS 'MODIFIER_SUBJECT_ID: e.g. the school id of the subject who last modified this stem, e.g. 12345'; COMMENT ON COLUMN grouper_stems_v.CREATE_TIME IS 'CREATE_TIME: number of millis since 1970 that this stem was created'; COMMENT ON COLUMN grouper_stems_v.CREATOR_ID IS 'CREATOR_ID: member id of the subject who created this stem, foreign key to grouper_members'; COMMENT ON COLUMN grouper_stems_v.STEM_ID IS 'STEM_ID: uuid unique id of this stem'; COMMENT ON COLUMN grouper_stems_v.MODIFIER_ID IS 'MODIFIER_ID: member id of the subject who last modified this stem, foreign key to grouper_members'; COMMENT ON COLUMN grouper_stems_v.MODIFY_TIME IS 'MODIFY_TIME: number of millis since 1970 since this stem was last modified'; COMMENT ON COLUMN grouper_stems_v.PARENT_STEM IS 'PARENT_STEM: stem_id uuid unique id of the stem (folder) that this stem is in'; COMMENT ON COLUMN grouper_stems_v.HIBERNATE_VERSION_NUMBER IS 'HIBERNATE_VERSION_NUMBER: increments by one for each update from hibernate'; COMMENT ON COLUMN grouper_stems_v.CONTEXT_ID IS 'CONTEXT_ID: Context id links together multiple operations into one high level action'; CREATE VIEW grouper_rpt_composites_v (COMPOSITE_TYPE, THE_COUNT) AS select gc.TYPE as composite_type, count(*) as the_count from grouper_composites gc group by gc.type ; COMMENT ON VIEW grouper_rpt_composites_v IS 'GROUPER_RPT_COMPOSITES_V: report on the three composite types: union, intersection, complement and how many of each exist'; COMMENT ON COLUMN grouper_rpt_composites_v.COMPOSITE_TYPE IS 'COMPOSITE_TYPE: either union: all members from both factors, intersection: only members in both factors, complement: members in first but not second factor'; COMMENT ON COLUMN grouper_rpt_composites_v.THE_COUNT IS 'THE_COUNT: nubmer of composites of this type in the system'; CREATE VIEW grouper_rpt_group_field_v (GROUP_NAME, GROUP_DISPLAYNAME, FIELD_TYPE, FIELD_NAME, MEMBER_COUNT) AS select gg.name as group_name, gg.display_name as group_displayName, gf.type as field_type, gf.name as field_name, count(distinct gms.member_id) as member_count from grouper_memberships_all_v gms, grouper_groups gg, grouper_fields gf where gms.FIELD_ID = gf.ID and gg.id = gms.OWNER_group_ID group by gg.name, gg.display_name, gf.type, gf.name ; COMMENT ON VIEW grouper_rpt_group_field_v IS 'GROUPER_RPT_GROUP_FIELD_V: report on how many unique members are in each group based on field (or list) name and type'; COMMENT ON COLUMN grouper_rpt_group_field_v.GROUP_NAME IS 'GROUP_NAME: name of the group where the list and members are, e.g. school:stem1:myGroup'; COMMENT ON COLUMN grouper_rpt_group_field_v.GROUP_DISPLAYNAME IS 'GROUP_DISPLAYNAME: display name of the group where the list and members are, e.g. My school:The stem1:My group'; COMMENT ON COLUMN grouper_rpt_group_field_v.FIELD_TYPE IS 'FIELD_TYPE: membership field type, e.g. list or access'; COMMENT ON COLUMN grouper_rpt_group_field_v.FIELD_NAME IS 'FIELD_NAME: membership field name, e.g. members, admins, readers'; COMMENT ON COLUMN grouper_rpt_group_field_v.MEMBER_COUNT IS 'MEMBER_COUNT: number of unique members in the group/field'; CREATE VIEW grouper_rpt_groups_v (GROUP_NAME, GROUP_DISPLAYNAME, TYPE_OF_GROUP, IMMEDIATE_MEMBERSHIP_COUNT, MEMBERSHIP_COUNT, ISA_COMPOSITE_FACTOR_COUNT, ISA_MEMBER_COUNT, GROUP_ID) AS select gg.name as group_name, gg.display_name as group_displayname, gg.type_of_group, (select count(distinct gms.MEMBER_ID) from grouper_memberships_all_v gms where gms.OWNER_group_ID = gg.id and gms.MSHIP_TYPE = 'immediate') as immediate_membership_count, (select count(distinct gms.MEMBER_ID) from grouper_memberships_all_v gms where gms.OWNER_group_ID = gg.id) as membership_count, (select count(*) from grouper_composites gc where gc.LEFT_FACTOR = gg.id or gc.RIGHT_FACTOR = gg.id) as isa_composite_factor_count, (select count(distinct gms.OWNER_group_ID) from grouper_memberships_all_v gms, grouper_members gm where gm.SUBJECT_ID = gg.ID and gms.MEMBER_ID = gm.ID ) as isa_member_count, gg.ID as group_id from grouper_groups gg ; COMMENT ON VIEW grouper_rpt_groups_v IS 'GROUPER_RPT_GROUPS_V: report with a line for each group and some counts of immediate and effective members etc'; COMMENT ON COLUMN grouper_rpt_groups_v.GROUP_NAME IS 'GROUP_NAME: name of group which has the stats, e.g. school:stem1:theGroup'; COMMENT ON COLUMN grouper_rpt_groups_v.GROUP_DISPLAYNAME IS 'GROUP_DISPLAYNAME: display name of the group which has the stats, e.g. My school:The stem1:The group'; COMMENT ON COLUMN grouper_rpt_groups_v.TYPE_OF_GROUP IS 'TYPE_OF_GROUP: group if it is a group, role if it is a role'; COMMENT ON COLUMN grouper_rpt_groups_v.IMMEDIATE_MEMBERSHIP_COUNT IS 'IMMEDIATE_MEMBERSHIP_COUNT: number of unique immediate members, directly assigned to this group'; COMMENT ON COLUMN grouper_rpt_groups_v.MEMBERSHIP_COUNT IS 'MEMBERSHIP_COUNT: total number of unique members, immediate or effective'; COMMENT ON COLUMN grouper_rpt_groups_v.ISA_COMPOSITE_FACTOR_COUNT IS 'ISA_COMPOSITE_FACTOR_COUNT: number of composites this group is a factor of'; COMMENT ON COLUMN grouper_rpt_groups_v.ISA_MEMBER_COUNT IS 'ISA_MEMBER_COUNT: number of groups this group is an immediate or effective member of'; COMMENT ON COLUMN grouper_rpt_groups_v.GROUP_ID IS 'GROUP_ID: uuid unique id of this group'; CREATE VIEW grouper_rpt_roles_v (ROLE_NAME, ROLE_DISPLAYNAME, IMMEDIATE_MEMBERSHIP_COUNT, MEMBERSHIP_COUNT, ISA_COMPOSITE_FACTOR_COUNT, ISA_MEMBER_COUNT, ROLE_ID) AS select gg.name as role_name, gg.display_name as role_displayname, (select count(distinct gms.member_id) from grouper_memberships_all_v gms where gms.OWNER_group_ID = gg.id and gms.mship_type = 'immediate') as immediate_membership_count, (select count(distinct gms.member_id) from grouper_memberships_all_v gms where gms.OWNER_group_ID = gg.id) as membership_count, (select count(*) from grouper_composites gc where gc.LEFT_FACTOR = gg.id or gc.RIGHT_FACTOR = gg.id) as isa_composite_factor_count, (select count(distinct gms.OWNER_group_ID) from grouper_memberships_all_v gms, grouper_members gm where gm.SUBJECT_ID = gg.ID and gms.MEMBER_ID = gm.ID ) as isa_member_count, gg.ID as role_id from grouper_groups gg where gg.type_of_group = 'role' ; COMMENT ON VIEW grouper_rpt_roles_v IS 'GROUPER_RPT_ROLES_V: report with a line for each role and some counts of immediate and effective members etc'; COMMENT ON COLUMN grouper_rpt_roles_v.ROLE_NAME IS 'ROLE_NAME: name of group which has the stats, e.g. school:stem1:theGroup'; COMMENT ON COLUMN grouper_rpt_roles_v.ROLE_DISPLAYNAME IS 'ROLE_DISPLAYNAME: display name of the group which has the stats, e.g. My school:The stem1:The group'; COMMENT ON COLUMN grouper_rpt_roles_v.IMMEDIATE_MEMBERSHIP_COUNT IS 'IMMEDIATE_MEMBERSHIP_COUNT: number of unique immediate members, directly assigned to this group'; COMMENT ON COLUMN grouper_rpt_roles_v.MEMBERSHIP_COUNT IS 'MEMBERSHIP_COUNT: total number of unique members, immediate or effective'; COMMENT ON COLUMN grouper_rpt_roles_v.ISA_COMPOSITE_FACTOR_COUNT IS 'ISA_COMPOSITE_FACTOR_COUNT: number of composites this group is a factor of'; COMMENT ON COLUMN grouper_rpt_roles_v.ISA_MEMBER_COUNT IS 'ISA_MEMBER_COUNT: number of groups this group is an immediate or effective member of'; COMMENT ON COLUMN grouper_rpt_roles_v.ROLE_ID IS 'ROLE_ID: uuid unique id of this group'; CREATE VIEW grouper_rpt_members_v (SUBJECT_ID, SUBJECT_SOURCE, MEMBERSHIP_COUNT, MEMBER_ID) AS select gm.SUBJECT_ID, gm.SUBJECT_SOURCE, (select count(distinct gms.owner_group_id) from grouper_memberships gms where gms.MEMBER_ID = gm.ID) as membership_count, gm.ID as member_id from grouper_members gm ; COMMENT ON VIEW grouper_rpt_members_v IS 'GROUPER_RPT_MEMBERS_V: report for each member in grouper_members and some stats like how many groups they are in'; COMMENT ON COLUMN grouper_rpt_members_v.SUBJECT_ID IS 'SUBJECT_ID: e.g. the school person id of the person e.g. 12345'; COMMENT ON COLUMN grouper_rpt_members_v.SUBJECT_SOURCE IS 'SUBJECT_SOURCE: subject source where the subject is from, e.g. schoolAllPeople'; COMMENT ON COLUMN grouper_rpt_members_v.MEMBERSHIP_COUNT IS 'MEMBERSHIP_COUNT: number of distinct groups or stems this member has a membership with'; COMMENT ON COLUMN grouper_rpt_members_v.MEMBER_ID IS 'MEMBER_ID: uuid unique id of the member in grouper_members'; CREATE VIEW grouper_rpt_stems_v (STEM_NAME, STEM_DISPLAYNAME, GROUP_IMMEDIATE_COUNT, STEM_IMMEDIATE_COUNT, GROUP_COUNT, STEM_COUNT, THIS_STEM_MEMBERSHIP_COUNT, CHILD_GROUP_MEMBERSHIP_COUNT, GROUP_MEMBERSHIP_COUNT, STEM_ID) AS select gs.name as stem_name, gs.display_name as stem_displayname, (select count(*) from grouper_groups gg where gg.parent_stem = gs.ID) as group_immediate_count, (select count(*) from grouper_stems gs2 where gs.id = gs2.parent_stem ) as stem_immediate_count, (select count(*) from grouper_groups gg where gg.name like gs.name || '%') as group_count, (select count(*) from grouper_stems gs2 where gs2.name like gs.name || '%') as stem_count, (select count(distinct gm.member_id) from grouper_memberships_all_v gm where gm.owner_stem_id = gs.id) as this_stem_membership_count, (select count(distinct gm.member_id) from grouper_memberships_all_v gm, grouper_groups gg where gg.parent_stem = gs.id and gm.owner_stem_id = gg.id) as child_group_membership_count, (select count(distinct gm.member_id) from grouper_memberships_all_v gm, grouper_groups gg where gm.owner_group_id = gg.id and gg.name like gs.name || '%') as group_membership_count, gs.ID as stem_id from grouper_stems gs ; COMMENT ON VIEW grouper_rpt_stems_v IS 'GROUPER_RPT_STEMS_V: report with a row for each stem and stats on many groups or members are inside'; COMMENT ON COLUMN grouper_rpt_stems_v.STEM_NAME IS 'STEM_NAME: name of the stem in report, e.g. school:stem1'; COMMENT ON COLUMN grouper_rpt_stems_v.STEM_DISPLAYNAME IS 'STEM_DISPLAYNAME: display name of the stem in report, e.g. My school:The stem 1'; COMMENT ON COLUMN grouper_rpt_stems_v.GROUP_IMMEDIATE_COUNT IS 'GROUP_IMMEDIATE_COUNT: number of groups directly inside this stem'; COMMENT ON COLUMN grouper_rpt_stems_v.STEM_IMMEDIATE_COUNT IS 'STEM_IMMEDIATE_COUNT: number of stems directly inside this stem'; COMMENT ON COLUMN grouper_rpt_stems_v.GROUP_COUNT IS 'GROUP_COUNT: number of groups inside this stem, or in a stem inside this stem etc'; COMMENT ON COLUMN grouper_rpt_stems_v.STEM_COUNT IS 'STEM_COUNT: number of stems inside this stem or in a stem inside this stem etc'; COMMENT ON COLUMN grouper_rpt_stems_v.THIS_STEM_MEMBERSHIP_COUNT IS 'THIS_STEM_MEMBERSHIP_COUNT: number of access memberships related to this stem (e.g. how many people can create groups/stems inside)'; COMMENT ON COLUMN grouper_rpt_stems_v.CHILD_GROUP_MEMBERSHIP_COUNT IS 'CHILD_GROUP_MEMBERSHIP_COUNT: number of memberships in groups immediately in this stem'; COMMENT ON COLUMN grouper_rpt_stems_v.GROUP_MEMBERSHIP_COUNT IS 'GROUP_MEMBERSHIP_COUNT: number of memberships in groups in this stem or in stems in this stem etc'; COMMENT ON COLUMN grouper_rpt_stems_v.STEM_ID IS 'STEM_ID: uuid unique id of this stem'; CREATE VIEW grouper_role_set_v (if_has_role_name, then_has_role_name, depth, type, parent_if_has_name, parent_then_has_name, id, if_has_role_id, then_has_role_id, parent_role_set_id) AS select ifHas.name as if_has_role_name, thenHas.name as then_has_role_name, grs.depth, grs.type, grParentIfHas.name as parent_if_has_name, grParentThenHas.name as parent_then_has_name, grs.id, ifHas.id as if_has_role_id, thenHas.id as then_has_role_id, grs.parent_role_set_id from grouper_role_set grs, grouper_role_set grsParent, grouper_groups grParentIfHas, grouper_groups grParentThenHas, grouper_groups ifHas, grouper_groups thenHas where thenHas.id = grs.then_has_role_id and ifHas.id = grs.if_has_role_id and grs.parent_role_set_id = grsParent.id and grParentIfHas.id = grsParent.if_has_role_id and grParentThenHas.id = grsParent.then_has_role_id ; COMMENT ON VIEW grouper_role_set_v IS 'grouper_role_set_v: shows all role set relationships'; COMMENT ON COLUMN grouper_role_set_v.if_has_role_name IS 'if_has_role_name: name of the set role'; COMMENT ON COLUMN grouper_role_set_v.then_has_role_name IS 'then_has_role_name: name of the member role'; COMMENT ON COLUMN grouper_role_set_v.depth IS 'depth: number of hops in the directed graph'; COMMENT ON COLUMN grouper_role_set_v.type IS 'type: self, immediate, effective'; COMMENT ON COLUMN grouper_role_set_v.parent_if_has_name IS 'parent_if_has_name: name of the role set record which is the parent ifHas on effective path (everything but last hop)'; COMMENT ON COLUMN grouper_role_set_v.parent_then_has_name IS 'parent_then_has_name: name of the role set record which is the parent thenHas on effective path (everything but last hop)'; COMMENT ON COLUMN grouper_role_set_v.id IS 'id: id of the set record'; COMMENT ON COLUMN grouper_role_set_v.if_has_role_id IS 'if_has_role_id: id of the set role'; COMMENT ON COLUMN grouper_role_set_v.then_has_role_id IS 'then_has_role_id: id of the member role'; COMMENT ON COLUMN grouper_role_set_v.parent_role_set_id IS 'parent_role_set_id: id of the role set record which is the parent on effective path (everything but last hop)'; CREATE VIEW grouper_attr_def_name_set_v (if_has_attr_def_name_name, then_has_attr_def_name_name, depth, type, parent_if_has_name, parent_then_has_name, id, if_has_attr_def_name_id, then_has_attr_def_name_id, parent_attr_def_name_set_id) AS select ifHas.name as if_has_attr_def_name_name, thenHas.name as then_has_attr_def_name_name, gadns.depth, gadns.type, gadnParentIfHas.name as parent_if_has_name, gadnParentThenHas.name as parent_then_has_name, gadns.id, ifHas.id as if_has_attr_def_name_id, thenHas.id as then_has_attr_def_name_id, gadns.parent_attr_def_name_set_id from grouper_attribute_def_name_set gadns, grouper_attribute_def_name_set gadnsParent, grouper_attribute_def_name gadnParentIfHas, grouper_attribute_def_name gadnParentThenHas, grouper_attribute_def_name ifHas, grouper_attribute_def_name thenHas where thenHas.id = gadns.then_has_attribute_def_name_id and ifHas.id = gadns.if_has_attribute_def_name_id and gadns.parent_attr_def_name_set_id = gadnsParent.id and gadnParentIfHas.id = gadnsParent.if_has_attribute_def_name_id and gadnParentThenHas.id = gadnsParent.then_has_attribute_def_name_id ; COMMENT ON VIEW grouper_attr_def_name_set_v IS 'grouper_attr_def_name_set_v: shows all attribute def name set relationships'; COMMENT ON COLUMN grouper_attr_def_name_set_v.if_has_attr_def_name_name IS 'if_has_attr_def_name_name: name of the set attribute def name'; COMMENT ON COLUMN grouper_attr_def_name_set_v.then_has_attr_def_name_name IS 'then_has_attr_def_name_name: name of the member attribute def name'; COMMENT ON COLUMN grouper_attr_def_name_set_v.depth IS 'depth: number of hops in the directed graph'; COMMENT ON COLUMN grouper_attr_def_name_set_v.type IS 'type: self, immediate, effective'; COMMENT ON COLUMN grouper_attr_def_name_set_v.parent_if_has_name IS 'parent_if_has_name: name of the attribute def name set record which is the parent ifHas on effective path (everything but last hop)'; COMMENT ON COLUMN grouper_attr_def_name_set_v.parent_then_has_name IS 'parent_then_has_name: name of the attribute def name set record which is the parent thenHas on effective path (everything but last hop)'; COMMENT ON COLUMN grouper_attr_def_name_set_v.id IS 'id: id of the set record'; COMMENT ON COLUMN grouper_attr_def_name_set_v.if_has_attr_def_name_id IS 'if_has_attr_def_name_id: id of the set attribute def name'; COMMENT ON COLUMN grouper_attr_def_name_set_v.then_has_attr_def_name_id IS 'then_has_attr_def_name_id: id of the member attribute def name'; COMMENT ON COLUMN grouper_attr_def_name_set_v.parent_attr_def_name_set_id IS 'parent_attr_def_name_set_id: id of the attribute def name set record which is the parent on effective path (everything but last hop)'; CREATE VIEW grouper_attr_assn_action_set_v (if_has_attr_assn_action_name, then_has_attr_assn_action_name, depth, type, parent_if_has_name, parent_then_has_name, id, if_has_attr_assn_action_id, then_has_attr_assn_action_id, parent_attr_assn_action_id) AS select ifHas.name as if_has_attr_assn_action_name , thenHas.name as then_has_attr_assn_action_name, gaaas.depth, gaaas.type, gaaaParentIfHas.name as parent_if_has_name, gaaaParentThenHas.name as parent_then_has_name, gaaas.id, ifHas.id as if_has_attr_assn_action_id, thenHas.id as then_has_attr_assn_action_id, gaaas.parent_attr_assn_action_id from grouper_attr_assign_action_set gaaas, grouper_attr_assign_action_set gaaasParent, grouper_attr_assign_action gaaaParentIfHas, grouper_attr_assign_action gaaaParentThenHas, grouper_attr_assign_action ifHas, grouper_attr_assign_action thenHas where thenHas.id = gaaas.then_has_attr_assn_action_id and ifHas.id = gaaas.if_has_attr_assn_action_id and gaaas.parent_attr_assn_action_id = gaaasParent.id and gaaaParentIfHas.id = gaaasParent.if_has_attr_assn_action_id and gaaaParentThenHas.id = gaaasParent.then_has_attr_assn_action_id ; COMMENT ON VIEW grouper_attr_assn_action_set_v IS 'grouper_attr_assn_action_set_v: shows all action set relationships'; COMMENT ON COLUMN grouper_attr_assn_action_set_v.if_has_attr_assn_action_name IS 'if_has_attr_assn_action_name: name of the set attribute action'; COMMENT ON COLUMN grouper_attr_assn_action_set_v.then_has_attr_assn_action_name IS 'then_has_attr_assn_action_name: name of the member attribute action'; COMMENT ON COLUMN grouper_attr_assn_action_set_v.depth IS 'depth: number of hops in the directed graph'; COMMENT ON COLUMN grouper_attr_assn_action_set_v.type IS 'type: self, immediate, effective'; COMMENT ON COLUMN grouper_attr_assn_action_set_v.parent_if_has_name IS 'parent_if_has_name: name of the attribute def name set record which is the parent ifHas on effective path (everything but last hop)'; COMMENT ON COLUMN grouper_attr_assn_action_set_v.parent_then_has_name IS 'parent_then_has_name: name of the attribute def name set record which is the parent thenHas on effective path (everything but last hop)'; COMMENT ON COLUMN grouper_attr_assn_action_set_v.id IS 'id: id of the set record'; COMMENT ON COLUMN grouper_attr_assn_action_set_v.if_has_attr_assn_action_id IS 'if_has_attr_assn_action_id: id of the set attribute assign name'; COMMENT ON COLUMN grouper_attr_assn_action_set_v.then_has_attr_assn_action_id IS 'then_has_attr_assn_action_id: id of the member attribute action'; COMMENT ON COLUMN grouper_attr_assn_action_set_v.parent_attr_assn_action_id IS 'parent_attr_assn_action_id: id of the attribute action set record which is the parent on effective path (everything but last hop)'; CREATE VIEW grouper_attr_asn_group_v (group_name, action, attribute_def_name_name, group_display_name, attribute_def_name_disp_name, name_of_attribute_def, attribute_assign_notes, attribute_assign_delegatable, enabled, enabled_time, disabled_time, group_id, attribute_assign_id, attribute_def_name_id, attribute_def_id, action_id) AS select gg.name as group_name, gaaa.name as action, gadn.name as attribute_def_name_name, gg.display_name as group_display_name, gadn.display_name as attribute_def_name_disp_name, gad.name as name_of_attribute_def, gaa.notes as attribute_assign_notes, gaa.attribute_assign_delegatable, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gg.id as group_id, gaa.id as attribute_assign_id, gadn.id as attribute_def_name_id, gad.id as attribute_def_id, gaaa.id as action_id from grouper_attribute_assign gaa, grouper_groups gg, grouper_attribute_def_name gadn, grouper_attribute_def gad, grouper_attr_assign_action gaaa where gaa.owner_group_id = gg.id and gaa.attribute_def_name_id = gadn.id and gadn.attribute_def_id = gad.id and gaa.owner_member_id is null and gaa.attribute_assign_action_id = gaaa.id ; COMMENT ON VIEW grouper_attr_asn_group_v IS 'grouper_attr_asn_group_v: attribute assigned to a group, with related columns'; COMMENT ON COLUMN grouper_attr_asn_group_v.group_name IS 'group_name: name of group assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_group_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_group_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_group_v.group_display_name IS 'group_display_name: display name of the group assigned an attribute'; COMMENT ON COLUMN grouper_attr_asn_group_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_group_v.name_of_attribute_def IS 'name_of_attribute_def: name of the attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_group_v.attribute_assign_notes IS 'attribute_assign_notes: notes related to the attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_group_v.attribute_assign_delegatable IS 'attribute_assign_delegatable: if this assignment is delegatable or grantable: TRUE, FALSE, GRANT'; COMMENT ON COLUMN grouper_attr_asn_group_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_attr_asn_group_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_attr_asn_group_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_attr_asn_group_v.group_id IS 'group_id: group id of the group assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_group_v.attribute_assign_id IS 'attribute_assign_id: id of the attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_group_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_attr_asn_group_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_attr_asn_group_v.action_id IS 'action_id: id of the attribute assign action'; CREATE VIEW grouper_attr_asn_efmship_v (group_name, subject_source_id, subject_id, action, attribute_def_name_name, group_display_name, attribute_def_name_disp_name, name_of_attribute_def, attribute_assign_notes, list_name, attribute_assign_delegatable, enabled, enabled_time, disabled_time, group_id, attribute_assign_id, attribute_def_name_id, attribute_def_id, member_id, action_id) AS select distinct gg.name as group_name, gm.subject_source as subject_source_id, gm.subject_id, gaaa.name as action, gadn.name as attribute_def_name_name, gg.display_name as group_display_name, gadn.display_name as attribute_def_name_disp_name, gad.name as name_of_attribute_def, gaa.notes as attribute_assign_notes, gf.name as list_name, gaa.attribute_assign_delegatable, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gg.id as group_id, gaa.id as attribute_assign_id, gadn.id as attribute_def_name_id, gad.id as attribute_def_id, gm.id as member_id, gaaa.id as action_id from grouper_attribute_assign gaa, grouper_memberships_all_v gmav, grouper_attribute_def_name gadn, grouper_attribute_def gad, grouper_groups gg, grouper_fields gf, grouper_members gm, grouper_attr_assign_action gaaa where gaa.owner_group_id = gmav.owner_group_id and gaa.owner_member_id = gmav.member_id and gaa.attribute_def_name_id = gadn.id and gadn.attribute_def_id = gad.id and gmav.immediate_mship_enabled = 'T' and gmav.owner_group_id = gg.id and gmav.field_id = gf.id and gf.type = 'list' and gmav.member_id = gm.id and gaa.owner_member_id is not null and gaa.owner_group_id is not null and gaa.attribute_assign_action_id = gaaa.id ; COMMENT ON VIEW grouper_attr_asn_efmship_v IS 'grouper_attr_asn_efmship_v: attribute assigned to an effective membership'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.group_name IS 'group_name: name of group assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.subject_source_id IS 'subject_source_id: source id of the subject being assigned'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.subject_id IS 'subject_id: subject id of the subject being assigned'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.group_display_name IS 'group_display_name: display name of the group assigned an attribute'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.name_of_attribute_def IS 'name_of_attribute_def: name of the attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.attribute_assign_notes IS 'attribute_assign_notes: notes related to the attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.list_name IS 'list_name: name of the membership list for this effective membership'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.attribute_assign_delegatable IS 'attribute_assign_delegatable: if this assignment is delegatable or grantable: TRUE, FALSE, GRANT'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.group_id IS 'group_id: group id of the group assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.attribute_assign_id IS 'attribute_assign_id: id of the attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.member_id IS 'member_id: id of the member assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_efmship_v.action_id IS 'action_id: attribute assign action id'; CREATE VIEW grouper_attr_asn_stem_v (stem_name, action, attribute_def_name_name, stem_display_name, attribute_def_name_disp_name, name_of_attribute_def, attribute_assign_notes, enabled, enabled_time, disabled_time, stem_id, attribute_assign_id, attribute_def_name_id, attribute_def_id, action_id) AS select gs.name as stem_name, gaaa.name as action, gadn.name as attribute_def_name_name, gs.display_name as stem_display_name, gadn.display_name as attribute_def_name_disp_name, gad.name as name_of_attribute_def, gaa.notes as attribute_assign_notes, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gs.id as stem_id, gaa.id as attribute_assign_id, gadn.id as attribute_def_name_id, gad.id as attribute_def_id, gaaa.id as action_id from grouper_attribute_assign gaa, grouper_stems gs, grouper_attribute_def_name gadn, grouper_attribute_def gad, grouper_attr_assign_action gaaa where gaa.owner_stem_id = gs.id and gaa.attribute_def_name_id = gadn.id and gadn.attribute_def_id = gad.id and gaa.attribute_assign_action_id = gaaa.id ; COMMENT ON VIEW grouper_attr_asn_stem_v IS 'grouper_attr_asn_stem_v: attribute assigned to a stem and related cols'; COMMENT ON COLUMN grouper_attr_asn_stem_v.stem_name IS 'stem_name: name of stem assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_stem_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_stem_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_stem_v.stem_display_name IS 'stem_display_name: display name of the stem assigned an attribute'; COMMENT ON COLUMN grouper_attr_asn_stem_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_stem_v.name_of_attribute_def IS 'name_of_attribute_def: name of the attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_stem_v.attribute_assign_notes IS 'attribute_assign_notes: notes related to the attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_stem_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_attr_asn_stem_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_attr_asn_stem_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_attr_asn_stem_v.stem_id IS 'stem_id: stem id of the stem assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_stem_v.attribute_assign_id IS 'attribute_assign_id: id of the attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_stem_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_attr_asn_stem_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_attr_asn_stem_v.action_id IS 'action_id: id of the attribute assign action'; CREATE VIEW grouper_attr_asn_member_v (source_id, subject_id, action, attribute_def_name_name, attribute_def_name_disp_name, name_of_attribute_def, attribute_assign_notes, attribute_assign_delegatable, enabled, enabled_time, disabled_time, member_id, attribute_assign_id, attribute_def_name_id, attribute_def_id, action_id) AS select gm.subject_source as source_id, gm.subject_id, gaaa.name as action, gadn.name as attribute_def_name_name, gadn.display_name as attribute_def_name_disp_name, gad.name as name_of_attribute_def, gaa.notes as attribute_assign_notes, gaa.attribute_assign_delegatable, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gm.id as member_id, gaa.id as attribute_assign_id, gadn.id as attribute_def_name_id, gad.id as attribute_def_id, gaaa.id as action_id from grouper_attribute_assign gaa, grouper_members gm, grouper_attribute_def_name gadn, grouper_attribute_def gad, grouper_attr_assign_action gaaa where gaa.owner_member_id = gm.id and gaa.attribute_def_name_id = gadn.id and gadn.attribute_def_id = gad.id and gaa.owner_group_id is null and gaa.attribute_assign_action_id = gaaa.id; COMMENT ON VIEW grouper_attr_asn_member_v IS 'grouper_attr_asn_member_v: attribute assigned to a member and related cols'; COMMENT ON COLUMN grouper_attr_asn_member_v.source_id IS 'source_id: source of the subject that belongs to the member'; COMMENT ON COLUMN grouper_attr_asn_member_v.subject_id IS 'subject_id: subject_id of the subject that belongs to the member'; COMMENT ON COLUMN grouper_attr_asn_member_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_member_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_member_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_member_v.name_of_attribute_def IS 'name_of_attribute_def: name of the attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_member_v.attribute_assign_notes IS 'attribute_assign_notes: notes related to the attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_member_v.attribute_assign_delegatable IS 'attribute_assign_delegatable: if this assignment is delegatable or grantable: TRUE, FALSE, GRANT'; COMMENT ON COLUMN grouper_attr_asn_member_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_attr_asn_member_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_attr_asn_member_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_attr_asn_member_v.member_id IS 'member_id: member id of the member assigned the attribute (this is an internal grouper uuid)'; COMMENT ON COLUMN grouper_attr_asn_member_v.attribute_assign_id IS 'attribute_assign_id: id of the attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_member_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_attr_asn_member_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_attr_asn_member_v.action_id IS 'action_id: id of the attribute assign action'; CREATE VIEW grouper_attr_asn_mship_v (group_name, source_id, subject_id, action, attribute_def_name_name, attribute_def_name_disp_name, list_name, name_of_attribute_def, attribute_assign_notes, attribute_assign_delegatable, enabled, enabled_time, disabled_time, group_id, membership_id, member_id, attribute_assign_id, attribute_def_name_id, attribute_def_id, action_id) AS select gg.name as group_name, gm.subject_source as source_id, gm.subject_id, gaaa.name as action, gadn.name as attribute_def_name_name, gadn.display_name as attribute_def_name_disp_name, gf.name as list_name, gad.name as name_of_attribute_def, gaa.notes as attribute_assign_notes, gaa.attribute_assign_delegatable, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gg.id as group_id, gms.id as membership_id, gm.id as member_id, gaa.id as attribute_assign_id, gadn.id as attribute_def_name_id, gad.id as attribute_def_id, gaaa.id as action_id from grouper_attribute_assign gaa, grouper_groups gg, grouper_memberships gms, grouper_attribute_def_name gadn, grouper_attribute_def gad, grouper_members gm, grouper_fields gf, grouper_attr_assign_action gaaa where gaa.owner_membership_id = gms.id and gaa.attribute_def_name_id = gadn.id and gadn.attribute_def_id = gad.id and gms.field_id = gf.id and gms.member_id = gm.id and gms.owner_group_id = gg.id and gf.type = 'list' and gaa.attribute_assign_action_id = gaaa.id ; COMMENT ON VIEW grouper_attr_asn_mship_v IS 'grouper_attr_asn_mship_v: attribute assigned to an immediate memberships, and related cols'; COMMENT ON COLUMN grouper_attr_asn_mship_v.group_name IS 'group_name: name of group in membership assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_mship_v.source_id IS 'source_id: source of the subject that belongs to the member'; COMMENT ON COLUMN grouper_attr_asn_mship_v.subject_id IS 'subject_id: subject_id of the subject that belongs to the member'; COMMENT ON COLUMN grouper_attr_asn_mship_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_mship_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_mship_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_mship_v.list_name IS 'list_name: name of list in membership assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_mship_v.name_of_attribute_def IS 'name_of_attribute_def: name of the attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_mship_v.attribute_assign_notes IS 'attribute_assign_notes: notes related to the attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_mship_v.attribute_assign_delegatable IS 'attribute_assign_delegatable: if this assignment is delegatable or grantable: TRUE, FALSE, GRANT'; COMMENT ON COLUMN grouper_attr_asn_mship_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_attr_asn_mship_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_attr_asn_mship_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_attr_asn_mship_v.group_id IS 'group_id: group id of the membership assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_mship_v.membership_id IS 'membership_id: membership id assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_mship_v.member_id IS 'member_id: internal grouper member uuid of the membership assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_mship_v.attribute_assign_id IS 'attribute_assign_id: id of the attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_mship_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_attr_asn_mship_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_attr_asn_mship_v.action_id IS 'action_id: id of the attribute assign action'; CREATE VIEW grouper_attr_asn_attrdef_v (name_of_attr_def_assigned_to, action, attribute_def_name_name, attribute_def_name_disp_name, name_of_attribute_def_assigned, attribute_assign_notes, enabled, enabled_time, disabled_time, id_of_attr_def_assigned_to, attribute_assign_id, attribute_def_name_id, attribute_def_id, action_id) AS select gad_assigned_to.name as name_of_attr_def_assigned_to, gaaa.name as action, gadn.name as attribute_def_name_name, gadn.display_name as attribute_def_name_disp_name, gad.name as name_of_attribute_def, gaa.notes as attribute_assign_notes, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gad_assigned_to.id as id_of_attr_def_assigned_to, gaa.id as attribute_assign_id, gadn.id as attribute_def_name_id, gad.id as attribute_def_id, gaaa.id as action_id from grouper_attribute_assign gaa, grouper_attribute_def gad_assigned_to, grouper_attribute_def_name gadn, grouper_attribute_def gad, grouper_attr_assign_action gaaa where gaa.owner_attribute_def_id = gad_assigned_to.id and gaa.attribute_def_name_id = gadn.id and gadn.attribute_def_id = gad.id and gaa.attribute_assign_action_id = gaaa.id ; COMMENT ON VIEW grouper_attr_asn_attrdef_v IS 'grouper_attr_asn_attrdef_v: attribute assigned to an attribute definition, and related columns'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.name_of_attr_def_assigned_to IS 'name_of_attr_def_assigned_to: name of attribute def assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.name_of_attribute_def_assigned IS 'name_of_attribute_def: name of the attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.attribute_assign_notes IS 'attribute_assign_notes: notes related to the attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.id_of_attr_def_assigned_to IS 'id_of_attr_def_assigned_to: attrDef id of the attributeDef assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.attribute_assign_id IS 'attribute_assign_id: id of the attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_attr_asn_attrdef_v.action_id IS 'action_id: id of the attribute assign action'; CREATE VIEW grouper_attr_asn_asn_group_v (group_name, action1, action2, attribute_def_name_name1, attribute_def_name_name2, group_display_name, attribute_def_name_disp_name1, attribute_def_name_disp_name2, name_of_attribute_def1, name_of_attribute_def2, attribute_assign_notes1, attribute_assign_notes2, enabled2, enabled_time2, disabled_time2, group_id, attribute_assign_id1, attribute_assign_id2, attribute_def_name_id1, attribute_def_name_id2, attribute_def_id1, attribute_def_id2, action_id1, action_id2) AS select gg.name as group_name, gaaa1.name as action1, gaaa2.name as action2, gadn1.name as attribute_def_name_name1, gadn2.name as attribute_def_name_name2, gg.display_name as group_display_name, gadn1.display_name as attribute_def_name_disp_name1, gadn2.display_name as attribute_def_name_disp_name2, gad1.name as name_of_attribute_def1, gad2.name as name_of_attribute_def2, gaa1.notes as attribute_assign_notes1, gaa2.notes as attribute_assign_notes2, gaa2.enabled as enabled2, gaa2.enabled_time as enabled_time2, gaa2.disabled_time as disabled_time2, gg.id as group_id, gaa1.id as attribute_assign_id1, gaa2.id as attribute_assign_id2, gadn1.id as attribute_def_name_id1, gadn2.id as attribute_def_name_id2, gad1.id as attribute_def_id1, gad2.id as attribute_def_id2, gaaa1.id as action_id1, gaaa2.id as action_id2 from grouper_attribute_assign gaa1, grouper_attribute_assign gaa2, grouper_groups gg, grouper_attribute_def_name gadn1, grouper_attribute_def_name gadn2, grouper_attribute_def gad1, grouper_attribute_def gad2, grouper_attr_assign_action gaaa1, grouper_attr_assign_action gaaa2 where gaa1.id = gaa2.owner_attribute_assign_id and gaa1.attribute_def_name_id = gadn1.id and gaa2.attribute_def_name_id = gadn2.id and gadn1.attribute_def_id = gad1.id and gadn2.attribute_def_id = gad2.id and gaa1.enabled = 'T' and gg.id = gaa1.owner_group_id and gaa1.owner_member_id is null and gaa1.attribute_assign_action_id = gaaa1.id and gaa2.attribute_assign_action_id = gaaa2.id; COMMENT ON VIEW grouper_attr_asn_asn_group_v IS 'grouper_attr_asn_asn_group_v: attribute assigned to an assignment of attribute to a group, and related cols'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.group_name IS 'group_name: name of group assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.action1 IS 'action1: the action associated with the original attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.action2 IS 'action2: the action associated with this attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.attribute_def_name_name1 IS 'attribute_def_name_name1: name of the original attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.attribute_def_name_name2 IS 'attribute_def_name_name2: name of the current attribute definition name which is assigned to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.group_display_name IS 'group_display_name: display name of the group assigned an attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.attribute_def_name_disp_name1 IS 'attribute_def_name_disp_name1: display name of the attribute definition name assigned to the original attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.attribute_def_name_disp_name2 IS 'attribute_def_name_disp_name2: display name of the attribute definition name assigned to the new attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.name_of_attribute_def1 IS 'name_of_attribute_def1: name of the attribute definition associated with the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.name_of_attribute_def2 IS 'name_of_attribute_def2: name of the attribute definition associated with the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.attribute_assign_notes1 IS 'attribute_assign_notes1: notes related to the original attribute assignment to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.attribute_assign_notes2 IS 'attribute_assign_notes2: notes related to the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.enabled2 IS 'enabled2: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.enabled_time2 IS 'enabled_time2: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.disabled_time2 IS 'disabled_time2: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.group_id IS 'group_id: group id of the group assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.attribute_assign_id1 IS 'attribute_assign_id1: id of the original attribute assignment to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.attribute_assign_id2 IS 'attribute_assign_id2: id of the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.attribute_def_name_id1 IS 'attribute_def_name_id1: id of the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.attribute_def_name_id2 IS 'attribute_def_name_id2: id of the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.attribute_def_id1 IS 'attribute_def_id1: id of the original attribute definition assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.attribute_def_id2 IS 'attribute_def_id2: id of the new attribute definition assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.action_id1 IS 'action_id1: id of the attribute assign action of the original assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_group_v.action_id2 IS 'action_id2: id of the attribute assign action assigned to the group'; CREATE VIEW grouper_attr_asn_asn_efmship_v (group_name, source_id, subject_id, action1, action2, attribute_def_name_name1, attribute_def_name_name2, attribute_def_name_disp_name1, attribute_def_name_disp_name2, list_name, name_of_attribute_def1, name_of_attribute_def2, attribute_assign_notes1, attribute_assign_notes2, enabled2, enabled_time2, disabled_time2, group_id, member_id, attribute_assign_id1, attribute_assign_id2, attribute_def_name_id1, attribute_def_name_id2, attribute_def_id1, attribute_def_id2, action_id1, action_id2) AS select distinct gg.name as group_name, gm.subject_source as source_id, gm.subject_id, gaaa1.name as action1, gaaa2.name as action2, gadn1.name as attribute_def_name_name1, gadn2.name as attribute_def_name_name2, gadn1.display_name as attribute_def_name_disp_name1, gadn2.display_name as attribute_def_name_disp_name2, gf.name as list_name, gad1.name as name_of_attribute_def1, gad2.name as name_of_attribute_def2, gaa1.notes as attribute_assign_notes1, gaa2.notes as attribute_assign_notes2, gaa2.enabled as enabled2, gaa2.enabled_time as enabled_time2, gaa2.disabled_time as disabled_time2, gg.id as group_id, gm.id as member_id, gaa1.id as attribute_assign_id1, gaa2.id as attribute_assign_id2, gadn1.id as attribute_def_name_id1, gadn2.id as attribute_def_name_id2, gad1.id as attribute_def_id1, gad2.id as attribute_def_id2, gaaa1.id as action_id1, gaaa2.id as action_id2 from grouper_attribute_assign gaa1, grouper_attribute_assign gaa2, grouper_groups gg, grouper_memberships_all_v gmav, grouper_attribute_def_name gadn1, grouper_attribute_def_name gadn2, grouper_attribute_def gad1, grouper_attribute_def gad2, grouper_members gm, grouper_fields gf, grouper_attr_assign_action gaaa1, grouper_attr_assign_action gaaa2 where gaa1.owner_member_id = gmav.member_id and gaa1.owner_group_id = gmav.owner_group_id and gaa2.owner_attribute_assign_id = gaa1.id and gaa1.attribute_def_name_id = gadn1.id and gaa2.attribute_def_name_id = gadn2.id and gadn1.attribute_def_id = gad1.id and gadn2.attribute_def_id = gad2.id and gaa1.enabled = 'T' and gmav.immediate_mship_enabled = 'T' and gmav.field_id = gf.id and gmav.member_id = gm.id and gmav.owner_group_id = gg.id and gf.type = 'list' and gaa1.owner_member_id is not null and gaa1.owner_group_id is not null and gaa1.attribute_assign_action_id = gaaa1.id and gaa2.attribute_assign_action_id = gaaa2.id ; COMMENT ON VIEW grouper_attr_asn_asn_efmship_v IS 'grouper_attr_asn_asn_efmship_v: attribute assigned to an assignment of an attribute to an effective membership, and related cols'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.group_name IS 'group_name: name of group in membership assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.source_id IS 'source_id: source of the subject that belongs to the member'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.subject_id IS 'subject_id: subject_id of the subject that belongs to the member'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.action1 IS 'action1: the action associated with the original attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.action2 IS 'action2: the action associated with this attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.attribute_def_name_name1 IS 'attribute_def_name_name1: name of the original attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.attribute_def_name_name2 IS 'attribute_def_name_name2: name of the new attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.attribute_def_name_disp_name1 IS 'attribute_def_name_disp_name1: display name of the original attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.attribute_def_name_disp_name2 IS 'attribute_def_name_disp_name2: display name of the new attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.list_name IS 'list_name: name of list in membership assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.name_of_attribute_def1 IS 'name_of_attribute_def1: name of the original attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.name_of_attribute_def2 IS 'name_of_attribute_def2: name of the new attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.attribute_assign_notes1 IS 'attribute_assign_notes1: notes related to the original attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.attribute_assign_notes2 IS 'attribute_assign_notes2: notes related to the new attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.enabled2 IS 'enabled2: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.enabled_time2 IS 'enabled_time2: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.disabled_time2 IS 'disabled_time2: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.group_id IS 'group_id: group id of the membership assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.member_id IS 'member_id: internal grouper member uuid of the membership assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.attribute_assign_id1 IS 'attribute_assign_id1: id of the original attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.attribute_assign_id2 IS 'attribute_assign_id2: id of the new attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.attribute_def_name_id1 IS 'attribute_def_name_id1: id of the original attribute definition name'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.attribute_def_name_id2 IS 'attribute_def_name_id2: id of the new attribute definition name'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.attribute_def_id1 IS 'attribute_def_id1: id of the original attribute definition'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.attribute_def_id2 IS 'attribute_def_id2: id of the new attribute definition'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.action_id1 IS 'action_id1: id of the attribute assign action of the original assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_efmship_v.action_id2 IS 'action_id2: id of the attribute assign action assigned to the group'; CREATE VIEW grouper_attr_asn_asn_stem_v (stem_name, action1, action2, attribute_def_name_name1, attribute_def_name_name2, stem_display_name, attribute_def_name_disp_name1, attribute_def_name_disp_name2, name_of_attribute_def1, name_of_attribute_def2, attribute_assign_notes1, attribute_assign_notes2, enabled2, enabled_time2, disabled_time2, stem_id, attribute_assign_id1, attribute_assign_id2, attribute_def_name_id1, attribute_def_name_id2, attribute_def_id1, attribute_def_id2, action_id1, action_id2) AS select gs.name as stem_name, gaaa1.name as action1, gaaa2.name as action2, gadn1.name as attribute_def_name_name1, gadn2.name as attribute_def_name_name2, gs.display_name as stem_display_name, gadn1.display_name as attribute_def_name_disp_name1, gadn2.display_name as attribute_def_name_disp_name2, gad1.name as name_of_attribute_def1, gad2.name as name_of_attribute_def2, gaa1.notes as attribute_assign_notes1, gaa2.notes as attribute_assign_notes2, gaa2.enabled as enabled2, gaa2.enabled_time as enabled_time2, gaa2.disabled_time as disabled_time2, gs.id as stem_id, gaa1.id as attribute_assign_id1, gaa2.id as attribute_assign_id2, gadn1.id as attribute_def_name_id1, gadn2.id as attribute_def_name_id2, gad1.id as attribute_def_id1, gad2.id as attribute_def_id2, gaaa1.id as action_id1, gaaa2.id as action_id2 from grouper_attribute_assign gaa1, grouper_attribute_assign gaa2, grouper_stems gs, grouper_attribute_def_name gadn1, grouper_attribute_def_name gadn2, grouper_attribute_def gad1, grouper_attribute_def gad2, grouper_attr_assign_action gaaa1, grouper_attr_assign_action gaaa2 where gaa1.id = gaa2.owner_attribute_assign_id and gaa1.attribute_def_name_id = gadn1.id and gaa2.attribute_def_name_id = gadn2.id and gadn1.attribute_def_id = gad1.id and gadn2.attribute_def_id = gad2.id and gaa1.enabled = 'T' and gs.id = gaa1.owner_stem_id and gaa1.attribute_assign_action_id = gaaa1.id and gaa2.attribute_assign_action_id = gaaa2.id ; COMMENT ON VIEW grouper_attr_asn_asn_stem_v IS 'grouper_attr_asn_asn_stem_v: attribute assigned to an assignment of attribute to a stem, and related cols'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.stem_name IS 'stem_name: name of stem assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.action1 IS 'action1: the action associated with the original attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.action2 IS 'action2: the action associated with this attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.attribute_def_name_name1 IS 'attribute_def_name_name1: name of the original attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.attribute_def_name_name2 IS 'attribute_def_name_name2: name of the current attribute definition name which is assigned to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.stem_display_name IS 'stem_display_name: display name of the stem assigned an attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.attribute_def_name_disp_name1 IS 'attribute_def_name_disp_name1: display name of the attribute definition name assigned to the original attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.attribute_def_name_disp_name2 IS 'attribute_def_name_disp_name2: display name of the attribute definition name assigned to the new attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.name_of_attribute_def1 IS 'name_of_attribute_def1: name of the attribute definition associated with the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.name_of_attribute_def2 IS 'name_of_attribute_def2: name of the attribute definition associated with the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.attribute_assign_notes1 IS 'attribute_assign_notes1: notes related to the original attribute assignment to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.attribute_assign_notes2 IS 'attribute_assign_notes2: notes related to the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.enabled2 IS 'enabled2: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.enabled_time2 IS 'enabled_time2: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.disabled_time2 IS 'disabled_time2: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.stem_id IS 'stem_id: stem id of the stem assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.attribute_assign_id1 IS 'attribute_assign_id1: id of the original attribute assignment to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.attribute_assign_id2 IS 'attribute_assign_id2: id of the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.attribute_def_name_id1 IS 'attribute_def_name_id1: id of the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.attribute_def_name_id2 IS 'attribute_def_name_id2: id of the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.attribute_def_id1 IS 'attribute_def_id1: id of the original attribute definition assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.attribute_def_id2 IS 'attribute_def_id2: id of the new attribute definition assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.action_id1 IS 'action_id1: id of the attribute assign action of the original assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_stem_v.action_id2 IS 'action_id2: id of the attribute assign action assigned to the group'; CREATE VIEW grouper_attr_asn_asn_member_v (source_id, subject_id, action1, action2, attribute_def_name_name1, attribute_def_name_name2, attribute_def_name_disp_name1, attribute_def_name_disp_name2, name_of_attribute_def1, name_of_attribute_def2, attribute_assign_notes1, attribute_assign_notes2, enabled2, enabled_time2, disabled_time2, member_id, attribute_assign_id1, attribute_assign_id2, attribute_def_name_id1, attribute_def_name_id2, attribute_def_id1, attribute_def_id2, action_id1, action_id2) AS select gm.subject_source as source_id, gm.subject_id, gaaa1.name as action1, gaaa2.name as action2, gadn1.name as attribute_def_name_name1, gadn2.name as attribute_def_name_name2, gadn1.display_name as attribute_def_name_disp_name1, gadn2.display_name as attribute_def_name_disp_name2, gad1.name as name_of_attribute_def1, gad2.name as name_of_attribute_def2, gaa1.notes as attribute_assign_notes1, gaa2.notes as attribute_assign_notes2, gaa2.enabled as enabled2, gaa2.enabled_time as enabled_time2, gaa2.disabled_time as disabled_time2, gm.id as member_id, gaa1.id as attribute_assign_id1, gaa2.id as attribute_assign_id2, gadn1.id as attribute_def_name_id1, gadn2.id as attribute_def_name_id2, gad1.id as attribute_def_id1, gad2.id as attribute_def_id2, gaaa1.id as action_id1, gaaa2.id as action_id2 from grouper_attribute_assign gaa1, grouper_attribute_assign gaa2, grouper_members gm, grouper_attribute_def_name gadn1, grouper_attribute_def_name gadn2, grouper_attribute_def gad1, grouper_attribute_def gad2, grouper_attr_assign_action gaaa1, grouper_attr_assign_action gaaa2 where gaa1.id = gaa2.owner_attribute_assign_id and gaa1.attribute_def_name_id = gadn1.id and gaa2.attribute_def_name_id = gadn2.id and gadn1.attribute_def_id = gad1.id and gadn2.attribute_def_id = gad2.id and gaa1.enabled = 'T' and gm.id = gaa1.owner_member_id and gaa1.owner_group_id is null and gaa1.attribute_assign_action_id = gaaa1.id and gaa2.attribute_assign_action_id = gaaa2.id ; COMMENT ON VIEW grouper_attr_asn_asn_member_v IS 'grouper_attr_asn_asn_member_v: attribute assigned to an assignment of an attribute to a member, and related cols'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.source_id IS 'source_id: source id of the member assigned the original attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.subject_id IS 'subject_id: subject id of the member assigned the original attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.action1 IS 'action1: the action associated with the original attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.action2 IS 'action2: the action associated with this attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.attribute_def_name_name1 IS 'attribute_def_name_name1: name of the original attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.attribute_def_name_name2 IS 'attribute_def_name_name2: name of the current attribute definition name which is assigned to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.attribute_def_name_disp_name1 IS 'attribute_def_name_disp_name1: display name of the attribute definition name assigned to the original attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.attribute_def_name_disp_name2 IS 'attribute_def_name_disp_name2: display name of the attribute definition name assigned to the new attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.name_of_attribute_def1 IS 'name_of_attribute_def1: name of the attribute definition associated with the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.name_of_attribute_def2 IS 'name_of_attribute_def2: name of the attribute definition associated with the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.attribute_assign_notes1 IS 'attribute_assign_notes1: notes related to the original attribute assignment to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.attribute_assign_notes2 IS 'attribute_assign_notes2: notes related to the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.enabled2 IS 'enabled2: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.enabled_time2 IS 'enabled_time2: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.disabled_time2 IS 'disabled_time2: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.member_id IS 'member_id: member id of the member assigned the original attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.attribute_assign_id1 IS 'attribute_assign_id1: id of the original attribute assignment to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.attribute_assign_id2 IS 'attribute_assign_id2: id of the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.attribute_def_name_id1 IS 'attribute_def_name_id1: id of the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.attribute_def_name_id2 IS 'attribute_def_name_id2: id of the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.attribute_def_id1 IS 'attribute_def_id1: id of the original attribute definition assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.attribute_def_id2 IS 'attribute_def_id2: id of the new attribute definition assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.action_id1 IS 'action_id1: id of the attribute assign action of the original assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_member_v.action_id2 IS 'action_id2: id of the attribute assign action assigned to the group'; CREATE VIEW grouper_attr_asn_asn_mship_v (group_name, source_id, subject_id, action1, action2, attribute_def_name_name1, attribute_def_name_name2, attribute_def_name_disp_name1, attribute_def_name_disp_name2, list_name, name_of_attribute_def1, name_of_attribute_def2, attribute_assign_notes1, attribute_assign_notes2, enabled2, enabled_time2, disabled_time2, group_id, membership_id, member_id, attribute_assign_id1, attribute_assign_id2, attribute_def_name_id1, attribute_def_name_id2, attribute_def_id1, attribute_def_id2, action_id1, action_id2) AS select gg.name as group_name, gm.subject_source as source_id, gm.subject_id, gaaa1.name as action1, gaaa2.name as action2, gadn1.name as attribute_def_name_name1, gadn2.name as attribute_def_name_name2, gadn1.display_name as attribute_def_name_disp_name1, gadn2.display_name as attribute_def_name_disp_name2, gf.name as list_name, gad1.name as name_of_attribute_def1, gad2.name as name_of_attribute_def2, gaa1.notes as attribute_assign_notes1, gaa2.notes as attribute_assign_notes2, gaa2.enabled as enabled2, gaa2.enabled_time as enabled_time2, gaa2.disabled_time as disabled_time2, gg.id as group_id, gms.id as membership_id, gm.id as member_id, gaa1.id as attribute_assign_id1, gaa2.id as attribute_assign_id2, gadn1.id as attribute_def_name_id1, gadn2.id as attribute_def_name_id2, gad1.id as attribute_def_id1, gad2.id as attribute_def_id2, gaaa1.id as action_id1, gaaa2.id as action_id2 from grouper_attribute_assign gaa1, grouper_attribute_assign gaa2, grouper_groups gg, grouper_memberships gms, grouper_attribute_def_name gadn1, grouper_attribute_def_name gadn2, grouper_attribute_def gad1, grouper_attribute_def gad2, grouper_members gm, grouper_fields gf, grouper_attr_assign_action gaaa1, grouper_attr_assign_action gaaa2 where gaa1.owner_membership_id = gms.id and gaa2.owner_attribute_assign_id = gaa1.id and gaa1.attribute_def_name_id = gadn1.id and gaa2.attribute_def_name_id = gadn2.id and gadn1.attribute_def_id = gad1.id and gadn2.attribute_def_id = gad2.id and gaa1.enabled = 'T' and gms.field_id = gf.id and gms.member_id = gm.id and gms.owner_group_id = gg.id and gf.type = 'list' and gaa1.attribute_assign_action_id = gaaa1.id and gaa2.attribute_assign_action_id = gaaa2.id ; COMMENT ON VIEW grouper_attr_asn_asn_mship_v IS 'grouper_attr_asn_asn_mship_v: attribute assigned to an assignment of an attribute to a membership, and related cols'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.group_name IS 'group_name: name of group in membership assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.source_id IS 'source_id: source of the subject that belongs to the member'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.subject_id IS 'subject_id: subject_id of the subject that belongs to the member'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.action1 IS 'action1: the action associated with the original attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.action2 IS 'action2: the action associated with this attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.attribute_def_name_name1 IS 'attribute_def_name_name1: name of the original attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.attribute_def_name_name2 IS 'attribute_def_name_name2: name of the new attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.attribute_def_name_disp_name1 IS 'attribute_def_name_disp_name1: display name of the original attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.attribute_def_name_disp_name2 IS 'attribute_def_name_disp_name2: display name of the new attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.list_name IS 'list_name: name of list in membership assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.name_of_attribute_def1 IS 'name_of_attribute_def1: name of the original attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.name_of_attribute_def2 IS 'name_of_attribute_def2: name of the new attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.attribute_assign_notes1 IS 'attribute_assign_notes1: notes related to the original attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.attribute_assign_notes2 IS 'attribute_assign_notes2: notes related to the new attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.enabled2 IS 'enabled2: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.enabled_time2 IS 'enabled_time2: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.disabled_time2 IS 'disabled_time2: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.group_id IS 'group_id: group id of the membership assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.membership_id IS 'membership_id: membership id assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.member_id IS 'member_id: internal grouper member uuid of the membership assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.attribute_assign_id1 IS 'attribute_assign_id1: id of the original attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.attribute_assign_id2 IS 'attribute_assign_id2: id of the new attribute assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.attribute_def_name_id1 IS 'attribute_def_name_id1: id of the original attribute definition name'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.attribute_def_name_id2 IS 'attribute_def_name_id2: id of the new attribute definition name'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.attribute_def_id1 IS 'attribute_def_id1: id of the original attribute definition'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.attribute_def_id2 IS 'attribute_def_id2: id of the new attribute definition'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.action_id1 IS 'action_id1: id of the attribute assign action of the original assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_mship_v.action_id2 IS 'action_id2: id of the attribute assign action assigned to the group'; CREATE VIEW grouper_attr_asn_asn_attrdef_v (name_of_attr_def_assigned_to, action1, action2, attribute_def_name_name1, attribute_def_name_name2, attribute_def_name_disp_name1, attribute_def_name_disp_name2, name_of_attribute_def1, name_of_attribute_def2, attribute_assign_notes1, attribute_assign_notes2, enabled2, enabled_time2, disabled_time2, id_of_attr_def_assigned_to, attribute_assign_id1, attribute_assign_id2, attribute_def_name_id1, attribute_def_name_id2, attribute_def_id1, attribute_def_id2, action_id1, action_id2) AS select gad.name as name_of_attr_def_assigned_to, gaaa1.name as action1, gaaa2.name as action2, gadn1.name as attribute_def_name_name1, gadn2.name as attribute_def_name_name2, gadn1.display_name as attribute_def_name_disp_name1, gadn2.display_name as attribute_def_name_disp_name2, gad1.name as name_of_attribute_def1, gad2.name as name_of_attribute_def2, gaa1.notes as attribute_assign_notes1, gaa2.notes as attribute_assign_notes2, gaa2.enabled as enabled2, gaa2.enabled_time as enabled_time2, gaa2.disabled_time as disabled_time2, gad.id as id_of_attr_def_assigned_to, gaa1.id as attribute_assign_id1, gaa2.id as attribute_assign_id2, gadn1.id as attribute_def_name_id1, gadn2.id as attribute_def_name_id2, gad1.id as attribute_def_id1, gad2.id as attribute_def_id2, gaaa1.id as action_id1, gaaa2.id as action_id2 from grouper_attribute_assign gaa1, grouper_attribute_assign gaa2, grouper_attribute_def gad, grouper_attribute_def_name gadn1, grouper_attribute_def_name gadn2, grouper_attribute_def gad1, grouper_attribute_def gad2 , grouper_attr_assign_action gaaa1, grouper_attr_assign_action gaaa2 where gaa1.id = gaa2.owner_attribute_assign_id and gaa1.attribute_def_name_id = gadn1.id and gaa2.attribute_def_name_id = gadn2.id and gadn1.attribute_def_id = gad1.id and gadn2.attribute_def_id = gad2.id and gaa1.enabled = 'T' and gad.id = gaa1.owner_attribute_def_id and gaa1.attribute_assign_action_id = gaaa1.id and gaa2.attribute_assign_action_id = gaaa2.id ; COMMENT ON VIEW grouper_attr_asn_asn_attrdef_v IS 'grouper_attr_asn_asn_attrdef_v: attribute assigned to an assignment of an attribute to an attribute definition, and related cols'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.name_of_attr_def_assigned_to IS 'name_of_attr_def_assigned_to: name of attribute_def originally assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.action1 IS 'action1: the action associated with the original attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.action2 IS 'action2: the action associated with this attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.attribute_def_name_name1 IS 'attribute_def_name_name1: name of the original attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.attribute_def_name_name2 IS 'attribute_def_name_name2: name of the current attribute definition name which is assigned to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.attribute_def_name_disp_name1 IS 'attribute_def_name_disp_name1: display name of the attribute definition name assigned to the original attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.attribute_def_name_disp_name2 IS 'attribute_def_name_disp_name2: display name of the attribute definition name assigned to the new attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.name_of_attribute_def1 IS 'name_of_attribute_def1: name of the attribute definition associated with the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.name_of_attribute_def2 IS 'name_of_attribute_def2: name of the attribute definition associated with the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.attribute_assign_notes1 IS 'attribute_assign_notes1: notes related to the original attribute assignment to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.attribute_assign_notes2 IS 'attribute_assign_notes2: notes related to the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.enabled2 IS 'enabled2: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.enabled_time2 IS 'enabled_time2: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.disabled_time2 IS 'disabled_time2: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.id_of_attr_def_assigned_to IS 'id_of_attr_def_assigned_to: id of the attribute def assigned the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.attribute_assign_id1 IS 'attribute_assign_id1: id of the original attribute assignment to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.attribute_assign_id2 IS 'attribute_assign_id2: id of the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.attribute_def_name_id1 IS 'attribute_def_name_id1: id of the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.attribute_def_name_id2 IS 'attribute_def_name_id2: id of the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.attribute_def_id1 IS 'attribute_def_id1: id of the original attribute definition assigned to the group'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.attribute_def_id2 IS 'attribute_def_id2: id of the new attribute definition assigned to the attribute'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.action_id1 IS 'action_id1: id of the attribute assign action of the original assignment'; COMMENT ON COLUMN grouper_attr_asn_asn_attrdef_v.action_id2 IS 'action_id2: id of the attribute assign action assigned to the group'; CREATE VIEW grouper_aval_asn_group_v (group_name, action, attribute_def_name_name, value_string, value_integer, value_floating, value_member_id, group_display_name, attribute_def_name_disp_name, name_of_attribute_def, attribute_assign_notes, attribute_assign_delegatable, enabled, enabled_time, disabled_time, group_id, attribute_assign_id, attribute_def_name_id, attribute_def_id, action_id, attribute_assign_value_id) AS select gg.name as group_name, gaaa.name as action, gadn.name as attribute_def_name_name, gaav.value_string AS value_string, gaav.value_integer AS value_integer, gaav.value_floating AS value_floating, gaav.value_member_id AS value_member_id, gg.display_name as group_display_name, gadn.display_name as attribute_def_name_disp_name, gad.name as name_of_attribute_def, gaa.notes as attribute_assign_notes, gaa.attribute_assign_delegatable, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gg.id as group_id, gaa.id as attribute_assign_id, gadn.id as attribute_def_name_id, gad.id as attribute_def_id, gaaa.id as action_id, gaav.id AS attribute_assign_value_id from grouper_attribute_assign gaa, grouper_groups gg, grouper_attribute_def_name gadn, grouper_attribute_def gad, grouper_attr_assign_action gaaa, grouper_attribute_assign_value gaav where gaav.attribute_assign_id = gaa.id and gaa.owner_group_id = gg.id and gaa.attribute_def_name_id = gadn.id and gadn.attribute_def_id = gad.id and gaa.owner_member_id is null and gaa.attribute_assign_action_id = gaaa.id ; COMMENT ON VIEW grouper_aval_asn_group_v IS 'grouper_aval_asn_group_v: attribute assigned to a group with related columns and values (multiple rows if multiple values, no rows if no values)'; COMMENT ON COLUMN grouper_aval_asn_group_v.group_name IS 'group_name: name of group assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_group_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_group_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_group_v.value_string IS 'value_string: if this is a string attributeDef, then this is the string'; COMMENT ON COLUMN grouper_aval_asn_group_v.value_integer IS 'value_integer: if this is an integer attributeDef, then this is the integer'; COMMENT ON COLUMN grouper_aval_asn_group_v.value_floating IS 'value_floating: if this is a floating attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_group_v.value_member_id IS 'value_member_id: if this is a memberId attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_group_v.group_display_name IS 'group_display_name: display name of the group assigned an attribute'; COMMENT ON COLUMN grouper_aval_asn_group_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_group_v.name_of_attribute_def IS 'name_of_attribute_def: name of the attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_group_v.attribute_assign_notes IS 'attribute_assign_notes: notes related to the attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_group_v.attribute_assign_delegatable IS 'attribute_assign_delegatable: if this assignment is delegatable or grantable: TRUE, FALSE, GRANT'; COMMENT ON COLUMN grouper_aval_asn_group_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_aval_asn_group_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_aval_asn_group_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_aval_asn_group_v.group_id IS 'group_id: group id of the group assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_group_v.attribute_assign_id IS 'attribute_assign_id: id of the attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_group_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_aval_asn_group_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_aval_asn_group_v.action_id IS 'action_id: id of the attribute assign action'; COMMENT ON COLUMN grouper_aval_asn_group_v.attribute_assign_value_id IS 'attribute_assign_value_id: the id of the value'; CREATE VIEW grouper_aval_asn_efmship_v (group_name, subject_source_id, subject_id, action, attribute_def_name_name, value_string, value_integer, value_floating, value_member_id, group_display_name, attribute_def_name_disp_name, name_of_attribute_def, attribute_assign_notes, list_name, attribute_assign_delegatable, enabled, enabled_time, disabled_time, group_id, attribute_assign_id, attribute_def_name_id, attribute_def_id, member_id, action_id, attribute_assign_value_id) AS select distinct gg.name as group_name, gm.subject_source as subject_source_id, gm.subject_id, gaaa.name as action, gadn.name as attribute_def_name_name, gaav.value_string AS value_string, gaav.value_integer AS value_integer, gaav.value_floating AS value_floating, gaav.value_member_id AS value_member_id, gg.display_name as group_display_name, gadn.display_name as attribute_def_name_disp_name, gad.name as name_of_attribute_def, gaa.notes as attribute_assign_notes, gf.name as list_name, gaa.attribute_assign_delegatable, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gg.id as group_id, gaa.id as attribute_assign_id, gadn.id as attribute_def_name_id, gad.id as attribute_def_id, gm.id as member_id, gaaa.id as action_id, gaav.id AS attribute_assign_value_id from grouper_attribute_assign gaa, grouper_memberships_all_v gmav, grouper_attribute_def_name gadn, grouper_attribute_def gad, grouper_groups gg, grouper_fields gf, grouper_members gm, grouper_attr_assign_action gaaa, grouper_attribute_assign_value gaav where gaav.attribute_assign_id = gaa.id and gaa.owner_group_id = gmav.owner_group_id and gaa.owner_member_id = gmav.member_id and gaa.attribute_def_name_id = gadn.id and gadn.attribute_def_id = gad.id and gmav.immediate_mship_enabled = 'T' and gmav.owner_group_id = gg.id and gmav.field_id = gf.id and gf.type = 'list' and gmav.member_id = gm.id and gaa.owner_member_id is not null and gaa.owner_group_id is not null and gaa.attribute_assign_action_id = gaaa.id ; COMMENT ON VIEW grouper_aval_asn_efmship_v IS 'grouper_aval_asn_efmship_v: attribute assigned to an effective membership and values (multiple rows if multiple values, no rows if no values)'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.group_name IS 'group_name: name of group assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.subject_source_id IS 'subject_source_id: source id of the subject being assigned'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.subject_id IS 'subject_id: subject id of the subject being assigned'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.value_string IS 'value_string: if this is a string attributeDef, then this is the string'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.value_integer IS 'value_integer: if this is an integer attributeDef, then this is the integer'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.value_floating IS 'value_floating: if this is a floating attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.value_member_id IS 'value_member_id: if this is a memberId attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.group_display_name IS 'group_display_name: display name of the group assigned an attribute'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.name_of_attribute_def IS 'name_of_attribute_def: name of the attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.attribute_assign_notes IS 'attribute_assign_notes: notes related to the attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.list_name IS 'list_name: name of the membership list for this effective membership'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.attribute_assign_delegatable IS 'attribute_assign_delegatable: if this assignment is delegatable or grantable: TRUE, FALSE, GRANT'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.group_id IS 'group_id: group id of the group assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.attribute_assign_id IS 'attribute_assign_id: id of the attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.member_id IS 'member_id: id of the member assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.action_id IS 'action_id: attribute assign action id'; COMMENT ON COLUMN grouper_aval_asn_efmship_v.attribute_assign_value_id IS 'attribute_assign_value_id: the id of the value'; CREATE VIEW grouper_aval_asn_stem_v (stem_name, action, attribute_def_name_name, value_string, value_integer, value_floating, value_member_id, stem_display_name, attribute_def_name_disp_name, name_of_attribute_def, attribute_assign_notes, enabled, enabled_time, disabled_time, stem_id, attribute_assign_id, attribute_def_name_id, attribute_def_id, action_id, attribute_assign_value_id) AS select gs.name as stem_name, gaaa.name as action, gadn.name as attribute_def_name_name, gaav.value_string AS value_string, gaav.value_integer AS value_integer, gaav.value_floating AS value_floating, gaav.value_member_id AS value_member_id, gs.display_name as stem_display_name, gadn.display_name as attribute_def_name_disp_name, gad.name as name_of_attribute_def, gaa.notes as attribute_assign_notes, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gs.id as stem_id, gaa.id as attribute_assign_id, gadn.id as attribute_def_name_id, gad.id as attribute_def_id, gaaa.id as action_id, gaav.id AS attribute_assign_value_id from grouper_attribute_assign gaa, grouper_stems gs, grouper_attribute_def_name gadn, grouper_attribute_def gad, grouper_attr_assign_action gaaa, grouper_attribute_assign_value gaav where gaav.attribute_assign_id = gaa.id and gaa.owner_stem_id = gs.id and gaa.attribute_def_name_id = gadn.id and gadn.attribute_def_id = gad.id and gaa.attribute_assign_action_id = gaaa.id ; COMMENT ON VIEW grouper_aval_asn_stem_v IS 'grouper_aval_asn_stem_v: attribute assigned to a stem and related cols and values (multiple rows if multiple values, no rows if no values)'; COMMENT ON COLUMN grouper_aval_asn_stem_v.stem_name IS 'stem_name: name of stem assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_stem_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_stem_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_stem_v.value_string IS 'value_string: if this is a string attributeDef, then this is the string'; COMMENT ON COLUMN grouper_aval_asn_stem_v.value_integer IS 'value_integer: if this is an integer attributeDef, then this is the integer'; COMMENT ON COLUMN grouper_aval_asn_stem_v.value_floating IS 'value_floating: if this is a floating attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_stem_v.value_member_id IS 'value_member_id: if this is a memberId attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_stem_v.stem_display_name IS 'stem_display_name: display name of the stem assigned an attribute'; COMMENT ON COLUMN grouper_aval_asn_stem_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_stem_v.name_of_attribute_def IS 'name_of_attribute_def: name of the attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_stem_v.attribute_assign_notes IS 'attribute_assign_notes: notes related to the attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_stem_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_aval_asn_stem_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_aval_asn_stem_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_aval_asn_stem_v.stem_id IS 'stem_id: stem id of the stem assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_stem_v.attribute_assign_id IS 'attribute_assign_id: id of the attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_stem_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_aval_asn_stem_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_aval_asn_stem_v.action_id IS 'action_id: id of the attribute assign action'; COMMENT ON COLUMN grouper_aval_asn_stem_v.attribute_assign_value_id IS 'attribute_assign_value_id: the id of the value'; CREATE VIEW grouper_aval_asn_member_v (source_id, subject_id, action, attribute_def_name_name, value_string, value_integer, value_floating, value_member_id, attribute_def_name_disp_name, name_of_attribute_def, attribute_assign_notes, attribute_assign_delegatable, enabled, enabled_time, disabled_time, member_id, attribute_assign_id, attribute_def_name_id, attribute_def_id, action_id, attribute_assign_value_id) AS select gm.subject_source as source_id, gm.subject_id, gaaa.name as action, gadn.name as attribute_def_name_name, gaav.value_string AS value_string, gaav.value_integer AS value_integer, gaav.value_floating AS value_floating, gaav.value_member_id AS value_member_id, gadn.display_name as attribute_def_name_disp_name, gad.name as name_of_attribute_def, gaa.notes as attribute_assign_notes, gaa.attribute_assign_delegatable, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gm.id as member_id, gaa.id as attribute_assign_id, gadn.id as attribute_def_name_id, gad.id as attribute_def_id, gaaa.id as action_id, gaav.id AS attribute_assign_value_id from grouper_attribute_assign gaa, grouper_members gm, grouper_attribute_def_name gadn, grouper_attribute_def gad, grouper_attr_assign_action gaaa, grouper_attribute_assign_value gaav where gaav.attribute_assign_id = gaa.id and gaa.owner_member_id = gm.id and gaa.attribute_def_name_id = gadn.id and gadn.attribute_def_id = gad.id and gaa.owner_group_id is null and gaa.attribute_assign_action_id = gaaa.id; COMMENT ON VIEW grouper_aval_asn_member_v IS 'grouper_aval_asn_member_v: attribute assigned to a member and related cols and values (multiple rows if multiple values, no rows if no values)'; COMMENT ON COLUMN grouper_aval_asn_member_v.source_id IS 'source_id: source of the subject that belongs to the member'; COMMENT ON COLUMN grouper_aval_asn_member_v.subject_id IS 'subject_id: subject_id of the subject that belongs to the member'; COMMENT ON COLUMN grouper_aval_asn_member_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_member_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_member_v.value_string IS 'value_string: if this is a string attributeDef, then this is the string'; COMMENT ON COLUMN grouper_aval_asn_member_v.value_integer IS 'value_integer: if this is an integer attributeDef, then this is the integer'; COMMENT ON COLUMN grouper_aval_asn_member_v.value_floating IS 'value_floating: if this is a floating attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_member_v.value_member_id IS 'value_member_id: if this is a memberId attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_member_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_member_v.name_of_attribute_def IS 'name_of_attribute_def: name of the attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_member_v.attribute_assign_notes IS 'attribute_assign_notes: notes related to the attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_member_v.attribute_assign_delegatable IS 'attribute_assign_delegatable: if this assignment is delegatable or grantable: TRUE, FALSE, GRANT'; COMMENT ON COLUMN grouper_aval_asn_member_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_aval_asn_member_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_aval_asn_member_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_aval_asn_member_v.member_id IS 'member_id: member id of the member assigned the attribute (this is an internal grouper uuid)'; COMMENT ON COLUMN grouper_aval_asn_member_v.attribute_assign_id IS 'attribute_assign_id: id of the attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_member_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_aval_asn_member_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_aval_asn_member_v.action_id IS 'action_id: id of the attribute assign action'; COMMENT ON COLUMN grouper_aval_asn_member_v.attribute_assign_value_id IS 'attribute_assign_value_id: the id of the value'; CREATE VIEW grouper_aval_asn_mship_v (group_name, source_id, subject_id, action, attribute_def_name_name, value_string, value_integer, value_floating, value_member_id, attribute_def_name_disp_name, list_name, name_of_attribute_def, attribute_assign_notes, attribute_assign_delegatable, enabled, enabled_time, disabled_time, group_id, membership_id, member_id, attribute_assign_id, attribute_def_name_id, attribute_def_id, action_id, attribute_assign_value_id) AS select gg.name as group_name, gm.subject_source as source_id, gm.subject_id, gaaa.name as action, gadn.name as attribute_def_name_name, gaav.value_string AS value_string, gaav.value_integer AS value_integer, gaav.value_floating AS value_floating, gaav.value_member_id AS value_member_id, gadn.display_name as attribute_def_name_disp_name, gf.name as list_name, gad.name as name_of_attribute_def, gaa.notes as attribute_assign_notes, gaa.attribute_assign_delegatable, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gg.id as group_id, gms.id as membership_id, gm.id as member_id, gaa.id as attribute_assign_id, gadn.id as attribute_def_name_id, gad.id as attribute_def_id, gaaa.id as action_id, gaav.id AS attribute_assign_value_id from grouper_attribute_assign gaa, grouper_groups gg, grouper_memberships gms, grouper_attribute_def_name gadn, grouper_attribute_def gad, grouper_members gm, grouper_fields gf, grouper_attr_assign_action gaaa, grouper_attribute_assign_value gaav where gaav.attribute_assign_id = gaa.id and gaa.owner_membership_id = gms.id and gaa.attribute_def_name_id = gadn.id and gadn.attribute_def_id = gad.id and gms.field_id = gf.id and gms.member_id = gm.id and gms.owner_group_id = gg.id and gf.type = 'list' and gaa.attribute_assign_action_id = gaaa.id ; COMMENT ON VIEW grouper_aval_asn_mship_v IS 'grouper_aval_asn_mship_v: attribute assigned to an immediate memberships, and related cols and values (multiple rows if multiple values, no rows if no values)'; COMMENT ON COLUMN grouper_aval_asn_mship_v.group_name IS 'group_name: name of group in membership assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_mship_v.source_id IS 'source_id: source of the subject that belongs to the member'; COMMENT ON COLUMN grouper_aval_asn_mship_v.subject_id IS 'subject_id: subject_id of the subject that belongs to the member'; COMMENT ON COLUMN grouper_aval_asn_mship_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_mship_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_mship_v.value_string IS 'value_string: if this is a string attributeDef, then this is the string'; COMMENT ON COLUMN grouper_aval_asn_mship_v.value_integer IS 'value_integer: if this is an integer attributeDef, then this is the integer'; COMMENT ON COLUMN grouper_aval_asn_mship_v.value_floating IS 'value_floating: if this is a floating attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_mship_v.value_member_id IS 'value_member_id: if this is a memberId attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_mship_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_mship_v.list_name IS 'list_name: name of list in membership assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_mship_v.name_of_attribute_def IS 'name_of_attribute_def: name of the attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_mship_v.attribute_assign_notes IS 'attribute_assign_notes: notes related to the attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_mship_v.attribute_assign_delegatable IS 'attribute_assign_delegatable: if this assignment is delegatable or grantable: TRUE, FALSE, GRANT'; COMMENT ON COLUMN grouper_aval_asn_mship_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_aval_asn_mship_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_aval_asn_mship_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_aval_asn_mship_v.group_id IS 'group_id: group id of the membership assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_mship_v.membership_id IS 'membership_id: membership id assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_mship_v.member_id IS 'member_id: internal grouper member uuid of the membership assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_mship_v.attribute_assign_id IS 'attribute_assign_id: id of the attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_mship_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_aval_asn_mship_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_aval_asn_mship_v.action_id IS 'action_id: id of the attribute assign action'; COMMENT ON COLUMN grouper_aval_asn_mship_v.attribute_assign_value_id IS 'attribute_assign_value_id: the id of the value'; CREATE VIEW grouper_aval_asn_attrdef_v (name_of_attr_def_assigned_to, action, attribute_def_name_name, value_string, value_integer, value_floating, value_member_id, attribute_def_name_disp_name, name_of_attribute_def_assigned, attribute_assign_notes, enabled, enabled_time, disabled_time, id_of_attr_def_assigned_to, attribute_assign_id, attribute_def_name_id, attribute_def_id, action_id, attribute_assign_value_id) AS select gad_assigned_to.name as name_of_attr_def_assigned_to, gaaa.name as action, gadn.name as attribute_def_name_name, gaav.value_string AS value_string, gaav.value_integer AS value_integer, gaav.value_floating AS value_floating, gaav.value_member_id AS value_member_id, gadn.display_name as attribute_def_name_disp_name, gad.name as name_of_attribute_def, gaa.notes as attribute_assign_notes, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gad_assigned_to.id as id_of_attr_def_assigned_to, gaa.id as attribute_assign_id, gadn.id as attribute_def_name_id, gad.id as attribute_def_id, gaaa.id as action_id, gaav.id AS attribute_assign_value_id from grouper_attribute_assign gaa, grouper_attribute_def gad_assigned_to, grouper_attribute_def_name gadn, grouper_attribute_def gad, grouper_attr_assign_action gaaa, grouper_attribute_assign_value gaav where gaav.attribute_assign_id = gaa.id and gaa.owner_attribute_def_id = gad_assigned_to.id and gaa.attribute_def_name_id = gadn.id and gadn.attribute_def_id = gad.id and gaa.attribute_assign_action_id = gaaa.id ; COMMENT ON VIEW grouper_aval_asn_attrdef_v IS 'grouper_aval_asn_attrdef_v: attribute assigned to an attribute definition, and related columns and values (multiple rows if multiple values, no rows if no values)'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.name_of_attr_def_assigned_to IS 'name_of_attr_def_assigned_to: name of attribute def assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.value_string IS 'value_string: if this is a string attributeDef, then this is the string'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.value_integer IS 'value_integer: if this is an integer attributeDef, then this is the integer'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.value_floating IS 'value_floating: if this is a floating attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.value_member_id IS 'value_member_id: if this is a memberId attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.name_of_attribute_def_assigned IS 'name_of_attribute_def: name of the attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.attribute_assign_notes IS 'attribute_assign_notes: notes related to the attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.id_of_attr_def_assigned_to IS 'id_of_attr_def_assigned_to: attrDef id of the attributeDef assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.attribute_assign_id IS 'attribute_assign_id: id of the attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.action_id IS 'action_id: id of the attribute assign action'; COMMENT ON COLUMN grouper_aval_asn_attrdef_v.attribute_assign_value_id IS 'attribute_assign_value_id: the id of the value'; CREATE VIEW grouper_aval_asn_asn_group_v (group_name, action1, action2, attribute_def_name_name1, attribute_def_name_name2, value_string, value_integer, value_floating, value_member_id, group_display_name, attribute_def_name_disp_name1, attribute_def_name_disp_name2, name_of_attribute_def1, name_of_attribute_def2, attribute_assign_notes1, attribute_assign_notes2, enabled2, enabled_time2, disabled_time2, group_id, attribute_assign_id1, attribute_assign_id2, attribute_def_name_id1, attribute_def_name_id2, attribute_def_id1, attribute_def_id2, action_id1, action_id2, attribute_assign_value_id) AS select gg.name as group_name, gaaa1.name as action1, gaaa2.name as action2, gadn1.name as attribute_def_name_name1, gadn2.name as attribute_def_name_name2, gaav.value_string AS value_string, gaav.value_integer AS value_integer, gaav.value_floating AS value_floating, gaav.value_member_id AS value_member_id, gg.display_name as group_display_name, gadn1.display_name as attribute_def_name_disp_name1, gadn2.display_name as attribute_def_name_disp_name2, gad1.name as name_of_attribute_def1, gad2.name as name_of_attribute_def2, gaa1.notes as attribute_assign_notes1, gaa2.notes as attribute_assign_notes2, gaa2.enabled as enabled2, gaa2.enabled_time as enabled_time2, gaa2.disabled_time as disabled_time2, gg.id as group_id, gaa1.id as attribute_assign_id1, gaa2.id as attribute_assign_id2, gadn1.id as attribute_def_name_id1, gadn2.id as attribute_def_name_id2, gad1.id as attribute_def_id1, gad2.id as attribute_def_id2, gaaa1.id as action_id1, gaaa2.id as action_id2, gaav.id AS attribute_assign_value_id from grouper_attribute_assign gaa1, grouper_attribute_assign gaa2, grouper_groups gg, grouper_attribute_def_name gadn1, grouper_attribute_def_name gadn2, grouper_attribute_def gad1, grouper_attribute_def gad2, grouper_attr_assign_action gaaa1, grouper_attr_assign_action gaaa2, grouper_attribute_assign_value gaav where gaav.attribute_assign_id = gaa2.id and gaa1.id = gaa2.owner_attribute_assign_id and gaa1.attribute_def_name_id = gadn1.id and gaa2.attribute_def_name_id = gadn2.id and gadn1.attribute_def_id = gad1.id and gadn2.attribute_def_id = gad2.id and gaa1.enabled = 'T' and gg.id = gaa1.owner_group_id and gaa1.owner_member_id is null and gaa1.attribute_assign_action_id = gaaa1.id and gaa2.attribute_assign_action_id = gaaa2.id; COMMENT ON VIEW grouper_aval_asn_asn_group_v IS 'grouper_aval_asn_asn_group_v: attribute assigned to an assignment of attribute to a group, and related cols and values (multiple rows if multiple values, no rows if no values)'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.group_name IS 'group_name: name of group assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.action1 IS 'action1: the action associated with the original attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.action2 IS 'action2: the action associated with this attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.attribute_def_name_name1 IS 'attribute_def_name_name1: name of the original attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.attribute_def_name_name2 IS 'attribute_def_name_name2: name of the current attribute definition name which is assigned to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.value_string IS 'value_string: if this is a string attributeDef, then this is the string'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.value_integer IS 'value_integer: if this is an integer attributeDef, then this is the integer'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.value_floating IS 'value_floating: if this is a floating attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.value_member_id IS 'value_member_id: if this is a memberId attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.group_display_name IS 'group_display_name: display name of the group assigned an attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.attribute_def_name_disp_name1 IS 'attribute_def_name_disp_name1: display name of the attribute definition name assigned to the original attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.attribute_def_name_disp_name2 IS 'attribute_def_name_disp_name2: display name of the attribute definition name assigned to the new attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.name_of_attribute_def1 IS 'name_of_attribute_def1: name of the attribute definition associated with the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.name_of_attribute_def2 IS 'name_of_attribute_def2: name of the attribute definition associated with the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.attribute_assign_notes1 IS 'attribute_assign_notes1: notes related to the original attribute assignment to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.attribute_assign_notes2 IS 'attribute_assign_notes2: notes related to the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.enabled2 IS 'enabled2: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.enabled_time2 IS 'enabled_time2: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.disabled_time2 IS 'disabled_time2: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.group_id IS 'group_id: group id of the group assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.attribute_assign_id1 IS 'attribute_assign_id1: id of the original attribute assignment to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.attribute_assign_id2 IS 'attribute_assign_id2: id of the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.attribute_def_name_id1 IS 'attribute_def_name_id1: id of the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.attribute_def_name_id2 IS 'attribute_def_name_id2: id of the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.attribute_def_id1 IS 'attribute_def_id1: id of the original attribute definition assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.attribute_def_id2 IS 'attribute_def_id2: id of the new attribute definition assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.action_id1 IS 'action_id1: id of the attribute assign action of the original assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.action_id2 IS 'action_id2: id of the attribute assign action assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_group_v.attribute_assign_value_id IS 'attribute_assign_value_id: the id of the value'; CREATE VIEW grouper_aval_asn_asn_efmship_v (group_name, source_id, subject_id, action1, action2, attribute_def_name_name1, attribute_def_name_name2, value_string, value_integer, value_floating, value_member_id, attribute_def_name_disp_name1, attribute_def_name_disp_name2, list_name, name_of_attribute_def1, name_of_attribute_def2, attribute_assign_notes1, attribute_assign_notes2, enabled2, enabled_time2, disabled_time2, group_id, member_id, attribute_assign_id1, attribute_assign_id2, attribute_def_name_id1, attribute_def_name_id2, attribute_def_id1, attribute_def_id2, action_id1, action_id2, attribute_assign_value_id) AS select distinct gg.name as group_name, gm.subject_source as source_id, gm.subject_id, gaaa1.name as action1, gaaa2.name as action2, gadn1.name as attribute_def_name_name1, gadn2.name as attribute_def_name_name2, gaav.value_string AS value_string, gaav.value_integer AS value_integer, gaav.value_floating AS value_floating, gaav.value_member_id AS value_member_id, gadn1.display_name as attribute_def_name_disp_name1, gadn2.display_name as attribute_def_name_disp_name2, gf.name as list_name, gad1.name as name_of_attribute_def1, gad2.name as name_of_attribute_def2, gaa1.notes as attribute_assign_notes1, gaa2.notes as attribute_assign_notes2, gaa2.enabled as enabled2, gaa2.enabled_time as enabled_time2, gaa2.disabled_time as disabled_time2, gg.id as group_id, gm.id as member_id, gaa1.id as attribute_assign_id1, gaa2.id as attribute_assign_id2, gadn1.id as attribute_def_name_id1, gadn2.id as attribute_def_name_id2, gad1.id as attribute_def_id1, gad2.id as attribute_def_id2, gaaa1.id as action_id1, gaaa2.id as action_id2, gaav.id AS attribute_assign_value_id from grouper_attribute_assign gaa1, grouper_attribute_assign gaa2, grouper_groups gg, grouper_memberships_all_v gmav, grouper_attribute_def_name gadn1, grouper_attribute_def_name gadn2, grouper_attribute_def gad1, grouper_attribute_def gad2, grouper_members gm, grouper_fields gf, grouper_attr_assign_action gaaa1, grouper_attr_assign_action gaaa2, grouper_attribute_assign_value gaav where gaav.attribute_assign_id = gaa2.id and gaa1.owner_member_id = gmav.member_id and gaa1.owner_group_id = gmav.owner_group_id and gaa2.owner_attribute_assign_id = gaa1.id and gaa1.attribute_def_name_id = gadn1.id and gaa2.attribute_def_name_id = gadn2.id and gadn1.attribute_def_id = gad1.id and gadn2.attribute_def_id = gad2.id and gaa1.enabled = 'T' and gmav.immediate_mship_enabled = 'T' and gmav.field_id = gf.id and gmav.member_id = gm.id and gmav.owner_group_id = gg.id and gf.type = 'list' and gaa1.owner_member_id is not null and gaa1.owner_group_id is not null and gaa1.attribute_assign_action_id = gaaa1.id and gaa2.attribute_assign_action_id = gaaa2.id ; COMMENT ON VIEW grouper_aval_asn_asn_efmship_v IS 'grouper_aval_asn_asn_efmship_v: attribute assigned to an assignment of an attribute to an effective membership, and related cols and values (multiple rows if multiple values, no rows if no values)'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.group_name IS 'group_name: name of group in membership assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.source_id IS 'source_id: source of the subject that belongs to the member'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.subject_id IS 'subject_id: subject_id of the subject that belongs to the member'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.action1 IS 'action1: the action associated with the original attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.action2 IS 'action2: the action associated with this attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.attribute_def_name_name1 IS 'attribute_def_name_name1: name of the original attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.attribute_def_name_name2 IS 'attribute_def_name_name2: name of the new attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.value_string IS 'value_string: if this is a string attributeDef, then this is the string'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.value_integer IS 'value_integer: if this is an integer attributeDef, then this is the integer'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.value_floating IS 'value_floating: if this is a floating attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.value_member_id IS 'value_member_id: if this is a memberId attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.attribute_def_name_disp_name1 IS 'attribute_def_name_disp_name1: display name of the original attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.attribute_def_name_disp_name2 IS 'attribute_def_name_disp_name2: display name of the new attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.list_name IS 'list_name: name of list in membership assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.name_of_attribute_def1 IS 'name_of_attribute_def1: name of the original attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.name_of_attribute_def2 IS 'name_of_attribute_def2: name of the new attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.attribute_assign_notes1 IS 'attribute_assign_notes1: notes related to the original attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.attribute_assign_notes2 IS 'attribute_assign_notes2: notes related to the new attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.enabled2 IS 'enabled2: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.enabled_time2 IS 'enabled_time2: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.disabled_time2 IS 'disabled_time2: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.group_id IS 'group_id: group id of the membership assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.member_id IS 'member_id: internal grouper member uuid of the membership assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.attribute_assign_id1 IS 'attribute_assign_id1: id of the original attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.attribute_assign_id2 IS 'attribute_assign_id2: id of the new attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.attribute_def_name_id1 IS 'attribute_def_name_id1: id of the original attribute definition name'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.attribute_def_name_id2 IS 'attribute_def_name_id2: id of the new attribute definition name'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.attribute_def_id1 IS 'attribute_def_id1: id of the original attribute definition'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.attribute_def_id2 IS 'attribute_def_id2: id of the new attribute definition'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.action_id1 IS 'action_id1: id of the attribute assign action of the original assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.action_id2 IS 'action_id2: id of the attribute assign action assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_efmship_v.attribute_assign_value_id IS 'attribute_assign_value_id: the id of the value'; CREATE VIEW grouper_aval_asn_asn_stem_v (stem_name, action1, action2, attribute_def_name_name1, attribute_def_name_name2, value_string, value_integer, value_floating, value_member_id, stem_display_name, attribute_def_name_disp_name1, attribute_def_name_disp_name2, name_of_attribute_def1, name_of_attribute_def2, attribute_assign_notes1, attribute_assign_notes2, enabled2, enabled_time2, disabled_time2, stem_id, attribute_assign_id1, attribute_assign_id2, attribute_def_name_id1, attribute_def_name_id2, attribute_def_id1, attribute_def_id2, action_id1, action_id2, attribute_assign_value_id) AS select gs.name as stem_name, gaaa1.name as action1, gaaa2.name as action2, gadn1.name as attribute_def_name_name1, gadn2.name as attribute_def_name_name2, gaav.value_string AS value_string, gaav.value_integer AS value_integer, gaav.value_floating AS value_floating, gaav.value_member_id AS value_member_id, gs.display_name as stem_display_name, gadn1.display_name as attribute_def_name_disp_name1, gadn2.display_name as attribute_def_name_disp_name2, gad1.name as name_of_attribute_def1, gad2.name as name_of_attribute_def2, gaa1.notes as attribute_assign_notes1, gaa2.notes as attribute_assign_notes2, gaa2.enabled as enabled2, gaa2.enabled_time as enabled_time2, gaa2.disabled_time as disabled_time2, gs.id as stem_id, gaa1.id as attribute_assign_id1, gaa2.id as attribute_assign_id2, gadn1.id as attribute_def_name_id1, gadn2.id as attribute_def_name_id2, gad1.id as attribute_def_id1, gad2.id as attribute_def_id2, gaaa1.id as action_id1, gaaa2.id as action_id2, gaav.id AS attribute_assign_value_id from grouper_attribute_assign gaa1, grouper_attribute_assign gaa2, grouper_stems gs, grouper_attribute_def_name gadn1, grouper_attribute_def_name gadn2, grouper_attribute_def gad1, grouper_attribute_def gad2, grouper_attr_assign_action gaaa1, grouper_attr_assign_action gaaa2, grouper_attribute_assign_value gaav where gaav.attribute_assign_id = gaa2.id and gaa1.id = gaa2.owner_attribute_assign_id and gaa1.attribute_def_name_id = gadn1.id and gaa2.attribute_def_name_id = gadn2.id and gadn1.attribute_def_id = gad1.id and gadn2.attribute_def_id = gad2.id and gaa1.enabled = 'T' and gs.id = gaa1.owner_stem_id and gaa1.attribute_assign_action_id = gaaa1.id and gaa2.attribute_assign_action_id = gaaa2.id ; COMMENT ON VIEW grouper_aval_asn_asn_stem_v IS 'grouper_aval_asn_asn_stem_v: attribute assigned to an assignment of attribute to a stem, and related cols and values (multiple rows if multiple values, no rows if no values)'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.stem_name IS 'stem_name: name of stem assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.action1 IS 'action1: the action associated with the original attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.action2 IS 'action2: the action associated with this attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.attribute_def_name_name1 IS 'attribute_def_name_name1: name of the original attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.attribute_def_name_name2 IS 'attribute_def_name_name2: name of the current attribute definition name which is assigned to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.value_string IS 'value_string: if this is a string attributeDef, then this is the string'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.value_integer IS 'value_integer: if this is an integer attributeDef, then this is the integer'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.value_floating IS 'value_floating: if this is a floating attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.value_member_id IS 'value_member_id: if this is a memberId attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.stem_display_name IS 'stem_display_name: display name of the stem assigned an attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.attribute_def_name_disp_name1 IS 'attribute_def_name_disp_name1: display name of the attribute definition name assigned to the original attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.attribute_def_name_disp_name2 IS 'attribute_def_name_disp_name2: display name of the attribute definition name assigned to the new attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.name_of_attribute_def1 IS 'name_of_attribute_def1: name of the attribute definition associated with the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.name_of_attribute_def2 IS 'name_of_attribute_def2: name of the attribute definition associated with the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.attribute_assign_notes1 IS 'attribute_assign_notes1: notes related to the original attribute assignment to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.attribute_assign_notes2 IS 'attribute_assign_notes2: notes related to the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.enabled2 IS 'enabled2: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.enabled_time2 IS 'enabled_time2: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.disabled_time2 IS 'disabled_time2: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.stem_id IS 'stem_id: stem id of the stem assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.attribute_assign_id1 IS 'attribute_assign_id1: id of the original attribute assignment to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.attribute_assign_id2 IS 'attribute_assign_id2: id of the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.attribute_def_name_id1 IS 'attribute_def_name_id1: id of the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.attribute_def_name_id2 IS 'attribute_def_name_id2: id of the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.attribute_def_id1 IS 'attribute_def_id1: id of the original attribute definition assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.attribute_def_id2 IS 'attribute_def_id2: id of the new attribute definition assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.action_id1 IS 'action_id1: id of the attribute assign action of the original assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.action_id2 IS 'action_id2: id of the attribute assign action assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_stem_v.attribute_assign_value_id IS 'attribute_assign_value_id: the id of the value'; CREATE VIEW grouper_aval_asn_asn_member_v (source_id, subject_id, action1, action2, attribute_def_name_name1, attribute_def_name_name2, value_string, value_integer, value_floating, value_member_id, attribute_def_name_disp_name1, attribute_def_name_disp_name2, name_of_attribute_def1, name_of_attribute_def2, attribute_assign_notes1, attribute_assign_notes2, enabled2, enabled_time2, disabled_time2, member_id, attribute_assign_id1, attribute_assign_id2, attribute_def_name_id1, attribute_def_name_id2, attribute_def_id1, attribute_def_id2, action_id1, action_id2, attribute_assign_value_id) AS select gm.subject_source as source_id, gm.subject_id, gaaa1.name as action1, gaaa2.name as action2, gadn1.name as attribute_def_name_name1, gadn2.name as attribute_def_name_name2, gaav.value_string AS value_string, gaav.value_integer AS value_integer, gaav.value_floating AS value_floating, gaav.value_member_id AS value_member_id, gadn1.display_name as attribute_def_name_disp_name1, gadn2.display_name as attribute_def_name_disp_name2, gad1.name as name_of_attribute_def1, gad2.name as name_of_attribute_def2, gaa1.notes as attribute_assign_notes1, gaa2.notes as attribute_assign_notes2, gaa2.enabled as enabled2, gaa2.enabled_time as enabled_time2, gaa2.disabled_time as disabled_time2, gm.id as member_id, gaa1.id as attribute_assign_id1, gaa2.id as attribute_assign_id2, gadn1.id as attribute_def_name_id1, gadn2.id as attribute_def_name_id2, gad1.id as attribute_def_id1, gad2.id as attribute_def_id2, gaaa1.id as action_id1, gaaa2.id as action_id2, gaav.id AS attribute_assign_value_id from grouper_attribute_assign gaa1, grouper_attribute_assign gaa2, grouper_members gm, grouper_attribute_def_name gadn1, grouper_attribute_def_name gadn2, grouper_attribute_def gad1, grouper_attribute_def gad2, grouper_attr_assign_action gaaa1, grouper_attr_assign_action gaaa2, grouper_attribute_assign_value gaav where gaav.attribute_assign_id = gaa2.id and gaa1.id = gaa2.owner_attribute_assign_id and gaa1.attribute_def_name_id = gadn1.id and gaa2.attribute_def_name_id = gadn2.id and gadn1.attribute_def_id = gad1.id and gadn2.attribute_def_id = gad2.id and gaa1.enabled = 'T' and gm.id = gaa1.owner_member_id and gaa1.owner_group_id is null and gaa1.attribute_assign_action_id = gaaa1.id and gaa2.attribute_assign_action_id = gaaa2.id ; COMMENT ON VIEW grouper_aval_asn_asn_member_v IS 'grouper_aval_asn_asn_member_v: attribute assigned to an assignment of an attribute to a member, and related cols and values (multiple rows if multiple values, no rows if no values)'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.source_id IS 'source_id: source id of the member assigned the original attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.subject_id IS 'subject_id: subject id of the member assigned the original attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.action1 IS 'action1: the action associated with the original attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.action2 IS 'action2: the action associated with this attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.attribute_def_name_name1 IS 'attribute_def_name_name1: name of the original attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.attribute_def_name_name2 IS 'attribute_def_name_name2: name of the current attribute definition name which is assigned to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.value_string IS 'value_string: if this is a string attributeDef, then this is the string'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.value_integer IS 'value_integer: if this is an integer attributeDef, then this is the integer'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.value_floating IS 'value_floating: if this is a floating attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.value_member_id IS 'value_member_id: if this is a memberId attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.attribute_def_name_disp_name1 IS 'attribute_def_name_disp_name1: display name of the attribute definition name assigned to the original attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.attribute_def_name_disp_name2 IS 'attribute_def_name_disp_name2: display name of the attribute definition name assigned to the new attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.name_of_attribute_def1 IS 'name_of_attribute_def1: name of the attribute definition associated with the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.name_of_attribute_def2 IS 'name_of_attribute_def2: name of the attribute definition associated with the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.attribute_assign_notes1 IS 'attribute_assign_notes1: notes related to the original attribute assignment to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.attribute_assign_notes2 IS 'attribute_assign_notes2: notes related to the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.enabled2 IS 'enabled2: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.enabled_time2 IS 'enabled_time2: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.disabled_time2 IS 'disabled_time2: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.member_id IS 'member_id: member id of the member assigned the original attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.attribute_assign_id1 IS 'attribute_assign_id1: id of the original attribute assignment to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.attribute_assign_id2 IS 'attribute_assign_id2: id of the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.attribute_def_name_id1 IS 'attribute_def_name_id1: id of the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.attribute_def_name_id2 IS 'attribute_def_name_id2: id of the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.attribute_def_id1 IS 'attribute_def_id1: id of the original attribute definition assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.attribute_def_id2 IS 'attribute_def_id2: id of the new attribute definition assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.action_id1 IS 'action_id1: id of the attribute assign action of the original assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.action_id2 IS 'action_id2: id of the attribute assign action assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_member_v.attribute_assign_value_id IS 'attribute_assign_value_id: the id of the value'; CREATE VIEW grouper_aval_asn_asn_mship_v (group_name, source_id, subject_id, action1, action2, attribute_def_name_name1, attribute_def_name_name2, value_string, value_integer, value_floating, value_member_id, attribute_def_name_disp_name1, attribute_def_name_disp_name2, list_name, name_of_attribute_def1, name_of_attribute_def2, attribute_assign_notes1, attribute_assign_notes2, enabled2, enabled_time2, disabled_time2, group_id, membership_id, member_id, attribute_assign_id1, attribute_assign_id2, attribute_def_name_id1, attribute_def_name_id2, attribute_def_id1, attribute_def_id2, action_id1, action_id2, attribute_assign_value_id) AS select gg.name as group_name, gm.subject_source as source_id, gm.subject_id, gaaa1.name as action1, gaaa2.name as action2, gadn1.name as attribute_def_name_name1, gadn2.name as attribute_def_name_name2, gaav.value_string AS value_string, gaav.value_integer AS value_integer, gaav.value_floating AS value_floating, gaav.value_member_id AS value_member_id, gadn1.display_name as attribute_def_name_disp_name1, gadn2.display_name as attribute_def_name_disp_name2, gf.name as list_name, gad1.name as name_of_attribute_def1, gad2.name as name_of_attribute_def2, gaa1.notes as attribute_assign_notes1, gaa2.notes as attribute_assign_notes2, gaa2.enabled as enabled2, gaa2.enabled_time as enabled_time2, gaa2.disabled_time as disabled_time2, gg.id as group_id, gms.id as membership_id, gm.id as member_id, gaa1.id as attribute_assign_id1, gaa2.id as attribute_assign_id2, gadn1.id as attribute_def_name_id1, gadn2.id as attribute_def_name_id2, gad1.id as attribute_def_id1, gad2.id as attribute_def_id2, gaaa1.id as action_id1, gaaa2.id as action_id2, gaav.id AS attribute_assign_value_id from grouper_attribute_assign gaa1, grouper_attribute_assign gaa2, grouper_groups gg, grouper_memberships gms, grouper_attribute_def_name gadn1, grouper_attribute_def_name gadn2, grouper_attribute_def gad1, grouper_attribute_def gad2, grouper_members gm, grouper_fields gf, grouper_attr_assign_action gaaa1, grouper_attr_assign_action gaaa2, grouper_attribute_assign_value gaav where gaav.attribute_assign_id = gaa2.id and gaa1.owner_membership_id = gms.id and gaa2.owner_attribute_assign_id = gaa1.id and gaa1.attribute_def_name_id = gadn1.id and gaa2.attribute_def_name_id = gadn2.id and gadn1.attribute_def_id = gad1.id and gadn2.attribute_def_id = gad2.id and gaa1.enabled = 'T' and gms.field_id = gf.id and gms.member_id = gm.id and gms.owner_group_id = gg.id and gf.type = 'list' and gaa1.attribute_assign_action_id = gaaa1.id and gaa2.attribute_assign_action_id = gaaa2.id ; COMMENT ON VIEW grouper_aval_asn_asn_mship_v IS 'grouper_aval_asn_asn_mship_v: attribute assigned to an assignment of an attribute to a membership, and related cols and values (multiple rows if multiple values, no rows if no values)'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.group_name IS 'group_name: name of group in membership assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.source_id IS 'source_id: source of the subject that belongs to the member'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.subject_id IS 'subject_id: subject_id of the subject that belongs to the member'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.action1 IS 'action1: the action associated with the original attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.action2 IS 'action2: the action associated with this attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.attribute_def_name_name1 IS 'attribute_def_name_name1: name of the original attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.attribute_def_name_name2 IS 'attribute_def_name_name2: name of the new attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.value_string IS 'value_string: if this is a string attributeDef, then this is the string'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.value_integer IS 'value_integer: if this is an integer attributeDef, then this is the integer'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.value_floating IS 'value_floating: if this is a floating attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.value_member_id IS 'value_member_id: if this is a memberId attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.attribute_def_name_disp_name1 IS 'attribute_def_name_disp_name1: display name of the original attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.attribute_def_name_disp_name2 IS 'attribute_def_name_disp_name2: display name of the new attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.list_name IS 'list_name: name of list in membership assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.name_of_attribute_def1 IS 'name_of_attribute_def1: name of the original attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.name_of_attribute_def2 IS 'name_of_attribute_def2: name of the new attribute definition associated with the attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.attribute_assign_notes1 IS 'attribute_assign_notes1: notes related to the original attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.attribute_assign_notes2 IS 'attribute_assign_notes2: notes related to the new attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.enabled2 IS 'enabled2: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.enabled_time2 IS 'enabled_time2: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.disabled_time2 IS 'disabled_time2: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.group_id IS 'group_id: group id of the membership assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.membership_id IS 'membership_id: membership id assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.member_id IS 'member_id: internal grouper member uuid of the membership assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.attribute_assign_id1 IS 'attribute_assign_id1: id of the original attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.attribute_assign_id2 IS 'attribute_assign_id2: id of the new attribute assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.attribute_def_name_id1 IS 'attribute_def_name_id1: id of the original attribute definition name'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.attribute_def_name_id2 IS 'attribute_def_name_id2: id of the new attribute definition name'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.attribute_def_id1 IS 'attribute_def_id1: id of the original attribute definition'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.attribute_def_id2 IS 'attribute_def_id2: id of the new attribute definition'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.action_id1 IS 'action_id1: id of the attribute assign action of the original assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.action_id2 IS 'action_id2: id of the attribute assign action assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_mship_v.attribute_assign_value_id IS 'attribute_assign_value_id: the id of the value'; CREATE VIEW grouper_aval_asn_asn_attrdef_v (name_of_attr_def_assigned_to, action1, action2, attribute_def_name_name1, attribute_def_name_name2, value_string, value_integer, value_floating, value_member_id, attribute_def_name_disp_name1, attribute_def_name_disp_name2, name_of_attribute_def1, name_of_attribute_def2, attribute_assign_notes1, attribute_assign_notes2, enabled2, enabled_time2, disabled_time2, id_of_attr_def_assigned_to, attribute_assign_id1, attribute_assign_id2, attribute_def_name_id1, attribute_def_name_id2, attribute_def_id1, attribute_def_id2, action_id1, action_id2, attribute_assign_value_id) AS select gad.name as name_of_attr_def_assigned_to, gaaa1.name as action1, gaaa2.name as action2, gadn1.name as attribute_def_name_name1, gadn2.name as attribute_def_name_name2, gaav.value_string AS value_string, gaav.value_integer AS value_integer, gaav.value_floating AS value_floating, gaav.value_member_id AS value_member_id, gadn1.display_name as attribute_def_name_disp_name1, gadn2.display_name as attribute_def_name_disp_name2, gad1.name as name_of_attribute_def1, gad2.name as name_of_attribute_def2, gaa1.notes as attribute_assign_notes1, gaa2.notes as attribute_assign_notes2, gaa2.enabled as enabled2, gaa2.enabled_time as enabled_time2, gaa2.disabled_time as disabled_time2, gad.id as id_of_attr_def_assigned_to, gaa1.id as attribute_assign_id1, gaa2.id as attribute_assign_id2, gadn1.id as attribute_def_name_id1, gadn2.id as attribute_def_name_id2, gad1.id as attribute_def_id1, gad2.id as attribute_def_id2, gaaa1.id as action_id1, gaaa2.id as action_id2, gaav.id AS attribute_assign_value_id from grouper_attribute_assign gaa1, grouper_attribute_assign gaa2, grouper_attribute_def gad, grouper_attribute_def_name gadn1, grouper_attribute_def_name gadn2, grouper_attribute_def gad1, grouper_attribute_def gad2, grouper_attr_assign_action gaaa1, grouper_attr_assign_action gaaa2, grouper_attribute_assign_value gaav where gaav.attribute_assign_id = gaa2.id and gaa1.id = gaa2.owner_attribute_assign_id and gaa1.attribute_def_name_id = gadn1.id and gaa2.attribute_def_name_id = gadn2.id and gadn1.attribute_def_id = gad1.id and gadn2.attribute_def_id = gad2.id and gaa1.enabled = 'T' and gad.id = gaa1.owner_attribute_def_id and gaa1.attribute_assign_action_id = gaaa1.id and gaa2.attribute_assign_action_id = gaaa2.id ; COMMENT ON VIEW grouper_aval_asn_asn_attrdef_v IS 'grouper_aval_asn_asn_attrdef_v: attribute assigned to an assignment of an attribute to an attribute definition, and related cols and values (multiple rows if multiple values, no rows if no values)'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.name_of_attr_def_assigned_to IS 'name_of_attr_def_assigned_to: name of attribute_def originally assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.action1 IS 'action1: the action associated with the original attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.action2 IS 'action2: the action associated with this attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.attribute_def_name_name1 IS 'attribute_def_name_name1: name of the original attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.attribute_def_name_name2 IS 'attribute_def_name_name2: name of the current attribute definition name which is assigned to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.value_string IS 'value_string: if this is a string attributeDef, then this is the string'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.value_integer IS 'value_integer: if this is an integer attributeDef, then this is the integer'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.value_floating IS 'value_floating: if this is a floating attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.value_member_id IS 'value_member_id: if this is a memberId attributeDef, then this is the value'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.attribute_def_name_disp_name1 IS 'attribute_def_name_disp_name1: display name of the attribute definition name assigned to the original attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.attribute_def_name_disp_name2 IS 'attribute_def_name_disp_name2: display name of the attribute definition name assigned to the new attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.name_of_attribute_def1 IS 'name_of_attribute_def1: name of the attribute definition associated with the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.name_of_attribute_def2 IS 'name_of_attribute_def2: name of the attribute definition associated with the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.attribute_assign_notes1 IS 'attribute_assign_notes1: notes related to the original attribute assignment to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.attribute_assign_notes2 IS 'attribute_assign_notes2: notes related to the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.enabled2 IS 'enabled2: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.enabled_time2 IS 'enabled_time2: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.disabled_time2 IS 'disabled_time2: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.id_of_attr_def_assigned_to IS 'id_of_attr_def_assigned_to: id of the attribute def assigned the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.attribute_assign_id1 IS 'attribute_assign_id1: id of the original attribute assignment to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.attribute_assign_id2 IS 'attribute_assign_id2: id of the new attribute assignment to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.attribute_def_name_id1 IS 'attribute_def_name_id1: id of the original attribute definition name assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.attribute_def_name_id2 IS 'attribute_def_name_id2: id of the new attribute definition name assigned to the assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.attribute_def_id1 IS 'attribute_def_id1: id of the original attribute definition assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.attribute_def_id2 IS 'attribute_def_id2: id of the new attribute definition assigned to the attribute'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.action_id1 IS 'action_id1: id of the attribute assign action of the original assignment'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.action_id2 IS 'action_id2: id of the attribute assign action assigned to the group'; COMMENT ON COLUMN grouper_aval_asn_asn_attrdef_v.attribute_assign_value_id IS 'attribute_assign_value_id: the id of the value'; CREATE VIEW grouper_attr_def_priv_v (subject_id, subject_source_id, field_name, attribute_def_name, attribute_def_description, attribute_def_type, attribute_def_stem_id, attribute_def_id, member_id, field_id, immediate_membership_id, membership_id) AS select distinct gm.subject_id, gm.subject_source as subject_source_id, gf.name as field_name, gad.name as attribute_def_name, gad.description as attribute_def_description, gad.attribute_def_type, gad.stem_id as attribute_def_stem_id, gad.id as attribute_def_id, gm.id as member_id, gmav.field_id, gmav.immediate_membership_id, gmav.membership_id from grouper_memberships_all_v gmav, grouper_attribute_def gad, grouper_fields gf, grouper_members gm where gmav.owner_attr_def_id = gad.id and gmav.field_id = gf.id and gmav.immediate_mship_enabled = 'T' and gmav.member_id = gm.id ; COMMENT ON VIEW grouper_attr_def_priv_v IS 'grouper_attr_def_priv_v: shows all privileges internal to grouper of attribute defs'; COMMENT ON COLUMN grouper_attr_def_priv_v.subject_id IS 'subject_id: of who has the priv'; COMMENT ON COLUMN grouper_attr_def_priv_v.subject_source_id IS 'subject_source_id: source id of the subject with the priv'; COMMENT ON COLUMN grouper_attr_def_priv_v.field_name IS 'field_name: field name of priv, e.g. attrView, attrRead, attrAdmin, attrUpdate, attrOptin, attrOptout, attrDefAttrRead, attrDefAttrUpdate'; COMMENT ON COLUMN grouper_attr_def_priv_v.attribute_def_name IS 'attribute_def_name: name of attribute definition'; COMMENT ON COLUMN grouper_attr_def_priv_v.attribute_def_description IS 'attribute_def_description: description of the attribute def'; COMMENT ON COLUMN grouper_attr_def_priv_v.attribute_def_type IS 'attribute_def_type: type of attribute, e.g. attribute, privilege, domain'; COMMENT ON COLUMN grouper_attr_def_priv_v.attribute_def_stem_id IS 'attribute_def_stem_id: id of stem the attribute def is in'; COMMENT ON COLUMN grouper_attr_def_priv_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_attr_def_priv_v.member_id IS 'member_id: id of the subject in the members table'; COMMENT ON COLUMN grouper_attr_def_priv_v.field_id IS 'field_id: id of the field of membership'; COMMENT ON COLUMN grouper_attr_def_priv_v.immediate_membership_id IS 'immediate_membership_id: id of the membership in the memberships table'; COMMENT ON COLUMN grouper_attr_def_priv_v.membership_id IS 'membership_id: id of the membership in the membership all view'; CREATE VIEW grouper_perms_assigned_role_v (role_name, action, attribute_def_name_name, attribute_def_name_disp_name, role_display_name, attribute_assign_delegatable, enabled, enabled_time, disabled_time, role_id, attribute_def_id, attribute_def_name_id, action_id, role_set_depth, attr_def_name_set_depth, attr_assign_action_set_depth, attribute_assign_id, assignment_notes, disallowed, permission_type) AS SELECT distinct gr.name AS role_name, gaaa.name AS action, gadn.name AS attribute_def_name_name, gadn.display_name AS attribute_def_name_disp_name, gr.display_name AS role_display_name, gaa.attribute_assign_delegatable, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gr.ID AS role_id, gadn.attribute_def_id, gadn.ID AS attribute_def_name_id, gaaa.ID AS action_id, grs.DEPTH AS role_set_depth, gadns.DEPTH AS attr_def_name_set_depth, gaaas.DEPTH AS attr_assign_action_set_depth, gaa.ID AS attribute_assign_id, gaa.notes AS assignment_notes, gaa.disallowed, 'role' AS permission_type FROM grouper_groups gr, grouper_role_set grs, grouper_attribute_def gad, grouper_attribute_assign gaa, grouper_attribute_def_name gadn, grouper_attribute_def_name_set gadns, grouper_attr_assign_action gaaa, grouper_attr_assign_action_set gaaas WHERE grs.if_has_role_id = gr.id and gr.type_of_group = 'role' AND gadn.attribute_def_id = gad.id AND gad.attribute_def_type = 'perm' AND gaa.owner_group_id = grs.then_has_role_id AND gaa.attribute_def_name_id = gadns.if_has_attribute_def_name_id AND gadn.id = gadns.then_has_attribute_def_name_id AND gaa.attribute_assign_type = 'group' AND gaa.attribute_assign_action_id = gaaas.if_has_attr_assn_action_id AND gaaa.id = gaaas.then_has_attr_assn_action_id ; COMMENT ON VIEW grouper_perms_assigned_role_v IS 'grouper_perms_assigned_role_v: shows all permissions assigned to roles'; COMMENT ON COLUMN grouper_perms_assigned_role_v.role_name IS 'role_name: name of the role that the user is in and that has the permission'; COMMENT ON COLUMN grouper_perms_assigned_role_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_perms_assigned_role_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_perms_assigned_role_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_perms_assigned_role_v.role_display_name IS 'role_display_name: display name of role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_perms_assigned_role_v.attribute_assign_delegatable IS 'attribute_assign_delegatable: if this assignment is delegatable or grantable: TRUE, FALSE, GRANT'; COMMENT ON COLUMN grouper_perms_assigned_role_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_perms_assigned_role_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_perms_assigned_role_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_perms_assigned_role_v.role_id IS 'role_id: id of role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_perms_assigned_role_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_perms_assigned_role_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_perms_assigned_role_v.action_id IS 'action_id: id of the attribute assign action'; COMMENT ON COLUMN grouper_perms_assigned_role_v.role_set_depth IS 'role_set_depth: depth of role hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_perms_assigned_role_v.attr_def_name_set_depth IS 'attr_def_name_set_depth: depth of attribute def name set hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_perms_assigned_role_v.attr_assign_action_set_depth IS 'attr_assign_action_set_depth: depth of action hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_perms_assigned_role_v.attribute_assign_id IS 'attribute_assign_id: id of the underlying attribute assign'; COMMENT ON COLUMN grouper_perms_assigned_role_v.assignment_notes IS 'assignment_notes: notes on this assignment'; COMMENT ON COLUMN grouper_perms_assigned_role_v.disallowed IS 'disallowed: if permission is disallowed from a wider allow, null means false'; COMMENT ON COLUMN grouper_perms_assigned_role_v.permission_type IS 'permission_type: role since these are role assignments'; CREATE VIEW grouper_perms_role_v (role_name, subject_source_id, subject_id, action, attribute_def_name_name, attribute_def_name_disp_name, role_display_name, attribute_assign_delegatable, enabled, enabled_time, disabled_time, role_id, attribute_def_id, member_id, attribute_def_name_id, action_id, membership_depth, role_set_depth, attr_def_name_set_depth, attr_assign_action_set_depth, membership_id, attribute_assign_id, permission_type, assignment_notes, immediate_mship_enabled_time, immediate_mship_disabled_time, disallowed) AS select distinct gr.name as role_name, gm.subject_source as subject_source_id, gm.subject_id, gaaa.name as action, gadn.name as attribute_def_name_name, gadn.display_name as attribute_def_name_disp_name, gr.display_name as role_display_name, gaa.attribute_assign_delegatable, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gr.id as role_id, gadn.attribute_def_id, gm.id as member_id, gadn.id as attribute_def_name_id, gaaa.id as action_id, gmav.depth AS membership_depth, grs.depth AS role_set_depth, gadns.depth AS attr_def_name_set_depth, gaaas.depth AS attr_assign_action_set_depth, gmav.membership_id as membership_id, gaa.id AS attribute_assign_id, 'role' as permission_type, gaa.notes as assignment_notes, gmav.immediate_mship_enabled_time, gmav.immediate_mship_disabled_time, gaa.disallowed from grouper_groups gr, grouper_memberships_all_v gmav, grouper_members gm, grouper_fields gf, grouper_role_set grs, grouper_attribute_def gad, grouper_attribute_assign gaa, grouper_attribute_def_name gadn, grouper_attribute_def_name_set gadns, grouper_attr_assign_action gaaa, grouper_attr_assign_action_set gaaas where gmav.owner_group_id = gr.id and gmav.field_id = gf.id and gr.type_of_group = 'role' and gf.type = 'list' and gf.name = 'members' and gmav.immediate_mship_enabled = 'T' and gmav.member_id = gm.id and grs.if_has_role_id = gr.id and gadn.attribute_def_id = gad.id and gad.attribute_def_type = 'perm' and gaa.owner_group_id = grs.then_has_role_id and gaa.attribute_def_name_id = gadns.if_has_attribute_def_name_id and gadn.id = gadns.then_has_attribute_def_name_id and gaa.attribute_assign_type = 'group' and gaa.attribute_assign_action_id = gaaas.if_has_attr_assn_action_id and gaaa.id = gaaas.then_has_attr_assn_action_id ; COMMENT ON VIEW grouper_perms_role_v IS 'grouper_perms_role_v: shows all permissions assigned to users due to the users being in a role, and the role being assigned the permission'; COMMENT ON COLUMN grouper_perms_role_v.role_name IS 'role_name: name of the role that the user is in and that has the permission'; COMMENT ON COLUMN grouper_perms_role_v.subject_source_id IS 'subject_source_id: source id of the subject which is in the role and thus has the permission'; COMMENT ON COLUMN grouper_perms_role_v.subject_id IS 'subject_id: subject id of the subject which is in the role and thus has the permission'; COMMENT ON COLUMN grouper_perms_role_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_perms_role_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_perms_role_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_perms_role_v.role_display_name IS 'role_display_name: display name of role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_perms_role_v.attribute_assign_delegatable IS 'attribute_assign_delegatable: if this assignment is delegatable or grantable: TRUE, FALSE, GRANT'; COMMENT ON COLUMN grouper_perms_role_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_perms_role_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_perms_role_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_perms_role_v.role_id IS 'role_id: id of role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_perms_role_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_perms_role_v.member_id IS 'member_id: id of the subject in the members table'; COMMENT ON COLUMN grouper_perms_role_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_perms_role_v.action_id IS 'action_id: id of the attribute assign action'; COMMENT ON COLUMN grouper_perms_role_v.membership_depth IS 'membership_depth: depth of membership, 0 is immediate'; COMMENT ON COLUMN grouper_perms_role_v.role_set_depth IS 'role_set_depth: depth of role hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_perms_role_v.attr_def_name_set_depth IS 'attr_def_name_set_depth: depth of attribute def name set hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_perms_role_v.attr_assign_action_set_depth IS 'attr_assign_action_set_depth: depth of action hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_perms_role_v.membership_id IS 'membership_id: id of the underlying membership'; COMMENT ON COLUMN grouper_perms_role_v.attribute_assign_id IS 'attribute_assign_id: id of the underlying attribute assign'; COMMENT ON COLUMN grouper_perms_role_v.permission_type IS 'permission_type: role or role_subject for assignment to role or to role subject pair'; COMMENT ON COLUMN grouper_perms_role_v.assignment_notes IS 'assignment_notes: notes on this assignment'; COMMENT ON COLUMN grouper_perms_role_v.immediate_mship_enabled_time IS 'immediate_mship_enabled_time: time this membership was enabled'; COMMENT ON COLUMN grouper_perms_role_v.immediate_mship_disabled_time IS 'immediate_mship_disabled_time: time this membership will be disabled'; COMMENT ON COLUMN grouper_perms_role_v.disallowed IS 'disallowed: if permission is disallowed from a wider allow, null means false'; CREATE VIEW grouper_perms_role_subject_v (role_name, subject_source_id, subject_id, action, attribute_def_name_name, attribute_def_name_disp_name, role_display_name, attribute_assign_delegatable, enabled, enabled_time, disabled_time, role_id, attribute_def_id, member_id, attribute_def_name_id, action_id, membership_depth, role_set_depth, attr_def_name_set_depth, attr_assign_action_set_depth, membership_id, attribute_assign_id, permission_type, assignment_notes, immediate_mship_enabled_time, immediate_mship_disabled_time, disallowed) AS SELECT DISTINCT gr.name AS role_name, gm.subject_source AS subject_source_id, gm.subject_id, gaaa.name AS ACTION, gadn.name AS attribute_def_name_name, gadn.display_name AS attribute_def_name_disp_name, gr.display_name AS role_display_name, gaa.attribute_assign_delegatable, gaa.enabled, gaa.enabled_time, gaa.disabled_time, gr.id AS role_id, gadn.attribute_def_id, gm.id AS member_id, gadn.id AS attribute_def_name_id, gaaa.id AS action_id, gmav.depth AS membership_depth, -1 AS role_set_depth, gadns.depth AS attr_def_name_set_depth, gaaas.depth AS attr_assign_action_set_depth, gmav.membership_id as membership_id, gaa.id as attribute_assign_id, 'role_subject' as permission_type, gaa.notes as assignment_notes, gmav.immediate_mship_enabled_time, gmav.immediate_mship_disabled_time, gaa.disallowed FROM grouper_groups gr, grouper_memberships_all_v gmav, grouper_members gm, grouper_fields gf, grouper_attribute_def gad, grouper_attribute_assign gaa, grouper_attribute_def_name gadn, grouper_attribute_def_name_set gadns, grouper_attr_assign_action gaaa, grouper_attr_assign_action_set gaaas WHERE gmav.owner_group_id = gr.id and gr.type_of_group = 'role' and gmav.field_id = gf.id and gmav.owner_group_id = gaa.owner_group_id AND gmav.member_id = gaa.owner_member_id AND gf.type = 'list' AND gf.name = 'members' AND gmav.immediate_mship_enabled = 'T' AND gmav.member_id = gm.id AND gadn.attribute_def_id = gad.id AND gad.attribute_def_type = 'perm' AND gaa.attribute_assign_type = 'any_mem' AND gaa.attribute_def_name_id = gadns.if_has_attribute_def_name_id AND gadn.id = gadns.then_has_attribute_def_name_id AND gaa.attribute_assign_action_id = gaaas.if_has_attr_assn_action_id AND gaaa.id = gaaas.then_has_attr_assn_action_id ; COMMENT ON VIEW grouper_perms_role_subject_v IS 'grouper_perms_role_subject_v: shows all permissions assigned to users directly while in a role'; COMMENT ON COLUMN grouper_perms_role_subject_v.role_name IS 'role_name: name of the role that the user is in and that has the permission'; COMMENT ON COLUMN grouper_perms_role_subject_v.subject_source_id IS 'subject_source_id: source id of the subject which is in the role and thus has the permission'; COMMENT ON COLUMN grouper_perms_role_subject_v.subject_id IS 'subject_id: subject id of the subject which is in the role and thus has the permission'; COMMENT ON COLUMN grouper_perms_role_subject_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_perms_role_subject_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_perms_role_subject_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_perms_role_subject_v.role_display_name IS 'role_display_name: display name of role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_perms_role_subject_v.attribute_assign_delegatable IS 'attribute_assign_delegatable: if this assignment is delegatable or grantable: TRUE, FALSE, GRANT'; COMMENT ON COLUMN grouper_perms_role_subject_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_perms_role_subject_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_perms_role_subject_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_perms_role_subject_v.role_id IS 'role_id: id of role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_perms_role_subject_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_perms_role_subject_v.member_id IS 'member_id: id of the subject in the members table'; COMMENT ON COLUMN grouper_perms_role_subject_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_perms_role_subject_v.action_id IS 'action_id: id of the attribute assign action'; COMMENT ON COLUMN grouper_perms_role_subject_v.membership_depth IS 'membership_depth: depth of membership, 0 is immediate'; COMMENT ON COLUMN grouper_perms_role_subject_v.role_set_depth IS 'role_set_depth: depth of role hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_perms_role_subject_v.attr_def_name_set_depth IS 'attr_def_name_set_depth: depth of attribute def name set hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_perms_role_subject_v.attr_assign_action_set_depth IS 'attr_assign_action_set_depth: depth of action hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_perms_role_subject_v.membership_id IS 'membership_id: id of the underlying membership'; COMMENT ON COLUMN grouper_perms_role_subject_v.attribute_assign_id IS 'attribute_assign_id: id of the underlying attribute assign'; COMMENT ON COLUMN grouper_perms_role_subject_v.permission_type IS 'permission_type: role or role_subject for assignment to role or to role subject pair'; COMMENT ON COLUMN grouper_perms_role_subject_v.assignment_notes IS 'assignment_notes: notes on this assignment'; COMMENT ON COLUMN grouper_perms_role_subject_v.immediate_mship_enabled_time IS 'immediate_mship_enabled_time: time this membership was enabled'; COMMENT ON COLUMN grouper_perms_role_subject_v.immediate_mship_disabled_time IS 'immediate_mship_disabled_time: time this membership will be disabled'; COMMENT ON COLUMN grouper_perms_role_subject_v.disallowed IS 'disallowed: if permission is disallowed from a wider allow, null means false'; CREATE VIEW grouper_perms_all_v (role_name, subject_source_id, subject_id, action, attribute_def_name_name, attribute_def_name_disp_name, role_display_name, attribute_assign_delegatable, enabled, enabled_time, disabled_time, role_id, attribute_def_id, member_id, attribute_def_name_id, action_id, membership_depth, role_set_depth, attr_def_name_set_depth, attr_assign_action_set_depth, membership_id, attribute_assign_id, permission_type, assignment_notes, immediate_mship_enabled_time, immediate_mship_disabled_time, disallowed) AS select role_name, subject_source_id, subject_id, action, attribute_def_name_name, attribute_def_name_disp_name, role_display_name, attribute_assign_delegatable, enabled, enabled_time, disabled_time, role_id, attribute_def_id, member_id, attribute_def_name_id, action_id, membership_depth, role_set_depth, attr_def_name_set_depth, attr_assign_action_set_depth, membership_id, attribute_assign_id, permission_type, assignment_notes, immediate_mship_enabled_time, immediate_mship_disabled_time, disallowed from grouper_perms_role_v union select role_name, subject_source_id, subject_id, action, attribute_def_name_name, attribute_def_name_disp_name, role_display_name, attribute_assign_delegatable, enabled, enabled_time, disabled_time, role_id, attribute_def_id, member_id, attribute_def_name_id, action_id, membership_depth, role_set_depth, attr_def_name_set_depth, attr_assign_action_set_depth, membership_id, attribute_assign_id, permission_type, assignment_notes, immediate_mship_enabled_time, immediate_mship_disabled_time, disallowed from grouper_perms_role_subject_v ; COMMENT ON VIEW grouper_perms_all_v IS 'grouper_perms_all_v: shows all permissions assigned to users directly while in a role, or assigned to roles (and users in the role)'; COMMENT ON COLUMN grouper_perms_all_v.role_name IS 'role_name: name of the role that the user is in and that has the permission'; COMMENT ON COLUMN grouper_perms_all_v.subject_source_id IS 'subject_source_id: source id of the subject which is in the role and thus has the permission'; COMMENT ON COLUMN grouper_perms_all_v.subject_id IS 'subject_id: subject id of the subject which is in the role and thus has the permission'; COMMENT ON COLUMN grouper_perms_all_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_perms_all_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_perms_all_v.attribute_def_name_disp_name IS 'attribute_def_name_disp_name: display name of the attribute definition name assigned to the attribute'; COMMENT ON COLUMN grouper_perms_all_v.role_display_name IS 'role_display_name: display name of role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_perms_all_v.attribute_assign_delegatable IS 'attribute_assign_delegatable: if this assignment is delegatable or grantable: TRUE, FALSE, GRANT'; COMMENT ON COLUMN grouper_perms_all_v.enabled IS 'enabled: if this assignment is enabled: T, F'; COMMENT ON COLUMN grouper_perms_all_v.enabled_time IS 'enabled_time: the time (seconds since 1970) that this assignment will be enabled'; COMMENT ON COLUMN grouper_perms_all_v.disabled_time IS 'disabled_time: the time (seconds since 1970) that this assignment will be disabled'; COMMENT ON COLUMN grouper_perms_all_v.role_id IS 'role_id: id of role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_perms_all_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_perms_all_v.member_id IS 'member_id: id of the subject in the members table'; COMMENT ON COLUMN grouper_perms_all_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_perms_all_v.action_id IS 'action_id: id of the attribute assign action'; COMMENT ON COLUMN grouper_perms_all_v.membership_depth IS 'membership_depth: depth of membership, 0 is immediate'; COMMENT ON COLUMN grouper_perms_all_v.role_set_depth IS 'role_set_depth: depth of role hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_perms_all_v.attr_def_name_set_depth IS 'attr_def_name_set_depth: depth of attribute def name set hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_perms_all_v.attr_assign_action_set_depth IS 'attr_assign_action_set_depth: depth of action hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_perms_all_v.membership_id IS 'membership_id: id of the underlying membership'; COMMENT ON COLUMN grouper_perms_all_v.attribute_assign_id IS 'attribute_assign_id: id of the underlying attribute assign'; COMMENT ON COLUMN grouper_perms_all_v.permission_type IS 'permission_type: role or role_subject for assignment to role or to role subject pair'; COMMENT ON COLUMN grouper_perms_all_v.assignment_notes IS 'assignment_notes: notes on this assignment'; COMMENT ON COLUMN grouper_perms_all_v.immediate_mship_enabled_time IS 'immediate_mship_enabled_time: time this membership was enabled'; COMMENT ON COLUMN grouper_perms_all_v.immediate_mship_disabled_time IS 'immediate_mship_disabled_time: time this membership will be disabled'; COMMENT ON COLUMN grouper_perms_all_v.disallowed IS 'disallowed: if permission is disallowed from a wider allow, null means false'; CREATE VIEW grouper_pit_perms_role_v (role_name, subject_source_id, subject_id, action, attribute_def_name_name, role_id, attribute_def_id, member_id, attribute_def_name_id, action_id, membership_depth, role_set_depth, attr_def_name_set_depth, attr_assign_action_set_depth, membership_id, group_set_id, role_set_id, attribute_def_name_set_id, action_set_id, attribute_assign_id, permission_type, group_set_active, group_set_start_time, group_set_end_time, membership_active, membership_start_time, membership_end_time, role_set_active, role_set_start_time, role_set_end_time, action_set_active, action_set_start_time, action_set_end_time, attr_def_name_set_active, attr_def_name_set_start_time, attr_def_name_set_end_time, attribute_assign_active, attribute_assign_start_time, attribute_assign_end_time, disallowed, action_source_id, role_source_id, attribute_def_name_source_id, attribute_def_source_id, member_source_id, membership_source_id, attribute_assign_source_id) AS select distinct gr.name as role_name, gm.subject_source as subject_source_id, gm.subject_id, gaaa.name as action, gadn.name as attribute_def_name_name, gr.id as role_id, gadn.attribute_def_id, gm.id as member_id, gadn.id as attribute_def_name_id, gaaa.id as action_id, gmav.depth AS membership_depth, grs.depth AS role_set_depth, gadns.depth AS attr_def_name_set_depth, gaaas.depth AS attr_assign_action_set_depth, gmav.membership_id as membership_id, gmav.group_set_id as group_set_id, grs.id as role_set_id, gadns.id as attribute_def_name_set_id, gaaas.id as action_set_id, gaa.id AS attribute_assign_id, 'role' as permission_type, gmav.group_set_active, gmav.group_set_start_time, gmav.group_set_end_time, gmav.membership_active, gmav.membership_start_time, gmav.membership_end_time, grs.active as role_set_active, grs.start_time as role_set_start_time, grs.end_time as role_set_end_time, gaaas.active as action_set_active, gaaas.start_time as action_set_start_time, gaaas.end_time as action_set_end_time, gadns.active as attr_def_name_set_active, gadns.start_time as attr_def_name_set_start_time, gadns.end_time as attr_def_name_set_end_time, gaa.active as attribute_assign_active, gaa.start_time as attribute_assign_start_time, gaa.end_time as attribute_assign_end_time, gaa.disallowed,gaaa.source_id as action_source_id, gr.source_id as role_source_id, gadn.source_id as attribute_def_name_source_id, gad.source_id as attribute_def_source_id, gm.source_id as member_source_id, gmav.membership_source_id as membership_source_id, gaa.source_id as attribute_assign_source_id from grouper_pit_groups gr, grouper_pit_memberships_all_v gmav, grouper_pit_members gm, grouper_pit_fields gf, grouper_pit_role_set grs, grouper_pit_attribute_def gad, grouper_pit_attribute_assign gaa, grouper_pit_attr_def_name gadn, grouper_pit_attr_def_name_set gadns, grouper_pit_attr_assn_actn gaaa, grouper_pit_attr_assn_actn_set gaaas where gmav.owner_group_id = gr.id and gmav.field_id = gf.id and gf.type = 'list' and gf.name = 'members' and gmav.member_id = gm.id and grs.if_has_role_id = gr.id and gadn.attribute_def_id = gad.id and gad.attribute_def_type = 'perm' and gaa.owner_group_id = grs.then_has_role_id and gaa.attribute_def_name_id = gadns.if_has_attribute_def_name_id and gadn.id = gadns.then_has_attribute_def_name_id and gaa.attribute_assign_type = 'group' and gaa.attribute_assign_action_id = gaaas.if_has_attr_assn_action_id and gaaa.id = gaaas.then_has_attr_assn_action_id ; COMMENT ON VIEW grouper_pit_perms_role_v IS 'grouper_pit_perms_role_v: shows all permissions assigned to users due to the users being in a role, and the role being assigned the permission'; COMMENT ON COLUMN grouper_pit_perms_role_v.role_name IS 'role_name: name of the role that the user is in and that has the permission'; COMMENT ON COLUMN grouper_pit_perms_role_v.subject_source_id IS 'subject_source_id: source id of the subject which is in the role and thus has the permission'; COMMENT ON COLUMN grouper_pit_perms_role_v.subject_id IS 'subject_id: subject id of the subject which is in the role and thus has the permission'; COMMENT ON COLUMN grouper_pit_perms_role_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_pit_perms_role_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_pit_perms_role_v.role_id IS 'role_id: id of role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_pit_perms_role_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_pit_perms_role_v.member_id IS 'member_id: id of the subject in the members table'; COMMENT ON COLUMN grouper_pit_perms_role_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_pit_perms_role_v.action_id IS 'action_id: id of the attribute assign action'; COMMENT ON COLUMN grouper_pit_perms_role_v.membership_depth IS 'membership_depth: depth of membership, 0 is immediate'; COMMENT ON COLUMN grouper_pit_perms_role_v.role_set_depth IS 'role_set_depth: depth of role hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_pit_perms_role_v.attr_def_name_set_depth IS 'attr_def_name_set_depth: depth of attribute def name set hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_pit_perms_role_v.attr_assign_action_set_depth IS 'attr_assign_action_set_depth: depth of action hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_pit_perms_role_v.membership_id IS 'membership_id: id of the immediate or composite membership in grouper_pit_memberships'; COMMENT ON COLUMN grouper_pit_perms_role_v.group_set_id IS 'group_set_id: id of the group set'; COMMENT ON COLUMN grouper_pit_perms_role_v.role_set_id IS 'role_set_id: id of the role set'; COMMENT ON COLUMN grouper_pit_perms_role_v.attribute_def_name_set_id IS 'attribute_def_name_set_id: id of the attribute def name set'; COMMENT ON COLUMN grouper_pit_perms_role_v.action_set_id IS 'action_set_id: id of the action set'; COMMENT ON COLUMN grouper_pit_perms_role_v.attribute_assign_id IS 'attribute_assign_id: id of the underlying attribute assign'; COMMENT ON COLUMN grouper_pit_perms_role_v.permission_type IS 'permission_type: role or role_subject for assignment to role or to role subject pair'; COMMENT ON COLUMN grouper_pit_perms_role_v.group_set_active IS 'group_set_active: whether the group set is currently active'; COMMENT ON COLUMN grouper_pit_perms_role_v.group_set_start_time IS 'group_set_start_time: start time of group set'; COMMENT ON COLUMN grouper_pit_perms_role_v.group_set_end_time IS 'group_set_end_time: end time of group set'; COMMENT ON COLUMN grouper_pit_perms_role_v.membership_active IS 'membership_active: whether the membership is currently active'; COMMENT ON COLUMN grouper_pit_perms_role_v.membership_start_time IS 'membership_start_time: start time of membership'; COMMENT ON COLUMN grouper_pit_perms_role_v.membership_end_time IS 'membership_end_time: end time of membership'; COMMENT ON COLUMN grouper_pit_perms_role_v.role_set_active IS 'role_set_active: whether the role set is currently active'; COMMENT ON COLUMN grouper_pit_perms_role_v.role_set_start_time IS 'role_set_start_time: start time of role set'; COMMENT ON COLUMN grouper_pit_perms_role_v.role_set_end_time IS 'role_set_end_time: end time of role set'; COMMENT ON COLUMN grouper_pit_perms_role_v.action_set_active IS 'action_set_active: whether the action set is currently active'; COMMENT ON COLUMN grouper_pit_perms_role_v.action_set_start_time IS 'action_set_start_time: start time of action set'; COMMENT ON COLUMN grouper_pit_perms_role_v.action_set_end_time IS 'action_set_end_time: end time of action set'; COMMENT ON COLUMN grouper_pit_perms_role_v.attr_def_name_set_active IS 'attr_def_name_set_active: whether the attribute def name set is currently active'; COMMENT ON COLUMN grouper_pit_perms_role_v.attr_def_name_set_start_time IS 'attr_def_name_set_start_time: start time of attribute def name set'; COMMENT ON COLUMN grouper_pit_perms_role_v.attr_def_name_set_end_time IS 'attr_def_name_set_end_time: end time of attribute def name set'; COMMENT ON COLUMN grouper_pit_perms_role_v.attribute_assign_active IS 'attribute_assign_active: whether the attribute assign is currently active'; COMMENT ON COLUMN grouper_pit_perms_role_v.attribute_assign_start_time IS 'attribute_assign_start_time: start time of attribute assign'; COMMENT ON COLUMN grouper_pit_perms_role_v.attribute_assign_end_time IS 'attribute_assign_end_time: end time of attribute assign'; COMMENT ON COLUMN grouper_pit_perms_role_v.disallowed IS 'disallowed: if permission is disallowed from a wider allow, null means false'; COMMENT ON COLUMN grouper_pit_perms_role_v.action_source_id IS 'action_source_id: id of the actual (non-pit) attribute assign action'; COMMENT ON COLUMN grouper_pit_perms_role_v.role_source_id IS 'role_source_id: id of the actual (non-pit) role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_pit_perms_role_v.attribute_def_name_source_id IS 'attribute_def_name_source_id: id of the actual (non-pit) attribute definition name'; COMMENT ON COLUMN grouper_pit_perms_role_v.attribute_def_source_id IS 'attribute_def_source_id: id of the actual (non-pit) attribute definition'; COMMENT ON COLUMN grouper_pit_perms_role_v.member_source_id IS 'member_source_id: id of the actual (non-pit) subject in the members table'; COMMENT ON COLUMN grouper_pit_perms_role_v.membership_source_id IS 'membership_source_id: id of the actual (non-pit) immediate or composite membership'; COMMENT ON COLUMN grouper_pit_perms_role_v.attribute_assign_source_id IS 'attribute_assign_source_id: id of the actual (non-pit) attribute assign'; CREATE VIEW grouper_pit_perms_role_subj_v (role_name, subject_source_id, subject_id, action, attribute_def_name_name, role_id, attribute_def_id, member_id, attribute_def_name_id, action_id, membership_depth, role_set_depth, attr_def_name_set_depth, attr_assign_action_set_depth, membership_id, group_set_id, role_set_id, attribute_def_name_set_id, action_set_id, attribute_assign_id, permission_type, group_set_active, group_set_start_time, group_set_end_time, membership_active, membership_start_time, membership_end_time, role_set_active, role_set_start_time, role_set_end_time, action_set_active, action_set_start_time, action_set_end_time, attr_def_name_set_active, attr_def_name_set_start_time, attr_def_name_set_end_time, attribute_assign_active, attribute_assign_start_time, attribute_assign_end_time, disallowed, action_source_id, role_source_id, attribute_def_name_source_id, attribute_def_source_id, member_source_id, membership_source_id, attribute_assign_source_id) AS SELECT DISTINCT gr.name AS role_name, gm.subject_source AS subject_source_id, gm.subject_id, gaaa.name AS ACTION, gadn.name AS attribute_def_name_name, gr.id AS role_id, gadn.attribute_def_id, gm.id AS member_id, gadn.id AS attribute_def_name_id, gaaa.id AS action_id, gmav.depth AS membership_depth, -1 AS role_set_depth, gadns.depth AS attr_def_name_set_depth, gaaas.depth AS attr_assign_action_set_depth, gmav.membership_id as membership_id, gmav.group_set_id as group_set_id, grs.id as role_set_id, gadns.id as attribute_def_name_set_id, gaaas.id as action_set_id, gaa.id as attribute_assign_id, 'role_subject' as permission_type, gmav.group_set_active, gmav.group_set_start_time, gmav.group_set_end_time, gmav.membership_active, gmav.membership_start_time, gmav.membership_end_time, grs.active as role_set_active, grs.start_time as role_set_start_time, grs.end_time as role_set_end_time, gaaas.active as action_set_active, gaaas.start_time as action_set_start_time, gaaas.end_time as action_set_end_time, gadns.active as attr_def_name_set_active, gadns.start_time as attr_def_name_set_start_time, gadns.end_time as attr_def_name_set_end_time, gaa.active as attribute_assign_active, gaa.start_time as attribute_assign_start_time, gaa.end_time as attribute_assign_end_time, gaa.disallowed, gaaa.source_id as action_source_id, gr.source_id as role_source_id, gadn.source_id as attribute_def_name_source_id, gad.source_id as attribute_def_source_id, gm.source_id as member_source_id, gmav.membership_source_id as membership_source_id, gaa.source_id as attribute_assign_source_id FROM grouper_pit_groups gr, grouper_pit_memberships_all_v gmav, grouper_pit_members gm, grouper_pit_fields gf, grouper_pit_role_set grs, grouper_pit_attribute_def gad, grouper_pit_attribute_assign gaa, grouper_pit_attr_def_name gadn, grouper_pit_attr_def_name_set gadns, grouper_pit_attr_assn_actn gaaa, grouper_pit_attr_assn_actn_set gaaas WHERE gmav.owner_group_id = gr.id and gmav.field_id = gf.id and gmav.owner_group_id = gaa.owner_group_id AND gmav.member_id = gaa.owner_member_id AND gf.type = 'list' AND gf.name = 'members' AND gmav.member_id = gm.id AND gadn.attribute_def_id = gad.id AND gad.attribute_def_type = 'perm' AND gaa.attribute_assign_type = 'any_mem' AND gaa.attribute_def_name_id = gadns.if_has_attribute_def_name_id AND gadn.id = gadns.then_has_attribute_def_name_id AND gaa.attribute_assign_action_id = gaaas.if_has_attr_assn_action_id AND gaaa.id = gaaas.then_has_attr_assn_action_id AND grs.if_has_role_id = gr.id and grs.depth='0' ; COMMENT ON VIEW grouper_pit_perms_role_subj_v IS 'grouper_pit_perms_role_subj_v: shows all permissions assigned to users directly while in a role'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.role_name IS 'role_name: name of the role that the user is in and that has the permission'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.subject_source_id IS 'subject_source_id: source id of the subject which is in the role and thus has the permission'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.subject_id IS 'subject_id: subject id of the subject which is in the role and thus has the permission'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.role_id IS 'role_id: id of role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.member_id IS 'member_id: id of the subject in the members table'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.action_id IS 'action_id: id of the attribute assign action'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.membership_depth IS 'membership_depth: depth of membership, 0 is immediate'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.role_set_depth IS 'role_set_depth: depth of role hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attr_def_name_set_depth IS 'attr_def_name_set_depth: depth of attribute def name set hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attr_assign_action_set_depth IS 'attr_assign_action_set_depth: depth of action hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.membership_id IS 'membership_id: id of the immediate or composite membership in grouper_pit_memberships'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.group_set_id IS 'group_set_id: id of the group set'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.role_set_id IS 'role_set_id: id of the role set'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attribute_def_name_set_id IS 'attribute_def_name_set_id: id of the attribute def name set'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.action_set_id IS 'action_set_id: id of the action set'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attribute_assign_id IS 'attribute_assign_id: id of the underlying attribute assign'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.permission_type IS 'permission_type: role or role_subject for assignment to role or to role subject pair'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.group_set_active IS 'group_set_active: whether the group set is currently active'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.group_set_start_time IS 'group_set_start_time: start time of group set'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.group_set_end_time IS 'group_set_end_time: end time of group set'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.membership_active IS 'membership_active: whether the membership is currently active'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.membership_start_time IS 'membership_start_time: start time of membership'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.membership_end_time IS 'membership_end_time: end time of membership'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.role_set_active IS 'role_set_active: whether the role set is currently active'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.role_set_start_time IS 'role_set_start_time: start time of role set'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.role_set_end_time IS 'role_set_end_time: end time of role set'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.action_set_active IS 'action_set_active: whether the action set is currently active'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.action_set_start_time IS 'action_set_start_time: start time of action set'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.action_set_end_time IS 'action_set_end_time: end time of action set'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attr_def_name_set_active IS 'attr_def_name_set_active: whether the attribute def name set is currently active'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attr_def_name_set_start_time IS 'attr_def_name_set_start_time: start time of attribute def name set'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attr_def_name_set_end_time IS 'attr_def_name_set_end_time: end time of attribute def name set'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attribute_assign_active IS 'attribute_assign_active: whether the attribute assign is currently active'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attribute_assign_start_time IS 'attribute_assign_start_time: start time of attribute assign'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attribute_assign_end_time IS 'attribute_assign_end_time: end time of attribute assign'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.disallowed IS 'disallowed: if permission is disallowed from a wider allow, null means false'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.action_source_id IS 'action_source_id: id of the actual (non-pit) attribute assign action'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.role_source_id IS 'role_source_id: id of the actual (non-pit) role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attribute_def_name_source_id IS 'attribute_def_name_source_id: id of the actual (non-pit) attribute definition name'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attribute_def_source_id IS 'attribute_def_source_id: id of the actual (non-pit) attribute definition'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.member_source_id IS 'member_source_id: id of the actual (non-pit) subject in the members table'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.membership_source_id IS 'membership_source_id: id of the actual (non-pit) immediate or composite membership'; COMMENT ON COLUMN grouper_pit_perms_role_subj_v.attribute_assign_source_id IS 'attribute_assign_source_id: id of the actual (non-pit) attribute assign'; CREATE VIEW grouper_pit_perms_all_v (role_name, subject_source_id, subject_id, action, attribute_def_name_name, role_id, attribute_def_id, member_id, attribute_def_name_id, action_id, membership_depth, role_set_depth, attr_def_name_set_depth, attr_assign_action_set_depth, membership_id, group_set_id, role_set_id, attribute_def_name_set_id, action_set_id, attribute_assign_id, permission_type, group_set_active, group_set_start_time, group_set_end_time, membership_active, membership_start_time, membership_end_time, role_set_active, role_set_start_time, role_set_end_time, action_set_active, action_set_start_time, action_set_end_time, attr_def_name_set_active, attr_def_name_set_start_time, attr_def_name_set_end_time, attribute_assign_active, attribute_assign_start_time, attribute_assign_end_time, disallowed, action_source_id, role_source_id, attribute_def_name_source_id, attribute_def_source_id, member_source_id, membership_source_id, attribute_assign_source_id) AS select role_name, subject_source_id, subject_id, action, attribute_def_name_name, role_id, attribute_def_id, member_id, attribute_def_name_id, action_id, membership_depth, role_set_depth, attr_def_name_set_depth, attr_assign_action_set_depth, membership_id, group_set_id, role_set_id, attribute_def_name_set_id, action_set_id, attribute_assign_id, permission_type, group_set_active, group_set_start_time, group_set_end_time, membership_active, membership_start_time, membership_end_time, role_set_active, role_set_start_time, role_set_end_time, action_set_active, action_set_start_time, action_set_end_time, attr_def_name_set_active, attr_def_name_set_start_time, attr_def_name_set_end_time, attribute_assign_active, attribute_assign_start_time, attribute_assign_end_time, disallowed, action_source_id, role_source_id, attribute_def_name_source_id, attribute_def_source_id, member_source_id, membership_source_id, attribute_assign_source_id from grouper_pit_perms_role_v union select role_name, subject_source_id, subject_id, action, attribute_def_name_name, role_id, attribute_def_id, member_id, attribute_def_name_id, action_id, membership_depth, role_set_depth, attr_def_name_set_depth, attr_assign_action_set_depth, membership_id, group_set_id, role_set_id, attribute_def_name_set_id, action_set_id, attribute_assign_id, permission_type, group_set_active, group_set_start_time, group_set_end_time, membership_active, membership_start_time, membership_end_time, role_set_active, role_set_start_time, role_set_end_time, action_set_active, action_set_start_time, action_set_end_time, attr_def_name_set_active, attr_def_name_set_start_time, attr_def_name_set_end_time, attribute_assign_active, attribute_assign_start_time, attribute_assign_end_time, disallowed, action_source_id, role_source_id, attribute_def_name_source_id, attribute_def_source_id, member_source_id, membership_source_id, attribute_assign_source_id from grouper_pit_perms_role_subj_v ; COMMENT ON VIEW grouper_pit_perms_all_v IS 'grouper_pit_perms_all_v: shows all permissions assigned to users directly while in a role, or assigned to roles (and users in the role)'; COMMENT ON COLUMN grouper_pit_perms_all_v.role_name IS 'role_name: name of the role that the user is in and that has the permission'; COMMENT ON COLUMN grouper_pit_perms_all_v.subject_source_id IS 'subject_source_id: source id of the subject which is in the role and thus has the permission'; COMMENT ON COLUMN grouper_pit_perms_all_v.subject_id IS 'subject_id: subject id of the subject which is in the role and thus has the permission'; COMMENT ON COLUMN grouper_pit_perms_all_v.action IS 'action: the action associated with the attribute assignment (default is assign)'; COMMENT ON COLUMN grouper_pit_perms_all_v.attribute_def_name_name IS 'attribute_def_name_name: name of the attribute definition name which is assigned to the group'; COMMENT ON COLUMN grouper_pit_perms_all_v.role_id IS 'role_id: id of role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_pit_perms_all_v.attribute_def_id IS 'attribute_def_id: id of the attribute definition'; COMMENT ON COLUMN grouper_pit_perms_all_v.member_id IS 'member_id: id of the subject in the members table'; COMMENT ON COLUMN grouper_pit_perms_all_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_pit_perms_all_v.action_id IS 'action_id: id of the attribute assign action'; COMMENT ON COLUMN grouper_pit_perms_all_v.membership_depth IS 'membership_depth: depth of membership, 0 is immediate'; COMMENT ON COLUMN grouper_pit_perms_all_v.role_set_depth IS 'role_set_depth: depth of role hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_pit_perms_all_v.attr_def_name_set_depth IS 'attr_def_name_set_depth: depth of attribute def name set hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_pit_perms_all_v.attr_assign_action_set_depth IS 'attr_assign_action_set_depth: depth of action hierarchy, 0 is immediate'; COMMENT ON COLUMN grouper_pit_perms_all_v.membership_id IS 'membership_id: id of the immediate or composite membership in grouper_pit_memberships'; COMMENT ON COLUMN grouper_pit_perms_all_v.group_set_id IS 'group_set_id: id of the group set'; COMMENT ON COLUMN grouper_pit_perms_all_v.role_set_id IS 'role_set_id: id of the role set'; COMMENT ON COLUMN grouper_pit_perms_all_v.attribute_def_name_set_id IS 'attribute_def_name_set_id: id of the attribute def name set'; COMMENT ON COLUMN grouper_pit_perms_all_v.action_set_id IS 'action_set_id: id of the action set'; COMMENT ON COLUMN grouper_pit_perms_all_v.attribute_assign_id IS 'attribute_assign_id: id of the underlying attribute assign'; COMMENT ON COLUMN grouper_pit_perms_all_v.permission_type IS 'permission_type: role or role_subject for assignment to role or to role subject pair'; COMMENT ON COLUMN grouper_pit_perms_all_v.group_set_active IS 'group_set_active: whether the group set is currently active'; COMMENT ON COLUMN grouper_pit_perms_all_v.group_set_start_time IS 'group_set_start_time: start time of group set'; COMMENT ON COLUMN grouper_pit_perms_all_v.group_set_end_time IS 'group_set_end_time: end time of group set'; COMMENT ON COLUMN grouper_pit_perms_all_v.membership_active IS 'membership_active: whether the membership is currently active'; COMMENT ON COLUMN grouper_pit_perms_all_v.membership_start_time IS 'membership_start_time: start time of membership'; COMMENT ON COLUMN grouper_pit_perms_all_v.membership_end_time IS 'membership_end_time: end time of membership'; COMMENT ON COLUMN grouper_pit_perms_all_v.role_set_active IS 'role_set_active: whether the role set is currently active'; COMMENT ON COLUMN grouper_pit_perms_all_v.role_set_start_time IS 'role_set_start_time: start time of role set'; COMMENT ON COLUMN grouper_pit_perms_all_v.role_set_end_time IS 'role_set_end_time: end time of role set'; COMMENT ON COLUMN grouper_pit_perms_all_v.action_set_active IS 'action_set_active: whether the action set is currently active'; COMMENT ON COLUMN grouper_pit_perms_all_v.action_set_start_time IS 'action_set_start_time: start time of action set'; COMMENT ON COLUMN grouper_pit_perms_all_v.action_set_end_time IS 'action_set_end_time: end time of action set'; COMMENT ON COLUMN grouper_pit_perms_all_v.attr_def_name_set_active IS 'attr_def_name_set_active: whether the attribute def name set is currently active'; COMMENT ON COLUMN grouper_pit_perms_all_v.attr_def_name_set_start_time IS 'attr_def_name_set_start_time: start time of attribute def name set'; COMMENT ON COLUMN grouper_pit_perms_all_v.attr_def_name_set_end_time IS 'attr_def_name_set_end_time: end time of attribute def name set'; COMMENT ON COLUMN grouper_pit_perms_all_v.attribute_assign_active IS 'attribute_assign_active: whether the attribute assign is currently active'; COMMENT ON COLUMN grouper_pit_perms_all_v.attribute_assign_start_time IS 'attribute_assign_start_time: start time of attribute assign'; COMMENT ON COLUMN grouper_pit_perms_all_v.attribute_assign_end_time IS 'attribute_assign_end_time: end time of attribute assign'; COMMENT ON COLUMN grouper_pit_perms_all_v.disallowed IS 'disallowed: if permission is disallowed from a wider allow, null means false'; COMMENT ON COLUMN grouper_pit_perms_all_v.action_source_id IS 'action_source_id: id of the actual (non-pit) attribute assign action'; COMMENT ON COLUMN grouper_pit_perms_all_v.role_source_id IS 'role_source_id: id of the actual (non-pit) role the subject is in, and that the permissions are assigned to'; COMMENT ON COLUMN grouper_pit_perms_all_v.attribute_def_name_source_id IS 'attribute_def_name_source_id: id of the actual (non-pit) attribute definition name'; COMMENT ON COLUMN grouper_pit_perms_all_v.attribute_def_source_id IS 'attribute_def_source_id: id of the actual (non-pit) attribute definition'; COMMENT ON COLUMN grouper_pit_perms_all_v.member_source_id IS 'member_source_id: id of the actual (non-pit) subject in the members table'; COMMENT ON COLUMN grouper_pit_perms_all_v.membership_source_id IS 'membership_source_id: id of the actual (non-pit) immediate or composite membership'; COMMENT ON COLUMN grouper_pit_perms_all_v.attribute_assign_source_id IS 'attribute_assign_source_id: id of the actual (non-pit) attribute assign'; CREATE VIEW grouper_pit_attr_asn_value_v (attribute_assign_value_id, attribute_assign_id, attribute_def_name_id, attribute_assign_action_id, attribute_assign_type, owner_attribute_assign_id, owner_attribute_def_id, owner_group_id, owner_member_id, owner_membership_id, owner_stem_id, value_integer, value_floating, value_string, value_member_id, active, start_time, end_time) AS select gpaav.id as attribute_assign_value_id, gpaa.id as attribute_assign_id, gpaa.attribute_def_name_id, gpaa.attribute_assign_action_id, gpaa.attribute_assign_type, gpaa.owner_attribute_assign_id, gpaa.owner_attribute_def_id, gpaa.owner_group_id, gpaa.owner_member_id, gpaa.owner_membership_id, gpaa.owner_stem_id, gpaav.value_integer, gpaav.value_floating, gpaav.value_string, gpaav.value_member_id, gpaav.active, gpaav.start_time, gpaav.end_time from grouper_pit_attribute_assign gpaa, grouper_pit_attr_assn_value gpaav where gpaa.id = gpaav.attribute_assign_id; COMMENT ON VIEW grouper_pit_attr_asn_value_v IS 'grouper_pit_attr_asn_value_v: joins attribute values with their assignments'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.attribute_assign_value_id IS 'attribute_assign_value_id: id of the attribute assign value'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.attribute_assign_id IS 'attribute_assign_id: id of the attribute assignment'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.attribute_def_name_id IS 'attribute_def_name_id: id of the attribute definition name'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.attribute_assign_action_id IS 'attribute_assign_action_id: id of the attribute assign action'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.attribute_assign_type IS 'attribute_assign_type: type of assignment'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.owner_attribute_assign_id IS 'owner_attribute_assign_id: owner id of the attribute assignment if applicable'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.owner_attribute_def_id IS 'owner_attribute_def_id: owner id of the attribute definition if applicable'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.owner_group_id IS 'owner_group_id: owner id of the group if applicable'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.owner_member_id IS 'owner_member_id: owner id of the member if applicable'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.owner_membership_id IS 'owner_membership_id: owner id of the membership if applicable'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.owner_stem_id IS 'owner_stem_id: owner id of the stem if applicable'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.value_integer IS 'value_integer: integer value if applicable'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.value_floating IS 'value_floating: floating point value if applicable'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.value_string IS 'value_string: string value if applicable'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.value_member_id IS 'value_member_id: member id value if applicable'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.active IS 'active: whether the value is currently active'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.start_time IS 'start_time: start time of value'; COMMENT ON COLUMN grouper_pit_attr_asn_value_v.end_time IS 'end_time: end time of value'; CREATE VIEW grouper_stem_set_v (if_has_stem_name, then_has_stem_name, depth, type, parent_if_has_name, parent_then_has_name, id, if_has_stem_id, then_has_stem_id, parent_stem_set_id) AS select ifHas.name as if_has_stem_name , thenHas.name as then_has_stem_name, gss.depth, gss.type, gsParentIfHas.name as parent_if_has_name, gsParentThenHas.name as parent_then_has_name, gss.id, ifHas.id as if_has_stem_id, thenHas.id as then_has_stem_id, gss.parent_stem_set_id from grouper_stem_set gss, grouper_stem_set gssParent, grouper_stems gsParentIfHas, grouper_stems gsParentThenHas, grouper_stems ifHas, grouper_stems thenHas where thenHas.id = gss.then_has_stem_id and ifHas.id = gss.if_has_stem_id and gss.parent_stem_set_id = gssParent.id and gsParentIfHas.id = gssParent.if_has_stem_id and gsParentThenHas.id = gssParent.then_has_stem_id ; COMMENT ON VIEW grouper_stem_set_v IS 'grouper_stem_set_v: shows all stem set relationships'; COMMENT ON COLUMN grouper_stem_set_v.if_has_stem_name IS 'if_has_stem_name: name of the if_has stem'; COMMENT ON COLUMN grouper_stem_set_v.then_has_stem_name IS 'then_has_stem_name: name of the then_has stem'; COMMENT ON COLUMN grouper_stem_set_v.depth IS 'depth: number of hops in the directed graph'; COMMENT ON COLUMN grouper_stem_set_v.type IS 'type: self, immediate, effective'; COMMENT ON COLUMN grouper_stem_set_v.parent_if_has_name IS 'parent_if_has_name: name of the stem record which is the parent ifHas on effective path (everything but last hop)'; COMMENT ON COLUMN grouper_stem_set_v.parent_then_has_name IS 'parent_then_has_name: name of the stem record which is the parent thenHas on effective path (everything but last hop)'; COMMENT ON COLUMN grouper_stem_set_v.id IS 'id: id of the set record'; COMMENT ON COLUMN grouper_stem_set_v.if_has_stem_id IS 'if_has_stem_id: id of the if_has stem'; COMMENT ON COLUMN grouper_stem_set_v.then_has_stem_id IS 'then_has_stem_id: id of the then_has stem'; COMMENT ON COLUMN grouper_stem_set_v.parent_stem_set_id IS 'parent_stem_set_id: id of the stem set record which is the parent on effective path (everything but last hop)'; CREATE VIEW grouper_ext_subj_invite_v (invite_id, invite_member_id, invite_date, email_address, invite_email_when_registered, invite_group_uuids, invite_expire_date, email_body, expire_attr_expire_date, expire_attr_enabled, assignment_expire_date, assignment_enabled, attribute_assign_id) AS SELECT (SELECT gaav.value_string FROM grouper_attr_asn_asn_stem_v gaaasv, grouper_attribute_assign_value gaav WHERE gaaasv.attribute_def_name_name2 = 'etc:attribute:attrExternalSubjectInvite:externalSubjectInviteUuid' AND gaav.attribute_assign_id = gaaasv.attribute_assign_id2 AND gaaasv.attribute_assign_id1 = gaasv.attribute_assign_id) AS invite_id, (SELECT gaav.value_string FROM grouper_attr_asn_asn_stem_v gaaasv, grouper_attribute_assign_value gaav WHERE gaaasv.attribute_def_name_name2 = 'etc:attribute:attrExternalSubjectInvite:externalSubjectInviteMemberId' AND gaav.attribute_assign_id = gaaasv.attribute_assign_id2 AND gaaasv.attribute_assign_id1 = gaasv.attribute_assign_id) AS invite_member_id, (SELECT gaav.value_string FROM grouper_attr_asn_asn_stem_v gaaasv, grouper_attribute_assign_value gaav WHERE gaaasv.attribute_def_name_name2 = 'etc:attribute:attrExternalSubjectInvite:externalSubjectInviteDate' AND gaav.attribute_assign_id = gaaasv.attribute_assign_id2 AND gaaasv.attribute_assign_id1 = gaasv.attribute_assign_id) AS invite_date, (SELECT gaav.value_string FROM grouper_attr_asn_asn_stem_v gaaasv, grouper_attribute_assign_value gaav WHERE gaaasv.attribute_def_name_name2 = 'etc:attribute:attrExternalSubjectInvite:externalSubjectEmailAddress' AND gaav.attribute_assign_id = gaaasv.attribute_assign_id2 AND gaaasv.attribute_assign_id1 = gaasv.attribute_assign_id) AS email_address, (SELECT gaav.value_string FROM grouper_attr_asn_asn_stem_v gaaasv, grouper_attribute_assign_value gaav WHERE gaaasv.attribute_def_name_name2 = 'etc:attribute:attrExternalSubjectInvite:externalSubjectInviteEmailWhenRegistered' AND gaav.attribute_assign_id = gaaasv.attribute_assign_id2 AND gaaasv.attribute_assign_id1 = gaasv.attribute_assign_id) AS invite_email_when_registered, (SELECT gaav.value_string FROM grouper_attr_asn_asn_stem_v gaaasv, grouper_attribute_assign_value gaav WHERE gaaasv.attribute_def_name_name2 = 'etc:attribute:attrExternalSubjectInvite:externalSubjectInviteGroupUuids' AND gaav.attribute_assign_id = gaaasv.attribute_assign_id2 AND gaaasv.attribute_assign_id1 = gaasv.attribute_assign_id) AS invite_group_uuids, (SELECT gaav.value_string FROM grouper_attr_asn_asn_stem_v gaaasv, grouper_attribute_assign_value gaav WHERE gaaasv.attribute_def_name_name2 = 'etc:attribute:attrExternalSubjectInvite:externalSubjectInviteExpireDate' AND gaav.attribute_assign_id = gaaasv.attribute_assign_id2 AND gaaasv.attribute_assign_id1 = gaasv.attribute_assign_id) AS invite_expire_date, (SELECT gaav.value_string FROM grouper_attr_asn_asn_stem_v gaaasv, grouper_attribute_assign_value gaav WHERE gaaasv.attribute_def_name_name2 = 'etc:attribute:attrExternalSubjectInvite:externalSubjectInviteEmail' AND gaav.attribute_assign_id = gaaasv.attribute_assign_id2 AND gaaasv.attribute_assign_id1 = gaasv.attribute_assign_id) AS email_body, (SELECT gaaasv.disabled_time2 FROM grouper_attr_asn_asn_stem_v gaaasv WHERE gaaasv.attribute_def_name_name2 = 'etc:attribute:attrExternalSubjectInvite:externalSubjectInviteExpireDate' AND gaaasv.attribute_assign_id1 = gaasv.attribute_assign_id) AS expire_attr_expire_date, (SELECT gaaasv.enabled2 FROM grouper_attr_asn_asn_stem_v gaaasv WHERE gaaasv.attribute_def_name_name2 = 'etc:attribute:attrExternalSubjectInvite:externalSubjectInviteExpireDate' AND gaaasv.attribute_assign_id1 = gaasv.attribute_assign_id) AS expire_attr_enabled, gaasv.disabled_time AS assignment_expire_date, gaasv.enabled AS assignment_enabled, gaasv.attribute_assign_id FROM grouper_attr_asn_stem_v gaasv WHERE gaasv.attribute_def_name_name = 'etc:attribute:attrExternalSubjectInvite:externalSubjectInvite' AND gaasv.enabled = 'T' ; COMMENT ON VIEW grouper_ext_subj_invite_v IS 'External subject invites pending, waiting for someone to respond'; COMMENT ON COLUMN grouper_ext_subj_invite_v.invite_id IS 'invite_id: id of the invite, in the url of the link'; COMMENT ON COLUMN grouper_ext_subj_invite_v.invite_member_id IS 'invite_member_id: member id of who invited the user'; COMMENT ON COLUMN grouper_ext_subj_invite_v.invite_date IS 'invite_date: date of the invite'; COMMENT ON COLUMN grouper_ext_subj_invite_v.email_address IS 'email_address: email address where the invite went'; COMMENT ON COLUMN grouper_ext_subj_invite_v.invite_email_when_registered IS 'invite_email_when_registered: email sent to this address when person registered'; COMMENT ON COLUMN grouper_ext_subj_invite_v.invite_group_uuids IS 'invite_group_uuids: group uuids that the user should be provisioned to when accepting the invite'; COMMENT ON COLUMN grouper_ext_subj_invite_v.invite_expire_date IS 'invite_expire_date: when the invite expires, attribute value'; COMMENT ON COLUMN grouper_ext_subj_invite_v.email_body IS 'email_body: email body sent to user, might be truncated if too long'; COMMENT ON COLUMN grouper_ext_subj_invite_v.expire_attr_expire_date IS 'expire_attr_expire_date: expire date of the expire attribute assignment'; COMMENT ON COLUMN grouper_ext_subj_invite_v.expire_attr_enabled IS 'expire_attr_enabled: if the expire attribute is enabled'; COMMENT ON COLUMN grouper_ext_subj_invite_v.assignment_expire_date IS 'assignment_expire_date: expire date of the attribute assignment on the stem'; COMMENT ON COLUMN grouper_ext_subj_invite_v.assignment_enabled IS 'assignment_enabled: if the attribute assignment on the stem is enabled'; COMMENT ON COLUMN grouper_ext_subj_invite_v.attribute_assign_id IS 'attribute_assign_id: attribute assign id of the attribute assignment on the stem'; CREATE VIEW grouper_rules_v (assigned_to_type, assigned_to_group_name, assigned_to_stem_name, assigned_to_member_subject_id, assigned_to_attribute_def_name, rule_check_type, rule_check_owner_id, rule_check_owner_name, rule_check_stem_scope, rule_check_arg0, rule_check_arg1, rule_if_condition_el, rule_if_condition_enum, rule_if_condition_enum_arg0, rule_if_condition_enum_arg1, rule_if_owner_id, rule_if_owner_name, rule_if_stem_scope, rule_then_el, rule_then_enum, rule_then_enum_arg0, rule_then_enum_arg1, rule_then_enum_arg2, rule_valid, rule_run_daemon, rule_act_as_subject_id, rule_act_as_subject_identifier, rule_act_as_subject_source_id, assignment_enabled, attribute_assign_id) AS SELECT main_gaa.attribute_assign_type AS assigned_to_type, (SELECT gg.name FROM grouper_groups gg WHERE gg.id = main_gaa.owner_group_id ) AS assigned_to_group_name, (SELECT gs.name FROM grouper_stems gs WHERE gs.id = main_gaa.owner_stem_id ) AS assigned_to_stem_name, (SELECT gm.subject_id FROM grouper_members gm WHERE gm.id = main_gaa.owner_member_id ) AS assigned_to_member_subject_id, (SELECT gad.name FROM grouper_attribute_def gad WHERE gad.id = main_gaa.owner_attribute_def_id ) AS assigned_to_attribute_def_name, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleCheckType' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_check_type, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleCheckOwnerId' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_check_owner_id, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleCheckOwnerName' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_check_owner_name, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleCheckStemScope' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_check_stem_scope, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleCheckArg0' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_check_arg0, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleCheckArg1' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_check_arg1, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleIfConditionEl' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_if_condition_el, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleIfConditionEnum' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_if_condition_enum, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleIfConditionEnumArg0' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_if_condition_enum_arg0, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleIfConditionEnumArg1' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_if_condition_enum_arg1, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleIfOwnerId' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_if_owner_id, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleIfOwnerName' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_if_owner_name, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleIfStemScope' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_if_stem_scope, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleThenEl' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_then_el, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleThenEnum' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_then_enum, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleThenEnumArg0' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_then_enum_arg0, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleThenEnumArg1' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_then_enum_arg1, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleThenEnumArg2' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_then_enum_arg2, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleValid' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_valid, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleRunDaemon' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_run_daemon, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleActAsSubjectId' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_act_as_subject_id, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleActAsSubjectIdentifier' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_act_as_subject_identifier, (SELECT gaav.value_string FROM grouper_attribute_assign gaa, grouper_attribute_assign_value gaav, grouper_attribute_def_name gadn WHERE gadn.name = 'etc:attribute:rules:ruleActAsSubjectSourceId' AND gaav.attribute_assign_id = gaa.id AND gaa.attribute_def_name_id = gadn.id AND gaa.owner_attribute_assign_id = main_gaa.id AND gaa.enabled = 'T') AS rule_act_as_subject_source_id, main_gaa.enabled AS assignment_enabled, main_gaa.id AS attribute_assign_id FROM grouper_attribute_assign main_gaa, grouper_attribute_def_name main_gadn WHERE main_gadn.name = 'etc:attribute:rules:rule' AND main_gaa.attribute_def_name_id = main_gadn.id ; COMMENT ON VIEW grouper_rules_v IS 'Rules setup in grouper'; COMMENT ON COLUMN grouper_rules_v.assigned_to_type IS 'assigned_to_type: attribute_assign_type of rule assignment, e.g. group, stem, etc'; COMMENT ON COLUMN grouper_rules_v.assigned_to_group_name IS 'assigned_to_group_name: if rule is assigned to group, this is the group name'; COMMENT ON COLUMN grouper_rules_v.assigned_to_stem_name IS 'assigned_to_stem_name: if rule is assigned to stem, this is the stem name'; COMMENT ON COLUMN grouper_rules_v.assigned_to_member_subject_id IS 'assigned_to_member_subject_id: if rule is assigned to member, this is the subject id'; COMMENT ON COLUMN grouper_rules_v.assigned_to_attribute_def_name IS 'assigned_to_attribute_def_name: if rule is assigned to attribute_def, this is the name of the attribute_def'; COMMENT ON COLUMN grouper_rules_v.rule_check_type IS 'rule_check_type: RuleCheckType enum of when this rule is fired and how to decides which rules are affected'; COMMENT ON COLUMN grouper_rules_v.rule_check_owner_id IS 'rule_check_owner_id: If the owner is not the object where the rule is assigned, specify id here. Check owner affects when rule is fired. Mutually exclusive with rule_check_owner_name'; COMMENT ON COLUMN grouper_rules_v.rule_check_owner_name IS 'rule_check_owner_name: If the owner is not the object where the rule is assigned, specify name here. Check owner affects when rule is fired. Mutually exclusive with rule_check_owner_id'; COMMENT ON COLUMN grouper_rules_v.rule_check_stem_scope IS 'rule_check_stem_scope: If the owner type is stem, then this is the scope: ONE or SUB'; COMMENT ON COLUMN grouper_rules_v.rule_check_arg0 IS 'rule_check_arg0: If the rule check type has arguments, this is the first'; COMMENT ON COLUMN grouper_rules_v.rule_check_arg1 IS 'rule_check_arg1: If the rule check type has arguments, this is the second'; COMMENT ON COLUMN grouper_rules_v.rule_if_condition_el IS 'rule_if_condition_el: If there is expression language to decide if the rule should fire, it is here. Mutually exclusive with if_condition_enum'; COMMENT ON COLUMN grouper_rules_v.rule_if_condition_enum IS 'rule_if_condition_enum: If the if condition is a built in enum, that IfConditionEnum should be here. Mutually exclusive with if_condition_el'; COMMENT ON COLUMN grouper_rules_v.rule_if_condition_enum_arg0 IS 'rule_if_condition_enum_arg0: If the if_condition_enum has arguments, this is the first'; COMMENT ON COLUMN grouper_rules_v.rule_if_condition_enum_arg1 IS 'rule_if_condition_enum_arg1: If the if_condition_enum has arguments, this is the second'; COMMENT ON COLUMN grouper_rules_v.rule_if_owner_id IS 'rule_if_owner_id: If the if condition enum has an owner, the id is here. Mutually exclusive with rule_if_owner_name'; COMMENT ON COLUMN grouper_rules_v.rule_if_owner_name IS 'rule_if_owner_name: If the if condition enum has an owner, the name is here. Mutually exclusive with rule_if_owner_id'; COMMENT ON COLUMN grouper_rules_v.rule_if_stem_scope IS 'rule_if_stem_scope: If the if condition enum is a stem type, this is the scope, ONE or SUB'; COMMENT ON COLUMN grouper_rules_v.rule_then_el IS 'rule_then_el: Then condition expression language if the rule fires. Mutually exclusive with rule_then_enum'; COMMENT ON COLUMN grouper_rules_v.rule_then_enum IS 'rule_then_enum: then condition built in enum: ThenConditionEnum. Mutually exclusive with rule_then_el'; COMMENT ON COLUMN grouper_rules_v.rule_then_enum_arg0 IS 'rule_then_enum_arg0: If the then condition enum has arguments, this is the first'; COMMENT ON COLUMN grouper_rules_v.rule_then_enum_arg1 IS 'rule_then_enum_arg1: If the then condition enum has arguments, this is the second'; COMMENT ON COLUMN grouper_rules_v.rule_then_enum_arg2 IS 'rule_then_enum_arg2: If the then condition enum has arguments, this is the third'; COMMENT ON COLUMN grouper_rules_v.rule_valid IS 'rule_valid: If the rule is valid, this will be T, else it is the error message'; COMMENT ON COLUMN grouper_rules_v.rule_run_daemon IS 'rule_run_daemon: If this rule should run a daemon. Needs to be daemonable...'; COMMENT ON COLUMN grouper_rules_v.rule_act_as_subject_id IS 'rule_act_as_subject_id: Who this rule should act as when firing. Mutually exclusive with rule_act_as_subject_identifier'; COMMENT ON COLUMN grouper_rules_v.rule_act_as_subject_identifier IS 'rule_act_as_subject_identifier: Who this rule should act as when firing. Mutually exclusive with rule_act_as_subject_id'; COMMENT ON COLUMN grouper_rules_v.rule_act_as_subject_source_id IS 'rule_act_as_subject_source_id: Optional, source id of who this rule should act as'; COMMENT ON COLUMN grouper_rules_v.assignment_enabled IS 'assignment_enabled: If the rule assignment is enabled'; COMMENT ON COLUMN grouper_rules_v.attribute_assign_id IS 'attribute_assign_id: The attribute assign id in the grouper_attribute_assign table for the main rule definition'; CREATE VIEW grouper_service_role_v (service_role, group_name, name_of_service_def_name, subject_source_id, subject_id, field_name, name_of_service_def, group_display_name, group_id, service_def_id, service_name_id, member_id, field_id, display_name_of_service_name, service_stem_id) AS select distinct (CASE gf.name WHEN 'admins' THEN 'admin' WHEN 'updaters' then 'admin' when 'members' then 'user' end ) as service_role, gg.name as group_name, gadn.name as name_of_service_def_name, gm.subject_source as subject_source_id, gm.subject_id, gf.name as field_name, gad.name as name_of_service_def, gg.display_name as group_display_name, gg.id as group_id, gad.id as service_def_id, gadn.id as service_name_id, gm.id as member_id, gf.id as field_id, gadn.display_name as display_name_of_service_name, gaa.owner_stem_id as service_stem_id from grouper_attribute_def_name gadn, grouper_attribute_def gad, grouper_groups gg, grouper_memberships_all_v gmav, grouper_attribute_assign gaa, grouper_stem_set gss, grouper_members gm, grouper_fields gf where gadn.attribute_def_id = gad.id and gad.attribute_def_type='service' and gaa.attribute_def_name_id = gadn.id and gad.assign_to_stem='T' and gmav.field_id = gf.id and gmav.immediate_mship_enabled='T' and gmav.owner_group_id = gg.id and gaa.owner_stem_id = gss.then_has_stem_id and gg.parent_stem=gss.if_has_stem_id and gaa.enabled='T' and gmav.member_id = gm.id and gf.name in ('admins', 'members', 'readers', 'updaters') ; COMMENT ON VIEW grouper_service_role_v IS 'grouper_service_role_v: shows service admin or user relationships to folders/groups'; COMMENT ON COLUMN grouper_service_role_v.service_role IS 'service_role: admin or user is the subject is an admin/updater/reader of a group in the service folder, or user is the subject is a member of a group in the service folder'; COMMENT ON COLUMN grouper_service_role_v.group_name IS 'group_name: group name in the service that the user is an admin or user of'; COMMENT ON COLUMN grouper_service_role_v.name_of_service_def_name IS 'name_of_service_def_name: name of the service dev name, this generally is the system name of the service'; COMMENT ON COLUMN grouper_service_role_v.subject_source_id IS 'subject_source_id: subject source id of the subject who is the admin or user of the service'; COMMENT ON COLUMN grouper_service_role_v.subject_id IS 'subject_id: subject id of the subject who is the admin or user of the service'; COMMENT ON COLUMN grouper_service_role_v.field_name IS 'field_name: field of the membership of the subject who is the admin or user of the service'; COMMENT ON COLUMN grouper_service_role_v.name_of_service_def IS 'name_of_service_def: name of the attribute definition of the service'; COMMENT ON COLUMN grouper_service_role_v.group_display_name IS 'group_display_name: display name of the group that the subject is an admin or user of the service'; COMMENT ON COLUMN grouper_service_role_v.group_id IS 'group_id: group id of the group that the subject is an admin or user of the service'; COMMENT ON COLUMN grouper_service_role_v.service_def_id IS 'service_def_id: id of the attribute definition that is related to the service'; COMMENT ON COLUMN grouper_service_role_v.service_name_id IS 'service_name_id: id of the attribute name that is the service'; COMMENT ON COLUMN grouper_service_role_v.member_id IS 'member_id: id in the member table of the subject who is an admin or user of the service'; COMMENT ON COLUMN grouper_service_role_v.field_id IS 'field_id: id of the field for the membership of the subject who an admin or user of the service'; COMMENT ON COLUMN grouper_service_role_v.display_name_of_service_name IS 'display_name_of_service_name: display name of the service definition name'; COMMENT ON COLUMN grouper_service_role_v.service_stem_id IS 'service_stem_id: id of the stem where the service tag is assigned'; CREATE VIEW grouper_pit_memberships_lw_v (ID, MEMBERSHIP_ID, MEMBERSHIP_SOURCE_ID, GROUP_SET_ID, MEMBER_ID, FIELD_ID, MEMBERSHIP_FIELD_ID, OWNER_ID, OWNER_ATTR_DEF_ID, OWNER_GROUP_ID, OWNER_STEM_ID, GROUP_SET_ACTIVE, GROUP_SET_START_TIME, GROUP_SET_END_TIME, MEMBERSHIP_ACTIVE, MEMBERSHIP_START_TIME, MEMBERSHIP_END_TIME, DEPTH, GROUP_SET_PARENT_ID, THE_START_TIME, THE_END_TIME, THE_ACTIVE) AS select gpmship.id || ':' || gpgs.id as membership_id, gpmship.id as immediate_membership_id, gpmship.source_id as membership_source_id, gpgs.id as group_set_id, gpmship.member_id, gpgs.field_id, gpmship.field_id, gpgs.owner_id, gpgs.owner_attr_def_id, gpgs.owner_group_id, gpgs.owner_stem_id, gpgs.active, gpgs.start_time, gpgs.end_time, gpmship.active, gpmship.start_time, gpmship.end_time, gpgs.depth, gpgs.parent_id as group_set_parent_id, (case when gpgs.start_time >= gpmship.start_time then gpgs.start_time else gpmship.start_time end) as the_start_time, (case when gpgs.end_time is null then gpmship.end_time when gpmship.end_time is null then gpgs.end_time when gpgs.end_time <= gpmship.end_time then gpgs.end_time else gpmship.end_time end) as the_end_time, (case when gpgs.end_time is null and gpmship.end_time is null then 'T' else 'F' end) as the_active from grouper_pit_memberships gpmship, grouper_pit_group_set gpgs where gpmship.owner_id = gpgs.member_id and gpmship.field_id = gpgs.member_field_id and ((gpmship.start_time >= gpgs.start_time and (gpgs.end_time >= gpmship.start_time or gpgs.end_time is null)) or (gpgs.start_time >= gpmship.start_time and (gpmship.end_time >= gpgs.start_time or gpmship.end_time is null))); COMMENT ON VIEW grouper_pit_memberships_lw_v IS 'Grouper_pit_memberships_lw_v holds one record for each immediate, composite and effective membership or privilege in the system that currently exists or has existed in the past for members to groups or stems (for privileges). Note this joins with dates and overlaps so it only contains rows that are applicable and calculates the real start and end time and if active'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.ID IS 'ID: id of this membership'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.MEMBERSHIP_ID IS 'MEMBERSHIP_ID: id of the immediate (or composite) membership that causes this membership'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.MEMBERSHIP_SOURCE_ID IS 'MEMBERSHIP_SOURCE_ID: id of the actual (non-pit) immediate (or composite) membership that causes this membership'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.GROUP_SET_ID IS 'GROUP_SET_ID: id of the group set that causes this membership'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.MEMBER_ID IS 'MEMBER_ID: member id'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.FIELD_ID IS 'FIELD_ID: field id'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.MEMBERSHIP_FIELD_ID IS 'MEMBERSHIP_FIELD_ID: field id of the immediate (or composite) membership that causes this membership'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.OWNER_ID IS 'OWNER_ID: owner id'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.OWNER_ATTR_DEF_ID IS 'OWNER_ATTR_DEF_ID: owner attribute def id if applicable'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.OWNER_GROUP_ID IS 'OWNER_GROUP_ID: owner group id if applicable'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.OWNER_STEM_ID IS 'OWNER_STEM_ID: owner stem id if applicable'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.GROUP_SET_ACTIVE IS 'GROUP_SET_ACTIVE: whether the group set is active'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.GROUP_SET_START_TIME IS 'GROUP_SET_START_TIME: start time of the group set'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.GROUP_SET_END_TIME IS 'GROUP_SET_END_TIME: end time of the group set'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.MEMBERSHIP_ACTIVE IS 'MEMBERSHIP_ACTIVE: whether the immediate (or composite) membership is active'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.MEMBERSHIP_START_TIME IS 'MEMBERSHIP_START_TIME: start time of the immediate (or composite) membership'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.MEMBERSHIP_END_TIME IS 'MEMBERSHIP_END_TIME: end time of the immediate (or composite) membership'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.DEPTH IS 'DEPTH: depth of this membership'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.GROUP_SET_PARENT_ID IS 'GROUP_SET_PARENT_ID: parent group set'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.THE_START_TIME IS 'THE_START_TIME: the real start time of this membership'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.THE_END_TIME IS 'THE_END_TIME: the real end time of this membership'; COMMENT ON COLUMN grouper_pit_memberships_lw_v.THE_ACTIVE IS 'THE_ACTIVE: if this memberships is still active'; CREATE VIEW grouper_pit_mship_group_lw_v (GROUP_NAME, FIELD_NAME, SUBJECT_SOURCE, SUBJECT_ID, MEMBER_ID, FIELD_ID, GROUP_ID, THE_START_TIME, THE_END_TIME, THE_ACTIVE, MEMBERSHIP_ID, IMM_MEMBERSHIP_ID) AS select gpg.name as group_name, gpf.name as field_name, gpm.subject_source, gpm.subject_id, gpm.source_id as member_id, gpf.source_id as field_id, gpg.source_id as group_id, (case when gpgs.start_time >= gpmship.start_time then gpgs.start_time else gpmship.start_time end) as the_start_time, (case when gpgs.end_time is null then gpmship.end_time when gpmship.end_time is null then gpgs.end_time when gpgs.end_time <= gpmship.end_time then gpgs.end_time else gpmship.end_time end) as the_end_time, (case when gpgs.end_time is null and gpmship.end_time is null then 'T' else 'F' end) as the_active, gpmship.source_id || ':' || gpgs.source_id as membership_id, gpmship.source_id as imm_membership_id from grouper_pit_memberships gpmship, grouper_pit_group_set gpgs, grouper_pit_members gpm, grouper_pit_groups gpg, grouper_pit_fields gpf where gpmship.owner_id = gpgs.member_id and gpmship.field_id = gpgs.member_field_id and gpmship.member_id = gpm.ID and gpg.id = gpgs.owner_id and gpgs.FIELD_ID = gpf.ID and ( ( gpmship.start_time >= gpgs.start_time and (gpgs.end_time >= gpmship.start_time or gpgs.end_time is null) ) or ( gpgs.start_time >= gpmship.start_time and (gpmship.end_time >= gpgs.start_time or gpmship.end_time is null) ) ) ; COMMENT ON VIEW grouper_pit_mship_group_lw_v IS 'grouper_pit_mship_group_lw_v holds one record for each immediate, composite and effective membership or privilege in the system that currently exists or has existed in the past for members to groups or stems (for privileges). Note this joins with dates and overlaps so it only contains rows that are applicable and calculates the real start and end time and if active. Holds the group information for memberships or privileges'; COMMENT ON COLUMN grouper_pit_mship_group_lw_v.GROUP_NAME IS 'GROUP_NAME: group name is extension and ancestor folder extensions separated by colons'; COMMENT ON COLUMN grouper_pit_mship_group_lw_v.FIELD_NAME IS 'FIELD_NAME: members, admins, readers, etc'; COMMENT ON COLUMN grouper_pit_mship_group_lw_v.SUBJECT_SOURCE IS 'SUBJECT_SOURCE: subject source id'; COMMENT ON COLUMN grouper_pit_mship_group_lw_v.SUBJECT_ID IS 'SUBJECT_ID: subject id in the source'; COMMENT ON COLUMN grouper_pit_mship_group_lw_v.MEMBER_ID IS 'MEMBER_ID: uuid in the grouper_members table (note, could be different than real one if deleted and/or recreated)'; COMMENT ON COLUMN grouper_pit_mship_group_lw_v.FIELD_ID IS 'FIELD_ID: uuid in the grouper_fields table (note, could be different than real one if deleted and/or recreated)'; COMMENT ON COLUMN grouper_pit_mship_group_lw_v.GROUP_ID IS 'GROUP_ID: uuid of the grouper group (note, could be different than real one if deleted and/or recreated)'; COMMENT ON COLUMN grouper_pit_mship_group_lw_v.THE_START_TIME IS 'THE_START_TIME: micros since 1970 UTC that the membership started'; COMMENT ON COLUMN grouper_pit_mship_group_lw_v.THE_END_TIME IS 'THE_END_TIME: micros since 1970 UTC that the membership ended or null if still active'; COMMENT ON COLUMN grouper_pit_mship_group_lw_v.THE_ACTIVE IS 'THE_ACTIVE: T or F for if this membership is still active'; COMMENT ON COLUMN grouper_pit_mship_group_lw_v.MEMBERSHIP_ID IS 'MEMBERSHIP_ID: membership id and colon and group set id which is the effective membership id. might not exist in grouper if from past'; COMMENT ON COLUMN grouper_pit_mship_group_lw_v.IMM_MEMBERSHIP_ID IS 'IMM_MEMBERSHIP_ID: membership id for this immediate membership. might not exist in grouper if from past'; CREATE VIEW grouper_pit_mship_stem_lw_v (STEM_NAME, FIELD_NAME, SUBJECT_SOURCE, SUBJECT_ID, MEMBER_ID, FIELD_ID, STEM_ID, THE_START_TIME, THE_END_TIME, THE_ACTIVE, MEMBERSHIP_ID, IMM_MEMBERSHIP_ID) AS select gps.name as stem_name, gpf.name as field_name, gpm.subject_source, gpm.subject_id, gpm.source_id as member_id, gpf.source_id as field_id, gps.source_id as stem_id, (case when gpgs.start_time >= gpmship.start_time then gpgs.start_time else gpmship.start_time end) as the_start_time, (case when gpgs.end_time is null then gpmship.end_time when gpmship.end_time is null then gpgs.end_time when gpgs.end_time <= gpmship.end_time then gpgs.end_time else gpmship.end_time end) as the_end_time, (case when gpgs.end_time is null and gpmship.end_time is null then 'T' else 'F' end) as the_active, gpmship.source_id || ':' || gpgs.source_id as membership_id, gpmship.source_id as imm_membership_id from grouper_pit_memberships gpmship, grouper_pit_group_set gpgs, grouper_pit_members gpm, grouper_pit_stems gps, grouper_pit_fields gpf where gpmship.owner_id = gpgs.member_id and gpmship.field_id = gpgs.member_field_id and gpmship.member_id = gpm.ID and gps.id = gpgs.owner_id and gpgs.FIELD_ID = gpf.ID and ( ( gpmship.start_time >= gpgs.start_time and (gpgs.end_time >= gpmship.start_time or gpgs.end_time is null) ) or ( gpgs.start_time >= gpmship.start_time and (gpmship.end_time >= gpgs.start_time or gpmship.end_time is null) ) ); COMMENT ON VIEW grouper_pit_mship_stem_lw_v IS 'grouper_pit_mship_stem_lw_v holds one record for each immediate, composite and effective stem privilege in the system that currently exists or has existed in the past for members to stems (for privileges). Note this joins with dates and overlaps so it only contains rows that are applicable and calculates the real start and end time and if active'; COMMENT ON COLUMN grouper_pit_mship_stem_lw_v.STEM_NAME IS 'STEM_NAME: stem name is extension and ancestor folder extensions separated by colons'; COMMENT ON COLUMN grouper_pit_mship_stem_lw_v.FIELD_NAME IS 'FIELD_NAME: admins, creators, etc'; COMMENT ON COLUMN grouper_pit_mship_stem_lw_v.SUBJECT_SOURCE IS 'SUBJECT_SOURCE: subject source id'; COMMENT ON COLUMN grouper_pit_mship_stem_lw_v.SUBJECT_ID IS 'SUBJECT_ID: subject id in the source'; COMMENT ON COLUMN grouper_pit_mship_stem_lw_v.MEMBER_ID IS 'MEMBER_ID: uuid in the grouper_members table (note, could be different than real one if deleted and/or recreated)'; COMMENT ON COLUMN grouper_pit_mship_stem_lw_v.FIELD_ID IS 'FIELD_ID: uuid in the grouper_fields table (note, could be different than real one if deleted and/or recreated)'; COMMENT ON COLUMN grouper_pit_mship_stem_lw_v.STEM_ID IS 'STEM_ID: uuid of the grouper stem (note, could be different than real one if deleted and/or recreated)'; COMMENT ON COLUMN grouper_pit_mship_stem_lw_v.THE_START_TIME IS 'THE_START_TIME: micros since 1970 UTC that the membership started'; COMMENT ON COLUMN grouper_pit_mship_stem_lw_v.THE_END_TIME IS 'THE_END_TIME: micros since 1970 UTC that the membership ended or null if still active'; COMMENT ON COLUMN grouper_pit_mship_stem_lw_v.THE_ACTIVE IS 'THE_ACTIVE: T or F for if this membership is still active'; COMMENT ON COLUMN grouper_pit_mship_stem_lw_v.MEMBERSHIP_ID IS 'MEMBERSHIP_ID: membership id and colon and group set id which is the effective membership id. might not exist in grouper if from past'; COMMENT ON COLUMN grouper_pit_mship_stem_lw_v.IMM_MEMBERSHIP_ID IS 'IMM_MEMBERSHIP_ID: membership id for this immediate membership. might not exist in grouper if from past'; CREATE VIEW grouper_pit_mship_attr_lw_v (NAME_OF_ATTRIBUTE_DEF, FIELD_NAME, SUBJECT_SOURCE, SUBJECT_ID, MEMBER_ID, FIELD_ID, ATTRIBUTE_DEF_ID, THE_START_TIME, THE_END_TIME, THE_ACTIVE, MEMBERSHIP_ID, IMM_MEMBERSHIP_ID) AS select gpa.name as name_of_attribute_def, gpf.name as field_name, gpm.subject_source, gpm.subject_id, gpm.source_id as member_id, gpf.source_id as field_id, gpa.source_id as attribute_def_id, (case when gpgs.start_time >= gpmship.start_time then gpgs.start_time else gpmship.start_time end) as the_start_time, (case when gpgs.end_time is null then gpmship.end_time when gpmship.end_time is null then gpgs.end_time when gpgs.end_time <= gpmship.end_time then gpgs.end_time else gpmship.end_time end) as the_end_time, (case when gpgs.end_time is null and gpmship.end_time is null then 'T' else 'F' end) as the_active, gpmship.source_id || ':' || gpgs.source_id as membership_id, gpmship.source_id as imm_membership_id from grouper_pit_memberships gpmship, grouper_pit_group_set gpgs, grouper_pit_members gpm, grouper_pit_attribute_def gpa, grouper_pit_fields gpf where gpmship.owner_id = gpgs.member_id and gpmship.field_id = gpgs.member_field_id and gpmship.member_id = gpm.ID and gpa.id = gpgs.owner_id and gpgs.FIELD_ID = gpf.ID and ( ( gpmship.start_time >= gpgs.start_time and (gpgs.end_time >= gpmship.start_time or gpgs.end_time is null) ) or ( gpgs.start_time >= gpmship.start_time and (gpmship.end_time >= gpgs.start_time or gpmship.end_time is null) ) ) ; COMMENT ON VIEW grouper_pit_mship_attr_lw_v IS 'grouper_pit_mship_attr_lw_v holds one record for each immediate, composite and effective atribute def privilege in the system that currently exists or has existed in the past for members to attribute def (for privileges). Note this joins with dates and overlaps so it only contains rows that are applicable and calculates the real start and end time and if active'; COMMENT ON COLUMN grouper_pit_mship_attr_lw_v.NAME_OF_ATTRIBUTE_DEF IS 'NAME_OF_ATTRIBUTE_DEF: name of attribute def is extension and ancestor folder extensions separated by colons'; COMMENT ON COLUMN grouper_pit_mship_attr_lw_v.FIELD_NAME IS 'FIELD_NAME: admins, creators, etc'; COMMENT ON COLUMN grouper_pit_mship_attr_lw_v.SUBJECT_SOURCE IS 'SUBJECT_SOURCE: subject source id'; COMMENT ON COLUMN grouper_pit_mship_attr_lw_v.SUBJECT_ID IS 'SUBJECT_ID: subject id in the source'; COMMENT ON COLUMN grouper_pit_mship_attr_lw_v.MEMBER_ID IS 'MEMBER_ID: uuid in the grouper_members table (note, could be different than real one if deleted and/or recreated)'; COMMENT ON COLUMN grouper_pit_mship_attr_lw_v.FIELD_ID IS 'FIELD_ID: uuid in the grouper_fields table (note, could be different than real one if deleted and/or recreated)'; COMMENT ON COLUMN grouper_pit_mship_attr_lw_v.ATTRIBUTE_DEF_ID IS 'ATTRIBUTE_DEF_ID: uuid of the grouper attribute def (note, could be different than real one if deleted and/or recreated)'; COMMENT ON COLUMN grouper_pit_mship_attr_lw_v.THE_START_TIME IS 'THE_START_TIME: micros since 1970 UTC that the membership started'; COMMENT ON COLUMN grouper_pit_mship_attr_lw_v.THE_END_TIME IS 'THE_END_TIME: micros since 1970 UTC that the membership ended or null if still active'; COMMENT ON COLUMN grouper_pit_mship_attr_lw_v.THE_ACTIVE IS 'THE_ACTIVE: T or F for if this membership is still active'; COMMENT ON COLUMN grouper_pit_mship_attr_lw_v.MEMBERSHIP_ID IS 'MEMBERSHIP_ID: membership id and colon and group set id which is the effective membership id. might not exist in grouper if from past'; COMMENT ON COLUMN grouper_pit_mship_attr_lw_v.IMM_MEMBERSHIP_ID IS 'IMM_MEMBERSHIP_ID: membership id for this immediate membership. might not exist in grouper if from past'; CREATE VIEW grouper_recent_mships_conf_v (group_name_from, group_uuid_from, recent_micros, group_uuid_to, group_name_to, include_eligible) AS select distinct gg.name group_name_from, gaaagv_groupUuidFrom.value_string group_uuid_from, gaaagv_recentMembershipsMicros.value_integer recent_micros, gaaagv_groupUuidFrom.group_id group_uuid_to, gaaagv_groupUuidFrom.group_name group_name_to, gaaagv_includeEligible.value_string include_eligible from grouper_aval_asn_asn_group_v gaaagv_recentMembershipsMicros, grouper_aval_asn_asn_group_v gaaagv_groupUuidFrom, grouper_aval_asn_asn_group_v gaaagv_includeEligible, grouper_groups gg where gaaagv_recentMembershipsMicros.attribute_assign_id1 = gaaagv_groupUuidFrom.attribute_assign_id1 and gaaagv_recentMembershipsMicros.attribute_assign_id1 = gaaagv_includeEligible.attribute_assign_id1 and gaaagv_recentMembershipsMicros.attribute_def_name_name2 = 'etc:attribute:recentMemberships:grouperRecentMembershipsMicros' and gaaagv_groupUuidFrom.attribute_def_name_name2 = 'etc:attribute:recentMemberships:grouperRecentMembershipsGroupUuidFrom' and gaaagv_includeEligible.attribute_def_name_name2 = 'etc:attribute:recentMemberships:grouperRecentMembershipsIncludeCurrent' and gaaagv_recentMembershipsMicros.value_integer > 0 and gaaagv_recentMembershipsMicros.value_integer is not null and gaaagv_groupUuidFrom.value_string is not null and gaaagv_includeEligible.value_string is not null and (gaaagv_includeEligible.value_string = 'T' or gaaagv_includeEligible.value_string = 'F') and gg.id = gaaagv_groupUuidFrom.value_string ; COMMENT ON VIEW grouper_recent_mships_conf_v IS 'Contains one row for each recent membership configured on a group'; COMMENT ON COLUMN grouper_recent_mships_conf_v.group_name_from IS 'group_name_from: group name of the group where the recent memberships are sourced from'; COMMENT ON COLUMN grouper_recent_mships_conf_v.group_uuid_from IS 'group_uuid_from: group uuid of the group where the recent memberships are sourced from'; COMMENT ON COLUMN grouper_recent_mships_conf_v.recent_micros IS 'recent_micros: number of microseconds of recent memberships'; COMMENT ON COLUMN grouper_recent_mships_conf_v.group_uuid_to IS 'group_uuid_to: uuid of the group which has the destination for the recent memberships'; COMMENT ON COLUMN grouper_recent_mships_conf_v.group_name_to IS 'group_name_to: name of the group which has the destination for the recent memberships'; COMMENT ON COLUMN grouper_recent_mships_conf_v.include_eligible IS 'include_eligible: T or F if eligible subjects are included'; CREATE VIEW grouper_recent_mships_load_v (group_name, subject_source_id, subject_id) AS select grmc.group_name_to as group_name, gpmglv.subject_source as subject_source_id, gpmglv.subject_id as subject_id from grouper_recent_mships_conf grmc, grouper_pit_mship_group_lw_v gpmglv, grouper_time gt, grouper_members gm where gm.id = gpmglv.member_id and gm.subject_resolution_deleted = 'F' and gt.time_label = 'now' and (gpmglv.group_id = grmc.group_uuid_from or gpmglv.group_name = grmc.group_name_from) and gpmglv.subject_source != 'g:gsa' and gpmglv.field_name = 'members' and (gpmglv.the_end_time is null or gpmglv.the_end_time >= gt.utc_micros_since_1970 - grmc.recent_micros) and ( grmc.include_eligible = 'T' or not exists (select 1 from grouper_memberships mship2, grouper_group_set gs2 WHERE mship2.owner_id = gs2.member_id AND mship2.field_id = gs2.member_field_id and gs2.field_id = mship2.field_id and mship2.member_id = gm.id and gs2.field_id = gpmglv.field_id and gs2.owner_id = grmc.group_uuid_from and mship2.enabled = 'T')); COMMENT ON VIEW grouper_recent_mships_load_v IS 'Contains one row for each recent membership in a group for the loader'; COMMENT ON COLUMN grouper_recent_mships_load_v.group_name IS 'group_name: group name of the loaded group from recent memberships'; COMMENT ON COLUMN grouper_recent_mships_load_v.subject_source_id IS 'subject_source_id: subject source of subject in recent membership'; COMMENT ON COLUMN grouper_recent_mships_load_v.subject_id IS 'subject_id: subject id of subject in recent membership'; insert into grouper_ddl (id, object_name, db_version, last_updated, history) values ('c08d3e076fdb4c41acdafe5992e5dc4d', 'Grouper', 36, to_char(current_timestamp, 'YYYY/MM/DD HH12:MI:SS'), to_char(current_timestamp, 'YYYY/MM/DD HH12:MI:SS') || ': upgrade Grouper from V0 to V36, '); commit;
<reponame>Rob--W/phabricator CREATE TABLE {$NAMESPACE}_xhpastview.xhpastview_parsetree ( id int unsigned not null auto_increment primary key, authorPHID varchar(64) binary, input longblob not null, stdout longblob not null, dateCreated int unsigned not null, dateModified int unsigned not null );
<filename>fixtures/doctests/datatype/031/input.sql SELECT 'The Fat Rats'::tsvector; tsvector -------------------- 'Fat' 'Rats' 'The'
alter table "public"."Room" drop constraint "Room_videoRoomBackendName_fkey";
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Servidor: 1192.168.3.11 -- Tiempo de generación: 13-09-2020 a las 01:15:33 -- Versión del servidor: 10.4.13-MariaDB -- Versión de PHP: 7.4.8 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de datos: `crud_mvc` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `clientes` -- CREATE TABLE `clientes` ( `RFC` varchar(10) NOT NULL, `Nombre` varchar(50) NOT NULL, `Edad` int(11) NOT NULL, `IdCiudad` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `clientes` -- INSERT INTO `clientes` (`RFC`, `Nombre`, `Edad`, `IdCiudad`) VALUES ('1234567890', 'Alberto', 43, 1), ('RIMC971121', '<NAME>', 22, 2); -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `clientes` -- ALTER TABLE `clientes` ADD PRIMARY KEY (`RFC`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-- Test 数据库. CREATE TABLE test_abc ( id VARCHAR(32) PRIMARY KEY, a INT, b INT, c INT ); INSERT INTO test_abc( id, a, b, c ) VALUES ( 'TEST', 1,2,3 ); INSERT INTO test_abc( id, a, b, c ) VALUES ( 'TEST2', 4,5,6 );
/***************************************************************************** Title: Arrays and Custom Functions Use: To demonstrate using databases with PHP & SQL. Author: <NAME> School: Southern Illinois University Term: Fall 2019 Developed: 10/13/19 Tested: 10/13/19 ******************************************************************************/ /* --------------------------- Create Database Scripts --------------------------- */ /* Create Dataase Itself */ CREATE DATABASE vehicles; /* Create Table */ CREATE TABLE cars ( car_id int NOT NULL AUTO_INCREMENT, car_make varchar(15), car_model varchar(20), car_color varchar(10), car_year varchar(4), car_price decimal(7,2), PRIMARY KEY (car_id) ); /* Insert data into Table */ INSERT INTO cars (car_make, car_model, car_color, car_year, car_price) VALUES ('Honda', 'Accord', 'Silver', '1997', 750), ('Dodge', 'Challenger', 'Red', '2019', 65000), ('Chevrolet', 'Corvette', 'White', '2019', 70000), ('Cadillac', 'CTS-V', 'Gray', '2019', 90000), ('Ford', 'GT', 'White', '2019', 500000); /* ------------------------------ PHP Manipulation Scripts ------------------------------ */ /* Display Records */ SELECT * FROM cars ORDER BY car_id; /* Delete Record */ DELETE FROM cars WHERE car_id = :deleted_record; /* Insert Record */ INSERT INTO cars (car_make, car_model, car_color, car_year, car_price) VALUES (:car_make, :car_model, :car_color, :car_year, :car_price); /* Update Record */ UPDATE cars SET car_make = :car_make, car_model = :car_model, car_color = :car_color, car_year = :car_year, car_price = :car_price WHERE car_id = :car_id;
insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (500, 1, 63, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (501, 2, 249, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (502, 3, 9, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (503, 4, 385, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (504, 5, 96, 'train', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (505, 6, 100, 'bus', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (506, 7, 469, 'bike', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (507, 8, 388, 'train', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (508, 9, 329, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (509, 10, 307, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (510, 11, 404, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (511, 12, 301, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (512, 13, 5, 'bus', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (513, 14, 241, 'train', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (514, 15, 441, 'train', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (515, 16, 232, 'streetcar', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (516, 17, 187, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (517, 18, 329, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (518, 19, 117, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (519, 20, 382, 'train', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (520, 21, 302, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (521, 22, 431, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (522, 23, 87, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (523, 24, 383, 'bus', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (524, 25, 370, 'bus', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (525, 26, 147, 'train', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (526, 27, 20, 'bike', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (527, 28, 136, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (528, 29, 453, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (529, 30, 64, 'car', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (530, 31, 343, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (531, 32, 261, 'bike', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (532, 33, 52, 'bus', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (533, 34, 231, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (534, 35, 13, 'train', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (535, 36, 393, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (536, 37, 345, 'car', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (537, 38, 332, 'streetcar', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (538, 39, 101, 'train', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (539, 40, 284, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (540, 41, 472, 'streetcar', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (541, 42, 322, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (542, 43, 402, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (543, 44, 228, 'car', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (544, 45, 286, 'streetcar', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (545, 46, 484, 'bike', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (546, 47, 255, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (547, 48, 469, 'train', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (548, 49, 301, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (549, 50, 210, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (550, 51, 472, 'car', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (551, 52, 374, 'bike', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (552, 53, 476, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (553, 54, 3, 'bus', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (554, 55, 226, 'bike', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (555, 56, 436, 'bus', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (556, 57, 481, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (557, 58, 195, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (558, 59, 279, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (559, 60, 351, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (560, 61, 312, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (561, 62, 69, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (562, 63, 410, 'car', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (563, 64, 215, 'bike', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (564, 65, 17, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (565, 66, 194, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (566, 67, 241, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (567, 68, 128, 'train', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (568, 69, 311, 'bike', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (569, 70, 496, 'streetcar', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (570, 71, 100, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (571, 72, 479, 'car', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (572, 73, 106, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (573, 74, 354, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (574, 75, 14, 'streetcar', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (575, 76, 440, 'bike', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (576, 77, 420, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (577, 78, 327, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (578, 79, 281, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (579, 80, 319, 'bus', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (580, 81, 162, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (581, 82, 63, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (582, 83, 135, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (583, 84, 46, 'streetcar', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (584, 85, 395, 'car', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (585, 86, 45, 'bike', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (586, 87, 254, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (587, 88, 367, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (588, 89, 327, 'bike', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (589, 90, 458, 'bike', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (590, 91, 58, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (591, 92, 350, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (592, 93, 457, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (593, 94, 92, 'bike', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (594, 95, 480, 'car', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (595, 96, 471, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (596, 97, 420, 'car', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (597, 98, 174, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (598, 99, 493, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (599, 100, 2, 'train', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (600, 101, 37, 'train', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (601, 102, 224, 'bike', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (602, 103, 78, 'car', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (603, 104, 10, 'train', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (604, 105, 419, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (605, 106, 452, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (606, 107, 420, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (607, 108, 212, 'bike', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (608, 109, 374, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (609, 110, 37, 'streetcar', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (610, 111, 194, 'car', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (611, 112, 70, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (612, 113, 453, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (613, 114, 202, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (614, 115, 84, 'bike', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (615, 116, 408, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (616, 117, 141, 'car', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (617, 118, 290, 'streetcar', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (618, 119, 482, 'car', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (619, 120, 69, 'bus', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (620, 121, 201, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (621, 122, 329, 'bus', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (622, 123, 485, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (623, 124, 161, 'streetcar', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (624, 125, 8, 'car', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (625, 126, 455, 'streetcar', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (626, 127, 246, 'streetcar', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (627, 128, 451, 'bus', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (628, 129, 386, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (629, 130, 394, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (630, 131, 471, 'bus', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (631, 132, 337, 'bus', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (632, 133, 116, 'bike', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (633, 134, 7, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (634, 135, 186, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (635, 136, 204, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (636, 137, 383, 'train', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (637, 138, 72, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (638, 139, 144, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (639, 140, 441, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (640, 141, 381, 'streetcar', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (641, 142, 391, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (642, 143, 407, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (643, 144, 493, 'train', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (644, 145, 90, 'train', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (645, 146, 382, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (646, 147, 350, 'bike', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (647, 148, 5, 'bus', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (648, 149, 335, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (649, 150, 137, 'train', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (650, 151, 487, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (651, 152, 372, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (652, 153, 487, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (653, 154, 488, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (654, 155, 366, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (655, 156, 87, 'train', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (656, 157, 372, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (657, 158, 295, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (658, 159, 164, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (659, 160, 400, 'bike', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (660, 161, 464, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (661, 162, 224, 'train', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (662, 163, 316, 'streetcar', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (663, 164, 215, 'car', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (664, 165, 336, 'car', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (665, 166, 149, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (666, 167, 52, 'streetcar', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (667, 168, 61, 'bus', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (668, 169, 422, 'streetcar', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (669, 170, 237, 'streetcar', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (670, 171, 300, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (671, 172, 120, 'bike', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (672, 173, 430, 'bike', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (673, 174, 149, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (674, 175, 34, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (675, 176, 172, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (676, 177, 333, 'bus', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (677, 178, 23, 'bus', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (678, 179, 267, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (679, 180, 155, 'bike', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (680, 181, 457, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (681, 182, 195, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (682, 183, 426, 'train', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (683, 184, 447, 'car', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (684, 185, 214, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (685, 186, 144, 'car', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (686, 187, 352, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (687, 188, 162, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (688, 189, 240, 'bus', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (689, 190, 41, 'bike', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (690, 191, 113, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (691, 192, 343, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (692, 193, 388, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (693, 194, 165, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (694, 195, 319, 'streetcar', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (695, 196, 437, 'streetcar', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (696, 197, 219, 'bus', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (697, 198, 244, 'train', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (698, 199, 57, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (699, 200, 451, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (700, 201, 288, 'bike', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (701, 202, 436, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (702, 203, 308, 'bus', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (703, 204, 154, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (704, 205, 10, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (705, 206, 74, 'bike', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (706, 207, 495, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (707, 208, 15, 'train', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (708, 209, 239, 'train', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (709, 210, 174, 'train', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (710, 211, 291, 'streetcar', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (711, 212, 471, 'streetcar', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (712, 213, 429, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (713, 214, 19, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (714, 215, 437, 'streetcar', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (715, 216, 317, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (716, 217, 96, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (717, 218, 54, 'train', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (718, 219, 311, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (719, 220, 103, 'train', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (720, 221, 118, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (721, 222, 395, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (722, 223, 459, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (723, 224, 392, 'streetcar', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (724, 225, 221, 'bike', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (725, 226, 11, 'train', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (726, 227, 435, 'bike', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (727, 228, 412, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (728, 229, 265, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (729, 230, 92, 'car', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (730, 231, 425, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (731, 232, 96, 'train', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (732, 233, 115, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (733, 234, 331, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (734, 235, 93, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (735, 236, 248, 'streetcar', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (736, 237, 311, 'streetcar', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (737, 238, 468, 'bike', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (738, 239, 80, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (739, 240, 82, 'train', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (740, 241, 447, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (741, 242, 476, 'bus', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (742, 243, 461, 'bike', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (743, 244, 29, 'bus', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (744, 245, 469, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (745, 246, 44, 'bike', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (746, 247, 88, 'bike', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (747, 248, 405, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (748, 249, 28, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (749, 250, 209, 'train', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (750, 251, 377, 'streetcar', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (751, 252, 79, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (752, 253, 80, 'train', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (753, 254, 373, 'bus', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (754, 255, 288, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (755, 256, 159, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (756, 257, 491, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (757, 258, 201, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (758, 259, 351, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (759, 260, 12, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (760, 261, 383, 'bus', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (761, 262, 322, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (762, 263, 6, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (763, 264, 341, 'car', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (764, 265, 311, 'car', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (765, 266, 137, 'streetcar', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (766, 267, 151, 'train', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (767, 268, 433, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (768, 269, 172, 'bus', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (769, 270, 465, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (770, 271, 344, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (771, 272, 43, 'bike', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (772, 273, 467, 'train', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (773, 274, 353, 'car', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (774, 275, 80, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (775, 276, 250, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (776, 277, 61, 'train', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (777, 278, 208, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (778, 279, 337, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (779, 280, 473, 'streetcar', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (780, 281, 462, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (781, 282, 259, 'car', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (782, 283, 150, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (783, 284, 33, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (784, 285, 115, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (785, 286, 130, 'streetcar', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (786, 287, 62, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (787, 288, 308, 'bus', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (788, 289, 77, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (789, 290, 458, 'car', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (790, 291, 447, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (791, 292, 183, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (792, 293, 422, 'bike', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (793, 294, 249, 'bus', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (794, 295, 359, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (795, 296, 235, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (796, 297, 219, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (797, 298, 371, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (798, 299, 50, 'bus', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (799, 300, 410, 'car', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (800, 301, 362, 'train', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (801, 302, 442, 'train', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (802, 303, 433, 'streetcar', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (803, 304, 457, 'bus', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (804, 305, 368, 'train', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (805, 306, 232, 'bus', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (806, 307, 332, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (807, 308, 382, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (808, 309, 418, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (809, 310, 199, 'streetcar', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (810, 311, 332, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (811, 312, 492, 'streetcar', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (812, 313, 284, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (813, 314, 475, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (814, 315, 318, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (815, 316, 47, 'car', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (816, 317, 294, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (817, 318, 67, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (818, 319, 76, 'bus', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (819, 320, 84, 'car', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (820, 321, 485, 'car', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (821, 322, 251, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (822, 323, 390, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (823, 324, 326, 'train', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (824, 325, 388, 'bus', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (825, 326, 187, 'bus', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (826, 327, 154, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (827, 328, 432, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (828, 329, 33, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (829, 330, 91, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (830, 331, 396, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (831, 332, 412, 'bus', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (832, 333, 418, 'bike', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (833, 334, 254, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (834, 335, 410, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (835, 336, 454, 'streetcar', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (836, 337, 4, 'bus', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (837, 338, 476, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (838, 339, 131, 'car', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (839, 340, 238, 'bus', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (840, 341, 80, 'car', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (841, 342, 334, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (842, 343, 488, 'streetcar', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (843, 344, 177, 'train', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (844, 345, 249, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (845, 346, 60, 'train', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (846, 347, 322, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (847, 348, 58, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (848, 349, 244, 'car', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (849, 350, 253, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (850, 351, 478, 'bus', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (851, 352, 308, 'bus', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (852, 353, 482, 'train', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (853, 354, 91, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (854, 355, 125, 'streetcar', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (855, 356, 153, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (856, 357, 233, 'bike', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (857, 358, 365, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (858, 359, 138, 'train', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (859, 360, 310, 'train', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (860, 361, 33, 'car', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (861, 362, 228, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (862, 363, 297, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (863, 364, 344, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (864, 365, 413, 'car', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (865, 366, 239, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (866, 367, 1, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (867, 368, 92, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (868, 369, 196, 'car', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (869, 370, 428, 'streetcar', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (870, 371, 0, 'streetcar', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (871, 372, 209, 'car', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (872, 373, 70, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (873, 374, 263, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (874, 375, 27, 'car', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (875, 376, 499, 'bus', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (876, 377, 479, 'streetcar', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (877, 378, 174, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (878, 379, 282, 'car', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (879, 380, 330, 'car', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (880, 381, 113, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (881, 382, 79, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (882, 383, 299, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (883, 384, 286, 'streetcar', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (884, 385, 322, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (885, 386, 27, 'bike', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (886, 387, 424, 'bus', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (887, 388, 58, 'bike', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (888, 389, 169, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (889, 390, 216, 'bike', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (890, 391, 104, 'train', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (891, 392, 433, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (892, 393, 386, 'bike', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (893, 394, 116, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (894, 395, 205, 'bike', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (895, 396, 145, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (896, 397, 467, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (897, 398, 320, 'streetcar', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (898, 399, 159, 'train', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (899, 400, 386, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (900, 401, 233, 'streetcar', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (901, 402, 320, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (902, 403, 252, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (903, 404, 429, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (904, 405, 140, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (905, 406, 67, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (906, 407, 262, 'bus', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (907, 408, 130, 'bus', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (908, 409, 322, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (909, 410, 201, 'car', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (910, 411, 393, 'streetcar', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (911, 412, 327, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (912, 413, 161, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (913, 414, 426, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (914, 415, 120, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (915, 416, 317, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (916, 417, 346, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (917, 418, 241, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (918, 419, 395, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (919, 420, 94, 'train', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (920, 421, 375, 'bike', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (921, 422, 63, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (922, 423, 169, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (923, 424, 293, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (924, 425, 423, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (925, 426, 417, 'train', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (926, 427, 396, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (927, 428, 269, 'car', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (928, 429, 38, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (929, 430, 8, 'bus', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (930, 431, 437, 'streetcar', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (931, 432, 264, 'train', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (932, 433, 152, 'train', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (933, 434, 489, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (934, 435, 97, 'bike', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (935, 436, 87, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (936, 437, 55, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (937, 438, 241, 'streetcar', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (938, 439, 76, 'bike', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (939, 440, 279, 'bus', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (940, 441, 110, 'train', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (941, 442, 251, 'car', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (942, 443, 341, 'train', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (943, 444, 327, 'bus', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (944, 445, 154, 'bus', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (945, 446, 114, 'car', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (946, 447, 343, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (947, 448, 278, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (948, 449, 478, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (949, 450, 30, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (950, 451, 377, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (951, 452, 383, 'train', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (952, 453, 5, 'bike', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (953, 454, 444, 'streetcar', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (954, 455, 454, 'car', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (955, 456, 344, 'bike', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (956, 457, 142, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (957, 458, 92, 'bike', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (958, 459, 295, 'train', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (959, 460, 471, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (960, 461, 373, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (961, 462, 129, 'train', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (962, 463, 33, 'bus', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (963, 464, 190, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (964, 465, 160, 'bus', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (965, 466, 195, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (966, 467, 143, 'bus', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (967, 468, 6, 'train', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (968, 469, 498, 'bus', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (969, 470, 10, 'bike', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (970, 471, 206, 'car', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (971, 472, 325, 'bike', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (972, 473, 72, 'train', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (973, 474, 458, 'bus', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (974, 475, 87, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (975, 476, 164, 'car', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (976, 477, 377, 'car', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (977, 478, 233, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (978, 479, 189, 'streetcar', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (979, 480, 96, 'car', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (980, 481, 215, 'streetcar', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (981, 482, 126, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (982, 483, 154, 'train', true, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (983, 484, 465, 'bike', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (984, 485, 365, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (985, 486, 419, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (986, 487, 224, 'streetcar', true, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (987, 488, 130, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (988, 489, 199, 'car', false, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (989, 490, 393, 'bike', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (990, 491, 183, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (991, 492, 108, 'car', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (992, 493, 251, 'bus', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (993, 494, 424, 'bike', false, false, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (994, 495, 329, 'bike', false, true, true); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (995, 496, 253, 'train', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (996, 497, 154, 'bus', false, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (997, 498, 292, 'streetcar', true, true, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (998, 499, 212, 'streetcar', true, false, false); insert into routes2 (id, user_id, travel_id, transport, email_notify, cell_number_notify, active) values (999, 500, 347, 'train', false, false, false);
<gh_stars>0 -- -------------------------------------------------- -- Entity Designer DDL Script for SQL Server 2005, 2008, 2012 and Azure -- -------------------------------------------------- -- Date Created: 05/22/2019 02:45:18 -- Generated from EDMX file: C:\Users\kimo\Desktop\TOTAL LAB2\---PROYECTOS----\PARAPROTOTIPADO\2018FLRSV\30_10_2018_TP2_GRUOPO_7\XCommerce.AccesoDatos\ModeloXCommerce.edmx -- -------------------------------------------------- SET QUOTED_IDENTIFIER OFF; GO USE [AAAAAAAA]; GO IF SCHEMA_ID(N'dbo') IS NULL EXECUTE(N'CREATE SCHEMA [dbo]'); GO -- -------------------------------------------------- -- Dropping existing FOREIGN KEY constraints -- -------------------------------------------------- IF OBJECT_ID(N'[dbo].[FK_ProvinciaLocalidad]', 'F') IS NOT NULL ALTER TABLE [dbo].[Localidades] DROP CONSTRAINT [FK_ProvinciaLocalidad]; GO IF OBJECT_ID(N'[dbo].[FK_LocalidadDireccion]', 'F') IS NOT NULL ALTER TABLE [dbo].[Direcciones] DROP CONSTRAINT [FK_LocalidadDireccion]; GO IF OBJECT_ID(N'[dbo].[FK_PersonaDireccion]', 'F') IS NOT NULL ALTER TABLE [dbo].[Personas] DROP CONSTRAINT [FK_PersonaDireccion]; GO IF OBJECT_ID(N'[dbo].[FK_PersonaUsuario]', 'F') IS NOT NULL ALTER TABLE [dbo].[Usuarios] DROP CONSTRAINT [FK_PersonaUsuario]; GO IF OBJECT_ID(N'[dbo].[FK_MarcaArticulo]', 'F') IS NOT NULL ALTER TABLE [dbo].[Articulos] DROP CONSTRAINT [FK_MarcaArticulo]; GO IF OBJECT_ID(N'[dbo].[FK_RubroArticulo]', 'F') IS NOT NULL ALTER TABLE [dbo].[Articulos] DROP CONSTRAINT [FK_RubroArticulo]; GO IF OBJECT_ID(N'[dbo].[FK_MotivoBajaBajaArticulo]', 'F') IS NOT NULL ALTER TABLE [dbo].[BajaArticulos] DROP CONSTRAINT [FK_MotivoBajaBajaArticulo]; GO IF OBJECT_ID(N'[dbo].[FK_ArticuloBajaArticulo]', 'F') IS NOT NULL ALTER TABLE [dbo].[BajaArticulos] DROP CONSTRAINT [FK_ArticuloBajaArticulo]; GO IF OBJECT_ID(N'[dbo].[FK_UsuarioCaja]', 'F') IS NOT NULL ALTER TABLE [dbo].[Cajas] DROP CONSTRAINT [FK_UsuarioCaja]; GO IF OBJECT_ID(N'[dbo].[FK_UsuarioCaja1]', 'F') IS NOT NULL ALTER TABLE [dbo].[Cajas] DROP CONSTRAINT [FK_UsuarioCaja1]; GO IF OBJECT_ID(N'[dbo].[FK_CajaDetalleCaja]', 'F') IS NOT NULL ALTER TABLE [dbo].[DetalleCajas] DROP CONSTRAINT [FK_CajaDetalleCaja]; GO IF OBJECT_ID(N'[dbo].[FK_ListaPrecioPrecio]', 'F') IS NOT NULL ALTER TABLE [dbo].[Precios] DROP CONSTRAINT [FK_ListaPrecioPrecio]; GO IF OBJECT_ID(N'[dbo].[FK_ArticuloPrecio]', 'F') IS NOT NULL ALTER TABLE [dbo].[Precios] DROP CONSTRAINT [FK_ArticuloPrecio]; GO IF OBJECT_ID(N'[dbo].[FK_CondicionIvaEmpresa]', 'F') IS NOT NULL ALTER TABLE [dbo].[Empresas] DROP CONSTRAINT [FK_CondicionIvaEmpresa]; GO IF OBJECT_ID(N'[dbo].[FK_EmpresaDireccion]', 'F') IS NOT NULL ALTER TABLE [dbo].[Empresas] DROP CONSTRAINT [FK_EmpresaDireccion]; GO IF OBJECT_ID(N'[dbo].[FK_SalonMesa]', 'F') IS NOT NULL ALTER TABLE [dbo].[Mesas] DROP CONSTRAINT [FK_SalonMesa]; GO IF OBJECT_ID(N'[dbo].[FK_MesaReserva]', 'F') IS NOT NULL ALTER TABLE [dbo].[Reservas] DROP CONSTRAINT [FK_MesaReserva]; GO IF OBJECT_ID(N'[dbo].[FK_ClienteReserva]', 'F') IS NOT NULL ALTER TABLE [dbo].[Reservas] DROP CONSTRAINT [FK_ClienteReserva]; GO IF OBJECT_ID(N'[dbo].[FK_UsuarioReserva]', 'F') IS NOT NULL ALTER TABLE [dbo].[Reservas] DROP CONSTRAINT [FK_UsuarioReserva]; GO IF OBJECT_ID(N'[dbo].[FK_UsuarioComprobante]', 'F') IS NOT NULL ALTER TABLE [dbo].[Comprobantes] DROP CONSTRAINT [FK_UsuarioComprobante]; GO IF OBJECT_ID(N'[dbo].[FK_ClienteComprobante]', 'F') IS NOT NULL ALTER TABLE [dbo].[Comprobantes] DROP CONSTRAINT [FK_ClienteComprobante]; GO IF OBJECT_ID(N'[dbo].[FK_ComprobanteDetalleComprobante]', 'F') IS NOT NULL ALTER TABLE [dbo].[DetalleComprobantes] DROP CONSTRAINT [FK_ComprobanteDetalleComprobante]; GO IF OBJECT_ID(N'[dbo].[FK_ArticuloDetalleComprobante]', 'F') IS NOT NULL ALTER TABLE [dbo].[DetalleComprobantes] DROP CONSTRAINT [FK_ArticuloDetalleComprobante]; GO IF OBJECT_ID(N'[dbo].[FK_CajaMovimiento]', 'F') IS NOT NULL ALTER TABLE [dbo].[Movimientos] DROP CONSTRAINT [FK_CajaMovimiento]; GO IF OBJECT_ID(N'[dbo].[FK_ComprobanteMovimiento]', 'F') IS NOT NULL ALTER TABLE [dbo].[Movimientos] DROP CONSTRAINT [FK_ComprobanteMovimiento]; GO IF OBJECT_ID(N'[dbo].[FK_UsuarioMovimiento]', 'F') IS NOT NULL ALTER TABLE [dbo].[Movimientos] DROP CONSTRAINT [FK_UsuarioMovimiento]; GO IF OBJECT_ID(N'[dbo].[FK_ComprobanteFormaPago]', 'F') IS NOT NULL ALTER TABLE [dbo].[FormasPagos] DROP CONSTRAINT [FK_ComprobanteFormaPago]; GO IF OBJECT_ID(N'[dbo].[FK_BancoCheque]', 'F') IS NOT NULL ALTER TABLE [dbo].[FormasPagos_FormaPagoCheque] DROP CONSTRAINT [FK_BancoCheque]; GO IF OBJECT_ID(N'[dbo].[FK_MesaComprobanteSalon]', 'F') IS NOT NULL ALTER TABLE [dbo].[Comprobantes_ComprobanteSalon] DROP CONSTRAINT [FK_MesaComprobanteSalon]; GO IF OBJECT_ID(N'[dbo].[FK_EmpleadoComprobanteSalon]', 'F') IS NOT NULL ALTER TABLE [dbo].[Comprobantes_ComprobanteSalon] DROP CONSTRAINT [FK_EmpleadoComprobanteSalon]; GO IF OBJECT_ID(N'[dbo].[FK_ClienteFormaPagoCtaCte]', 'F') IS NOT NULL ALTER TABLE [dbo].[FormasPagos_FormaPagoCtaCte] DROP CONSTRAINT [FK_ClienteFormaPagoCtaCte]; GO IF OBJECT_ID(N'[dbo].[FK_TarjetaPlanTarjeta]', 'F') IS NOT NULL ALTER TABLE [dbo].[PlanesTarjetas] DROP CONSTRAINT [FK_TarjetaPlanTarjeta]; GO IF OBJECT_ID(N'[dbo].[FK_PlanTarjetaFormaPagoTarjeta]', 'F') IS NOT NULL ALTER TABLE [dbo].[FormasPagos_FormaPagoTarjeta] DROP CONSTRAINT [FK_PlanTarjetaFormaPagoTarjeta]; GO IF OBJECT_ID(N'[dbo].[FK_CondicionIvaProveedor]', 'F') IS NOT NULL ALTER TABLE [dbo].[Proveedores] DROP CONSTRAINT [FK_CondicionIvaProveedor]; GO IF OBJECT_ID(N'[dbo].[FK_ProveedorComprobanteCompra]', 'F') IS NOT NULL ALTER TABLE [dbo].[Comprobantes_ComprobanteCompra] DROP CONSTRAINT [FK_ProveedorComprobanteCompra]; GO IF OBJECT_ID(N'[dbo].[FK_MotivoReservaReserva]', 'F') IS NOT NULL ALTER TABLE [dbo].[Reservas] DROP CONSTRAINT [FK_MotivoReservaReserva]; GO IF OBJECT_ID(N'[dbo].[FK_SalonListaPrecio]', 'F') IS NOT NULL ALTER TABLE [dbo].[Salones] DROP CONSTRAINT [FK_SalonListaPrecio]; GO IF OBJECT_ID(N'[dbo].[FK_Cliente_inherits_Persona]', 'F') IS NOT NULL ALTER TABLE [dbo].[Personas_Cliente] DROP CONSTRAINT [FK_Cliente_inherits_Persona]; GO IF OBJECT_ID(N'[dbo].[FK_FormaPagoCheque_inherits_FormaPago]', 'F') IS NOT NULL ALTER TABLE [dbo].[FormasPagos_FormaPagoCheque] DROP CONSTRAINT [FK_FormaPagoCheque_inherits_FormaPago]; GO IF OBJECT_ID(N'[dbo].[FK_ComprobanteSalon_inherits_Comprobante]', 'F') IS NOT NULL ALTER TABLE [dbo].[Comprobantes_ComprobanteSalon] DROP CONSTRAINT [FK_ComprobanteSalon_inherits_Comprobante]; GO IF OBJECT_ID(N'[dbo].[FK_Empleado_inherits_Persona]', 'F') IS NOT NULL ALTER TABLE [dbo].[Personas_Empleado] DROP CONSTRAINT [FK_Empleado_inherits_Persona]; GO IF OBJECT_ID(N'[dbo].[FK_FormaPagoCtaCte_inherits_FormaPago]', 'F') IS NOT NULL ALTER TABLE [dbo].[FormasPagos_FormaPagoCtaCte] DROP CONSTRAINT [FK_FormaPagoCtaCte_inherits_FormaPago]; GO IF OBJECT_ID(N'[dbo].[FK_FormaPagoTarjeta_inherits_FormaPago]', 'F') IS NOT NULL ALTER TABLE [dbo].[FormasPagos_FormaPagoTarjeta] DROP CONSTRAINT [FK_FormaPagoTarjeta_inherits_FormaPago]; GO IF OBJECT_ID(N'[dbo].[FK_ComprobanteCompra_inherits_Comprobante]', 'F') IS NOT NULL ALTER TABLE [dbo].[Comprobantes_ComprobanteCompra] DROP CONSTRAINT [FK_ComprobanteCompra_inherits_Comprobante]; GO IF OBJECT_ID(N'[dbo].[FK_ComprobanteDelivery_inherits_Comprobante]', 'F') IS NOT NULL ALTER TABLE [dbo].[Comprobantes_ComprobanteDelivery] DROP CONSTRAINT [FK_ComprobanteDelivery_inherits_Comprobante]; GO IF OBJECT_ID(N'[dbo].[FK_ComprobanteFactura_inherits_Comprobante]', 'F') IS NOT NULL ALTER TABLE [dbo].[Comprobantes_ComprobanteFactura] DROP CONSTRAINT [FK_ComprobanteFactura_inherits_Comprobante]; GO IF OBJECT_ID(N'[dbo].[FK_FormaPagoEfectivo_inherits_FormaPago]', 'F') IS NOT NULL ALTER TABLE [dbo].[FormasPagos_FormaPagoEfectivo] DROP CONSTRAINT [FK_FormaPagoEfectivo_inherits_FormaPago]; GO -- -------------------------------------------------- -- Dropping existing tables -- -------------------------------------------------- IF OBJECT_ID(N'[dbo].[Personas]', 'U') IS NOT NULL DROP TABLE [dbo].[Personas]; GO IF OBJECT_ID(N'[dbo].[Direcciones]', 'U') IS NOT NULL DROP TABLE [dbo].[Direcciones]; GO IF OBJECT_ID(N'[dbo].[Localidades]', 'U') IS NOT NULL DROP TABLE [dbo].[Localidades]; GO IF OBJECT_ID(N'[dbo].[Provincias]', 'U') IS NOT NULL DROP TABLE [dbo].[Provincias]; GO IF OBJECT_ID(N'[dbo].[Usuarios]', 'U') IS NOT NULL DROP TABLE [dbo].[Usuarios]; GO IF OBJECT_ID(N'[dbo].[Marcas]', 'U') IS NOT NULL DROP TABLE [dbo].[Marcas]; GO IF OBJECT_ID(N'[dbo].[Rubros]', 'U') IS NOT NULL DROP TABLE [dbo].[Rubros]; GO IF OBJECT_ID(N'[dbo].[Articulos]', 'U') IS NOT NULL DROP TABLE [dbo].[Articulos]; GO IF OBJECT_ID(N'[dbo].[MotivosBajas]', 'U') IS NOT NULL DROP TABLE [dbo].[MotivosBajas]; GO IF OBJECT_ID(N'[dbo].[BajaArticulos]', 'U') IS NOT NULL DROP TABLE [dbo].[BajaArticulos]; GO IF OBJECT_ID(N'[dbo].[Cajas]', 'U') IS NOT NULL DROP TABLE [dbo].[Cajas]; GO IF OBJECT_ID(N'[dbo].[DetalleCajas]', 'U') IS NOT NULL DROP TABLE [dbo].[DetalleCajas]; GO IF OBJECT_ID(N'[dbo].[ListaPrecios]', 'U') IS NOT NULL DROP TABLE [dbo].[ListaPrecios]; GO IF OBJECT_ID(N'[dbo].[Precios]', 'U') IS NOT NULL DROP TABLE [dbo].[Precios]; GO IF OBJECT_ID(N'[dbo].[Empresas]', 'U') IS NOT NULL DROP TABLE [dbo].[Empresas]; GO IF OBJECT_ID(N'[dbo].[CondicionIvas]', 'U') IS NOT NULL DROP TABLE [dbo].[CondicionIvas]; GO IF OBJECT_ID(N'[dbo].[Salones]', 'U') IS NOT NULL DROP TABLE [dbo].[Salones]; GO IF OBJECT_ID(N'[dbo].[Mesas]', 'U') IS NOT NULL DROP TABLE [dbo].[Mesas]; GO IF OBJECT_ID(N'[dbo].[Reservas]', 'U') IS NOT NULL DROP TABLE [dbo].[Reservas]; GO IF OBJECT_ID(N'[dbo].[Comprobantes]', 'U') IS NOT NULL DROP TABLE [dbo].[Comprobantes]; GO IF OBJECT_ID(N'[dbo].[DetalleComprobantes]', 'U') IS NOT NULL DROP TABLE [dbo].[DetalleComprobantes]; GO IF OBJECT_ID(N'[dbo].[Movimientos]', 'U') IS NOT NULL DROP TABLE [dbo].[Movimientos]; GO IF OBJECT_ID(N'[dbo].[FormasPagos]', 'U') IS NOT NULL DROP TABLE [dbo].[FormasPagos]; GO IF OBJECT_ID(N'[dbo].[Bancos]', 'U') IS NOT NULL DROP TABLE [dbo].[Bancos]; GO IF OBJECT_ID(N'[dbo].[TarjetaSet]', 'U') IS NOT NULL DROP TABLE [dbo].[TarjetaSet]; GO IF OBJECT_ID(N'[dbo].[PlanesTarjetas]', 'U') IS NOT NULL DROP TABLE [dbo].[PlanesTarjetas]; GO IF OBJECT_ID(N'[dbo].[Proveedores]', 'U') IS NOT NULL DROP TABLE [dbo].[Proveedores]; GO IF OBJECT_ID(N'[dbo].[MotivoReservas]', 'U') IS NOT NULL DROP TABLE [dbo].[MotivoReservas]; GO IF OBJECT_ID(N'[dbo].[Personas_Cliente]', 'U') IS NOT NULL DROP TABLE [dbo].[Personas_Cliente]; GO IF OBJECT_ID(N'[dbo].[FormasPagos_FormaPagoCheque]', 'U') IS NOT NULL DROP TABLE [dbo].[FormasPagos_FormaPagoCheque]; GO IF OBJECT_ID(N'[dbo].[Comprobantes_ComprobanteSalon]', 'U') IS NOT NULL DROP TABLE [dbo].[Comprobantes_ComprobanteSalon]; GO IF OBJECT_ID(N'[dbo].[Personas_Empleado]', 'U') IS NOT NULL DROP TABLE [dbo].[Personas_Empleado]; GO IF OBJECT_ID(N'[dbo].[FormasPagos_FormaPagoCtaCte]', 'U') IS NOT NULL DROP TABLE [dbo].[FormasPagos_FormaPagoCtaCte]; GO IF OBJECT_ID(N'[dbo].[FormasPagos_FormaPagoTarjeta]', 'U') IS NOT NULL DROP TABLE [dbo].[FormasPagos_FormaPagoTarjeta]; GO IF OBJECT_ID(N'[dbo].[Comprobantes_ComprobanteCompra]', 'U') IS NOT NULL DROP TABLE [dbo].[Comprobantes_ComprobanteCompra]; GO IF OBJECT_ID(N'[dbo].[Comprobantes_ComprobanteDelivery]', 'U') IS NOT NULL DROP TABLE [dbo].[Comprobantes_ComprobanteDelivery]; GO IF OBJECT_ID(N'[dbo].[Comprobantes_ComprobanteFactura]', 'U') IS NOT NULL DROP TABLE [dbo].[Comprobantes_ComprobanteFactura]; GO IF OBJECT_ID(N'[dbo].[FormasPagos_FormaPagoEfectivo]', 'U') IS NOT NULL DROP TABLE [dbo].[FormasPagos_FormaPagoEfectivo]; GO -- -------------------------------------------------- -- Creating all tables -- -------------------------------------------------- -- Creating table 'Personas' CREATE TABLE [dbo].[Personas] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Apellido] nvarchar(250) NOT NULL, [Nombre] nvarchar(250) NOT NULL, [Dni] nvarchar(9) NOT NULL, [Telefono] nvarchar(25) NOT NULL, [Celular] nvarchar(25) NOT NULL, [Email] nvarchar(250) NOT NULL, [Cuil] nvarchar(11) NOT NULL, [FechaNacimiento] datetime NOT NULL, [Foto] varbinary(max) NULL, [EstaEliminado] bit NOT NULL, [Direccion_Id] bigint NOT NULL ); GO -- Creating table 'Direcciones' CREATE TABLE [dbo].[Direcciones] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Calle] nvarchar(400) NOT NULL, [Numero] int NOT NULL, [Piso] nvarchar(2) NOT NULL, [Dpto] nvarchar(2) NOT NULL, [Casa] nvarchar(5) NOT NULL, [Lote] nvarchar(5) NOT NULL, [Mza] nvarchar(5) NOT NULL, [Barrio] nvarchar(250) NOT NULL, [LocalidadId] bigint NOT NULL ); GO -- Creating table 'Localidades' CREATE TABLE [dbo].[Localidades] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Descripcion] nvarchar(250) NOT NULL, [ProvinciaId] bigint NOT NULL, [EstaEliminado] bit NOT NULL ); GO -- Creating table 'Provincias' CREATE TABLE [dbo].[Provincias] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Descripcion] nvarchar(250) NOT NULL, [EstaEliminado] bit NOT NULL ); GO -- Creating table 'Usuarios' CREATE TABLE [dbo].[Usuarios] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Nombre] nvarchar(100) NOT NULL, [Password] nvarchar(400) NOT NULL, [EstaBloqueado] bit NOT NULL, [PersonaId] bigint NOT NULL ); GO -- Creating table 'Marcas' CREATE TABLE [dbo].[Marcas] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Descripcion] nvarchar(250) NOT NULL, [EstaEliminado] bit NOT NULL ); GO -- Creating table 'Rubros' CREATE TABLE [dbo].[Rubros] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Descripcion] nvarchar(250) NOT NULL, [EstaEliminado] bit NOT NULL ); GO -- Creating table 'Articulos' CREATE TABLE [dbo].[Articulos] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Codigo] nvarchar(100) NOT NULL, [CodigoBarra] nvarchar(100) NOT NULL, [Abreviatura] nvarchar(20) NOT NULL, [Descripcion] nvarchar(400) NOT NULL, [Detalle] nvarchar(max) NOT NULL, [Foto] varbinary(max) NULL, [ActivarLimiteVenta] bit NOT NULL, [LimiteVenta] decimal(18,2) NOT NULL, [PermiteStockNegativo] bit NOT NULL, [EstaDiscontinuado] bit NOT NULL, [StockMaximo] decimal(18,2) NOT NULL, [StockMinimo] decimal(18,2) NOT NULL, [DescuentaStock] bit NOT NULL, [EstaEliminado] bit NOT NULL, [MarcaId] bigint NOT NULL, [RubroId] bigint NOT NULL, [Stock] decimal(18,2) NOT NULL ); GO -- Creating table 'MotivosBajas' CREATE TABLE [dbo].[MotivosBajas] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Descripcion] nvarchar(250) NOT NULL ); GO -- Creating table 'BajaArticulos' CREATE TABLE [dbo].[BajaArticulos] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Fecha] datetime NOT NULL, [Cantidad] decimal(18,2) NOT NULL, [Observacion] nvarchar(max) NOT NULL, [MotivoBajaId] bigint NOT NULL, [ArticuloId] bigint NOT NULL ); GO -- Creating table 'Cajas' CREATE TABLE [dbo].[Cajas] ( [Id] bigint IDENTITY(1,1) NOT NULL, [MontoApertura] decimal(18,2) NOT NULL, [MontoCierre] decimal(18,2) NOT NULL, [FechaApertura] datetime NOT NULL, [FechaCierre] datetime NOT NULL, [MontoSistema] decimal(18,2) NULL, [Diferencia] decimal(18,2) NULL, [UsuarioAperturaId] bigint NOT NULL, [UsuarioCierreId] bigint NOT NULL, [EstadoCaja] int NOT NULL ); GO -- Creating table 'DetalleCajas' CREATE TABLE [dbo].[DetalleCajas] ( [Id] bigint IDENTITY(1,1) NOT NULL, [CajaId] bigint NOT NULL, [Monto] decimal(18,2) NOT NULL, [TipoPago] int NOT NULL ); GO -- Creating table 'ListaPrecios' CREATE TABLE [dbo].[ListaPrecios] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Descripcion] nvarchar(250) NOT NULL, [Rentabilidad] decimal(18,2) NOT NULL, [EstaEliminado] bit NOT NULL ); GO -- Creating table 'Precios' CREATE TABLE [dbo].[Precios] ( [Id] bigint IDENTITY(1,1) NOT NULL, [PrecioCosto] decimal(18,2) NOT NULL, [PrecioPublico] decimal(18,2) NOT NULL, [FechaActualizacion] datetime NOT NULL, [ListaPrecioId] bigint NOT NULL, [ArticuloId] bigint NOT NULL, [ActivarHoraVenta] bit NOT NULL, [HoraVenta] datetime NOT NULL, [EstaEliminado] bit NOT NULL ); GO -- Creating table 'Empresas' CREATE TABLE [dbo].[Empresas] ( [Id] bigint IDENTITY(1,1) NOT NULL, [CondicionIvaId] bigint NOT NULL, [RazonSocial] nvarchar(250) NOT NULL, [NombreFantasia] nvarchar(250) NOT NULL, [Cuit] nvarchar(11) NOT NULL, [Telefono] nvarchar(25) NOT NULL, [Mail] nvarchar(250) NOT NULL, [Sucursal] nvarchar(10) NOT NULL, [Logo] varbinary(max) NOT NULL, [Direccion_Id] bigint NOT NULL ); GO -- Creating table 'CondicionIvas' CREATE TABLE [dbo].[CondicionIvas] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Descripcion] nvarchar(250) NOT NULL, [EstaElminado] bit NOT NULL ); GO -- Creating table 'Salones' CREATE TABLE [dbo].[Salones] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Descripcion] nvarchar(250) NOT NULL, [EstaEliminado] bit NOT NULL, [ListaPrecioID] bigint NOT NULL, [ListaPrecio_Id] bigint NOT NULL ); GO -- Creating table 'Mesas' CREATE TABLE [dbo].[Mesas] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Numero] int NOT NULL, [Descripcion] nvarchar(250) NOT NULL, [EstaEliminado] bit NOT NULL, [SalonId] bigint NOT NULL, [EstadoMesa] int NOT NULL ); GO -- Creating table 'Reservas' CREATE TABLE [dbo].[Reservas] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Fecha] datetime NOT NULL, [Senia] decimal(18,2) NOT NULL, [EstadoReserva] int NOT NULL, [MesaId] bigint NOT NULL, [ClienteId] bigint NOT NULL, [UsuarioId] bigint NOT NULL, [MotivoReservaId] bigint NOT NULL, [EstaEliminado] bit NOT NULL ); GO -- Creating table 'Comprobantes' CREATE TABLE [dbo].[Comprobantes] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Numero] int NOT NULL, [Fecha] datetime NOT NULL, [SubTotal] decimal(18,0) NOT NULL, [Descuento] decimal(18,0) NOT NULL, [Total] decimal(18,0) NOT NULL, [UsuarioId] bigint NOT NULL, [ClienteId] bigint NOT NULL, [TipoComprobante] int NOT NULL ); GO -- Creating table 'DetalleComprobantes' CREATE TABLE [dbo].[DetalleComprobantes] ( [Id] bigint IDENTITY(1,1) NOT NULL, [ComprobanteId] bigint NOT NULL, [Codigo] nvarchar(max) NOT NULL, [Descripcion] nvarchar(max) NOT NULL, [PrecioUnitario] decimal(18,2) NOT NULL, [Cantidad] decimal(18,2) NOT NULL, [SubTotal] decimal(18,2) NOT NULL, [ArticuloId] bigint NOT NULL ); GO -- Creating table 'Movimientos' CREATE TABLE [dbo].[Movimientos] ( [Id] bigint IDENTITY(1,1) NOT NULL, [CajaId] bigint NOT NULL, [ComprobanteId] bigint NOT NULL, [TipoMovimento] int NOT NULL, [UsuarioId] bigint NOT NULL, [Monto] decimal(18,2) NOT NULL, [Fecha] datetime NOT NULL, [Descripcion] nvarchar(400) NOT NULL ); GO -- Creating table 'FormasPagos' CREATE TABLE [dbo].[FormasPagos] ( [Id] bigint IDENTITY(1,1) NOT NULL, [ComprobanteId] bigint NOT NULL, [TipoFormaPago] int NOT NULL, [Monto] decimal(18,2) NOT NULL ); GO -- Creating table 'Bancos' CREATE TABLE [dbo].[Bancos] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Descripcion] nvarchar(250) NOT NULL, [EstaEliminado] bit NOT NULL ); GO -- Creating table 'TarjetaSet' CREATE TABLE [dbo].[TarjetaSet] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Descripcion] nvarchar(250) NOT NULL, [EstaEliminado] bit NOT NULL ); GO -- Creating table 'PlanesTarjetas' CREATE TABLE [dbo].[PlanesTarjetas] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Descripcion] nvarchar(max) NOT NULL, [Alicuota] decimal(18,2) NOT NULL, [TarjetaId] bigint NOT NULL, [EstaEliminado] bit NOT NULL ); GO -- Creating table 'Proveedores' CREATE TABLE [dbo].[Proveedores] ( [Id] bigint IDENTITY(1,1) NOT NULL, [RazonSocial] nvarchar(max) NOT NULL, [Telefono] nvarchar(max) NOT NULL, [Email] nvarchar(max) NOT NULL, [Contacto] nvarchar(max) NOT NULL, [CondicionIvaId] bigint NOT NULL, [EstaEliminado] bit NOT NULL ); GO -- Creating table 'MotivoReservas' CREATE TABLE [dbo].[MotivoReservas] ( [Id] bigint IDENTITY(1,1) NOT NULL, [Descripcion] nvarchar(max) NOT NULL ); GO -- Creating table 'Personas_Cliente' CREATE TABLE [dbo].[Personas_Cliente] ( [MontoMaximoCtaCte] decimal(18,2) NOT NULL, [Id] bigint NOT NULL ); GO -- Creating table 'FormasPagos_FormaPagoCheque' CREATE TABLE [dbo].[FormasPagos_FormaPagoCheque] ( [BancoId] bigint NOT NULL, [Numero] nvarchar(250) NOT NULL, [EnteEmisor] nvarchar(250) NOT NULL, [FechaEmision] datetime NOT NULL, [Dias] int NOT NULL, [Id] bigint NOT NULL ); GO -- Creating table 'Comprobantes_ComprobanteSalon' CREATE TABLE [dbo].[Comprobantes_ComprobanteSalon] ( [Comensal] int NOT NULL, [MesaId] bigint NOT NULL, [MozoId] bigint NULL, [EstadoComprobanteSalon] int NOT NULL, [Id] bigint NOT NULL ); GO -- Creating table 'Personas_Empleado' CREATE TABLE [dbo].[Personas_Empleado] ( [Legajo] int NOT NULL, [FechaIngreso] datetime NOT NULL, [Id] bigint NOT NULL ); GO -- Creating table 'FormasPagos_FormaPagoCtaCte' CREATE TABLE [dbo].[FormasPagos_FormaPagoCtaCte] ( [ClienteId] bigint NOT NULL, [Id] bigint NOT NULL ); GO -- Creating table 'FormasPagos_FormaPagoTarjeta' CREATE TABLE [dbo].[FormasPagos_FormaPagoTarjeta] ( [PlanTarjetaId] bigint NOT NULL, [Cupon] nvarchar(250) NOT NULL, [Numero] nvarchar(250) NOT NULL, [NumeroTarjeta] nvarchar(250) NOT NULL, [Id] bigint NOT NULL ); GO -- Creating table 'Comprobantes_ComprobanteCompra' CREATE TABLE [dbo].[Comprobantes_ComprobanteCompra] ( [ProveedorId] bigint NOT NULL, [Id] bigint NOT NULL ); GO -- Creating table 'Comprobantes_ComprobanteDelivery' CREATE TABLE [dbo].[Comprobantes_ComprobanteDelivery] ( [Id] bigint NOT NULL ); GO -- Creating table 'Comprobantes_ComprobanteFactura' CREATE TABLE [dbo].[Comprobantes_ComprobanteFactura] ( [Id] bigint NOT NULL ); GO -- Creating table 'FormasPagos_FormaPagoEfectivo' CREATE TABLE [dbo].[FormasPagos_FormaPagoEfectivo] ( [Id] bigint NOT NULL ); GO -- -------------------------------------------------- -- Creating all PRIMARY KEY constraints -- -------------------------------------------------- -- Creating primary key on [Id] in table 'Personas' ALTER TABLE [dbo].[Personas] ADD CONSTRAINT [PK_Personas] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Direcciones' ALTER TABLE [dbo].[Direcciones] ADD CONSTRAINT [PK_Direcciones] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Localidades' ALTER TABLE [dbo].[Localidades] ADD CONSTRAINT [PK_Localidades] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Provincias' ALTER TABLE [dbo].[Provincias] ADD CONSTRAINT [PK_Provincias] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Usuarios' ALTER TABLE [dbo].[Usuarios] ADD CONSTRAINT [PK_Usuarios] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Marcas' ALTER TABLE [dbo].[Marcas] ADD CONSTRAINT [PK_Marcas] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Rubros' ALTER TABLE [dbo].[Rubros] ADD CONSTRAINT [PK_Rubros] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Articulos' ALTER TABLE [dbo].[Articulos] ADD CONSTRAINT [PK_Articulos] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'MotivosBajas' ALTER TABLE [dbo].[MotivosBajas] ADD CONSTRAINT [PK_MotivosBajas] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'BajaArticulos' ALTER TABLE [dbo].[BajaArticulos] ADD CONSTRAINT [PK_BajaArticulos] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Cajas' ALTER TABLE [dbo].[Cajas] ADD CONSTRAINT [PK_Cajas] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'DetalleCajas' ALTER TABLE [dbo].[DetalleCajas] ADD CONSTRAINT [PK_DetalleCajas] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'ListaPrecios' ALTER TABLE [dbo].[ListaPrecios] ADD CONSTRAINT [PK_ListaPrecios] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Precios' ALTER TABLE [dbo].[Precios] ADD CONSTRAINT [PK_Precios] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Empresas' ALTER TABLE [dbo].[Empresas] ADD CONSTRAINT [PK_Empresas] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'CondicionIvas' ALTER TABLE [dbo].[CondicionIvas] ADD CONSTRAINT [PK_CondicionIvas] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Salones' ALTER TABLE [dbo].[Salones] ADD CONSTRAINT [PK_Salones] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Mesas' ALTER TABLE [dbo].[Mesas] ADD CONSTRAINT [PK_Mesas] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Reservas' ALTER TABLE [dbo].[Reservas] ADD CONSTRAINT [PK_Reservas] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Comprobantes' ALTER TABLE [dbo].[Comprobantes] ADD CONSTRAINT [PK_Comprobantes] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'DetalleComprobantes' ALTER TABLE [dbo].[DetalleComprobantes] ADD CONSTRAINT [PK_DetalleComprobantes] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Movimientos' ALTER TABLE [dbo].[Movimientos] ADD CONSTRAINT [PK_Movimientos] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'FormasPagos' ALTER TABLE [dbo].[FormasPagos] ADD CONSTRAINT [PK_FormasPagos] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Bancos' ALTER TABLE [dbo].[Bancos] ADD CONSTRAINT [PK_Bancos] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'TarjetaSet' ALTER TABLE [dbo].[TarjetaSet] ADD CONSTRAINT [PK_TarjetaSet] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'PlanesTarjetas' ALTER TABLE [dbo].[PlanesTarjetas] ADD CONSTRAINT [PK_PlanesTarjetas] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Proveedores' ALTER TABLE [dbo].[Proveedores] ADD CONSTRAINT [PK_Proveedores] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'MotivoReservas' ALTER TABLE [dbo].[MotivoReservas] ADD CONSTRAINT [PK_MotivoReservas] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Personas_Cliente' ALTER TABLE [dbo].[Personas_Cliente] ADD CONSTRAINT [PK_Personas_Cliente] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'FormasPagos_FormaPagoCheque' ALTER TABLE [dbo].[FormasPagos_FormaPagoCheque] ADD CONSTRAINT [PK_FormasPagos_FormaPagoCheque] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Comprobantes_ComprobanteSalon' ALTER TABLE [dbo].[Comprobantes_ComprobanteSalon] ADD CONSTRAINT [PK_Comprobantes_ComprobanteSalon] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Personas_Empleado' ALTER TABLE [dbo].[Personas_Empleado] ADD CONSTRAINT [PK_Personas_Empleado] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'FormasPagos_FormaPagoCtaCte' ALTER TABLE [dbo].[FormasPagos_FormaPagoCtaCte] ADD CONSTRAINT [PK_FormasPagos_FormaPagoCtaCte] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'FormasPagos_FormaPagoTarjeta' ALTER TABLE [dbo].[FormasPagos_FormaPagoTarjeta] ADD CONSTRAINT [PK_FormasPagos_FormaPagoTarjeta] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Comprobantes_ComprobanteCompra' ALTER TABLE [dbo].[Comprobantes_ComprobanteCompra] ADD CONSTRAINT [PK_Comprobantes_ComprobanteCompra] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Comprobantes_ComprobanteDelivery' ALTER TABLE [dbo].[Comprobantes_ComprobanteDelivery] ADD CONSTRAINT [PK_Comprobantes_ComprobanteDelivery] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'Comprobantes_ComprobanteFactura' ALTER TABLE [dbo].[Comprobantes_ComprobanteFactura] ADD CONSTRAINT [PK_Comprobantes_ComprobanteFactura] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- Creating primary key on [Id] in table 'FormasPagos_FormaPagoEfectivo' ALTER TABLE [dbo].[FormasPagos_FormaPagoEfectivo] ADD CONSTRAINT [PK_FormasPagos_FormaPagoEfectivo] PRIMARY KEY CLUSTERED ([Id] ASC); GO -- -------------------------------------------------- -- Creating all FOREIGN KEY constraints -- -------------------------------------------------- -- Creating foreign key on [ProvinciaId] in table 'Localidades' ALTER TABLE [dbo].[Localidades] ADD CONSTRAINT [FK_ProvinciaLocalidad] FOREIGN KEY ([ProvinciaId]) REFERENCES [dbo].[Provincias] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_ProvinciaLocalidad' CREATE INDEX [IX_FK_ProvinciaLocalidad] ON [dbo].[Localidades] ([ProvinciaId]); GO -- Creating foreign key on [LocalidadId] in table 'Direcciones' ALTER TABLE [dbo].[Direcciones] ADD CONSTRAINT [FK_LocalidadDireccion] FOREIGN KEY ([LocalidadId]) REFERENCES [dbo].[Localidades] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_LocalidadDireccion' CREATE INDEX [IX_FK_LocalidadDireccion] ON [dbo].[Direcciones] ([LocalidadId]); GO -- Creating foreign key on [Direccion_Id] in table 'Personas' ALTER TABLE [dbo].[Personas] ADD CONSTRAINT [FK_PersonaDireccion] FOREIGN KEY ([Direccion_Id]) REFERENCES [dbo].[Direcciones] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_PersonaDireccion' CREATE INDEX [IX_FK_PersonaDireccion] ON [dbo].[Personas] ([Direccion_Id]); GO -- Creating foreign key on [PersonaId] in table 'Usuarios' ALTER TABLE [dbo].[Usuarios] ADD CONSTRAINT [FK_PersonaUsuario] FOREIGN KEY ([PersonaId]) REFERENCES [dbo].[Personas] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_PersonaUsuario' CREATE INDEX [IX_FK_PersonaUsuario] ON [dbo].[Usuarios] ([PersonaId]); GO -- Creating foreign key on [MarcaId] in table 'Articulos' ALTER TABLE [dbo].[Articulos] ADD CONSTRAINT [FK_MarcaArticulo] FOREIGN KEY ([MarcaId]) REFERENCES [dbo].[Marcas] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_MarcaArticulo' CREATE INDEX [IX_FK_MarcaArticulo] ON [dbo].[Articulos] ([MarcaId]); GO -- Creating foreign key on [RubroId] in table 'Articulos' ALTER TABLE [dbo].[Articulos] ADD CONSTRAINT [FK_RubroArticulo] FOREIGN KEY ([RubroId]) REFERENCES [dbo].[Rubros] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_RubroArticulo' CREATE INDEX [IX_FK_RubroArticulo] ON [dbo].[Articulos] ([RubroId]); GO -- Creating foreign key on [MotivoBajaId] in table 'BajaArticulos' ALTER TABLE [dbo].[BajaArticulos] ADD CONSTRAINT [FK_MotivoBajaBajaArticulo] FOREIGN KEY ([MotivoBajaId]) REFERENCES [dbo].[MotivosBajas] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_MotivoBajaBajaArticulo' CREATE INDEX [IX_FK_MotivoBajaBajaArticulo] ON [dbo].[BajaArticulos] ([MotivoBajaId]); GO -- Creating foreign key on [ArticuloId] in table 'BajaArticulos' ALTER TABLE [dbo].[BajaArticulos] ADD CONSTRAINT [FK_ArticuloBajaArticulo] FOREIGN KEY ([ArticuloId]) REFERENCES [dbo].[Articulos] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_ArticuloBajaArticulo' CREATE INDEX [IX_FK_ArticuloBajaArticulo] ON [dbo].[BajaArticulos] ([ArticuloId]); GO -- Creating foreign key on [UsuarioAperturaId] in table 'Cajas' ALTER TABLE [dbo].[Cajas] ADD CONSTRAINT [FK_UsuarioCaja] FOREIGN KEY ([UsuarioAperturaId]) REFERENCES [dbo].[Usuarios] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_UsuarioCaja' CREATE INDEX [IX_FK_UsuarioCaja] ON [dbo].[Cajas] ([UsuarioAperturaId]); GO -- Creating foreign key on [UsuarioCierreId] in table 'Cajas' ALTER TABLE [dbo].[Cajas] ADD CONSTRAINT [FK_UsuarioCaja1] FOREIGN KEY ([UsuarioCierreId]) REFERENCES [dbo].[Usuarios] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_UsuarioCaja1' CREATE INDEX [IX_FK_UsuarioCaja1] ON [dbo].[Cajas] ([UsuarioCierreId]); GO -- Creating foreign key on [CajaId] in table 'DetalleCajas' ALTER TABLE [dbo].[DetalleCajas] ADD CONSTRAINT [FK_CajaDetalleCaja] FOREIGN KEY ([CajaId]) REFERENCES [dbo].[Cajas] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_CajaDetalleCaja' CREATE INDEX [IX_FK_CajaDetalleCaja] ON [dbo].[DetalleCajas] ([CajaId]); GO -- Creating foreign key on [ListaPrecioId] in table 'Precios' ALTER TABLE [dbo].[Precios] ADD CONSTRAINT [FK_ListaPrecioPrecio] FOREIGN KEY ([ListaPrecioId]) REFERENCES [dbo].[ListaPrecios] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_ListaPrecioPrecio' CREATE INDEX [IX_FK_ListaPrecioPrecio] ON [dbo].[Precios] ([ListaPrecioId]); GO -- Creating foreign key on [ArticuloId] in table 'Precios' ALTER TABLE [dbo].[Precios] ADD CONSTRAINT [FK_ArticuloPrecio] FOREIGN KEY ([ArticuloId]) REFERENCES [dbo].[Articulos] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_ArticuloPrecio' CREATE INDEX [IX_FK_ArticuloPrecio] ON [dbo].[Precios] ([ArticuloId]); GO -- Creating foreign key on [CondicionIvaId] in table 'Empresas' ALTER TABLE [dbo].[Empresas] ADD CONSTRAINT [FK_CondicionIvaEmpresa] FOREIGN KEY ([CondicionIvaId]) REFERENCES [dbo].[CondicionIvas] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_CondicionIvaEmpresa' CREATE INDEX [IX_FK_CondicionIvaEmpresa] ON [dbo].[Empresas] ([CondicionIvaId]); GO -- Creating foreign key on [Direccion_Id] in table 'Empresas' ALTER TABLE [dbo].[Empresas] ADD CONSTRAINT [FK_EmpresaDireccion] FOREIGN KEY ([Direccion_Id]) REFERENCES [dbo].[Direcciones] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_EmpresaDireccion' CREATE INDEX [IX_FK_EmpresaDireccion] ON [dbo].[Empresas] ([Direccion_Id]); GO -- Creating foreign key on [SalonId] in table 'Mesas' ALTER TABLE [dbo].[Mesas] ADD CONSTRAINT [FK_SalonMesa] FOREIGN KEY ([SalonId]) REFERENCES [dbo].[Salones] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_SalonMesa' CREATE INDEX [IX_FK_SalonMesa] ON [dbo].[Mesas] ([SalonId]); GO -- Creating foreign key on [MesaId] in table 'Reservas' ALTER TABLE [dbo].[Reservas] ADD CONSTRAINT [FK_MesaReserva] FOREIGN KEY ([MesaId]) REFERENCES [dbo].[Mesas] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_MesaReserva' CREATE INDEX [IX_FK_MesaReserva] ON [dbo].[Reservas] ([MesaId]); GO -- Creating foreign key on [ClienteId] in table 'Reservas' ALTER TABLE [dbo].[Reservas] ADD CONSTRAINT [FK_ClienteReserva] FOREIGN KEY ([ClienteId]) REFERENCES [dbo].[Personas_Cliente] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_ClienteReserva' CREATE INDEX [IX_FK_ClienteReserva] ON [dbo].[Reservas] ([ClienteId]); GO -- Creating foreign key on [UsuarioId] in table 'Reservas' ALTER TABLE [dbo].[Reservas] ADD CONSTRAINT [FK_UsuarioReserva] FOREIGN KEY ([UsuarioId]) REFERENCES [dbo].[Usuarios] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_UsuarioReserva' CREATE INDEX [IX_FK_UsuarioReserva] ON [dbo].[Reservas] ([UsuarioId]); GO -- Creating foreign key on [UsuarioId] in table 'Comprobantes' ALTER TABLE [dbo].[Comprobantes] ADD CONSTRAINT [FK_UsuarioComprobante] FOREIGN KEY ([UsuarioId]) REFERENCES [dbo].[Usuarios] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_UsuarioComprobante' CREATE INDEX [IX_FK_UsuarioComprobante] ON [dbo].[Comprobantes] ([UsuarioId]); GO -- Creating foreign key on [ClienteId] in table 'Comprobantes' ALTER TABLE [dbo].[Comprobantes] ADD CONSTRAINT [FK_ClienteComprobante] FOREIGN KEY ([ClienteId]) REFERENCES [dbo].[Personas_Cliente] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_ClienteComprobante' CREATE INDEX [IX_FK_ClienteComprobante] ON [dbo].[Comprobantes] ([ClienteId]); GO -- Creating foreign key on [ComprobanteId] in table 'DetalleComprobantes' ALTER TABLE [dbo].[DetalleComprobantes] ADD CONSTRAINT [FK_ComprobanteDetalleComprobante] FOREIGN KEY ([ComprobanteId]) REFERENCES [dbo].[Comprobantes] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_ComprobanteDetalleComprobante' CREATE INDEX [IX_FK_ComprobanteDetalleComprobante] ON [dbo].[DetalleComprobantes] ([ComprobanteId]); GO -- Creating foreign key on [ArticuloId] in table 'DetalleComprobantes' ALTER TABLE [dbo].[DetalleComprobantes] ADD CONSTRAINT [FK_ArticuloDetalleComprobante] FOREIGN KEY ([ArticuloId]) REFERENCES [dbo].[Articulos] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_ArticuloDetalleComprobante' CREATE INDEX [IX_FK_ArticuloDetalleComprobante] ON [dbo].[DetalleComprobantes] ([ArticuloId]); GO -- Creating foreign key on [CajaId] in table 'Movimientos' ALTER TABLE [dbo].[Movimientos] ADD CONSTRAINT [FK_CajaMovimiento] FOREIGN KEY ([CajaId]) REFERENCES [dbo].[Cajas] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_CajaMovimiento' CREATE INDEX [IX_FK_CajaMovimiento] ON [dbo].[Movimientos] ([CajaId]); GO -- Creating foreign key on [ComprobanteId] in table 'Movimientos' ALTER TABLE [dbo].[Movimientos] ADD CONSTRAINT [FK_ComprobanteMovimiento] FOREIGN KEY ([ComprobanteId]) REFERENCES [dbo].[Comprobantes] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_ComprobanteMovimiento' CREATE INDEX [IX_FK_ComprobanteMovimiento] ON [dbo].[Movimientos] ([ComprobanteId]); GO -- Creating foreign key on [UsuarioId] in table 'Movimientos' ALTER TABLE [dbo].[Movimientos] ADD CONSTRAINT [FK_UsuarioMovimiento] FOREIGN KEY ([UsuarioId]) REFERENCES [dbo].[Usuarios] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_UsuarioMovimiento' CREATE INDEX [IX_FK_UsuarioMovimiento] ON [dbo].[Movimientos] ([UsuarioId]); GO -- Creating foreign key on [ComprobanteId] in table 'FormasPagos' ALTER TABLE [dbo].[FormasPagos] ADD CONSTRAINT [FK_ComprobanteFormaPago] FOREIGN KEY ([ComprobanteId]) REFERENCES [dbo].[Comprobantes] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_ComprobanteFormaPago' CREATE INDEX [IX_FK_ComprobanteFormaPago] ON [dbo].[FormasPagos] ([ComprobanteId]); GO -- Creating foreign key on [BancoId] in table 'FormasPagos_FormaPagoCheque' ALTER TABLE [dbo].[FormasPagos_FormaPagoCheque] ADD CONSTRAINT [FK_BancoCheque] FOREIGN KEY ([BancoId]) REFERENCES [dbo].[Bancos] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_BancoCheque' CREATE INDEX [IX_FK_BancoCheque] ON [dbo].[FormasPagos_FormaPagoCheque] ([BancoId]); GO -- Creating foreign key on [MesaId] in table 'Comprobantes_ComprobanteSalon' ALTER TABLE [dbo].[Comprobantes_ComprobanteSalon] ADD CONSTRAINT [FK_MesaComprobanteSalon] FOREIGN KEY ([MesaId]) REFERENCES [dbo].[Mesas] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_MesaComprobanteSalon' CREATE INDEX [IX_FK_MesaComprobanteSalon] ON [dbo].[Comprobantes_ComprobanteSalon] ([MesaId]); GO -- Creating foreign key on [MozoId] in table 'Comprobantes_ComprobanteSalon' ALTER TABLE [dbo].[Comprobantes_ComprobanteSalon] ADD CONSTRAINT [FK_EmpleadoComprobanteSalon] FOREIGN KEY ([MozoId]) REFERENCES [dbo].[Personas_Empleado] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_EmpleadoComprobanteSalon' CREATE INDEX [IX_FK_EmpleadoComprobanteSalon] ON [dbo].[Comprobantes_ComprobanteSalon] ([MozoId]); GO -- Creating foreign key on [ClienteId] in table 'FormasPagos_FormaPagoCtaCte' ALTER TABLE [dbo].[FormasPagos_FormaPagoCtaCte] ADD CONSTRAINT [FK_ClienteFormaPagoCtaCte] FOREIGN KEY ([ClienteId]) REFERENCES [dbo].[Personas_Cliente] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_ClienteFormaPagoCtaCte' CREATE INDEX [IX_FK_ClienteFormaPagoCtaCte] ON [dbo].[FormasPagos_FormaPagoCtaCte] ([ClienteId]); GO -- Creating foreign key on [TarjetaId] in table 'PlanesTarjetas' ALTER TABLE [dbo].[PlanesTarjetas] ADD CONSTRAINT [FK_TarjetaPlanTarjeta] FOREIGN KEY ([TarjetaId]) REFERENCES [dbo].[TarjetaSet] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_TarjetaPlanTarjeta' CREATE INDEX [IX_FK_TarjetaPlanTarjeta] ON [dbo].[PlanesTarjetas] ([TarjetaId]); GO -- Creating foreign key on [PlanTarjetaId] in table 'FormasPagos_FormaPagoTarjeta' ALTER TABLE [dbo].[FormasPagos_FormaPagoTarjeta] ADD CONSTRAINT [FK_PlanTarjetaFormaPagoTarjeta] FOREIGN KEY ([PlanTarjetaId]) REFERENCES [dbo].[PlanesTarjetas] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_PlanTarjetaFormaPagoTarjeta' CREATE INDEX [IX_FK_PlanTarjetaFormaPagoTarjeta] ON [dbo].[FormasPagos_FormaPagoTarjeta] ([PlanTarjetaId]); GO -- Creating foreign key on [CondicionIvaId] in table 'Proveedores' ALTER TABLE [dbo].[Proveedores] ADD CONSTRAINT [FK_CondicionIvaProveedor] FOREIGN KEY ([CondicionIvaId]) REFERENCES [dbo].[CondicionIvas] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_CondicionIvaProveedor' CREATE INDEX [IX_FK_CondicionIvaProveedor] ON [dbo].[Proveedores] ([CondicionIvaId]); GO -- Creating foreign key on [ProveedorId] in table 'Comprobantes_ComprobanteCompra' ALTER TABLE [dbo].[Comprobantes_ComprobanteCompra] ADD CONSTRAINT [FK_ProveedorComprobanteCompra] FOREIGN KEY ([ProveedorId]) REFERENCES [dbo].[Proveedores] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_ProveedorComprobanteCompra' CREATE INDEX [IX_FK_ProveedorComprobanteCompra] ON [dbo].[Comprobantes_ComprobanteCompra] ([ProveedorId]); GO -- Creating foreign key on [MotivoReservaId] in table 'Reservas' ALTER TABLE [dbo].[Reservas] ADD CONSTRAINT [FK_MotivoReservaReserva] FOREIGN KEY ([MotivoReservaId]) REFERENCES [dbo].[MotivoReservas] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_MotivoReservaReserva' CREATE INDEX [IX_FK_MotivoReservaReserva] ON [dbo].[Reservas] ([MotivoReservaId]); GO -- Creating foreign key on [ListaPrecio_Id] in table 'Salones' ALTER TABLE [dbo].[Salones] ADD CONSTRAINT [FK_SalonListaPrecio] FOREIGN KEY ([ListaPrecio_Id]) REFERENCES [dbo].[ListaPrecios] ([Id]) ON DELETE NO ACTION ON UPDATE NO ACTION; GO -- Creating non-clustered index for FOREIGN KEY 'FK_SalonListaPrecio' CREATE INDEX [IX_FK_SalonListaPrecio] ON [dbo].[Salones] ([ListaPrecio_Id]); GO -- Creating foreign key on [Id] in table 'Personas_Cliente' ALTER TABLE [dbo].[Personas_Cliente] ADD CONSTRAINT [FK_Cliente_inherits_Persona] FOREIGN KEY ([Id]) REFERENCES [dbo].[Personas] ([Id]) ON DELETE CASCADE ON UPDATE NO ACTION; GO -- Creating foreign key on [Id] in table 'FormasPagos_FormaPagoCheque' ALTER TABLE [dbo].[FormasPagos_FormaPagoCheque] ADD CONSTRAINT [FK_FormaPagoCheque_inherits_FormaPago] FOREIGN KEY ([Id]) REFERENCES [dbo].[FormasPagos] ([Id]) ON DELETE CASCADE ON UPDATE NO ACTION; GO -- Creating foreign key on [Id] in table 'Comprobantes_ComprobanteSalon' ALTER TABLE [dbo].[Comprobantes_ComprobanteSalon] ADD CONSTRAINT [FK_ComprobanteSalon_inherits_Comprobante] FOREIGN KEY ([Id]) REFERENCES [dbo].[Comprobantes] ([Id]) ON DELETE CASCADE ON UPDATE NO ACTION; GO -- Creating foreign key on [Id] in table 'Personas_Empleado' ALTER TABLE [dbo].[Personas_Empleado] ADD CONSTRAINT [FK_Empleado_inherits_Persona] FOREIGN KEY ([Id]) REFERENCES [dbo].[Personas] ([Id]) ON DELETE CASCADE ON UPDATE NO ACTION; GO -- Creating foreign key on [Id] in table 'FormasPagos_FormaPagoCtaCte' ALTER TABLE [dbo].[FormasPagos_FormaPagoCtaCte] ADD CONSTRAINT [FK_FormaPagoCtaCte_inherits_FormaPago] FOREIGN KEY ([Id]) REFERENCES [dbo].[FormasPagos] ([Id]) ON DELETE CASCADE ON UPDATE NO ACTION; GO -- Creating foreign key on [Id] in table 'FormasPagos_FormaPagoTarjeta' ALTER TABLE [dbo].[FormasPagos_FormaPagoTarjeta] ADD CONSTRAINT [FK_FormaPagoTarjeta_inherits_FormaPago] FOREIGN KEY ([Id]) REFERENCES [dbo].[FormasPagos] ([Id]) ON DELETE CASCADE ON UPDATE NO ACTION; GO -- Creating foreign key on [Id] in table 'Comprobantes_ComprobanteCompra' ALTER TABLE [dbo].[Comprobantes_ComprobanteCompra] ADD CONSTRAINT [FK_ComprobanteCompra_inherits_Comprobante] FOREIGN KEY ([Id]) REFERENCES [dbo].[Comprobantes] ([Id]) ON DELETE CASCADE ON UPDATE NO ACTION; GO -- Creating foreign key on [Id] in table 'Comprobantes_ComprobanteDelivery' ALTER TABLE [dbo].[Comprobantes_ComprobanteDelivery] ADD CONSTRAINT [FK_ComprobanteDelivery_inherits_Comprobante] FOREIGN KEY ([Id]) REFERENCES [dbo].[Comprobantes] ([Id]) ON DELETE CASCADE ON UPDATE NO ACTION; GO -- Creating foreign key on [Id] in table 'Comprobantes_ComprobanteFactura' ALTER TABLE [dbo].[Comprobantes_ComprobanteFactura] ADD CONSTRAINT [FK_ComprobanteFactura_inherits_Comprobante] FOREIGN KEY ([Id]) REFERENCES [dbo].[Comprobantes] ([Id]) ON DELETE CASCADE ON UPDATE NO ACTION; GO -- Creating foreign key on [Id] in table 'FormasPagos_FormaPagoEfectivo' ALTER TABLE [dbo].[FormasPagos_FormaPagoEfectivo] ADD CONSTRAINT [FK_FormaPagoEfectivo_inherits_FormaPago] FOREIGN KEY ([Id]) REFERENCES [dbo].[FormasPagos] ([Id]) ON DELETE CASCADE ON UPDATE NO ACTION; GO -- -------------------------------------------------- -- Script has ended -- --------------------------------------------------
drop table service.person;
SET DEFINE OFF; CREATE UNIQUE INDEX AFW_13_PAGE_ITEM_PK ON AFW_13_PAGE_ITEM (SEQNC) LOGGING /
<reponame>codesanook/sql-server-linux-docker IF db_id('Codesanook') IS NULL BEGIN CREATE DATABASE Codesanook END GO
CREATE TABLE AwardsManagers( playerID VARCHAR(9) NOT NULL PRIMARY KEY ,awardID VARCHAR(25) NOT NULL ,yearID INTEGER NOT NULL ,lgID VARCHAR(2) NOT NULL ,tie VARCHAR(1) ,notes VARCHAR(30) ); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('larusto01','BBWAA Manager of the year',1983,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('lasorto01','BBWAA Manager of the year',1983,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('andersp01','BBWAA Manager of the year',1984,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('freyji99','BBWAA Manager of the year',1984,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('coxbo01','BBWAA Manager of the year',1985,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('herzowh01','BBWAA Manager of the year',1985,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('mcnamjo99','BBWAA Manager of the year',1986,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('lanieha01','BBWAA Manager of the year',1986,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('andersp01','BBWAA Manager of the year',1987,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('rodgebu01','BBWAA Manager of the year',1987,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('larusto01','BBWAA Manager of the year',1988,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('lasorto01','BBWAA Manager of the year',1988,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('robinfr02','BBWAA Manager of the year',1989,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('zimmedo01','BBWAA Manager of the year',1989,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('torboje01','BBWAA Manager of the year',1990,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('leylaji99','BBWAA Manager of the year',1990,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('kellyto01','BBWAA Manager of the year',1991,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('coxbo01','BBWAA Manager of the year',1991,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('larusto01','BBWAA Manager of the year',1992,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('leylaji99','BBWAA Manager of the year',1992,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('lamonge01','BBWAA Manager of the year',1993,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('bakerdu01','BBWAA Manager of the year',1993,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('showabu99','BBWAA Manager of the year',1994,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('aloufe01','BBWAA Manager of the year',1994,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('pinielo01','BBWAA Manager of the year',1995,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('baylodo01','BBWAA Manager of the year',1995,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('oatesjo01','BBWAA Manager of the year',1996,'AL','Y',NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('torrejo01','BBWAA Manager of the year',1996,'AL','Y',NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('bochybr01','BBWAA Manager of the year',1996,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('johnsda02','BBWAA Manager of the year',1997,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('bakerdu01','BBWAA Manager of the year',1997,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('torrejo01','BBWAA Manager of the year',1998,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('dierkla01','BBWAA Manager of the year',1998,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('williji03','BBWAA Manager of the year',1999,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('mckeoja99','BBWAA Manager of the year',1999,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('manueje01','BBWAA Manager of the year',2000,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('bakerdu01','BBWAA Manager of the year',2000,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('pinielo01','BBWAA Manager of the year',2001,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('bowala01','BBWAA Manager of the year',2001,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('sciosmi01','BBWAA Manager of the year',2002,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('larusto01','BBWAA Manager of the year',2002,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('penato01','BBWAA Manager of the year',2003,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('mckeoja99','BBWAA Manager of the year',2003,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('showabu99','BBWAA Manager of the year',2004,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('coxbo01','BBWAA Manager of the year',2004,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('guilloz01','BBWAA Manager of the year',2005,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('coxbo01','BBWAA Manager of the year',2005,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('leylaji99','BBWAA Manager of the year',2006,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('girarjo01','BBWAA Manager of the year',2006,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('wedgeer01','BBWAA Manager of the year',2007,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('melvibo01','BBWAA Manager of the year',2007,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('maddojo99','BBWAA Manager of the year',2008,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('pinielo01','BBWAA Manager of the year',2008,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('sciosmi01','BBWAA Manager of the year',2009,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('tracyji01','BBWAA Manager of the year',2009,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('gardero01','BBWAA Manager of the year',2010,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('blackbu02','BBWAA Manager of the year',2010,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('maddojo99','BBWAA Manager of the year',2011,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('gibsoki01','BBWAA Manager of the year',2011,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('melvibo01','BBWAA Manager of the year',2012,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('johnsda02','BBWAA Manager of the year',2012,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('francte01','BBWAA Manager of the year',2013,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('hurdlcl01','BBWAA Manager of the year',2013,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('mccarjo99','TSN Manager of the Year',1936,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('mckecbi01','TSN Manager of the Year',1937,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('mccarjo99','TSN Manager of the Year',1938,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('durocle01','TSN Manager of the Year',1939,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('mckecbi01','TSN Manager of the Year',1940,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('southbi01','TSN Manager of the Year',1941,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('southbi01','TSN Manager of the Year',1942,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('mccarjo99','TSN Manager of the Year',1943,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('sewellu01','TSN Manager of the Year',1944,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('bluegos01','TSN Manager of the Year',1945,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('dyered01','TSN Manager of the Year',1946,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('harribu01','TSN Manager of the Year',1947,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('meyerbi01','TSN Manager of the Year',1948,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('stengca01','TSN Manager of the Year',1949,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('rolfere01','TSN Manager of the Year',1950,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('durocle01','TSN Manager of the Year',1951,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('stanked01','TSN Manager of the Year',1952,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('stengca01','TSN Manager of the Year',1953,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('durocle01','TSN Manager of the Year',1954,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('alstowa01','TSN Manager of the Year',1955,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('tebbebi01','TSN Manager of the Year',1956,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('hutchfr01','TSN Manager of the Year',1957,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('stengca01','TSN Manager of the Year',1958,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('alstowa01','TSN Manager of the Year',1959,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('murtada01','TSN Manager of the Year',1960,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('houkra01','TSN Manager of the Year',1961,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('rignebi01','TSN Manager of the Year',1962,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('alstowa01','TSN Manager of the Year',1963,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('keanejo99','TSN Manager of the Year',1964,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('melesa01','TSN Manager of the Year',1965,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('bauerha01','TSN Manager of the Year',1966,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('willidi02','TSN Manager of the Year',1967,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('smithma01','TSN Manager of the Year',1968,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('hodgegi01','TSN Manager of the Year',1969,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('murtada01','TSN Manager of the Year',1970,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('foxch01','TSN Manager of the Year',1971,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('tannech01','TSN Manager of the Year',1972,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('mauchge01','TSN Manager of the Year',1973,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('virdobi01','TSN Manager of the Year',1974,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('johnsda01','TSN Manager of the Year',1975,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('ozarkda99','TSN Manager of the Year',1976,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('weaveea99','TSN Manager of the Year',1977,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('bambege01','TSN Manager of the Year',1978,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('weaveea99','TSN Manager of the Year',1979,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('virdobi01','TSN Manager of the Year',1980,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('martibi02','TSN Manager of the Year',1981,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('herzowh01','TSN Manager of the Year',1982,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('larusto01','TSN Manager of the Year',1983,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('freyji99','TSN Manager of the Year',1984,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('coxbo01','TSN Manager of the Year',1985,'ML',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('lanieha01','TSN Manager of the Year',1986,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('mcnamjo99','TSN Manager of the Year',1986,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('andersp01','TSN Manager of the Year',1987,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('rodgebu01','TSN Manager of the Year',1987,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('larusto01','TSN Manager of the Year',1988,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('leylaji99','TSN Manager of the Year',1988,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('robinfr02','TSN Manager of the Year',1989,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('zimmedo01','TSN Manager of the Year',1989,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('leylaji99','TSN Manager of the Year',1990,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('torboje01','TSN Manager of the Year',1990,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('coxbo01','TSN Manager of the Year',1991,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('kellyto01','TSN Manager of the Year',1991,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('larusto01','TSN Manager of the Year',1992,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('leylaji99','TSN Manager of the Year',1992,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('coxbo01','TSN Manager of the Year',1993,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('oatesjo01','TSN Manager of the Year',1993,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('aloufe01','TSN Manager of the Year',1994,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('showabu99','TSN Manager of the Year',1994,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('baylodo01','TSN Manager of the Year',1995,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('hargrmi01','TSN Manager of the Year',1995,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('bochybr01','TSN Manager of the Year',1996,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('oatesjo01','TSN Manager of the Year',1996,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('bakerdu01','TSN Manager of the Year',1997,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('johnsda02','TSN Manager of the Year',1997,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('bochybr01','TSN Manager of the Year',1998,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('torrejo01','TSN Manager of the Year',1998,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('coxbo01','TSN Manager of the Year',1999,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('williji03','TSN Manager of the Year',1999,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('bakerdu01','TSN Manager of the Year',2000,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('manueje01','TSN Manager of the Year',2000,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('bowala01','TSN Manager of the Year',2001,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('pinielo01','TSN Manager of the Year',2001,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('coxbo01','TSN Manager of the Year',2002,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('sciosmi01','TSN Manager of the Year',2002,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('coxbo01','TSN Manager of the Year',2003,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('penato01','TSN Manager of the Year',2003,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('coxbo01','TSN Manager of the Year',2004,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('gardero01','TSN Manager of the Year',2004,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('coxbo01','TSN Manager of the Year',2005,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('guilloz01','TSN Manager of the Year',2005,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('girarjo01','TSN Manager of the Year',2006,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('leylaji99','TSN Manager of the Year',2006,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('melvibo01','TSN Manager of the Year',2007,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('wedgeer01','TSN Manager of the Year',2007,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('maddojo99','TSN Manager of the Year',2008,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('gonzafr99','TSN Manager of the Year',2008,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('sciosmi01','TSN Manager of the Year',2009,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('tracyji01','TSN Manager of the Year',2009,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('gardero01','TSN Manager of the Year',2010,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('blackbu02','TSN Manager of the Year',2010,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('maddojo99','TSN Manager of the Year',2011,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('gibsoki01','TSN Manager of the Year',2011,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('showabu99','TSN Manager of the Year',2012,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('johnsda02','TSN Manager of the Year',2012,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('farrejo03','TSN Manager of the Year',2013,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('hurdlcl01','TSN Manager of the Year',2013,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('showabu99','TSN Manager of the Year',2014,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('willima04','TSN Manager of the Year',2014,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('molitpa01','TSN Manager of the Year',2015,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('collite99','TSN Manager of the Year',2015,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('showabu99','BBWAA Manager of the year',2014,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('willima04','BBWAA Manager of the year',2014,'NL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('banisje01','BBWAA Manager of the year',2015,'AL',NULL,NULL); INSERT INTO AwardsManagers(playerID,awardID,yearID,lgID,tie,notes) VALUES ('maddojo99','BBWAA Manager of the year',2015,'NL',NULL,NULL);
<reponame>LuisaRestrepo/MisionTIC2022-Ciclo2-Grupo464748<gh_stars>1-10 USE sakila; SELECT * FROM payment WHERE rental_id = 14488; DELETE FROM payment WHERE rental_id = 14488;
<filename>WebRoot/install/jsprun_zh_CN.sql<gh_stars>1-10 -- -------------------------------------------------- -- -- JspRun! SQL file for installation -- $Id: jsprun.sql utf8 10517 2007-09-04 01:15:26Z monkey $ -- -- -------------------------------------------------- DROP TABLE IF EXISTS jrun_access; CREATE TABLE jrun_access ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', fid smallint(6) unsigned NOT NULL DEFAULT '0', allowview tinyint(1) NOT NULL DEFAULT '0', allowpost tinyint(1) NOT NULL DEFAULT '0', allowreply tinyint(1) NOT NULL DEFAULT '0', allowgetattach tinyint(1) NOT NULL DEFAULT '0', allowpostattach tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (uid,fid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_activities; CREATE TABLE jrun_activities ( tid mediumint(8) unsigned NOT NULL DEFAULT '0', uid mediumint(8) unsigned NOT NULL DEFAULT '0', cost mediumint(8) unsigned NOT NULL DEFAULT '0', starttimefrom int(10) unsigned NOT NULL DEFAULT '0', starttimeto int(10) unsigned NOT NULL DEFAULT '0', place char(40) NOT NULL DEFAULT '', class char(25) NOT NULL DEFAULT '', gender tinyint(1) NOT NULL DEFAULT '0', number smallint(5) unsigned NOT NULL DEFAULT '0', expiration int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (tid), KEY uid (uid,starttimefrom) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_activityapplies; CREATE TABLE jrun_activityapplies ( applyid int(10) unsigned NOT NULL AUTO_INCREMENT, tid mediumint(8) unsigned NOT NULL DEFAULT '0', username char(15) NOT NULL DEFAULT '', uid mediumint(8) unsigned NOT NULL DEFAULT '0', message char(200) NOT NULL DEFAULT '', verified tinyint(1) NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', payment mediumint(8) NOT NULL DEFAULT '0', contact char(200) NOT NULL, PRIMARY KEY (applyid), KEY uid (uid), KEY tid (tid), KEY dateline (tid,dateline) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_adminactions; CREATE TABLE jrun_adminactions ( admingid smallint(6) unsigned NOT NULL DEFAULT '0', disabledactions text NOT NULL, PRIMARY KEY (admingid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_admingroups; CREATE TABLE jrun_admingroups ( admingid smallint(6) unsigned NOT NULL DEFAULT '0', alloweditpost tinyint(1) NOT NULL DEFAULT '0', alloweditpoll tinyint(1) NOT NULL DEFAULT '0', allowstickthread tinyint(1) NOT NULL DEFAULT '0', allowmodpost tinyint(1) NOT NULL DEFAULT '0', allowdelpost tinyint(1) NOT NULL DEFAULT '0', allowmassprune tinyint(1) NOT NULL DEFAULT '0', allowrefund tinyint(1) NOT NULL DEFAULT '0', allowcensorword tinyint(1) NOT NULL DEFAULT '0', allowviewip tinyint(1) NOT NULL DEFAULT '0', allowbanip tinyint(1) NOT NULL DEFAULT '0', allowedituser tinyint(1) NOT NULL DEFAULT '0', allowmoduser tinyint(1) NOT NULL DEFAULT '0', allowbanuser tinyint(1) NOT NULL DEFAULT '0', allowpostannounce tinyint(1) NOT NULL DEFAULT '0', allowviewlog tinyint(1) NOT NULL DEFAULT '0', allowbanpost tinyint(1) NOT NULL DEFAULT '0', disablepostctrl tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (admingid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; INSERT INTO jrun_admingroups VALUES ('1','1','1','3','1','1','1','1','1','1','1','1','1','1','1','1','1','1'); INSERT INTO jrun_admingroups VALUES ('2','1','0','2','1','1','1','1','1','1','1','1','1','1','1','1','1','1'); INSERT INTO jrun_admingroups VALUES ('3','1','0','1','1','1','0','0','0','1','0','0','1','1','0','0','1','1'); INSERT INTO jrun_admingroups VALUES ('16','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','1','0'); DROP TABLE IF EXISTS jrun_adminnotes; CREATE TABLE jrun_adminnotes ( id mediumint(8) unsigned NOT NULL AUTO_INCREMENT, admin varchar(15) NOT NULL DEFAULT '', access tinyint(3) NOT NULL DEFAULT '0', adminid tinyint(3) NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', expiration int(10) unsigned NOT NULL DEFAULT '0', message text NOT NULL, PRIMARY KEY (id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_adminsessions; CREATE TABLE jrun_adminsessions ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', ip char(15) NOT NULL DEFAULT '', dateline int(10) unsigned NOT NULL DEFAULT '0', errorcount tinyint(1) NOT NULL DEFAULT '0', KEY uid (uid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_advertisements; CREATE TABLE jrun_advertisements ( advid mediumint(8) unsigned NOT NULL AUTO_INCREMENT, available tinyint(1) NOT NULL DEFAULT '0', `type` varchar(50) NOT NULL DEFAULT '0', displayorder tinyint(3) NOT NULL DEFAULT '0', title varchar(50) NOT NULL DEFAULT '', targets text NOT NULL, parameters text NOT NULL, `code` text NOT NULL, starttime int(10) unsigned NOT NULL DEFAULT '0', endtime int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (advid), KEY available (available,displayorder) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_announcements; CREATE TABLE jrun_announcements ( id smallint(6) unsigned NOT NULL AUTO_INCREMENT, author varchar(15) NOT NULL DEFAULT '', `subject` varchar(250) NOT NULL DEFAULT '', `type` tinyint(1) NOT NULL DEFAULT '0', displayorder tinyint(3) NOT NULL DEFAULT '0', starttime int(10) unsigned NOT NULL DEFAULT '0', endtime int(10) unsigned NOT NULL DEFAULT '0', message text NOT NULL, groups text NOT NULL, PRIMARY KEY (id), KEY timespan (starttime,endtime) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_attachments; CREATE TABLE jrun_attachments ( aid mediumint(8) unsigned NOT NULL AUTO_INCREMENT, tid mediumint(8) unsigned NOT NULL DEFAULT '0', pid int(10) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', readperm tinyint(3) unsigned NOT NULL DEFAULT '0', price smallint(6) unsigned NOT NULL DEFAULT '0', filename char(100) NOT NULL DEFAULT '', description char(100) NOT NULL DEFAULT '', filetype char(50) NOT NULL DEFAULT '', filesize int(10) unsigned NOT NULL DEFAULT '0', attachment char(100) NOT NULL DEFAULT '', downloads mediumint(8) NOT NULL DEFAULT '0', isimage tinyint(1) unsigned NOT NULL DEFAULT '0', uid mediumint(8) unsigned NOT NULL DEFAULT '0', thumb tinyint(1) unsigned NOT NULL DEFAULT '0', remote tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (aid), KEY tid (tid), KEY pid (pid,aid), KEY uid (uid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_attachpaymentlog; CREATE TABLE jrun_attachpaymentlog ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', aid mediumint(8) unsigned NOT NULL DEFAULT '0', authorid mediumint(8) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', amount int(10) unsigned NOT NULL DEFAULT '0', netamount int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (aid,uid), KEY uid (uid), KEY authorid (authorid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_attachtypes; CREATE TABLE jrun_attachtypes ( id smallint(6) unsigned NOT NULL AUTO_INCREMENT, extension char(12) NOT NULL DEFAULT '', maxsize int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_banned; CREATE TABLE jrun_banned ( id smallint(6) unsigned NOT NULL AUTO_INCREMENT, ip1 smallint(3) NOT NULL DEFAULT '0', ip2 smallint(3) NOT NULL DEFAULT '0', ip3 smallint(3) NOT NULL DEFAULT '0', ip4 smallint(3) NOT NULL DEFAULT '0', admin varchar(15) NOT NULL DEFAULT '', dateline int(10) unsigned NOT NULL DEFAULT '0', expiration int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_bbcodes; CREATE TABLE jrun_bbcodes ( id mediumint(8) unsigned NOT NULL AUTO_INCREMENT, available tinyint(1) NOT NULL DEFAULT '0', tag varchar(100) NOT NULL DEFAULT '', icon varchar(255) NOT NULL, replacement text NOT NULL, example varchar(255) NOT NULL DEFAULT '', explanation text NOT NULL, params tinyint(1) unsigned NOT NULL DEFAULT '1', prompt text NOT NULL, nest tinyint(3) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4; INSERT INTO jrun_bbcodes VALUES ('1','0','fly','bb_fly.gif','<marquee width=\"90%\" behavior=\"alternate\" scrollamount=\"3\">{1}</marquee>','[fly]This is sample text[/fly]','使内容横向滚动,这个效果类似 HTML 的 marquee 标签,注意:这个效果只在 Internet Explorer 浏览器下有效。','1','请输入滚动显示的文字:','1'); INSERT INTO jrun_bbcodes VALUES ('2','0','flash','bb_flash.gif','<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\"550\" height=\"400\"><param name=\"allowScriptAccess\" value=\"sameDomain\"><param name=\"movie\" value=\"{1}\"><param name=\"quality\" value=\"high\"><param name=\"bgcolor\" value=\"#ffffff\"><embed src=\"{1}\" quality=\"high\" bgcolor=\"#ffffff\" width=\"550\" height=\"400\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" /></object>','Flash Movie','嵌入 Flash 动画','1','请输入 Flash 动画的 URL:','1'); INSERT INTO jrun_bbcodes VALUES ('3','1','qq','bb_qq.gif','<a href=\"http://wpa.qq.com/msgrd?V=1&Uin={1}&amp;Site=[JspRun!]&amp;Menu=yes\" target=\"_blank\"><img src=\"http://wpa.qq.com/pa?p=1:{1}:1\" border=\"0\"></a>','[qq]688888[/qq]','显示 QQ 在线状态,点这个图标可以和他(她)聊天','1','请输入显示在线状态 QQ 号码:','1'); INSERT INTO jrun_bbcodes VALUES ('4', '0', 'sup', 'bb_sup.gif', '<sup>{1}</sup>', 'X[sup]2[/sup]', '上标', 1, '请输入上标文字:', '1'); INSERT INTO jrun_bbcodes VALUES ('5', '0', 'sub', 'bb_sub.gif', '<sub>{1}</sub>', 'X[sub]2[/sub]', '下标', 1, '请输入下标文字:', '1'); DROP TABLE IF EXISTS jrun_buddys; CREATE TABLE jrun_buddys ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', buddyid mediumint(8) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', description char(255) NOT NULL DEFAULT '', KEY uid (uid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_caches; CREATE TABLE jrun_caches ( cachename varchar(32) NOT NULL, `type` tinyint(3) unsigned NOT NULL, dateline int(10) unsigned NOT NULL, expiration int(10) unsigned NOT NULL, `data` mediumtext NOT NULL, PRIMARY KEY (cachename), KEY expiration (`type`,expiration) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_creditslog; CREATE TABLE jrun_creditslog ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', fromto char(15) NOT NULL DEFAULT '', sendcredits tinyint(1) NOT NULL DEFAULT '0', receivecredits tinyint(1) NOT NULL DEFAULT '0', send int(10) unsigned NOT NULL DEFAULT '0', receive int(10) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', operation char(3) NOT NULL DEFAULT '', KEY uid (uid,dateline) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_crons; CREATE TABLE jrun_crons ( cronid smallint(6) unsigned NOT NULL AUTO_INCREMENT, available tinyint(1) NOT NULL DEFAULT '0', `type` enum('user','system') NOT NULL DEFAULT 'user', `name` char(50) NOT NULL DEFAULT '', filename char(50) NOT NULL DEFAULT '', lastrun int(10) unsigned NOT NULL DEFAULT '0', nextrun int(10) unsigned NOT NULL DEFAULT '0', weekday tinyint(1) NOT NULL DEFAULT '0', `day` tinyint(2) NOT NULL DEFAULT '0', `hour` tinyint(2) NOT NULL DEFAULT '0', `minute` char(36) NOT NULL DEFAULT '', PRIMARY KEY (cronid), KEY nextrun (available,nextrun) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=16; INSERT INTO jrun_crons VALUES ('1','1','system','清空今日发帖数','todayposts_daily.jsp','1170601081','1170604800','-1','-1','0','0'); INSERT INTO jrun_crons VALUES ('2','1','system','清空本月在线时间','onlinetime_monthly.jsp','1170601081','1172678400','-1','1','0','0'); INSERT INTO jrun_crons VALUES ('3','1','system','每日数据清理','cleanup_daily.jsp','1170601083','1170624600','-1','-1','5','30'); INSERT INTO jrun_crons VALUES ('4','1','system','生日统计与邮件祝福','birthdays_daily.jsp','1170601084','1170604800','-1','-1','0','0'); INSERT INTO jrun_crons VALUES ('5','1','system','主题回复通知','notify_daily.jsp','1170601084','1170622800','-1','-1','5','00'); INSERT INTO jrun_crons VALUES ('6','1','system','每日公告清理','announcements_daily.jsp','1170601084','1170604800','-1','-1','0','0'); INSERT INTO jrun_crons VALUES ('7','1','system','限时操作清理','threadexpiries_hourly.jsp','1170601084','1170622800','-1','-1','5','0'); INSERT INTO jrun_crons VALUES ('8','1','system','论坛推广清理','promotions_hourly.jsp','1170601094','1170604800','-1','-1','0','00'); INSERT INTO jrun_crons VALUES ('9','1','system','每月主题清理','cleanup_monthly.jsp','0','1170600452','-1','1','6','00'); INSERT INTO jrun_crons VALUES ('12','1','system','道具自动补货','magics_daily.jsp','0','1170600452','-1','-1','0','0'); INSERT INTO jrun_crons VALUES ('13','1','system','每日验证问答更新','secqaa_daily.jsp','0','1170600452','-1','-1','6','0'); INSERT INTO jrun_crons VALUES ('14','1','system','每日标签更新','tags_daily.jsp','0','1170600452','-1','-1','0','0'); INSERT INTO jrun_crons VALUES ('15','0','system','勋章自动授予','awardmedals.jsp','0','1170600452','-1','-1','0','0'); DROP TABLE IF EXISTS jrun_debateposts; CREATE TABLE jrun_debateposts ( pid int(10) unsigned NOT NULL DEFAULT '0', stand tinyint(1) NOT NULL DEFAULT '0', tid mediumint(8) unsigned NOT NULL DEFAULT '0', uid mediumint(8) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', voters mediumint(10) unsigned NOT NULL DEFAULT '0', voterids text NOT NULL, PRIMARY KEY (pid), KEY pid (pid,stand), KEY tid (tid,uid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_debates; CREATE TABLE jrun_debates ( tid mediumint(8) unsigned NOT NULL DEFAULT '0', uid mediumint(8) unsigned NOT NULL DEFAULT '0', starttime int(10) unsigned NOT NULL DEFAULT '0', endtime int(10) unsigned NOT NULL DEFAULT '0', affirmdebaters mediumint(8) unsigned NOT NULL DEFAULT '0', negadebaters mediumint(8) unsigned NOT NULL DEFAULT '0', affirmvotes mediumint(8) unsigned NOT NULL DEFAULT '0', negavotes mediumint(8) unsigned NOT NULL DEFAULT '0', umpire varchar(15) NOT NULL DEFAULT '', winner tinyint(1) NOT NULL DEFAULT '0', bestdebater varchar(50) NOT NULL DEFAULT '', affirmpoint text NOT NULL, negapoint text NOT NULL, umpirepoint text NOT NULL, affirmvoterids text NOT NULL, negavoterids text NOT NULL, affirmreplies mediumint(8) unsigned NOT NULL, negareplies mediumint(8) unsigned NOT NULL, PRIMARY KEY (tid), KEY uid (uid,starttime) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_failedlogins; CREATE TABLE jrun_failedlogins ( ip char(15) NOT NULL DEFAULT '', count tinyint(1) unsigned NOT NULL DEFAULT '0', lastupdate int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (ip) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_faqs; CREATE TABLE jrun_faqs ( id smallint(6) NOT NULL AUTO_INCREMENT, fpid smallint(6) unsigned NOT NULL DEFAULT '0', displayorder tinyint(3) NOT NULL DEFAULT '0', identifier varchar(20) NOT NULL, keyword varchar(50) NOT NULL, title varchar(50) NOT NULL, message text NOT NULL, PRIMARY KEY (id), KEY fpid (fpid,displayorder) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=35; INSERT INTO jrun_faqs VALUES ('1','0','1','','','用户须知',''); INSERT INTO jrun_faqs VALUES ('2','1','1','','','我必须要注册吗?','这取决于管理员如何设置 JspRun! 论坛的用户组权限选项,您甚至有可能必须在注册成正式用户后后才能浏览帖子。当然,在通常情况下,您至少应该是正式用户才能发新帖和回复已有帖子。请 <a href="register.jsp" target="_blank">点击这里</a> 免费注册成为我们的新用户!\r\n<br /><br />强烈建议您注册,这样会得到很多以游客身份无法实现的功能。'); INSERT INTO jrun_faqs VALUES ('3','1','2','login','登录帮助','我如何登录论坛?','如果您已经注册成为该论坛的会员,哪么您只要通过访问页面右上的<a href="logging.jsp?action=login" target="_blank">登录</a>,进入登陆界面填写正确的用户名和密码(如果您设有安全提问,请选择正确的安全提问并输入对应的答案),点击“提交”即可完成登陆如果您还未注册请点击这里。<br /><br />\r\n如果需要保持登录,请选择相应的 Cookie 时间,在此时间范围内您可以不必输入密码而保持上次的登录状态。'); INSERT INTO jrun_faqs VALUES ('4','1','3','','','忘记我的登录密码,怎么办?','当您忘记了用户登录的密码,您可以通过注册时填写的电子邮箱重新设置一个新的密码。点击登录页面中的 <a href="member.jsp?action=lostpasswd" target="_blank">取回密码</a>,按照要求填写您的个人信息,系统将自动发送重置密码的邮件到您注册时填写的 Email 信箱中。如果您的 Email 已失效或无法收到信件,请与论坛管理员联系。'); INSERT INTO jrun_faqs VALUES ('5','0','2','','','帖子相关操作',''); INSERT INTO jrun_faqs VALUES ('6','0','3','','','基本功能操作',''); INSERT INTO jrun_faqs VALUES ('7','0','4','','','其他相关问题',''); INSERT INTO jrun_faqs VALUES ('8','1','4','','','我如何使用个性化头像','在<a href="memcp.jsp" target="_blank">控制面板</a>中的“编辑个人资料”,有一个“头像”的选项,可以使用论坛自带的头像或者自定义的头像。'); INSERT INTO jrun_faqs VALUES ('9','1','5','','','我如何修改登录密码','在<a href="memcp.jsp" target="_blank">控制面板</a>中的“编辑个人资料”,填写“原密码”,“新密码”,“确认新密码”。点击“提交”,即可修改。'); INSERT INTO jrun_faqs VALUES ('10','1','6','','','我如何使用个性化签名和昵称','在<a href="memcp.jsp" target="_blank">控制面板</a>中的“编辑个人资料”,有一个“昵称”和“个人签名”的选项,可以在此设置。'); INSERT INTO jrun_faqs VALUES ('11','5','1','','','我如何发表新主题','在论坛版块中,点“新帖”,如果有权限,您可以看到有“投票,悬赏,活动,交易”,点击即可进入功能齐全的发帖界面。\r\n<br /><br />注意:一般论坛都设置为高级别的用户组才能发布这四类特殊主题。如发布普通主题,直接点击“新帖”,当然您也可以使用版块下面的“快速发帖”发表新帖(如果此选项打开)。一般论坛都设置为需要登录后才能发帖。'); INSERT INTO jrun_faqs VALUES ('12','5','2','','','我如何发表回复','回复有分三种:第一、贴子最下方的快速回复; 第二、在您想回复的楼层点击右下方“回复”; 第三、完整回复页面,点击本页“新帖”旁边的“回复”。'); INSERT INTO jrun_faqs VALUES ('13','5','3','','','我如何编辑自己的帖子','在帖子的右下角,有编辑,回复,报告等选项,点击编辑,就可以对帖子进行编辑。'); INSERT INTO jrun_faqs VALUES ('14','5','4','','','我如何出售购买主题','<li>出售主题:\r\n当您进入发贴界面后,如果您所在的用户组有发买卖贴的权限,在“售价(金钱)”后面填写主题的价格,这样其他用户在查看这个帖子的时候就需要进入交费的过程才可以查看帖子。</li>\r\n<li>购买主题:\r\n浏览你准备购买的帖子,在帖子的相关信息的下面有[查看付款记录] [购买主题] [返回上一页] \r\n等链接,点击“购买主题”进行购买。</li>'); INSERT INTO jrun_faqs VALUES ('15','5','5','','','我如何出售购买附件','<li>上传附件一栏有个售价的输入框,填入出售价格即可实现需要支付才可下载附件的功能。</li>\r\n<li>点击帖子中[购买附件]按钮或点击附件的下载链接会跳转至附件购买页面,确认付款的相关信息后点提交按钮,即可得到附件的下载权限。只需购买一次,就有该附件的永远下载权限。</li>'); INSERT INTO jrun_faqs VALUES ('16','5','6','','','我如何上传附件','<li>发表新主题的时候上传附件,步骤为:写完帖子标题和内容后点上传附件右方的浏览,然后在本地选择要上传附件的具体文件名,最后点击发表话题。</li>\r\n<li>发表回复的时候上传附件,步骤为:写完回复楼主的内容,然后点上传附件右方的浏览,找到需要上传的附件,点击发表回复。</li>'); INSERT INTO jrun_faqs VALUES ('17','5','7','','','我如何实现发帖时图文混排效果','<li>发表新主题的时候点击上传附件左侧的“[插入]”链接把附件标记插入到帖子中适当的位置即可。</li>'); INSERT INTO jrun_faqs VALUES ('18','5','8','JspRuncode','JspRun!代码','我如何使用JspRun!代码','<table width="99%" cellpadding="2" cellspacing="2">\r\n <tr>\r\n <th width="50%">JspRun!代码</th>\r\n <th width="402">效果</th>\r\n </tr>\r\n <tr>\r\n <td>[b]粗体文字 Abc[/b]</td>\r\n <td><strong>粗体文字 Abc</strong></td>\r\n </tr>\r\n <tr>\r\n <td>[i]斜体文字 Abc[/i]</td>\r\n <td><em>斜体文字 Abc</em></td>\r\n </tr>\r\n <tr>\r\n <td>[u]下划线文字 Abc[/u]</td>\r\n <td><u>下划线文字 Abc</u></td>\r\n </tr>\r\n <tr>\r\n <td>[color=red]红颜色[/color]</td>\r\n <td><font color="red">红颜色</font></td>\r\n </tr>\r\n <tr>\r\n <td>[size=3]文字大小为 3[/size] </td>\r\n <td><font size="3">文字大小为 3</font></td>\r\n </tr>\r\n <tr>\r\n <td>[font=仿宋]字体为仿宋[/font] </td>\r\n <td><font face="仿宋">字体为仿宋</font></td>\r\n </tr>\r\n <tr>\r\n <td>[align=Center]内容居中[/align] </td>\r\n <td><div align="center">内容居中</div></td>\r\n </tr>\r\n <tr>\r\n <td>[url]http://www.jsprun.com[/url]</td>\r\n <td><a href="http://www.jsprun.com" target="_blank">http://www.jsprun.com</a>(超级链接)</td>\r\n </tr>\r\n <tr>\r\n <td>[url=http://www.JspRun.net]JspRun! 论坛[/url]</td>\r\n <td><a href="http://www.JspRun.net" target="_blank">JspRun! 论坛</a>(超级链接)</td>\r\n </tr>\r\n <tr>\r\n <td>[email]<EMAIL>[/email]</td>\r\n <td><a href="mailto:<EMAIL>"><EMAIL></a>(E-mail链接)</td>\r\n </tr>\r\n <tr>\r\n <td>[email=<EMAIL>]JspRun! 技术支持[/email]</td>\r\n <td><a href="mailto:<EMAIL>">JspRun! 技术支持(E-mail链接)</a></td>\r\n </tr>\r\n <tr>\r\n <td>[quote]JspRun! 是由北京飞速创想科技有限公司开发的论坛软件[/quote] </td>\r\n <td><div style="font-size: 12px"><br /><br /><div class="quote"><h5>引用:</h5><blockquote>原帖由 <i>admin</i> 于 2006-12-26 08:45 发表<br />JspRun! 是由北京飞速创想科技有限公司开发的论坛软件</blockquote></div></td>\r\n </tr>\r\n <tr>\r\n <td>[code]JspRun! 是由北京飞速创想科技有限公司开发的论坛软件[/code] </td>\r\n <td><div style="font-size: 12px"><br /><br /><div class="blockcode"><h5>代码:</h5><code id="code0">JspRun! 是由北京飞速创想科技有限公司开发的论坛软件</code></div></td>\r\n </tr>\r\n <tr>\r\n <td>[hide]隐藏内容 Abc[/hide]</td>\r\n <td>效果:只有当浏览者回复本帖时,才显示其中的内容,否则显示为“<b>**** 隐藏信息 跟帖后才能显示 *****</b>”</td>\r\n </tr>\r\n <tr>\r\n <td>[hide=20]隐藏内容 Abc[/hide]</td>\r\n <td>效果:只有当浏览者积分高于 20 点时,才显示其中的内容,否则显示为“<b>**** 隐藏信息 积分高于 20 点才能显示 ****</b>”</td>\r\n </tr>\r\n <tr>\r\n <td>[list][*]列表项 #1[*]列表项 #2[*]列表项 #3[/list]</td>\r\n <td><ul>\r\n <li>列表项 #1</li>\r\n <li>列表项 #2</li>\r\n <li>列表项 #3 </li>\r\n </ul></td>\r\n </tr>\r\n <tr>\r\n <td>[img]http://www.JspRun.net/images/default/logo.gif[/img] </td>\r\n <td>帖子内显示为:<img src="http://www.JspRun.net/images/default/logo.gif" /></td>\r\n </tr>\r\n <tr>\r\n <td>[img=88,31]http://www.JspRun.net/images/logo.gif[/img] </td>\r\n <td>帖子内显示为:<img src="http://www.JspRun.net/images/logo.gif" /></td>\r\n </tr> <tr>\r\n <td>[media=400,300,1]多媒体 URL[/media]</td>\r\n <td>帖子内嵌入多媒体,宽 400 高 300 自动播放</td>\r\n </tr>\r\n <tr>\r\n <td>[fly]飞行的效果[/fly]</td>\r\n <td><marquee scrollamount="3" behavior="alternate" width="90%">飞行的效果</marquee></td>\r\n </tr>\r\n <tr>\r\n <td>[flash]Flash网页地址 [/flash] </td>\r\n <td>帖子内嵌入 Flash 动画</td>\r\n </tr>\r\n <tr>\r\n <td>[qq]123456789[/qq]</td>\r\n <td>在帖子内显示 QQ 在线状态,点这个图标可以和他(她)聊天</td>\r\n </tr>\r\n <tr>\r\n <td>X[sup]2[/sup]</td>\r\n <td>X<sup>2</sup></td>\r\n </tr>\r\n <tr>\r\n <td>X[sub]2[/sub]</td>\r\n <td>X<sub>2</sub></td>\r\n </tr>\r\n \r\n</table>'); INSERT INTO jrun_faqs VALUES ('19','6','1','','','我如何使用短消息功能','您登录后,点击导航栏上的短消息按钮,即可进入短消息管理。\r\n点击[发送短消息]按钮,在"发送到"后输入收信人的用户名,填写完标题和内容,点提交(或按 Ctrl+Enter 发送)即可发出短消息。\r\n<br /><br />如果要保存到发件箱,以在提交前勾选"保存到发件箱中"前的复选框。\r\n<ul>\r\n<li>点击收件箱可打开您的收件箱查看收到的短消息。</li>\r\n<li>点击发件箱可查看保存在发件箱里的短消息。 </li>\r\n<li>点击已发送来查看对方是否已经阅读您的短消息。 </li>\r\n<li>点击搜索短消息就可通过关键字,发信人,收信人,搜索范围,排序类型等一系列条件设定来找到您需要查找的短消息。 </li>\r\n<li>点击导出短消息可以将自己的短消息导出htm文件保存在自己的电脑里。 </li>\r\n<li>点击忽略列表可以设定忽略人员,当这些被添加的忽略用户给您发送短消息时将不予接收。</li>\r\n</ul>'); INSERT INTO jrun_faqs VALUES ('20','6','2','','','我如何向好友群发短消息','登录论坛后,点击短消息,然后点发送短消息,如果有好友的话,好友群发后面点击全选,可以给所有的好友群发短消息。'); INSERT INTO jrun_faqs VALUES ('21','6','3','','','我如何查看论坛会员数据','点击导航栏上面的会员,然后显示的是此论坛的会员数据。注:需要论坛管理员开启允许你查看会员资料才可看到。'); INSERT INTO jrun_faqs VALUES ('22','6','4','','','我如何使用搜索','点击导航栏上面的搜索,输入搜索的关键字并选择一个范围,就可以检索到您有权限访问论坛中的相关的帖子。'); INSERT INTO jrun_faqs VALUES ('23','6','5','','','我如何使用“我的”功能','<li>会员必须首先<a href="logging.jsp?action=login" target="_blank">登录</a>,没有用户名的请先<a href="register.jsp" target="_blank">注册</a>;</li>\r\n<li>登录之后在论坛的左上方会出现一个“我的”的超级链接,点击这个链接之后就可进入到有关于您的信息。</li>'); INSERT INTO jrun_faqs VALUES ('24','7','1','','','我如何向管理员报告帖子','打开一个帖子,在帖子的右下角可以看到:“编辑”、“引用”、“报告”、“评分”、“回复”等等几个按钮,点击其中的“报告”按钮进入报告页面,填写好“我的意见”,单击“报告”按钮即可完成报告某个帖子的操作。'); INSERT INTO jrun_faqs VALUES ('25','7','2','','','我如何“打印”,“推荐”,“订阅”,“收藏”帖子','当你浏览一个帖子时,在它的右上角可以看到:“打印”、“推荐”、“订阅”、“收藏”,点击相对应的文字连接即可完成相关的操作。'); INSERT INTO jrun_faqs VALUES ('26','7','3','','','我如何设置论坛好友','设置论坛好友有3种简单的方法。\r\n<ul>\r\n<li>当您浏览帖子的时候可以点击“发表时间”右侧的“加为好友”设置论坛好友。</li>\r\n<li>当您浏览某用户的个人资料时,可以点击头像下方的“加为好友”设置论坛好友。</li>\r\n<li>您也可以在控制面板中的好友列表增加您的论坛好友。</li>\r\n<ul>'); INSERT INTO jrun_faqs VALUES ('27','7','4','','','我如何使用RSS订阅','在论坛的首页和进入版块的页面的右上角就会出现一个rss订阅的小图标<img src="images/common/xml.gif" border="0">,鼠标点击之后将出现本站点的rss地址,你可以将此rss地址放入到你的rss阅读器中进行订阅。'); INSERT INTO jrun_faqs VALUES ('28','7','5','','','我如何清除Cookies','cookie是由浏览器保存在系统内的,在论坛的右下角提供有"清除 Cookies"的功能,点击后即可帮您清除系统内存储的Cookies。 <br /><br />\r\n以下介绍3种常用浏览器的Cookies清除方法(注:此方法为清除全部的Cookies,请谨慎使用)\r\n<ul>\r\n<li>Internet Explorer: 工具(选项)内的Internet选项→常规选项卡内,IE6直接可以看到删除Cookies的按钮点击即可,IE7为“浏 览历史记录”选项内的删除点击即可清空Cookies。对于Maxthon,腾讯TT等IE核心浏览器一样适用。 </li>\r\n<li>FireFox:工具→选项→隐私→Cookies→显示Cookie里可以对Cookie进行对应的删除操作。 </li>\r\n<li>Opera:工具→首选项→高级→Cookies→管理Cookies即可对Cookies进行删除的操作。</li>\r\n</ul>'); INSERT INTO jrun_faqs VALUES ('29','7','6','','','我如何联系管理员','您可以通过论坛底部右下角的“联系我们”链接快速的发送邮件与我们联系。也可以通过管理团队中的用户资料发送短消息给我们。'); INSERT INTO jrun_faqs VALUES ('30','7','7','','','我如何开通个人空间','如果您有权限开通“我的个人空间”,当用户登录论坛以后在论坛首页,用户名的右方点击开通我的个人空间,进入个人空间的申请页面。'); INSERT INTO jrun_faqs VALUES ('31','7','8','','','我如何将自己的主题加入个人空间','如果您有权限开通“我的个人空间”,在您发表的主题上方点击“加入个人空间”,您发表的主题以及回复都会加入到您空间的日志里。'); INSERT INTO jrun_faqs VALUES ('32','5','9','smilies','表情','我如何使用表情代码','表情是一些用字符表示的表情符号,如果打开表情功能,JspRun! 会把一些符号转换成小图像,显示在帖子中,更加美观明了。目前支持下面这些表情:<br /><br />\r\n<table cellspacing="0" cellpadding="4" width="30%" align="center">\r\n<tr><th width="25%" align="center">表情符号</td>\r\n<th width="75%" align="center">对应图像</td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:)</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/smile.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:(</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/sad.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:D</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/biggrin.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:\\\'(</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/cry.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:@</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/huffy.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:o</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/shocked.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:P</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/tongue.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:#</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/shy.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">;P</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/titter.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:L</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/sweat.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:Q</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/mad.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:lol</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/lol.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:hug:</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/hug.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:victory:</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/victory.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:time:</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/time.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:kiss:</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/kiss.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:handshake</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/handshake.gif" alt="" /></td>\r\n</tr>\r\n<tr>\r\n<td width="25%" align="center">:call:</td>\r\n<td width="75%" align="center"><img src="images/smilies/default/call.gif" alt="" /></td>\r\n</tr>\r\n</table>\r\n</div></div>\r\n<br />'); INSERT INTO jrun_faqs VALUES ('33','0','5','','','论坛高级功能使用',''); INSERT INTO jrun_faqs VALUES ('34','33','0','forwardmessagelist','','论坛快速跳转关键字列表','JspRun! 支持自定义快速跳转页面,当某些操作完成后,可以不显示提示信息,直接跳转到新的页面,从而方便用户进行下一步操作,避免等待。 在实际使用当中,您根据需要,把关键字添加到快速跳转设置里面(后台 -- 基本设置 -- 界面与显示方式 -- [<a href="admincp.jsp?action=settings&do=styles&frames=yes" target="_blank">提示信息跳转设置</a> ]),让某些信息不显示而实现快速跳转。以下是 JspRun! 当中的一些常用信息的关键字:\r\n</br></br>\r\n\r\n<table width="99%" cellpadding="2" cellspacing="2">\r\n <tr>\r\n <td width="50%">关键字</td>\r\n <td width="50%">提示信息页面或者作用</td>\r\n </tr>\r\n <tr>\r\n <td>login_succeed</td>\r\n <td>登录成功</td>\r\n </tr>\r\n <tr>\r\n <td>logout_succeed</td>\r\n <td>退出登录成功</td>\r\n </tr>\r\n <tr>\r\n <td>thread_poll_succeed</td>\r\n <td>投票成功</td>\r\n </tr>\r\n <tr>\r\n <td>thread_rate_succeed</td>\r\n <td>评分成功</td>\r\n </tr>\r\n <tr>\r\n <td>register_succeed</td>\r\n <td>注册成功</td>\r\n </tr>\r\n <tr>\r\n <td>usergroups_join_succeed</td>\r\n <td>加入扩展组成功</td>\r\n </tr>\r\n <tr>\r\n <td height="22">usergroups_exit_succeed</td>\r\n <td>退出扩展组成功</td>\r\n </tr>\r\n <tr>\r\n <td>usergroups_update_succeed</td>\r\n <td>更新扩展组成功</td>\r\n </tr>\r\n <tr>\r\n <td>buddy_update_succeed</td>\r\n <td>好友更新成功</td>\r\n </tr>\r\n <tr>\r\n <td>post_edit_succeed</td>\r\n <td>编辑帖子成功</td>\r\n </tr>\r\n <tr>\r\n <td>post_edit_delete_succeed</td>\r\n <td>删除帖子成功</td>\r\n </tr>\r\n <tr>\r\n <td>post_reply_succeed</td>\r\n <td>回复成功</td>\r\n </tr>\r\n <tr>\r\n <td>post_newthread_succeed</td>\r\n <td>发表新主题成功</td>\r\n </tr>\r\n <tr>\r\n <td>post_reply_blog_succeed</td>\r\n <td>文集评论发表成功</td>\r\n </tr>\r\n <tr>\r\n <td>post_newthread_blog_succeed</td>\r\n <td>blog 发表成功</td>\r\n </tr>\r\n <tr>\r\n <td>profile_avatar_succeed</td>\r\n <td>头像设置成功</td>\r\n </tr>\r\n <tr>\r\n <td>profile_succeed</td>\r\n <td>个人资料更新成功</td>\r\n </tr>\r\n <tr>\r\n <td>pm_send_succeed</td>\r\n <td>短消息发送成功</td>\r\n </tr>\r\n </tr>\r\n <tr>\r\n <td>pm_delete_succeed</td>\r\n <td>短消息删除成功</td>\r\n </tr>\r\n </tr>\r\n <tr>\r\n <td>pm_ignore_succeed</td>\r\n <td>短消息忽略列表更新</td>\r\n </tr>\r\n <tr>\r\n <td>admin_succeed</td>\r\n <td>管理操作成功〔注意:设置此关键字后,所有管理操作完毕都将直接跳转〕</td>\r\n </tr>\r\n <tr>\r\n <td>admin_succeed_next&nbsp;</td>\r\n <td>管理成功并将跳转到下一个管理动作</td>\r\n </tr> \r\n <tr>\r\n <td>search_redirect</td>\r\n <td>搜索完成,进入搜索结果列表</td>\r\n </tr>\r\n</table>'); DROP TABLE IF EXISTS jrun_favorites; CREATE TABLE jrun_favorites ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', tid mediumint(8) unsigned NOT NULL DEFAULT '0', fid smallint(6) unsigned NOT NULL DEFAULT '0', KEY uid (uid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_forumfields; CREATE TABLE jrun_forumfields ( fid smallint(6) unsigned NOT NULL DEFAULT '0', description text NOT NULL, `password` varchar(12) NOT NULL DEFAULT '', icon varchar(255) NOT NULL DEFAULT '', postcredits varchar(255) NOT NULL DEFAULT '', replycredits varchar(255) NOT NULL DEFAULT '', getattachcredits varchar(255) NOT NULL DEFAULT '', postattachcredits varchar(255) NOT NULL DEFAULT '', digestcredits varchar(255) NOT NULL DEFAULT '', redirect varchar(255) NOT NULL DEFAULT '', attachextensions varchar(255) NOT NULL DEFAULT '', formulaperm text NOT NULL, moderators text NOT NULL, rules text NOT NULL, threadtypes text NOT NULL, viewperm text NOT NULL, postperm text NOT NULL, replyperm text NOT NULL, getattachperm text NOT NULL, postattachperm text NOT NULL, keywords text NOT NULL, modrecommend text NOT NULL, tradetypes text NOT NULL, typemodels mediumtext NOT NULL, PRIMARY KEY (fid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; INSERT INTO jrun_forumfields VALUES ('1','','','','','','','','','','','','','','','','','','','','','','',''); INSERT INTO jrun_forumfields VALUES ('2','','','','','','','','','','','','','','','','','','','','','','',''); DROP TABLE IF EXISTS jrun_forumlinks; CREATE TABLE jrun_forumlinks ( id smallint(6) unsigned NOT NULL AUTO_INCREMENT, displayorder tinyint(3) NOT NULL DEFAULT '0', `name` varchar(100) NOT NULL DEFAULT '', url varchar(100) NOT NULL DEFAULT '', description mediumtext NOT NULL, logo varchar(100) NOT NULL DEFAULT '', PRIMARY KEY (id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2; INSERT INTO jrun_forumlinks VALUES ('1','0','JspRun! 官方论坛','http://www.JspRun.net','提供最新 JspRun! 产品新闻、软件下载与技术交流','images/logo.gif'); DROP TABLE IF EXISTS jrun_forumrecommend; CREATE TABLE jrun_forumrecommend ( fid smallint(6) unsigned NOT NULL, tid mediumint(8) unsigned NOT NULL, displayorder tinyint(1) NOT NULL, `subject` char(80) NOT NULL, author char(15) NOT NULL, authorid mediumint(8) NOT NULL, moderatorid mediumint(8) NOT NULL, expiration int(10) unsigned NOT NULL, PRIMARY KEY (tid), KEY displayorder (fid,displayorder) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_forums; CREATE TABLE jrun_forums ( fid smallint(6) unsigned NOT NULL AUTO_INCREMENT, fup smallint(6) unsigned NOT NULL DEFAULT '0', `type` enum('group','forum','sub') NOT NULL DEFAULT 'forum', `name` char(50) NOT NULL DEFAULT '', `status` tinyint(1) NOT NULL DEFAULT '0', displayorder tinyint(3) NOT NULL DEFAULT '0', styleid smallint(6) unsigned NOT NULL DEFAULT '0', threads mediumint(8) unsigned NOT NULL DEFAULT '0', posts mediumint(8) unsigned NOT NULL DEFAULT '0', todayposts mediumint(8) unsigned NOT NULL DEFAULT '0', lastpost char(110) NOT NULL DEFAULT '', allowsmilies tinyint(1) NOT NULL DEFAULT '0', allowhtml tinyint(1) NOT NULL DEFAULT '0', allowbbcode tinyint(1) NOT NULL DEFAULT '0', allowimgcode tinyint(1) NOT NULL DEFAULT '0', allowmediacode tinyint(1) NOT NULL DEFAULT '0', allowanonymous tinyint(1) NOT NULL DEFAULT '0', allowshare tinyint(1) NOT NULL DEFAULT '0', allowpostspecial smallint(6) unsigned NOT NULL DEFAULT '0', allowspecialonly tinyint(1) unsigned NOT NULL DEFAULT '0', alloweditrules tinyint(1) NOT NULL DEFAULT '0', recyclebin tinyint(1) NOT NULL DEFAULT '0', modnewposts tinyint(1) NOT NULL DEFAULT '0', jammer tinyint(1) NOT NULL DEFAULT '0', disablewatermark tinyint(1) NOT NULL DEFAULT '0', inheritedmod tinyint(1) NOT NULL DEFAULT '0', autoclose smallint(6) NOT NULL DEFAULT '0', forumcolumns tinyint(3) unsigned NOT NULL DEFAULT '0', threadcaches tinyint(1) NOT NULL DEFAULT '0', allowpaytoauthor tinyint(1) unsigned NOT NULL DEFAULT '1', alloweditpost tinyint(1) unsigned NOT NULL DEFAULT '1', `simple` tinyint(1) unsigned NOT NULL, PRIMARY KEY (fid), KEY forum (`status`,`type`,displayorder), KEY fup (fup) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3; INSERT INTO jrun_forums VALUES ('1','0','group','JspRun!','1','0','0','0','0','0','','0','0','1','1','1','0','1','63','0','0','0','0','0','0','0','0','0','0','1','1','0'); INSERT INTO jrun_forums VALUES ('2','1','forum','默认版块','1','0','0','0','0','0','','1','0','1','1','1','0','1','63','0','0','0','0','0','0','0','0','0','0','1','1','0'); DROP TABLE IF EXISTS jrun_imagetypes; CREATE TABLE jrun_imagetypes ( typeid smallint(6) unsigned NOT NULL AUTO_INCREMENT, `name` char(20) NOT NULL, `type` enum('smiley','icon','avatar') NOT NULL DEFAULT 'smiley', displayorder tinyint(3) NOT NULL DEFAULT '0', `directory` char(100) NOT NULL, PRIMARY KEY (typeid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; INSERT INTO jrun_imagetypes VALUES ('1','默认表情','smiley','1','default'); DROP TABLE IF EXISTS jrun_invites; CREATE TABLE jrun_invites ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', expiration int(10) unsigned NOT NULL DEFAULT '0', inviteip char(15) NOT NULL, invitecode char(16) NOT NULL, reguid mediumint(8) unsigned NOT NULL DEFAULT '0', regdateline int(10) unsigned NOT NULL DEFAULT '0', `status` tinyint(1) NOT NULL DEFAULT '1', KEY uid (uid,`status`), KEY invitecode (invitecode) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_itempool; CREATE TABLE jrun_itempool ( id smallint(6) unsigned NOT NULL AUTO_INCREMENT, `type` tinyint(1) unsigned NOT NULL, question text NOT NULL, answer varchar(50) NOT NULL, PRIMARY KEY (id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1; DROP TABLE IF EXISTS jrun_magiclog; CREATE TABLE jrun_magiclog ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', magicid smallint(6) unsigned NOT NULL DEFAULT '0', `action` tinyint(1) NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', amount smallint(6) unsigned NOT NULL DEFAULT '0', price mediumint(8) unsigned NOT NULL DEFAULT '0', targettid mediumint(8) unsigned NOT NULL DEFAULT '0', targetpid int(10) unsigned NOT NULL DEFAULT '0', targetuid mediumint(8) unsigned NOT NULL DEFAULT '0', KEY uid (uid,dateline), KEY targetuid (targetuid,dateline) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_magicmarket; CREATE TABLE jrun_magicmarket ( mid smallint(6) unsigned NOT NULL AUTO_INCREMENT, magicid smallint(6) unsigned NOT NULL DEFAULT '0', uid mediumint(8) unsigned NOT NULL DEFAULT '0', username char(15) NOT NULL, price mediumint(8) unsigned NOT NULL DEFAULT '0', num smallint(6) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (mid), KEY num (magicid,num), KEY price (magicid,price), KEY uid (uid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1; DROP TABLE IF EXISTS jrun_magics; CREATE TABLE jrun_magics ( magicid smallint(6) unsigned NOT NULL AUTO_INCREMENT, available tinyint(1) NOT NULL DEFAULT '0', `type` tinyint(3) NOT NULL DEFAULT '0', `name` varchar(50) NOT NULL, identifier varchar(40) NOT NULL, description varchar(255) NOT NULL, displayorder tinyint(3) NOT NULL DEFAULT '0', price mediumint(8) unsigned NOT NULL DEFAULT '0', num smallint(6) unsigned NOT NULL DEFAULT '0', salevolume smallint(6) unsigned NOT NULL DEFAULT '0', supplytype tinyint(1) NOT NULL DEFAULT '0', supplynum smallint(6) unsigned NOT NULL DEFAULT '0', weight tinyint(3) unsigned NOT NULL DEFAULT '1', filename varchar(50) NOT NULL, magicperm text NOT NULL, PRIMARY KEY (magicid), UNIQUE KEY identifier (identifier), KEY displayorder (available,displayorder) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=13; INSERT INTO jrun_magics VALUES ('1','1','1','变色卡','CCK','可以变换主题的颜色,并保存24小时','0','10','999','0','0','0','20','magic_color.jsp',''); INSERT INTO jrun_magics VALUES ('2','1','3','金钱卡','MOK','可以随机获得一些金币','0','10','999','0','0','0','30','magic_money.jsp',''); INSERT INTO jrun_magics VALUES ('3','1','1','IP卡','SEK','可以查看帖子作者的IP','0','15','999','0','0','0','30','magic_see.jsp',''); INSERT INTO jrun_magics VALUES ('4','1','1','提升卡','UPK','可以提升某个主题','0','10','999','0','0','0','30','magic_up.jsp',''); INSERT INTO jrun_magics VALUES ('5','1','1','置顶卡','TOK','可以将主题置顶24小时','0','20','999','0','0','0','40','magic_top.jsp',''); INSERT INTO jrun_magics VALUES ('6','1','1','悔悟卡','REK','可以删除自己的帖子','0','10','999','0','0','0','30','magic_del.jsp',''); INSERT INTO jrun_magics VALUES ('7','1','2','狗仔卡','RTK','查看某个用户是否在线','0','15','999','0','0','0','30','magic_reporter.jsp',''); INSERT INTO jrun_magics VALUES ('8','1','1','沉默卡','CLK','24小时内不能回复','0','15','999','0','0','0','30','magic_close.jsp',''); INSERT INTO jrun_magics VALUES ('9','1','1','喧嚣卡','OPK','使贴子可以回复','0','15','999','0','0','0','30','magic_open.jsp',''); INSERT INTO jrun_magics VALUES ('10','1','1','隐身卡','YSK','可以将自己的帖子匿名','0','20','999','0','0','0','30','magic_hidden.jsp',''); INSERT INTO jrun_magics VALUES ('11','1','1','恢复卡','CBK','将匿名恢复为正常显示的用户名,匿名终结者','0','15','999','0','0','0','20','magic_renew.jsp',''); INSERT INTO jrun_magics VALUES ('12','1','1','移动卡','MVK','可将自已的帖子移动到其他版面(隐含、特殊限定版面除外)','0','50','989','0','0','0','50','magic_move.jsp',''); DROP TABLE IF EXISTS jrun_medals; CREATE TABLE jrun_medals ( medalid smallint(6) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '', available tinyint(1) NOT NULL DEFAULT '0', image varchar(30) NOT NULL DEFAULT '', PRIMARY KEY (medalid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11; INSERT INTO jrun_medals VALUES ('1','Medal No.1','0','medal1.gif'); INSERT INTO jrun_medals VALUES ('2','Medal No.2','0','medal2.gif'); INSERT INTO jrun_medals VALUES ('3','Medal No.3','0','medal3.gif'); INSERT INTO jrun_medals VALUES ('4','Medal No.4','0','medal4.gif'); INSERT INTO jrun_medals VALUES ('5','Medal No.5','0','medal5.gif'); INSERT INTO jrun_medals VALUES ('6','Medal No.6','0','medal6.gif'); INSERT INTO jrun_medals VALUES ('7','Medal No.7','0','medal7.gif'); INSERT INTO jrun_medals VALUES ('8','Medal No.8','0','medal8.gif'); INSERT INTO jrun_medals VALUES ('9','Medal No.9','0','medal9.gif'); INSERT INTO jrun_medals VALUES ('10','Medal No.10','0','medal10.gif'); DROP TABLE IF EXISTS jrun_memberfields; CREATE TABLE jrun_memberfields ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', nickname varchar(30) NOT NULL DEFAULT '', site varchar(75) NOT NULL DEFAULT '', alipay varchar(50) NOT NULL DEFAULT '', icq varchar(12) NOT NULL DEFAULT '', qq varchar(12) NOT NULL DEFAULT '', yahoo varchar(40) NOT NULL DEFAULT '', msn varchar(40) NOT NULL DEFAULT '', taobao varchar(40) NOT NULL DEFAULT '', location varchar(30) NOT NULL DEFAULT '', customstatus varchar(30) NOT NULL DEFAULT '', medals varchar(255) NOT NULL DEFAULT '', avatar varchar(255) NOT NULL DEFAULT '', avatarwidth tinyint(3) unsigned NOT NULL DEFAULT '0', avatarheight tinyint(3) unsigned NOT NULL DEFAULT '0', bio text NOT NULL, sightml text NOT NULL, ignorepm text NOT NULL, groupterms text NOT NULL, authstr varchar(20) NOT NULL DEFAULT '', spacename varchar(40) NOT NULL, buyercredit smallint(6) NOT NULL DEFAULT '0', sellercredit smallint(6) NOT NULL DEFAULT '0', PRIMARY KEY (uid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; INSERT INTO jrun_memberfields VALUES ('1','','','','','','','','','','','','','0','0','','','','','','','0','0'); DROP TABLE IF EXISTS jrun_membermagics; CREATE TABLE jrun_membermagics ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', magicid smallint(6) unsigned NOT NULL DEFAULT '0', num smallint(6) unsigned NOT NULL DEFAULT '0', KEY uid (uid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_members; CREATE TABLE jrun_members ( uid mediumint(8) unsigned NOT NULL AUTO_INCREMENT, username char(15) NOT NULL DEFAULT '', `password` char(32) NOT NULL DEFAULT '', secques char(8) NOT NULL DEFAULT '', gender tinyint(1) NOT NULL DEFAULT '0', adminid tinyint(1) NOT NULL DEFAULT '0', groupid smallint(6) unsigned NOT NULL DEFAULT '0', groupexpiry int(10) unsigned NOT NULL DEFAULT '0', extgroupids char(20) NOT NULL DEFAULT '', regip char(15) NOT NULL DEFAULT '', regdate int(10) unsigned NOT NULL DEFAULT '0', lastip char(15) NOT NULL DEFAULT '', lastvisit int(10) unsigned NOT NULL DEFAULT '0', lastactivity int(10) unsigned NOT NULL DEFAULT '0', lastpost int(10) unsigned NOT NULL DEFAULT '0', posts mediumint(8) unsigned NOT NULL DEFAULT '0', digestposts smallint(6) unsigned NOT NULL DEFAULT '0', oltime smallint(6) unsigned NOT NULL DEFAULT '0', pageviews mediumint(8) unsigned NOT NULL DEFAULT '0', credits int(10) NOT NULL DEFAULT '0', extcredits1 int(10) NOT NULL DEFAULT '0', extcredits2 int(10) NOT NULL DEFAULT '0', extcredits3 int(10) NOT NULL DEFAULT '0', extcredits4 int(10) NOT NULL DEFAULT '0', extcredits5 int(10) NOT NULL DEFAULT '0', extcredits6 int(10) NOT NULL DEFAULT '0', extcredits7 int(10) NOT NULL DEFAULT '0', extcredits8 int(10) NOT NULL DEFAULT '0', email char(40) NOT NULL DEFAULT '', bday date NOT NULL DEFAULT '0000-00-00', sigstatus tinyint(1) NOT NULL DEFAULT '0', tpp tinyint(3) unsigned NOT NULL DEFAULT '0', ppp tinyint(3) unsigned NOT NULL DEFAULT '0', styleid smallint(6) unsigned NOT NULL DEFAULT '0', dateformat tinyint(1) NOT NULL DEFAULT '0', timeformat tinyint(1) NOT NULL DEFAULT '0', pmsound tinyint(1) NOT NULL DEFAULT '0', showemail tinyint(1) NOT NULL DEFAULT '0', newsletter tinyint(1) NOT NULL DEFAULT '0', invisible tinyint(1) NOT NULL DEFAULT '0', timeoffset char(4) NOT NULL DEFAULT '', newpm tinyint(1) NOT NULL DEFAULT '0', accessmasks tinyint(1) NOT NULL DEFAULT '0', editormode tinyint(1) unsigned NOT NULL DEFAULT '2', customshow tinyint(1) unsigned NOT NULL DEFAULT '26', salt char(6) NOT NULL, PRIMARY KEY (uid), UNIQUE KEY username (username), KEY email (email), KEY groupid (groupid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2; INSERT INTO jrun_members VALUES ('1','admin','f3442271d47a5030152bf7f4df49dd38','','0','1','1','0','','hidden','1170596852','127.0.0.1','0','1170597433','1170596852','0','0','1','0','0','0','0','0','0','0','0','0','0','<EMAIL>','0000-00-00','0','0','0','0','0','0','0','1','1','0','9999','0','0','2','26','2394d1'); DROP TABLE IF EXISTS jrun_memberspaces; CREATE TABLE jrun_memberspaces ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', style char(20) NOT NULL, description char(100) NOT NULL, layout char(200) NOT NULL, side tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (uid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_moderators; CREATE TABLE jrun_moderators ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', fid smallint(6) unsigned NOT NULL DEFAULT '0', displayorder tinyint(3) NOT NULL DEFAULT '0', inherited tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (uid,fid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_modworks; CREATE TABLE jrun_modworks ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', modaction char(3) NOT NULL DEFAULT '', dateline date NOT NULL DEFAULT '2006-01-01', count smallint(6) unsigned NOT NULL DEFAULT '0', posts smallint(6) unsigned NOT NULL DEFAULT '0', KEY uid (uid,dateline) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_myposts; CREATE TABLE jrun_myposts ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', tid mediumint(8) unsigned NOT NULL DEFAULT '0', pid int(10) unsigned NOT NULL DEFAULT '0', position smallint(6) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', special tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (uid,tid), KEY tid (tid,dateline) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_mythreads; CREATE TABLE jrun_mythreads ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', tid mediumint(8) unsigned NOT NULL DEFAULT '0', special tinyint(1) unsigned NOT NULL DEFAULT '0', dateline int(10) NOT NULL DEFAULT '0', PRIMARY KEY (uid,tid), KEY tid (tid,dateline) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_onlinelist; CREATE TABLE jrun_onlinelist ( groupid smallint(6) unsigned NOT NULL DEFAULT '0', displayorder tinyint(3) NOT NULL DEFAULT '0', title varchar(30) NOT NULL DEFAULT '', url varchar(30) NOT NULL DEFAULT '' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; INSERT INTO jrun_onlinelist VALUES ('1','1','管理员','online_admin.gif'); INSERT INTO jrun_onlinelist VALUES ('2','2','超级版主','online_supermod.gif'); INSERT INTO jrun_onlinelist VALUES ('3','3','版主','online_moderator.gif'); INSERT INTO jrun_onlinelist VALUES ('0','4','会员','online_member.gif'); DROP TABLE IF EXISTS jrun_onlinetime; CREATE TABLE jrun_onlinetime ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', thismonth smallint(6) unsigned NOT NULL DEFAULT '0', total mediumint(8) unsigned NOT NULL DEFAULT '0', lastupdate int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (uid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; INSERT INTO jrun_onlinetime VALUES ('1','10','60','1170601084'); DROP TABLE IF EXISTS jrun_orders; CREATE TABLE jrun_orders ( orderid char(32) NOT NULL DEFAULT '', `status` char(3) NOT NULL DEFAULT '', buyer char(50) NOT NULL DEFAULT '', admin char(15) NOT NULL DEFAULT '', uid mediumint(8) unsigned NOT NULL DEFAULT '0', amount int(10) unsigned NOT NULL DEFAULT '0', price float(7,2) unsigned NOT NULL DEFAULT '0.00', submitdate int(10) unsigned NOT NULL DEFAULT '0', confirmdate int(10) unsigned NOT NULL DEFAULT '0', UNIQUE KEY orderid (orderid), KEY submitdate (submitdate), KEY uid (uid,submitdate) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_paymentlog; CREATE TABLE jrun_paymentlog ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', tid mediumint(8) unsigned NOT NULL DEFAULT '0', authorid mediumint(8) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', amount int(10) unsigned NOT NULL DEFAULT '0', netamount int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (tid,uid), KEY uid (uid), KEY authorid (authorid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_pluginhooks; CREATE TABLE jrun_pluginhooks ( pluginhookid mediumint(8) unsigned NOT NULL AUTO_INCREMENT, pluginid smallint(6) unsigned NOT NULL DEFAULT '0', available tinyint(1) NOT NULL DEFAULT '0', title varchar(255) NOT NULL DEFAULT '', description mediumtext NOT NULL, `code` mediumtext NOT NULL, PRIMARY KEY (pluginhookid), KEY pluginid (pluginid), KEY available (available) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1; DROP TABLE IF EXISTS jrun_plugins; CREATE TABLE jrun_plugins ( pluginid smallint(6) unsigned NOT NULL AUTO_INCREMENT, available tinyint(1) NOT NULL DEFAULT '0', adminid tinyint(1) unsigned NOT NULL DEFAULT '0', `name` varchar(40) NOT NULL DEFAULT '', identifier varchar(40) NOT NULL DEFAULT '', description varchar(255) NOT NULL DEFAULT '', datatables varchar(255) NOT NULL DEFAULT '', `directory` varchar(100) NOT NULL DEFAULT '', copyright varchar(100) NOT NULL DEFAULT '', modules text NOT NULL, PRIMARY KEY (pluginid), UNIQUE KEY identifier (identifier) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1; DROP TABLE IF EXISTS jrun_pluginvars; CREATE TABLE jrun_pluginvars ( pluginvarid mediumint(8) unsigned NOT NULL AUTO_INCREMENT, pluginid smallint(6) unsigned NOT NULL DEFAULT '0', displayorder tinyint(3) NOT NULL DEFAULT '0', title varchar(100) NOT NULL DEFAULT '', description varchar(255) NOT NULL DEFAULT '', variable varchar(40) NOT NULL DEFAULT '', `type` varchar(20) NOT NULL DEFAULT 'text', `value` text NOT NULL, extra text NOT NULL, PRIMARY KEY (pluginvarid), KEY pluginid (pluginid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1; DROP TABLE IF EXISTS jrun_pms; CREATE TABLE jrun_pms ( pmid int(10) unsigned NOT NULL AUTO_INCREMENT, msgfrom varchar(15) NOT NULL DEFAULT '', msgfromid mediumint(8) unsigned NOT NULL DEFAULT '0', msgtoid mediumint(8) unsigned NOT NULL DEFAULT '0', folder enum('inbox','outbox') NOT NULL DEFAULT 'inbox', `new` tinyint(1) NOT NULL DEFAULT '0', `subject` varchar(75) NOT NULL DEFAULT '', dateline int(10) unsigned NOT NULL DEFAULT '0', message text NOT NULL, delstatus tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (pmid), KEY msgtoid (msgtoid,folder,dateline), KEY msgfromid (msgfromid,folder,dateline) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_pmsearchindex; CREATE TABLE jrun_pmsearchindex ( searchid int(10) unsigned NOT NULL AUTO_INCREMENT, keywords varchar(255) NOT NULL DEFAULT '', searchstring varchar(255) NOT NULL DEFAULT '', uid mediumint(8) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', expiration int(10) unsigned NOT NULL DEFAULT '0', pms smallint(6) unsigned NOT NULL DEFAULT '0', pmids text NOT NULL, PRIMARY KEY (searchid), KEY uid (uid,dateline) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1; DROP TABLE IF EXISTS jrun_polloptions; CREATE TABLE jrun_polloptions ( polloptionid int(10) unsigned NOT NULL AUTO_INCREMENT, tid mediumint(8) unsigned NOT NULL DEFAULT '0', votes mediumint(8) unsigned NOT NULL DEFAULT '0', displayorder tinyint(3) NOT NULL DEFAULT '0', polloption varchar(80) NOT NULL DEFAULT '', voterids mediumtext NOT NULL, PRIMARY KEY (polloptionid), KEY tid (tid,displayorder) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1; DROP TABLE IF EXISTS jrun_polls; CREATE TABLE jrun_polls ( tid mediumint(8) unsigned NOT NULL DEFAULT '0', multiple tinyint(1) NOT NULL DEFAULT '0', visible tinyint(1) NOT NULL DEFAULT '0', maxchoices tinyint(3) unsigned NOT NULL DEFAULT '0', expiration int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (tid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_posts; CREATE TABLE jrun_posts ( pid int(10) unsigned NOT NULL AUTO_INCREMENT, fid smallint(6) unsigned NOT NULL DEFAULT '0', tid mediumint(8) unsigned NOT NULL DEFAULT '0', `first` tinyint(1) NOT NULL DEFAULT '0', author varchar(15) NOT NULL DEFAULT '', authorid mediumint(8) unsigned NOT NULL DEFAULT '0', `subject` varchar(80) NOT NULL DEFAULT '', dateline int(10) unsigned NOT NULL DEFAULT '0', message mediumtext NOT NULL, useip varchar(15) NOT NULL DEFAULT '', invisible tinyint(1) NOT NULL DEFAULT '0', anonymous tinyint(1) NOT NULL DEFAULT '0', usesig tinyint(1) NOT NULL DEFAULT '0', htmlon tinyint(1) NOT NULL DEFAULT '0', bbcodeoff tinyint(1) NOT NULL DEFAULT '0', smileyoff tinyint(1) NOT NULL DEFAULT '0', parseurloff tinyint(1) NOT NULL DEFAULT '0', attachment tinyint(1) NOT NULL DEFAULT '0', rate smallint(6) NOT NULL DEFAULT '0', ratetimes tinyint(3) unsigned NOT NULL DEFAULT '0', status tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (pid), KEY fid (fid), KEY authorid (authorid), KEY dateline (dateline), KEY invisible (invisible), KEY displayorder (tid,invisible,dateline), KEY `first` (tid,`first`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_profilefields; CREATE TABLE jrun_profilefields ( fieldid smallint(6) unsigned NOT NULL AUTO_INCREMENT, available tinyint(1) NOT NULL DEFAULT '0', invisible tinyint(1) NOT NULL DEFAULT '0', title varchar(50) NOT NULL DEFAULT '', description varchar(255) NOT NULL DEFAULT '', size tinyint(3) unsigned NOT NULL DEFAULT '0', displayorder smallint(6) NOT NULL DEFAULT '0', required tinyint(1) NOT NULL DEFAULT '0', unchangeable tinyint(1) NOT NULL DEFAULT '0', showinthread tinyint(1) NOT NULL DEFAULT '0', selective tinyint(1) NOT NULL DEFAULT '0', choices text NOT NULL, PRIMARY KEY (fieldid), KEY available (available,required,displayorder) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1; DROP TABLE IF EXISTS jrun_projects; CREATE TABLE jrun_projects ( id smallint(6) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `type` varchar(10) NOT NULL, description varchar(255) NOT NULL, `value` mediumtext NOT NULL, PRIMARY KEY (id), KEY `type` (`type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=12; INSERT INTO jrun_projects VALUES ('1','技术性论坛','extcredit','如果您不希望会员通过灌水、页面访问等方式得到积分,而是需要发布一些技术性的帖子获得积分。','a:4:{s:10:\"savemethod\";a:2:{i:0;s:1:\"1\";i:1;s:1:\"2\";}s:14:\"creditsformula\";s:49:\"posts*0.5+digestposts*5+extcredits1*2+extcredits2\";s:13:\"creditspolicy\";s:299:\"a:12:{s:4:\"post\";a:0:{}s:5:\"reply\";a:0:{}s:6:\"digest\";a:1:{i:1;i:10;}s:10:\"postattach\";a:0:{}s:9:\"getattach\";a:0:{}s:2:\"pm\";a:0:{}s:6:\"search\";a:0:{}s:15:\"promotion_visit\";a:1:{i:3;i:2;}s:18:\"promotion_register\";a:1:{i:3;i:2;}s:13:\"tradefinished\";a:0:{}s:8:\"votepoll\";a:0:{}s:10:\"lowerlimit\";a:0:{}}\";s:10:\"extcredits\";s:1450:\"a:8:{i:1;a:8:{s:5:\"title\";s:6:\"威望\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:2;a:8:{s:5:\"title\";s:6:\"金钱\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:3;a:8:{s:5:\"title\";s:6:\"贡献\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:4;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:5;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:6;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:7;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:8;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}}\";}'); INSERT INTO jrun_projects VALUES ('2','娱乐性论坛','extcredit','此类型论坛的会员可以通过发布一些评论、回复等获得积分,同时扩大论坛的访问量。更重要的是希望会员发布一些有价值的娱乐新闻等。','a:4:{s:10:\"savemethod\";a:2:{i:0;s:1:\"1\";i:1;s:1:\"2\";}s:14:\"creditsformula\";s:81:\"posts+digestposts*5+oltime*5+pageviews/1000+extcredits1*2+extcredits2+extcredits3\";s:13:\"creditspolicy\";s:315:\"a:12:{s:4:\"post\";a:1:{i:1;i:1;}s:5:\"reply\";a:1:{i:2;i:1;}s:6:\"digest\";a:1:{i:1;i:10;}s:10:\"postattach\";a:0:{}s:9:\"getattach\";a:0:{}s:2:\"pm\";a:0:{}s:6:\"search\";a:0:{}s:15:\"promotion_visit\";a:1:{i:3;i:2;}s:18:\"promotion_register\";a:1:{i:3;i:2;}s:13:\"tradefinished\";a:0:{}s:8:\"votepoll\";a:0:{}s:10:\"lowerlimit\";a:0:{}}\";s:10:\"extcredits\";s:1042:\"a:8:{i:1;a:6:{s:5:\"title\";s:6:\"威望\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;}i:2;a:6:{s:5:\"title\";s:6:\"金钱\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;}i:3;a:6:{s:5:\"title\";s:6:\"贡献\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;}i:4;a:6:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;}i:5;a:6:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;}i:6;a:6:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;}i:7;a:6:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;}i:8;a:6:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;}}\";}'); INSERT INTO jrun_projects VALUES ('3','动漫、摄影类论坛','extcredit','此类型论坛需要更多的图片附件发布给广大会员,因此增加一项扩展积分:魅力。','a:4:{s:10:\"savemethod\";a:2:{i:0;s:1:\"1\";i:1;s:1:\"2\";}s:14:\"creditsformula\";s:86:\"posts+digestposts*2+pageviews/2000+extcredits1*2+extcredits2+extcredits3+extcredits4*3\";s:13:\"creditspolicy\";s:324:\"a:12:{s:4:\"post\";a:1:{i:2;i:1;}s:5:\"reply\";a:0:{}s:6:\"digest\";a:1:{i:1;i:10;}s:10:\"postattach\";a:1:{i:4;i:3;}s:9:\"getattach\";a:1:{i:2;i:-2;}s:2:\"pm\";a:0:{}s:6:\"search\";a:0:{}s:15:\"promotion_visit\";a:1:{i:3;i:2;}s:18:\"promotion_register\";a:1:{i:3;i:2;}s:13:\"tradefinished\";a:0:{}s:8:\"votepoll\";a:0:{}s:10:\"lowerlimit\";a:0:{}}\";s:10:\"extcredits\";s:1462:\"a:8:{i:1;a:8:{s:5:\"title\";s:6:\"威望\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:2;a:8:{s:5:\"title\";s:6:\"金钱\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:3;a:8:{s:5:\"title\";s:6:\"贡献\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:4;a:8:{s:5:\"title\";s:6:\"魅力\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:5;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:6;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:7;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:8;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}}\";}'); INSERT INTO jrun_projects VALUES ('4','文章、小说类论坛','extcredit','此类型的论坛更重视会员的原创文章或者是转发的文章,因此增加一项扩展积分:文采。','a:4:{s:10:\"savemethod\";a:2:{i:0;s:1:\"1\";i:1;s:1:\"2\";}s:14:\"creditsformula\";s:57:\"posts+digestposts*8+extcredits2+extcredits3+extcredits4*2\";s:13:\"creditspolicy\";s:307:\"a:12:{s:4:\"post\";a:1:{i:2;i:1;}s:5:\"reply\";a:0:{}s:6:\"digest\";a:1:{i:4;i:10;}s:10:\"postattach\";a:0:{}s:9:\"getattach\";a:0:{}s:2:\"pm\";a:0:{}s:6:\"search\";a:0:{}s:15:\"promotion_visit\";a:1:{i:3;i:2;}s:18:\"promotion_register\";a:1:{i:3;i:2;}s:13:\"tradefinished\";a:0:{}s:8:\"votepoll\";a:0:{}s:10:\"lowerlimit\";a:0:{}}\";s:10:\"extcredits\";s:1462:\"a:8:{i:1;a:8:{s:5:\"title\";s:6:\"威望\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:2;a:8:{s:5:\"title\";s:6:\"金钱\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:3;a:8:{s:5:\"title\";s:6:\"贡献\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:4;a:8:{s:5:\"title\";s:6:\"文采\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:5;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:6;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:7;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:8;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}}\";}'); INSERT INTO jrun_projects VALUES ('5','调研性论坛','extcredit','此类型论坛更期望的是得到会员的建议和意见,主要是通过投票的方式体现会员的建议,因此增加一项积分策略为:参加投票,增加一项扩展积分为:积极性。','a:4:{s:10:\"savemethod\";a:2:{i:0;s:1:\"1\";i:1;s:1:\"2\";}s:14:\"creditsformula\";s:63:\"posts*0.5+digestposts*2+extcredits1*2+extcredits3+extcredits4*2\";s:13:\"creditspolicy\";s:306:\"a:12:{s:4:\"post\";a:0:{}s:5:\"reply\";a:0:{}s:6:\"digest\";a:1:{i:1;i:8;}s:10:\"postattach\";a:0:{}s:9:\"getattach\";a:0:{}s:2:\"pm\";a:0:{}s:6:\"search\";a:0:{}s:15:\"promotion_visit\";a:1:{i:3;i:2;}s:18:\"promotion_register\";a:1:{i:3;i:2;}s:13:\"tradefinished\";a:0:{}s:8:\"votepoll\";a:1:{i:4;i:5;}s:10:\"lowerlimit\";a:0:{}}\";s:10:\"extcredits\";s:1465:\"a:8:{i:1;a:8:{s:5:\"title\";s:6:\"威望\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:2;a:8:{s:5:\"title\";s:6:\"金钱\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:3;a:8:{s:5:\"title\";s:6:\"贡献\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:4;a:8:{s:5:\"title\";s:9:\"积极性\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:5;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:6;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:7;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:8;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}}\";}'); INSERT INTO jrun_projects VALUES ('6','贸易性论坛','extcredit','此类型论坛更注重的是会员之间的交易,因此使用积分策略:交易成功,增加一项扩展积分:诚信度。','a:4:{s:10:\"savemethod\";a:2:{i:0;s:1:\"1\";i:1;s:1:\"2\";}s:14:\"creditsformula\";s:55:\"posts+digestposts+extcredits1*2+extcredits3+extcredits4\";s:13:\"creditspolicy\";s:306:\"a:12:{s:4:\"post\";a:0:{}s:5:\"reply\";a:0:{}s:6:\"digest\";a:1:{i:1;i:5;}s:10:\"postattach\";a:0:{}s:9:\"getattach\";a:0:{}s:2:\"pm\";a:0:{}s:6:\"search\";a:0:{}s:15:\"promotion_visit\";a:1:{i:3;i:2;}s:18:\"promotion_register\";a:1:{i:3;i:2;}s:13:\"tradefinished\";a:1:{i:4;i:6;}s:8:\"votepoll\";a:0:{}s:10:\"lowerlimit\";a:0:{}}\";s:10:\"extcredits\";s:1465:\"a:8:{i:1;a:8:{s:5:\"title\";s:6:\"威望\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:2;a:8:{s:5:\"title\";s:6:\"金钱\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:3;a:8:{s:5:\"title\";s:6:\"贡献\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:4;a:8:{s:5:\"title\";s:9:\"诚信度\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";s:1:\"1\";s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:5;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:6;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:7;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}i:8;a:8:{s:5:\"title\";s:0:\"\";s:4:\"unit\";s:0:\"\";s:5:\"ratio\";i:0;s:9:\"available\";N;s:10:\"lowerlimit\";i:0;s:12:\"showinthread\";N;s:15:\"allowexchangein\";N;s:16:\"allowexchangeout\";N;}}\";}'); INSERT INTO jrun_projects VALUES ('7','坛内事务类版块','forum','该板块设置了不允许其他模块共享,以及设置了需要很高的权限才能浏览该版块。也适合于保密性高版块。','a:33:{s:7:\"styleid\";s:1:\"0\";s:12:\"allowsmilies\";s:1:\"1\";s:9:\"allowhtml\";s:1:\"0\";s:11:\"allowbbcode\";s:1:\"1\";s:12:\"allowimgcode\";s:1:\"1\";s:14:\"allowanonymous\";s:1:\"0\";s:10:\"allowshare\";s:1:\"0\";s:16:\"allowpostspecial\";s:1:\"0\";s:14:\"alloweditrules\";s:1:\"1\";s:10:\"recyclebin\";s:1:\"1\";s:11:\"modnewposts\";s:1:\"0\";s:6:\"jammer\";s:1:\"0\";s:16:\"disablewatermark\";s:1:\"0\";s:12:\"inheritedmod\";s:1:\"0\";s:9:\"autoclose\";s:1:\"0\";s:12:\"forumcolumns\";s:1:\"0\";s:12:\"threadcaches\";s:2:\"40\";s:16:\"allowpaytoauthor\";s:1:\"0\";s:13:\"alloweditpost\";s:1:\"1\";s:6:\"simple\";s:1:\"0\";s:11:\"postcredits\";s:0:\"\";s:12:\"replycredits\";s:0:\"\";s:16:\"getattachcredits\";s:0:\"\";s:17:\"postattachcredits\";s:0:\"\";s:13:\"digestcredits\";s:0:\"\";s:16:\"attachextensions\";s:0:\"\";s:11:\"threadtypes\";s:0:\"\";s:8:\"viewperm\";s:7:\" 1 2 3 \";s:8:\"postperm\";s:7:\" 1 2 3 \";s:9:\"replyperm\";s:7:\" 1 2 3 \";s:13:\"getattachperm\";s:7:\" 1 2 3 \";s:14:\"postattachperm\";s:7:\" 1 2 3 \";}'); INSERT INTO jrun_projects VALUES ('8','技术交流类版块','forum','该设置开启了主题缓存系数。其他的权限设置级别较低。','a:32:{s:7:\"styleid\";s:1:\"0\";s:12:\"allowsmilies\";s:1:\"1\";s:9:\"allowhtml\";s:1:\"0\";s:11:\"allowbbcode\";s:1:\"1\";s:12:\"allowimgcode\";s:1:\"1\";s:14:\"allowanonymous\";s:1:\"0\";s:10:\"allowshare\";s:1:\"1\";s:16:\"allowpostspecial\";s:1:\"5\";s:14:\"alloweditrules\";s:1:\"0\";s:10:\"recyclebin\";s:1:\"1\";s:11:\"modnewposts\";s:1:\"0\";s:6:\"jammer\";s:1:\"0\";s:16:\"disablewatermark\";s:1:\"0\";s:12:\"inheritedmod\";s:1:\"0\";s:9:\"autoclose\";s:1:\"0\";s:12:\"forumcolumns\";s:1:\"0\";s:12:\"threadcaches\";s:2:\"40\";s:16:\"allowpaytoauthor\";s:1:\"1\";s:13:\"alloweditpost\";s:1:\"1\";s:6:\"simple\";s:1:\"0\";s:11:\"postcredits\";s:0:\"\";s:12:\"replycredits\";s:0:\"\";s:16:\"getattachcredits\";s:0:\"\";s:17:\"postattachcredits\";s:0:\"\";s:13:\"digestcredits\";s:0:\"\";s:16:\"attachextensions\";s:0:\"\";s:11:\"threadtypes\";s:0:\"\";s:8:\"viewperm\";s:0:\"\";s:8:\"postperm\";s:0:\"\";s:9:\"replyperm\";s:0:\"\";s:13:\"getattachperm\";s:0:\"\";s:14:\"postattachperm\";s:0:\"\";}'); INSERT INTO jrun_projects VALUES ('9','发布公告类版块','forum','该设置开启了发帖审核,限制了允许发帖的用户组。','a:32:{s:7:\"styleid\";s:1:\"0\";s:12:\"allowsmilies\";s:1:\"1\";s:9:\"allowhtml\";s:1:\"0\";s:11:\"allowbbcode\";s:1:\"1\";s:12:\"allowimgcode\";s:1:\"1\";s:14:\"allowanonymous\";s:1:\"0\";s:10:\"allowshare\";s:1:\"1\";s:16:\"allowpostspecial\";s:1:\"1\";s:14:\"alloweditrules\";s:1:\"0\";s:10:\"recyclebin\";s:1:\"1\";s:11:\"modnewposts\";s:1:\"1\";s:6:\"jammer\";s:1:\"1\";s:16:\"disablewatermark\";s:1:\"0\";s:12:\"inheritedmod\";s:1:\"0\";s:9:\"autoclose\";s:1:\"0\";s:12:\"forumcolumns\";s:1:\"0\";s:12:\"threadcaches\";s:1:\"0\";s:16:\"allowpaytoauthor\";s:1:\"1\";s:13:\"alloweditpost\";s:1:\"0\";s:6:\"simple\";s:1:\"0\";s:11:\"postcredits\";s:0:\"\";s:12:\"replycredits\";s:0:\"\";s:16:\"getattachcredits\";s:0:\"\";s:17:\"postattachcredits\";s:0:\"\";s:13:\"digestcredits\";s:0:\"\";s:16:\"attachextensions\";s:0:\"\";s:11:\"threadtypes\";s:0:\"\";s:8:\"viewperm\";s:0:\"\";s:8:\"postperm\";s:7:\" 1 2 3 \";s:9:\"replyperm\";s:0:\"\";s:13:\"getattachperm\";s:0:\"\";s:14:\"postattachperm\";s:0:\"\";}'); INSERT INTO jrun_projects VALUES ('10','发起活动类版块','forum','该类型设置里发起主题一个月之后会自动关闭主题。','a:32:{s:7:\"styleid\";s:1:\"0\";s:12:\"allowsmilies\";s:1:\"1\";s:9:\"allowhtml\";s:1:\"0\";s:11:\"allowbbcode\";s:1:\"1\";s:12:\"allowimgcode\";s:1:\"1\";s:14:\"allowanonymous\";s:1:\"0\";s:10:\"allowshare\";s:1:\"1\";s:16:\"allowpostspecial\";s:1:\"9\";s:14:\"alloweditrules\";s:1:\"0\";s:10:\"recyclebin\";s:1:\"1\";s:11:\"modnewposts\";s:1:\"0\";s:6:\"jammer\";s:1:\"0\";s:16:\"disablewatermark\";s:1:\"0\";s:12:\"inheritedmod\";s:1:\"1\";s:9:\"autoclose\";s:2:\"30\";s:12:\"forumcolumns\";s:1:\"0\";s:12:\"threadcaches\";s:2:\"40\";s:16:\"allowpaytoauthor\";s:1:\"1\";s:13:\"alloweditpost\";s:1:\"1\";s:6:\"simple\";s:1:\"0\";s:11:\"postcredits\";s:0:\"\";s:12:\"replycredits\";s:0:\"\";s:16:\"getattachcredits\";s:0:\"\";s:17:\"postattachcredits\";s:0:\"\";s:13:\"digestcredits\";s:0:\"\";s:16:\"attachextensions\";s:0:\"\";s:11:\"threadtypes\";s:0:\"\";s:8:\"viewperm\";s:0:\"\";s:8:\"postperm\";s:22:\" 1 2 3 11 12 13 14 15 \";s:9:\"replyperm\";s:0:\"\";s:13:\"getattachperm\";s:0:\"\";s:14:\"postattachperm\";s:0:\"\";}'); INSERT INTO jrun_projects VALUES ('11','娱乐灌水类版块','forum','该设置了主题缓存系数,开启了所有的特殊主题按钮。','a:32:{s:7:\"styleid\";s:1:\"0\";s:12:\"allowsmilies\";s:1:\"1\";s:9:\"allowhtml\";s:1:\"0\";s:11:\"allowbbcode\";s:1:\"1\";s:12:\"allowimgcode\";s:1:\"1\";s:14:\"allowanonymous\";s:1:\"0\";s:10:\"allowshare\";s:1:\"1\";s:16:\"allowpostspecial\";s:2:\"15\";s:14:\"alloweditrules\";s:1:\"0\";s:10:\"recyclebin\";s:1:\"1\";s:11:\"modnewposts\";s:1:\"0\";s:6:\"jammer\";s:1:\"0\";s:16:\"disablewatermark\";s:1:\"0\";s:12:\"inheritedmod\";s:1:\"0\";s:9:\"autoclose\";s:1:\"0\";s:12:\"forumcolumns\";s:1:\"0\";s:12:\"threadcaches\";s:2:\"40\";s:16:\"allowpaytoauthor\";s:1:\"1\";s:13:\"alloweditpost\";s:1:\"1\";s:6:\"simple\";s:1:\"0\";s:11:\"postcredits\";s:0:\"\";s:12:\"replycredits\";s:0:\"\";s:16:\"getattachcredits\";s:0:\"\";s:17:\"postattachcredits\";s:0:\"\";s:13:\"digestcredits\";s:0:\"\";s:16:\"attachextensions\";s:0:\"\";s:11:\"threadtypes\";s:0:\"\";s:8:\"viewperm\";s:0:\"\";s:8:\"postperm\";s:0:\"\";s:9:\"replyperm\";s:0:\"\";s:13:\"getattachperm\";s:0:\"\";s:14:\"postattachperm\";s:0:\"\";}'); DROP TABLE IF EXISTS jrun_promotions; CREATE TABLE jrun_promotions ( ip char(15) NOT NULL DEFAULT '', uid mediumint(8) unsigned NOT NULL DEFAULT '0', username char(15) NOT NULL DEFAULT '', PRIMARY KEY (ip) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_ranks; CREATE TABLE jrun_ranks ( rankid smallint(6) unsigned NOT NULL AUTO_INCREMENT, ranktitle varchar(30) NOT NULL DEFAULT '', postshigher mediumint(8) unsigned NOT NULL DEFAULT '0', stars tinyint(3) NOT NULL DEFAULT '0', color varchar(7) NOT NULL DEFAULT '', PRIMARY KEY (rankid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6; INSERT INTO jrun_ranks VALUES ('1','新生入学','0','1',''); INSERT INTO jrun_ranks VALUES ('2','小试牛刀','50','2',''); INSERT INTO jrun_ranks VALUES ('3','实习记者','300','5',''); INSERT INTO jrun_ranks VALUES ('4','自由撰稿人','1000','4',''); INSERT INTO jrun_ranks VALUES ('5','特聘作家','3000','5',''); DROP TABLE IF EXISTS jrun_ratelog; CREATE TABLE jrun_ratelog ( pid int(10) unsigned NOT NULL DEFAULT '0', uid mediumint(8) unsigned NOT NULL DEFAULT '0', username char(15) NOT NULL DEFAULT '', extcredits tinyint(1) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', score smallint(6) NOT NULL DEFAULT '0', reason char(40) NOT NULL DEFAULT '', KEY pid (pid,dateline), KEY dateline (dateline) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_regips; CREATE TABLE jrun_regips ( ip char(15) NOT NULL DEFAULT '', dateline int(10) unsigned NOT NULL DEFAULT '0', count smallint(6) NOT NULL DEFAULT '0', KEY ip (ip) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_relatedthreads; CREATE TABLE jrun_relatedthreads ( tid mediumint(8) NOT NULL DEFAULT '0', `type` enum('general','trade') NOT NULL DEFAULT 'general', expiration int(10) NOT NULL DEFAULT '0', keywords varchar(255) NOT NULL DEFAULT '', relatedthreads text NOT NULL, PRIMARY KEY (tid,`type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_rewardlog; CREATE TABLE jrun_rewardlog ( tid mediumint(8) unsigned NOT NULL DEFAULT '0', authorid mediumint(8) unsigned NOT NULL DEFAULT '0', answererid mediumint(8) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned DEFAULT '0', netamount int(10) unsigned NOT NULL DEFAULT '0', KEY userid (authorid,answererid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_rsscaches; CREATE TABLE jrun_rsscaches ( lastupdate int(10) unsigned NOT NULL DEFAULT '0', fid smallint(6) unsigned NOT NULL DEFAULT '0', tid mediumint(8) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', forum char(50) NOT NULL DEFAULT '', author char(15) NOT NULL DEFAULT '', `subject` char(80) NOT NULL DEFAULT '', description char(255) NOT NULL DEFAULT '', UNIQUE KEY tid (tid), KEY fid (fid,dateline) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_searchindex; CREATE TABLE jrun_searchindex ( searchid int(10) unsigned NOT NULL AUTO_INCREMENT, keywords varchar(255) NOT NULL DEFAULT '', searchstring char(32) NOT NULL DEFAULT '', useip varchar(15) NOT NULL DEFAULT '', uid mediumint(10) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', expiration int(10) unsigned NOT NULL DEFAULT '0', threadtypeid smallint(6) unsigned NOT NULL DEFAULT '0', threads smallint(6) unsigned NOT NULL DEFAULT '0', tids text NOT NULL, PRIMARY KEY (searchid), KEY uid (uid,dateline), KEY searchstring (searchstring) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1; DROP TABLE IF EXISTS jrun_sessions; CREATE TABLE jrun_sessions ( sid char(6) binary NOT NULL DEFAULT '', ip1 tinyint(3) unsigned NOT NULL DEFAULT '0', ip2 tinyint(3) unsigned NOT NULL DEFAULT '0', ip3 tinyint(3) unsigned NOT NULL DEFAULT '0', ip4 tinyint(3) unsigned NOT NULL DEFAULT '0', uid mediumint(8) unsigned NOT NULL DEFAULT '0', username char(15) NOT NULL DEFAULT '', groupid smallint(6) unsigned NOT NULL DEFAULT '0', styleid smallint(6) unsigned NOT NULL DEFAULT '0', invisible tinyint(1) NOT NULL DEFAULT '0', `action` tinyint(1) unsigned NOT NULL DEFAULT '0', lastactivity int(10) unsigned NOT NULL DEFAULT '0', lastolupdate int(10) unsigned NOT NULL DEFAULT '0', pageviews smallint(6) unsigned NOT NULL DEFAULT '0', seccode mediumint(6) unsigned NOT NULL DEFAULT '0', fid smallint(6) unsigned NOT NULL DEFAULT '0', tid mediumint(8) unsigned NOT NULL DEFAULT '0', UNIQUE KEY sid (sid), KEY uid (uid), KEY invisible (invisible) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_settings; CREATE TABLE jrun_settings ( variable varchar(32) NOT NULL DEFAULT '', `value` text NOT NULL, PRIMARY KEY (variable) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; INSERT INTO jrun_settings VALUES ('accessemail',''); INSERT INTO jrun_settings VALUES ('adminipaccess',''); INSERT INTO jrun_settings VALUES ('allowcsscache','1'); INSERT INTO jrun_settings VALUES ('archiverstatus','1'); INSERT INTO jrun_settings VALUES ('attachbanperiods',''); INSERT INTO jrun_settings VALUES ('attachimgpost','1'); INSERT INTO jrun_settings VALUES ('attachrefcheck','0'); INSERT INTO jrun_settings VALUES ('attachsave','3'); INSERT INTO jrun_settings VALUES ('authkey','<KEY>'); INSERT INTO jrun_settings VALUES ('bannedmessages','1'); INSERT INTO jrun_settings VALUES ('bbclosed','0'); INSERT INTO jrun_settings VALUES ('bbinsert','1'); INSERT INTO jrun_settings VALUES ('bbname','JspRun!'); INSERT INTO jrun_settings VALUES ('bbrules','0'); INSERT INTO jrun_settings VALUES ('bbrulestxt',''); INSERT INTO jrun_settings VALUES ('bdaystatus','0'); INSERT INTO jrun_settings VALUES ('boardlicensed','0'); INSERT INTO jrun_settings VALUES ('censoremail',''); INSERT INTO jrun_settings VALUES ('censoruser',''); INSERT INTO jrun_settings VALUES ('closedreason',''); INSERT INTO jrun_settings VALUES ('creditsformula','extcredits1'); INSERT INTO jrun_settings VALUES ('creditsformulaexp','<u>总积分</u>=<u>威望</u>'); INSERT INTO jrun_settings VALUES ('creditsnotify',''); INSERT INTO jrun_settings VALUES ('creditspolicy','a:12:{s:4:\"post\";a:0:{}s:5:\"reply\";a:0:{}s:6:\"digest\";a:1:{i:1;i:10;}s:10:\"postattach\";a:0:{}s:9:\"getattach\";a:0:{}s:2:\"pm\";a:0:{}s:6:\"search\";a:0:{}s:15:\"promotion_visit\";a:0:{}s:18:\"promotion_register\";a:0:{}s:13:\"tradefinished\";a:0:{}s:8:\"votepoll\";a:0:{}s:10:\"lowerlimit\";a:0:{}}'); INSERT INTO jrun_settings VALUES ('creditstax','0.2'); INSERT INTO jrun_settings VALUES ('creditstrans','2'); INSERT INTO jrun_settings VALUES ('custombackup',''); INSERT INTO jrun_settings VALUES ('dateformat','yyyy-MM-dd'); INSERT INTO jrun_settings VALUES ('debug','1'); INSERT INTO jrun_settings VALUES ('delayviewcount','0'); INSERT INTO jrun_settings VALUES ('deletereason',''); INSERT INTO jrun_settings VALUES ('doublee','1'); INSERT INTO jrun_settings VALUES ('dupkarmarate','0'); INSERT INTO jrun_settings VALUES ('ec_account',''); INSERT INTO jrun_settings VALUES ('ec_maxcredits','1000'); INSERT INTO jrun_settings VALUES ('ec_maxcreditspermonth','0'); INSERT INTO jrun_settings VALUES ('ec_mincredits','0'); INSERT INTO jrun_settings VALUES ('ec_ratio','0'); INSERT INTO jrun_settings VALUES ('editedby','1'); INSERT INTO jrun_settings VALUES ('editoroptions','1'); INSERT INTO jrun_settings VALUES ('edittimelimit',''); INSERT INTO jrun_settings VALUES ('exchangemincredits','100'); INSERT INTO jrun_settings VALUES ('extcredits','a:2:{i:1;a:3:{s:5:\"title\";s:6:\"威望\";s:12:\"showinthread\";s:0:\"\";s:9:\"available\";s:1:\"1\";}i:2;a:3:{s:5:\"title\";s:6:\"金钱\";s:12:\"showinthread\";s:0:\"\";s:9:\"available\";s:1:\"1\";}}'); INSERT INTO jrun_settings VALUES ('fastpost','0'); INSERT INTO jrun_settings VALUES ('fastreply','1'); INSERT INTO jrun_settings VALUES ('floodctrl','15'); INSERT INTO jrun_settings VALUES ('forumjump','0'); INSERT INTO jrun_settings VALUES ('forumfounders',''); INSERT INTO jrun_settings VALUES ('globalstick','1'); INSERT INTO jrun_settings VALUES ('gzipcompress','0'); INSERT INTO jrun_settings VALUES ('hideprivate','1'); INSERT INTO jrun_settings VALUES ('honorset','0'); INSERT INTO jrun_settings VALUES ('honorvalue',''); INSERT INTO jrun_settings VALUES ('hottopic','10'); INSERT INTO jrun_settings VALUES ('icp',''); INSERT INTO jrun_settings VALUES ('initcredits','0,0,0,0,0,0,0,0,0'); INSERT INTO jrun_settings VALUES ('ipaccess',''); INSERT INTO jrun_settings VALUES ('ipregctrl',''); INSERT INTO jrun_settings VALUES ('jscachelife','1800'); INSERT INTO jrun_settings VALUES ('jsmenustatus','15'); INSERT INTO jrun_settings VALUES ('jsrefdomains',''); INSERT INTO jrun_settings VALUES ('jsstatus','0'); INSERT INTO jrun_settings VALUES ('karmaratelimit','0'); INSERT INTO jrun_settings VALUES ('loadctrl','0'); INSERT INTO jrun_settings VALUES ('losslessdel','365'); INSERT INTO jrun_settings VALUES ('maxavatarpixel','120'); INSERT INTO jrun_settings VALUES ('maxavatarsize','20000'); INSERT INTO jrun_settings VALUES ('maxbdays','0'); INSERT INTO jrun_settings VALUES ('maxchargespan','0'); INSERT INTO jrun_settings VALUES ('maxfavorites','100'); INSERT INTO jrun_settings VALUES ('maxincperthread','0'); INSERT INTO jrun_settings VALUES ('maxmodworksmonths','3'); INSERT INTO jrun_settings VALUES ('maxonlinelist','0'); INSERT INTO jrun_settings VALUES ('maxonlines','5000'); INSERT INTO jrun_settings VALUES ('maxpolloptions','10'); INSERT INTO jrun_settings VALUES ('maxpostsize','10000'); INSERT INTO jrun_settings VALUES ('maxsearchresults','500'); INSERT INTO jrun_settings VALUES ('maxsigrows','100'); INSERT INTO jrun_settings VALUES ('maxsmilies','10'); INSERT INTO jrun_settings VALUES ('maxspm','0'); INSERT INTO jrun_settings VALUES ('maxsubscriptions','100'); INSERT INTO jrun_settings VALUES ('backupdir','uXDPv6'); INSERT INTO jrun_settings VALUES ('membermaxpages','100'); INSERT INTO jrun_settings VALUES ('memberperpage','25'); INSERT INTO jrun_settings VALUES ('memliststatus','1'); INSERT INTO jrun_settings VALUES ('minpostsize','10'); INSERT INTO jrun_settings VALUES ('moddisplay','flat'); INSERT INTO jrun_settings VALUES ('modratelimit','0'); INSERT INTO jrun_settings VALUES ('modreasons','广告/SPAM\r\n恶意灌水\r\n违规内容\r\n文不对题\r\n重复发帖\r\n\r\n我很赞同\r\n精品文章\r\n原创内容'); INSERT INTO jrun_settings VALUES ('modworkstatus','0'); INSERT INTO jrun_settings VALUES ('myrecorddays','30'); INSERT INTO jrun_settings VALUES ('newbiespan','0'); INSERT INTO jrun_settings VALUES ('newsletter',''); INSERT INTO jrun_settings VALUES ('nocacheheaders','0'); INSERT INTO jrun_settings VALUES ('oltimespan','10'); INSERT INTO jrun_settings VALUES ('onlinerecord','1 1226366874'); INSERT INTO jrun_settings VALUES ('passport_expire','3600'); INSERT INTO jrun_settings VALUES ('passport_extcredits','0'); INSERT INTO jrun_settings VALUES ('passport_key',''); INSERT INTO jrun_settings VALUES ('passport_login_url',''); INSERT INTO jrun_settings VALUES ('passport_logout_url',''); INSERT INTO jrun_settings VALUES ('passport_register_url',''); INSERT INTO jrun_settings VALUES ('passport_status',''); INSERT INTO jrun_settings VALUES ('passport_url',''); INSERT INTO jrun_settings VALUES ('postbanperiods',''); INSERT INTO jrun_settings VALUES ('postmodperiods',''); INSERT INTO jrun_settings VALUES ('postperpage','10'); INSERT INTO jrun_settings VALUES ('pvfrequence','60'); INSERT INTO jrun_settings VALUES ('qihoo','a:9:{s:6:"status";i:0;s:9:"searchbox";i:6;s:7:"summary";i:1;s:6:"jammer";i:1;s:9:"maxtopics";i:10;s:8:"keywords";s:0:"";s:10:"adminemail";s:0:"";s:8:"validity";i:1;s:14:"relatedthreads";a:6:{s:6:"bbsnum";i:0;s:6:"webnum";i:0;s:4:"type";a:3:{s:4:"blog";s:4:"blog";s:4:"news";s:4:"news";s:3:"bbs";s:3:"bbs";}s:6:"banurl";s:0:"";s:8:"position";i:1;s:8:"validity";i:1;}}'); INSERT INTO jrun_settings VALUES ('ratelogrecord','5'); INSERT INTO jrun_settings VALUES ('regadvance','0'); INSERT INTO jrun_settings VALUES ('regctrl','0'); INSERT INTO jrun_settings VALUES ('regfloodctrl','0'); INSERT INTO jrun_settings VALUES ('regstatus','1'); INSERT INTO jrun_settings VALUES ('regverify','0'); INSERT INTO jrun_settings VALUES ('reportpost','1'); INSERT INTO jrun_settings VALUES ('rewritestatus','0'); INSERT INTO jrun_settings VALUES ('rssstatus','1'); INSERT INTO jrun_settings VALUES ('rssttl','60'); INSERT INTO jrun_settings VALUES ('runwizard', '1'); INSERT INTO jrun_settings VALUES ('searchbanperiods',''); INSERT INTO jrun_settings VALUES ('searchctrl','30'); INSERT INTO jrun_settings VALUES ('seccodestatus','0'); INSERT INTO jrun_settings VALUES ('seodescription',''); INSERT INTO jrun_settings VALUES ('seohead',''); INSERT INTO jrun_settings VALUES ('seokeywords',''); INSERT INTO jrun_settings VALUES ('seotitle',''); INSERT INTO jrun_settings VALUES ('showemail',''); INSERT INTO jrun_settings VALUES ('showimages','1'); INSERT INTO jrun_settings VALUES ('showsettings','7'); INSERT INTO jrun_settings VALUES ('sitename','Jsprun Technology Ltd'); INSERT INTO jrun_settings VALUES ('siteurl','http://www.JspRun.net/'); INSERT INTO jrun_settings VALUES ('smcols','4'); INSERT INTO jrun_settings VALUES ('smileyinsert','1'); INSERT INTO jrun_settings VALUES ('starthreshold','2'); INSERT INTO jrun_settings VALUES ('statscachelife','180'); INSERT INTO jrun_settings VALUES ('statstatus',''); INSERT INTO jrun_settings VALUES ('styleid','1'); INSERT INTO jrun_settings VALUES ('stylejump','1'); INSERT INTO jrun_settings VALUES ('subforumsindex',''); INSERT INTO jrun_settings VALUES ('threadmaxpages','1000'); INSERT INTO jrun_settings VALUES ('threadsticky','全局置顶,分区置顶,本版置顶'); INSERT INTO jrun_settings VALUES ('timeformat','2'); INSERT INTO jrun_settings VALUES ('timeoffset','8'); INSERT INTO jrun_settings VALUES ('topicperpage','20'); INSERT INTO jrun_settings VALUES ('transfermincredits','1000'); INSERT INTO jrun_settings VALUES ('transsidstatus','0'); INSERT INTO jrun_settings VALUES ('userstatusby','1'); INSERT INTO jrun_settings VALUES ('visitbanperiods',''); INSERT INTO jrun_settings VALUES ('visitedforums','10'); INSERT INTO jrun_settings VALUES ('vtonlinestatus','1'); INSERT INTO jrun_settings VALUES ('wapcharset','2'); INSERT INTO jrun_settings VALUES ('wapdateformat','MM/dd'); INSERT INTO jrun_settings VALUES ('wapmps','500'); INSERT INTO jrun_settings VALUES ('wapppp','5'); INSERT INTO jrun_settings VALUES ('wapstatus','1'); INSERT INTO jrun_settings VALUES ('waptpp','10'); INSERT INTO jrun_settings VALUES ('watermarkquality','80'); INSERT INTO jrun_settings VALUES ('watermarkstatus','0'); INSERT INTO jrun_settings VALUES ('watermarktrans','65'); INSERT INTO jrun_settings VALUES ('welcomemsg','0'); INSERT INTO jrun_settings VALUES ('welcomemsgtxt','尊敬的{username},您已经注册成为{sitename}的会员,请您在发表言论时,遵守当地法律法规。\r\n如果您有什么疑问可以联系管理员,Email: {adminemail}。\r\n\r\n\r\n{bbname}\r\n{time}'); INSERT INTO jrun_settings VALUES ('whosonlinestatus','1'); INSERT INTO jrun_settings VALUES ('indexname','index.jsp'); INSERT INTO jrun_settings VALUES ('spacedata','a:11:{s:9:\"cachelife\";s:3:\"900\";s:14:\"limitmythreads\";s:1:\"5\";s:14:\"limitmyreplies\";s:1:\"5\";s:14:\"limitmyrewards\";s:1:\"5\";s:13:\"limitmytrades\";s:1:\"5\";s:13:\"limitmyvideos\";s:1:\"0\";s:12:\"limitmyblogs\";s:1:\"8\";s:14:\"limitmyfriends\";s:1:\"0\";s:16:\"limitmyfavforums\";s:1:\"5\";s:17:\"limitmyfavthreads\";s:1:\"0\";s:10:\"textlength\";s:3:\"300\";}'); INSERT INTO jrun_settings VALUES ('thumbstatus','0'); INSERT INTO jrun_settings VALUES ('thumbwidth','400'); INSERT INTO jrun_settings VALUES ('thumbheight','300'); INSERT INTO jrun_settings VALUES ('forumlinkstatus','1'); INSERT INTO jrun_settings VALUES ('pluginjsmenu','插件'); INSERT INTO jrun_settings VALUES ('magicstatus','1'); INSERT INTO jrun_settings VALUES ('magicmarket','1'); INSERT INTO jrun_settings VALUES ('maxmagicprice','50'); INSERT INTO jrun_settings VALUES ('upgradeurl','http://localhost/develop/dzhead/develop/upgrade.jsp'); INSERT INTO jrun_settings VALUES ('ftp','a:10:{s:2:\"on\";s:1:\"0\";s:3:\"ssl\";s:1:\"0\";s:4:\"host\";s:0:\"\";s:4:\"port\";s:2:\"21\";s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:9:\"attachdir\";s:1:\".\";s:9:\"attachurl\";s:0:\"\";s:7:\"hideurl\";s:1:\"0\";s:7:\"timeout\";s:1:\"0\";}'); INSERT INTO jrun_settings VALUES ('wapregister','0'); INSERT INTO jrun_settings VALUES ('jswizard',''); INSERT INTO jrun_settings VALUES ('passport_shopex','0'); INSERT INTO jrun_settings VALUES ('seccodeanimator','1'); INSERT INTO jrun_settings VALUES ('welcomemsgtitle','{username},您好,感谢您的注册,请阅读以下内容。'); INSERT INTO jrun_settings VALUES ('cacheindexlife','0'); INSERT INTO jrun_settings VALUES ('cachethreadlife','0'); INSERT INTO jrun_settings VALUES ('cachethreaddir','forumdata/threadcaches'); INSERT INTO jrun_settings VALUES ('jsdateformat',''); INSERT INTO jrun_settings VALUES ('seccodedata','a:13:{s:8:\"minposts\";s:0:\"\";s:16:\"loginfailedcount\";i:0;s:5:\"width\";i:150;s:6:\"height\";i:60;s:4:\"type\";s:1:\"0\";s:10:\"background\";s:1:\"1\";s:10:\"adulterate\";s:1:\"1\";s:3:\"ttf\";s:1:\"0\";s:5:\"angle\";s:1:\"0\";s:5:\"color\";s:1:\"1\";s:4:\"size\";s:1:\"0\";s:6:\"shadow\";s:1:\"1\";s:8:\"animator\";s:1:\"0\";}'); INSERT INTO jrun_settings VALUES ('frameon','0'); INSERT INTO jrun_settings VALUES ('framewidth','180'); INSERT INTO jrun_settings VALUES ('smrows','4'); INSERT INTO jrun_settings VALUES ('watermarktype','0'); INSERT INTO jrun_settings VALUES ('secqaa','a:2:{s:8:\"minposts\";s:1:\"1\";s:6:\"status\";i:0;}'); INSERT INTO jrun_settings VALUES ('spacestatus','1'); INSERT INTO jrun_settings VALUES ('whosonline_contract','0'); INSERT INTO jrun_settings VALUES ('attachdir','./attachments'); INSERT INTO jrun_settings VALUES ('attachurl','attachments'); INSERT INTO jrun_settings VALUES ('onlinehold','15'); INSERT INTO jrun_settings VALUES ('msgforward', 'a:3:{s:11:\"refreshtime\";i:3;s:5:\"quick\";i:1;s:8:\"messages\";a:13:{i:0;s:19:\"thread_poll_succeed\";i:1;s:19:\"thread_rate_succeed\";i:2;s:23:\"usergroups_join_succeed\";i:3;s:23:\"usergroups_exit_succeed\";i:4;s:25:\"usergroups_update_succeed\";i:5;s:20:\"buddy_update_succeed\";i:6;s:17:\"post_edit_succeed\";i:7;s:18:\"post_reply_succeed\";i:8;s:24:\"post_edit_delete_succeed\";i:9;s:22:\"post_newthread_succeed\";i:10;s:13:\"admin_succeed\";i:11;s:17:\"pm_delete_succeed\";i:12;s:15:\"search_redirect\";}}'); INSERT INTO jrun_settings VALUES ('smthumb','20'); INSERT INTO jrun_settings VALUES ('tagstatus', 1); INSERT INTO jrun_settings VALUES ('hottags', 20); INSERT INTO jrun_settings VALUES ('viewthreadtags', 100); INSERT INTO jrun_settings VALUES ('rewritecompatible', ''); INSERT INTO jrun_settings VALUES ('imagelib', '0'); INSERT INTO jrun_settings VALUES ('imageimpath', ''); INSERT INTO jrun_settings VALUES ('regname', 'register.jsp'); INSERT INTO jrun_settings VALUES ('reglinkname', '注册'); INSERT INTO jrun_settings VALUES ('activitytype', '朋友聚会\r\n出外郊游\r\n自驾出行\r\n公益活动\r\n线上活动'); INSERT INTO jrun_settings VALUES ('userdateformat','yyyy-MM-dd\r\nyyyy/MM/dd\r\ndd-MM-yyyy\r\ndd/MM/yyyy'); INSERT INTO jrun_settings VALUES ('tradetypes', ''); INSERT INTO jrun_settings VALUES ('tradeimagewidth', 200); INSERT INTO jrun_settings VALUES ('tradeimageheight', 150); INSERT INTO jrun_settings VALUES ('customauthorinfo', 'a:1:{i:0;a:9:{s:3:\"uid\";a:1:{s:4:\"menu\";s:1:\"1\";}s:5:\"posts\";a:1:{s:4:\"menu\";s:1:\"1\";}s:6:\"digest\";a:1:{s:4:\"menu\";s:1:\"1\";}s:7:\"credits\";a:1:{s:4:\"menu\";s:1:\"1\";}s:8:\"readperm\";a:1:{s:4:\"menu\";s:1:\"1\";}s:8:\"location\";a:1:{s:4:\"menu\";s:1:\"1\";}s:6:\"oltime\";a:1:{s:4:\"menu\";s:1:\"1\";}s:7:\"regtime\";a:1:{s:4:\"menu\";s:1:\"1\";}s:8:\"lastdate\";a:1:{s:4:\"menu\";s:1:\"1\";}}}'); INSERT INTO jrun_settings VALUES ('ec_credit', 'a:2:{s:18:"maxcreditspermonth";i:6;s:4:"rank";a:15:{i:1;i:4;i:2;i:11;i:3;i:41;i:4;i:91;i:5;i:151;i:6;i:251;i:7;i:501;i:8;i:1001;i:9;i:2001;i:10;i:5001;i:11;i:10001;i:12;i:20001;i:13;i:50001;i:14;i:100001;i:15;i:200001;}}'); INSERT INTO jrun_settings VALUES ('mail', 'a:10:{s:8:"mailsend";s:1:"2";s:6:"server";s:13:"smtp.sina.com";s:4:"port";s:2:"25";s:4:"auth";s:1:"1";s:4:"from";s:26:"JspRun <<EMAIL>>";s:13:"auth_username";s:17:"<EMAIL>";s:13:"auth_password";s:8:"password";s:13:"maildelimiter";s:1:"0";s:12:"mailusername";s:1:"1";s:15:"sendmail_silent";s:1:"1";}'); INSERT INTO jrun_settings VALUES ('watermarktext', ''); INSERT INTO jrun_settings VALUES ('watermarkminwidth', '0'); INSERT INTO jrun_settings VALUES ('watermarkminheight', '0'); INSERT INTO jrun_settings VALUES ('inviteconfig', ''); INSERT INTO jrun_settings VALUES ('historyposts', '0 0'); INSERT INTO jrun_settings VALUES ('zoomstatus', '1'); INSERT INTO jrun_settings VALUES ('postno', '#'); INSERT INTO jrun_settings VALUES ('postnocustom', ''); INSERT INTO jrun_settings VALUES ('maxbiotradesize', '400'); INSERT INTO jrun_settings VALUES ('videoinfo','a:9:{s:4:\"open\";i:0;s:5:\"vtype\";s:34:\"新闻 军事 音乐 影视 动漫\";s:6:\"bbname\";s:0:\"\";s:3:\"url\";s:0:\"\";s:5:\"email\";s:0:\"\";s:4:\"logo\";s:0:\"\";s:8:\"sitetype\";s:251:\"新闻 军事 音乐 影视 动漫 游戏 美女 娱乐 交友 教育 艺术 学术 技术 动物 旅游 生活 时尚 电脑 汽车 手机 摄影 戏曲 外语 公益 校园 数码 电脑 历史 天文 地理 财经 地区 人物 体育 健康 综合\";s:7:\"vsiteid\";s:0:\"\";s:9:\"vsitecode\";s:0:\"\";}'); INSERT INTO jrun_settings VALUES ('google','a:3:{s:4:"lang";s:0:"";s:9:"searchbox";s:1:"1";s:6:"status";s:1:"0";}'); INSERT INTO jrun_settings VALUES ('baidu','a:3:{s:4:"lang";N;s:9:"searchbox";s:1:"7";s:6:"status";s:1:"0";}'); INSERT INTO jrun_settings VALUES ('baidusitemap','1'); INSERT INTO jrun_settings VALUES ('baidusitemap_life','12'); INSERT INTO jrun_settings VALUES ('adminemail','<EMAIL>'); INSERT INTO jrun_settings VALUES ('dbreport','0'); INSERT INTO jrun_settings VALUES ('errorreport','1'); INSERT INTO jrun_settings VALUES ('attackevasive','0'); INSERT INTO jrun_settings VALUES ('admincp_forcesecques','0'); INSERT INTO jrun_settings VALUES ('admincp_checkip','1'); INSERT INTO jrun_settings VALUES ('admincp_tpledit','1'); INSERT INTO jrun_settings VALUES ('admincp_runquery','1'); INSERT INTO jrun_settings VALUES ('admincp_dbimport','1'); INSERT INTO jrun_settings VALUES ('cookiepre','jrun_'); INSERT INTO jrun_settings VALUES ('cookiedomain',''); INSERT INTO jrun_settings VALUES ('cookiepath','/'); INSERT INTO jrun_settings VALUES ('languages','a:2:{i:1;a:4:{s:9:"available";i:1;s:7:"default";i:1;s:8:"language";s:5:"zh_CN";s:4:"name";s:12:"中文简体";}i:2;a:4:{s:9:"available";i:1;s:7:"default";i:0;s:8:"language";s:5:"zh_TW";s:4:"name";s:12:"中文繁體";}}'); INSERT INTO jrun_settings VALUES ('showjavacode','0'); DROP TABLE IF EXISTS jrun_smilies; CREATE TABLE jrun_smilies ( id smallint(6) unsigned NOT NULL AUTO_INCREMENT, typeid smallint(6) unsigned NOT NULL, displayorder tinyint(3) NOT NULL DEFAULT '0', `type` enum('smiley','icon') NOT NULL DEFAULT 'smiley', `code` varchar(30) NOT NULL DEFAULT '', url varchar(30) NOT NULL DEFAULT '', PRIMARY KEY (id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=30; INSERT INTO jrun_smilies VALUES ('1','1','0','smiley',':)','smile.gif'); INSERT INTO jrun_smilies VALUES ('2','1','0','smiley',':(','sad.gif'); INSERT INTO jrun_smilies VALUES ('3','1','0','smiley',':D','biggrin.gif'); INSERT INTO jrun_smilies VALUES ('4','1','0','smiley',':\'(','cry.gif'); INSERT INTO jrun_smilies VALUES ('5','1','0','smiley',':@','huffy.gif'); INSERT INTO jrun_smilies VALUES ('6','1','0','smiley',':o','shocked.gif'); INSERT INTO jrun_smilies VALUES ('7','1','0','smiley',':P','tongue.gif'); INSERT INTO jrun_smilies VALUES ('8','1','0','smiley',':#','shy.gif'); INSERT INTO jrun_smilies VALUES ('9','1','0','smiley',';P','titter.gif'); INSERT INTO jrun_smilies VALUES ('10','1','0','smiley',':L','sweat.gif'); INSERT INTO jrun_smilies VALUES ('11','1','0','smiley',':Q','mad.gif'); INSERT INTO jrun_smilies VALUES ('12','1','0','smiley',':lol','lol.gif'); INSERT INTO jrun_smilies VALUES ('13','1','0','smiley',':hug:','hug.gif'); INSERT INTO jrun_smilies VALUES ('14','1','0','smiley',':victory:','victory.gif'); INSERT INTO jrun_smilies VALUES ('15','1','0','smiley',':time:','time.gif'); INSERT INTO jrun_smilies VALUES ('16','1','0','smiley',':kiss:','kiss.gif'); INSERT INTO jrun_smilies VALUES ('17','1','0','smiley',':handshake','handshake.gif'); INSERT INTO jrun_smilies VALUES ('18','1','0','smiley',':call:','call.gif'); INSERT INTO jrun_smilies VALUES ('19','0','0','icon','','icon1.gif'); INSERT INTO jrun_smilies VALUES ('20','0','0','icon','','icon2.gif'); INSERT INTO jrun_smilies VALUES ('21','0','0','icon','','icon3.gif'); INSERT INTO jrun_smilies VALUES ('22','0','0','icon','','icon4.gif'); INSERT INTO jrun_smilies VALUES ('23','0','0','icon','','icon5.gif'); INSERT INTO jrun_smilies VALUES ('24','0','0','icon','','icon6.gif'); INSERT INTO jrun_smilies VALUES ('25','0','0','icon','','icon7.gif'); INSERT INTO jrun_smilies VALUES ('26','0','0','icon','','icon8.gif'); INSERT INTO jrun_smilies VALUES ('27','0','0','icon','','icon9.gif'); INSERT INTO jrun_smilies VALUES ('28','1','0','smiley',':loveliness:','loveliness.gif'); INSERT INTO jrun_smilies VALUES ('29','1','0','smiley',':funk:','funk.gif'); DROP TABLE IF EXISTS jrun_spacecaches; CREATE TABLE jrun_spacecaches ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', variable varchar(20) NOT NULL, `value` text NOT NULL, expiration int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (uid,variable) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_stats; CREATE TABLE jrun_stats ( `type` char(10) NOT NULL DEFAULT '', variable char(10) NOT NULL DEFAULT '', count int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`type`,variable) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; INSERT INTO jrun_stats VALUES ('total','hits','1'); INSERT INTO jrun_stats VALUES ('total','members','0'); INSERT INTO jrun_stats VALUES ('total','guests','1'); INSERT INTO jrun_stats VALUES ('os','Windows','1'); INSERT INTO jrun_stats VALUES ('os','Mac','0'); INSERT INTO jrun_stats VALUES ('os','Linux','0'); INSERT INTO jrun_stats VALUES ('os','FreeBSD','0'); INSERT INTO jrun_stats VALUES ('os','SunOS','0'); INSERT INTO jrun_stats VALUES ('os','OS/2','0'); INSERT INTO jrun_stats VALUES ('os','AIX','0'); INSERT INTO jrun_stats VALUES ('os','Spiders','0'); INSERT INTO jrun_stats VALUES ('os','Other','0'); INSERT INTO jrun_stats VALUES ('browser','MSIE','1'); INSERT INTO jrun_stats VALUES ('browser','Netscape','0'); INSERT INTO jrun_stats VALUES ('browser','Mozilla','0'); INSERT INTO jrun_stats VALUES ('browser','Lynx','0'); INSERT INTO jrun_stats VALUES ('browser','Opera','0'); INSERT INTO jrun_stats VALUES ('browser','Konqueror','0'); INSERT INTO jrun_stats VALUES ('browser','Other','0'); INSERT INTO jrun_stats VALUES ('week','0','0'); INSERT INTO jrun_stats VALUES ('week','1','1'); INSERT INTO jrun_stats VALUES ('week','2','0'); INSERT INTO jrun_stats VALUES ('week','3','0'); INSERT INTO jrun_stats VALUES ('week','4','0'); INSERT INTO jrun_stats VALUES ('week','5','0'); INSERT INTO jrun_stats VALUES ('week','6','0'); INSERT INTO jrun_stats VALUES ('hour','00','0'); INSERT INTO jrun_stats VALUES ('hour','01','0'); INSERT INTO jrun_stats VALUES ('hour','02','0'); INSERT INTO jrun_stats VALUES ('hour','03','0'); INSERT INTO jrun_stats VALUES ('hour','04','0'); INSERT INTO jrun_stats VALUES ('hour','05','0'); INSERT INTO jrun_stats VALUES ('hour','06','0'); INSERT INTO jrun_stats VALUES ('hour','07','0'); INSERT INTO jrun_stats VALUES ('hour','08','0'); INSERT INTO jrun_stats VALUES ('hour','09','0'); INSERT INTO jrun_stats VALUES ('hour','10','1'); INSERT INTO jrun_stats VALUES ('hour','11','0'); INSERT INTO jrun_stats VALUES ('hour','12','0'); INSERT INTO jrun_stats VALUES ('hour','13','0'); INSERT INTO jrun_stats VALUES ('hour','14','0'); INSERT INTO jrun_stats VALUES ('hour','15','0'); INSERT INTO jrun_stats VALUES ('hour','16','0'); INSERT INTO jrun_stats VALUES ('hour','17','0'); INSERT INTO jrun_stats VALUES ('hour','18','0'); INSERT INTO jrun_stats VALUES ('hour','19','0'); INSERT INTO jrun_stats VALUES ('hour','20','0'); INSERT INTO jrun_stats VALUES ('hour','21','0'); INSERT INTO jrun_stats VALUES ('hour','22','0'); INSERT INTO jrun_stats VALUES ('hour','23','0'); DROP TABLE IF EXISTS jrun_statvars; CREATE TABLE jrun_statvars ( `type` varchar(20) NOT NULL DEFAULT '', variable varchar(20) NOT NULL DEFAULT '', `value` mediumtext NOT NULL, PRIMARY KEY (`type`,variable) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_styles; CREATE TABLE jrun_styles ( styleid smallint(6) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL DEFAULT '', available tinyint(1) NOT NULL DEFAULT '1', templateid smallint(6) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (styleid), KEY available (available) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3; INSERT INTO jrun_styles VALUES ('1','默认模板','1','1'); INSERT INTO jrun_styles VALUES ('2','经典风格','1','2'); INSERT INTO jrun_styles VALUES ('3','喝彩奥运','1','3'); INSERT INTO jrun_styles VALUES ('4','深邃永恒','1','4'); INSERT INTO jrun_styles VALUES ('5','粉妆精灵','1','5'); INSERT INTO jrun_styles VALUES ('6','诗意田园','1','2'); INSERT INTO jrun_styles VALUES ('7','春意盎然','1','2'); DROP TABLE IF EXISTS jrun_stylevars; CREATE TABLE jrun_stylevars ( stylevarid smallint(6) unsigned NOT NULL AUTO_INCREMENT, styleid smallint(6) unsigned NOT NULL DEFAULT '0', variable text NOT NULL, substitute text NOT NULL, PRIMARY KEY (stylevarid), KEY styleid (styleid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=42; INSERT INTO jrun_stylevars (styleid, variable, substitute) VALUES (1, 'available', ''), (1, 'commonboxborder', '#1e3647'), (1, 'noticebg', '#FAFAFA'), (1, 'tablebg', '#F7F7F7'), (1, 'highlightlink', '#FF9D25'), (1, 'commonboxbg', '#FAFAFA'), (1, 'bgcolor', '#F7F7F7'), (1, 'altbg1', '#F7F7F7'), (1, 'altbg2', '#FFFFFF'), (1, 'link', '#123456'), (1, 'bordercolor', '#D7D7D7'), (1, 'headercolor', '#FAFAFA forumbox_head.gif'), (1, 'headertext', '#FFF'), (1, 'tabletext', '#184057'), (1, 'text', '#1e3647'), (1, 'catcolor', '#457590'), (1, 'borderwidth', '1px'), (1, 'fontsize', '12px'), (1, 'tablespace', '0px'), (1, 'msgfontsize', '14px'), (1, 'msgbigsize', '16px'), (1, 'msgsmallsize', '12px'), (1, 'font', 'Arial,Helvetica,sans-serif'), (1, 'smfontsize', '12px'), (1, 'smfont', 'Arial,Helvetica,sans-serif'), (1, 'bgborder', '#1e3647'), (1, 'maintablewidth', ''), (1, 'imgdir', 'images/default'), (1, 'boardimg', 'logo.gif'), (1, 'inputborder', '#1e3647'), (1, 'catborder', '#1e3647'), (1, 'lighttext', '#000000'), (1, 'framebgcolor', ''), (1, 'headermenu', ''), (1, 'headermenutext', '#fff'), (1, 'boxspace', '10px'), (1, 'portalboxbgcode', '#FFF portalbox_bg.gif'), (1, 'noticeborder', '#1e3647'), (1, 'noticetext', '#FF8800'), (1, 'PBG', '#4d7c96'), (1, 'MENUCONTEXTCOLOR', '#DEDEDE'), (1, 'JPBG', '#FFF {IMGDIR/jpbg.gif}'), (1, 'INFOTEXT', '#FAFAFA'), (1, 'OBG', '#F4F4F4'), (1, 'OTHERBG', '#1e3647'), (1, 'stypeid', '1'); INSERT INTO jrun_stylevars (styleid, variable, substitute) VALUES (2, 'available', ''), (2, 'commonboxborder', '#E8E8E8'), (2, 'noticebg', '#FFFFF2'), (2, 'tablebg', '#FFF'), (2, 'highlightlink', '#069'), (2, 'commonboxbg', '#F7F7F7'), (2, 'bgcolor', '#FFF'), (2, 'altbg1', '#F5FAFE'), (2, 'altbg2', '#E8F3FD'), (2, 'link', '#000'), (2, 'bordercolor', '#9DB3C5'), (2, 'headercolor', '#2F589C header_bg.gif'), (2, 'headertext', '#FFF'), (2, 'tabletext', '#000'), (2, 'text', '#666'), (2, 'catcolor', '#E8F3FD cat_bg.gif'), (2, 'borderwidth', '1px'), (2, 'fontsize', '12px'), (2, 'tablespace', '1px'), (2, 'msgfontsize', '14px'), (2, 'msgbigsize', '16px'), (2, 'msgsmallsize', '12px'), (2, 'font', 'Helvetica, Arial, sans-serif'), (2, 'smfontsize', '0.83em'), (2, 'smfont', 'Verdana, Arial, Helvetica, sans-serif'), (2, 'bgborder', '#CAD9EA'), (2, 'maintablewidth', '98%'), (2, 'imgdir', 'images/Classic'), (2, 'boardimg', 'logo.gif'), (2, 'inputborder', '#DDD'), (2, 'catborder', '#CAD9EA'), (2, 'lighttext', '#999'), (2, 'framebgcolor', 'frame_bg.gif'), (2, 'headermenu', '#FFF menu_bg.gif'), (2, 'headermenutext', '#333'), (2, 'boxspace', '10px'), (2, 'portalboxbgcode', '#FFF portalbox_bg.gif'), (2, 'noticeborder', '#EDEDCE'), (2, 'noticetext', '#090'), (2, 'stypeid', '1'); INSERT INTO jrun_stylevars (styleid, variable, substitute) VALUES (3, 'available', ''), (3, 'bgcolor', '#FFF'), (3, 'altbg1', '#FFF'), (3, 'altbg2', '#F7F7F3'), (3, 'link', '#262626'), (3, 'bordercolor', '#C1C1C1'), (3, 'headercolor', '#FFF forumbox_head.gif'), (3, 'headertext', '#D00'), (3, 'catcolor', '#F90 cat_bg.gif'), (3, 'tabletext', '#535353'), (3, 'text', '#535353'), (3, 'borderwidth', '1px'), (3, 'tablespace', '1px'), (3, 'fontsize', '12px'), (3, 'msgfontsize', '14px'), (3, 'msgbigsize', '16px'), (3, 'msgsmallsize', '12px'), (3, 'font', 'Arial,Helvetica,sans-serif'), (3, 'smfontsize', '11px'), (3, 'smfont', 'Arial,Helvetica,sans-serif'), (3, 'boardimg', 'logo.gif'), (3, 'imgdir', './images/Beijing2008'), (3, 'maintablewidth', '98%'), (3, 'bgborder', '#C1C1C1'), (3, 'catborder', '#E2E2E2'), (3, 'inputborder', '#D7D7D7'), (3, 'lighttext', '#535353'), (3, 'headermenu', '#FFF menu_bg.gif'), (3, 'headermenutext', '#54564C'), (3, 'framebgcolor', ''), (3, 'noticebg', ''), (3, 'commonboxborder', '#F0F0ED'), (3, 'tablebg', '#FFF'), (3, 'highlightlink', '#535353'), (3, 'commonboxbg', '#F5F5F0'), (3, 'boxspace', '8px'), (3, 'portalboxbgcode', '#FFF portalbox_bg.gif'), (3, 'noticeborder', ''), (3, 'noticetext', '#DD0000'), (3, 'stypeid', '1'); INSERT INTO jrun_stylevars (styleid, variable, substitute) VALUES (4, 'available', ''), (4, 'bgcolor', '#222D2D'), (4, 'altbg1', '#3E4F4F'), (4, 'altbg2', '#384747'), (4, 'link', '#CEEBEB'), (4, 'bordercolor', '#1B2424'), (4, 'headercolor', '#1B2424'), (4, 'headertext', '#94B3C5'), (4, 'catcolor', '#293838'), (4, 'tabletext', '#CEEBEB'), (4, 'text', '#999'), (4, 'borderwidth', '6px'), (4, 'tablespace', '0'), (4, 'fontsize', '12px'), (4, 'msgfontsize', '14px'), (4, 'msgbigsize', '16px'), (4, 'msgsmallsize', '12px'), (4, 'font', 'Arial'), (4, 'smfontsize', '11px'), (4, 'smfont', 'Arial,sans-serif'), (4, 'boardimg', 'logo.gif'), (4, 'imgdir', './images/Overcast'), (4, 'maintablewidth', '98%'), (4, 'bgborder', '#384747'), (4, 'catborder', '#1B2424'), (4, 'inputborder', '#EEE'), (4, 'lighttext', '#74898E'), (4, 'headermenu', '#3E4F4F'), (4, 'headermenutext', '#CEEBEB'), (4, 'framebgcolor', '#222D2D'), (4, 'noticebg', '#3E4F4F'), (4, 'commonboxborder', '#384747'), (4, 'tablebg', '#3E4F4F'), (4, 'highlightlink', '#9CB2A0'), (4, 'commonboxbg', '#384747'), (4, 'boxspace', '6px'), (4, 'portalboxbgcode', '#293838'), (4, 'noticeborder', '#384747'), (4, 'noticetext', '#C7E001'), (4, 'stypeid', '1'); INSERT INTO jrun_stylevars (styleid, variable, substitute) VALUES (5, 'noticetext', '#C44D4D'), (5, 'noticeborder', '#D6D6D6'), (5, 'portalboxbgcode', '#FFF portalbox_bg.gif'), (5, 'boxspace', '6px'), (5, 'commonboxbg', '#FAFAFA'), (5, 'highlightlink', '#C44D4D'), (5, 'tablebg', '#FFF'), (5, 'commonboxborder', '#DEDEDE'), (5, 'noticebg', '#FAFAFA'), (5, 'framebgcolor', '#FFECF9'), (5, 'headermenu', '#FBFBFB'), (5, 'headermenutext', ''), (5, 'lighttext', '#999'), (5, 'catborder', '#D7D7D7'), (5, 'inputborder', ''), (5, 'bgborder', '#CECECE'), (5, 'stypeid', '1'), (5, 'maintablewidth', '920px'), (5, 'imgdir', 'images/PinkDresser'), (5, 'boardimg', 'logo.gif'), (5, 'smfont', 'Arial,Helvetica,sans-serif'), (5, 'smfontsize', '12px'), (5, 'font', 'Arial,Helvetica,sans-serif'), (5, 'msgsmallsize', '12px'), (5, 'msgbigsize', '16px'), (5, 'msgfontsize', '14px'), (5, 'fontsize', '12px'), (5, 'tablespace', '0'), (5, 'borderwidth', '1px'), (5, 'text', '#666'), (5, 'tabletext', '#666'), (5, 'catcolor', '#FAFAFA category_bg.gif'), (5, 'headertext', '#FFF'), (5, 'headercolor', '#E7BFC9 forumbox_head.gif'), (5, 'bordercolor', '#D88E9D'), (5, 'link', '#C44D4D'), (5, 'altbg2', '#F1F1F1'), (5, 'available', ''), (5, 'altbg1', '#FBFBFB'), (5, 'bgcolor', '#FBF4F5'), (5, 'stypeid', '1'); INSERT INTO jrun_stylevars (styleid, variable, substitute) VALUES (6, 'available', ''), (6, 'bgcolor', '#FFF'), (6, 'altbg1', '#FFFBF8'), (6, 'altbg2', '#FBF6F1'), (6, 'link', '#54564C'), (6, 'bordercolor', '#D7B094'), (6, 'headercolor', '#BE6A2D forumbox_head.gif'), (6, 'headertext', '#FFF'), (6, 'catcolor', '#E9E9E9 cat_bg.gif'), (6, 'tabletext', '#7B7D72'), (6, 'text', '#535353'), (6, 'borderwidth', '1px'), (6, 'tablespace', '1px'), (6, 'fontsize', '12px'), (6, 'msgfontsize', '14px'), (6, 'msgbigsize', '16px'), (6, 'msgsmallsize', '12px'), (6, 'font', 'Arial, sans-serif'), (6, 'smfontsize', '11px'), (6, 'smfont', 'Arial, sans-serif'), (6, 'boardimg', 'logo.gif'), (6, 'imgdir', './images/Picnicker'), (6, 'maintablewidth', '98%'), (6, 'bgborder', '#E8C9B7'), (6, 'catborder', '#E6E6E2'), (6, 'inputborder', ''), (6, 'lighttext', '#878787'), (6, 'headermenu', '#FFF menu_bg.gif'), (6, 'headermenutext', '#54564C'), (6, 'framebgcolor', 'frame_bg.gif'), (6, 'noticebg', '#FAFAF7'), (6, 'commonboxborder', '#E6E6E2'), (6, 'tablebg', '#FFF'), (6, 'highlightlink', ''), (6, 'commonboxbg', '#F5F5F0'), (6, 'boxspace', '6px'), (6, 'portalboxbgcode', '#FFF portalbox_bg.gif'), (6, 'noticeborder', '#E6E6E2'), (6, 'noticetext', '#FF3A00'), (6, 'stypeid', '1'); INSERT INTO jrun_stylevars (styleid, variable, substitute) VALUES (7, 'available', ''), (7, 'bgcolor', '#FFF'), (7, 'altbg1', '#F5F5F0'), (7, 'altbg2', '#F9F9F9'), (7, 'link', '#54564C'), (7, 'bordercolor', '#D9D9D4'), (7, 'headercolor', '#80A400 forumbox_head.gif'), (7, 'headertext', '#FFF'), (7, 'catcolor', '#F5F5F0 cat_bg.gif'), (7, 'tabletext', '#7B7D72'), (7, 'text', '#535353'), (7, 'borderwidth', '1px'), (7, 'tablespace', '1px'), (7, 'fontsize', '12px'), (7, 'msgfontsize', '14px'), (7, 'msgbigsize', '16px'), (7, 'msgsmallsize', '12px'), (7, 'font', 'Arial,sans-serif'), (7, 'smfontsize', '11px'), (7, 'smfont', 'Arial,sans-serif'), (7, 'boardimg', 'logo.gif'), (7, 'imgdir', './images/GreenPark'), (7, 'maintablewidth', '98%'), (7, 'bgborder', '#D9D9D4'), (7, 'catborder', '#D9D9D4'), (7, 'inputborder', '#D9D9D4'), (7, 'lighttext', '#878787'), (7, 'headermenu', '#FFF menu_bg.gif'), (7, 'headermenutext', '#262626'), (7, 'framebgcolor', ''), (7, 'noticebg', '#FAFAF7'), (7, 'commonboxborder', '#E6E6E2'), (7, 'tablebg', '#FFF'), (7, 'highlightlink', '#535353'), (7, 'commonboxbg', '#F9F9F9'), (7, 'boxspace', '6px'), (7, 'portalboxbgcode', '#FFF portalbox_bg.gif'), (7, 'noticeborder', '#E6E6E2'), (7, 'noticetext', '#FF3A00'), (7, 'stypeid', '1'); DROP TABLE IF EXISTS jrun_subscriptions; CREATE TABLE jrun_subscriptions ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', tid mediumint(8) unsigned NOT NULL DEFAULT '0', lastpost int(10) unsigned NOT NULL DEFAULT '0', lastnotify int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (tid,uid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_tags; CREATE TABLE jrun_tags ( tagname char(20) NOT NULL, closed tinyint(1) NOT NULL DEFAULT '0', total mediumint(8) unsigned NOT NULL, PRIMARY KEY (tagname), KEY total (total), KEY closed (closed) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_templates; CREATE TABLE jrun_templates ( templateid smallint(6) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL DEFAULT '', `directory` varchar(100) NOT NULL DEFAULT '', copyright varchar(100) NOT NULL DEFAULT '', PRIMARY KEY (templateid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3; INSERT INTO jrun_templates VALUES ('1','默认模板套系','./templates/default','北京飞速创想科技有限公司'); INSERT INTO jrun_templates VALUES ('2','经典风格','./templates/Classic','北京飞速创想科技有限公司'); INSERT INTO jrun_templates VALUES ('3','喝彩奥运','./templates/Beijing2008','北京飞速创想科技有限公司'); INSERT INTO jrun_templates VALUES ('4','深邃永恒','./templates/Overcast','北京飞速创想科技有限公司'); INSERT INTO jrun_templates VALUES ('5','粉妆精灵','./templates/PinkDresser','北京飞速创想科技有限公司'); DROP TABLE IF EXISTS jrun_threads; CREATE TABLE jrun_threads ( tid mediumint(8) unsigned NOT NULL AUTO_INCREMENT, fid smallint(6) unsigned NOT NULL DEFAULT '0', iconid smallint(6) unsigned NOT NULL DEFAULT '0', typeid smallint(6) unsigned NOT NULL DEFAULT '0', readperm tinyint(3) unsigned NOT NULL DEFAULT '0', price smallint(6) NOT NULL DEFAULT '0', author char(15) NOT NULL DEFAULT '', authorid mediumint(8) unsigned NOT NULL DEFAULT '0', `subject` char(80) NOT NULL DEFAULT '', dateline int(10) unsigned NOT NULL DEFAULT '0', lastpost int(10) unsigned NOT NULL DEFAULT '0', lastposter char(15) NOT NULL DEFAULT '', views int(10) unsigned NOT NULL DEFAULT '0', replies mediumint(8) unsigned NOT NULL DEFAULT '0', displayorder tinyint(1) NOT NULL DEFAULT '0', highlight tinyint(1) NOT NULL DEFAULT '0', digest tinyint(1) NOT NULL DEFAULT '0', rate tinyint(1) NOT NULL DEFAULT '0', blog tinyint(1) NOT NULL DEFAULT '0', special tinyint(1) NOT NULL DEFAULT '0', attachment tinyint(1) NOT NULL DEFAULT '0', subscribed tinyint(1) NOT NULL DEFAULT '0', moderated tinyint(1) NOT NULL DEFAULT '0', closed int(8) NOT NULL DEFAULT '0', PRIMARY KEY (tid), KEY digest (digest), KEY displayorder (fid,displayorder,lastpost), KEY blog (blog,authorid,dateline), KEY typeid (fid,typeid,displayorder,lastpost) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_threadsmod; CREATE TABLE jrun_threadsmod ( tid mediumint(8) unsigned NOT NULL DEFAULT '0', uid mediumint(8) unsigned NOT NULL DEFAULT '0', username char(15) NOT NULL DEFAULT '', dateline int(10) unsigned NOT NULL DEFAULT '0', expiration int(10) unsigned NOT NULL DEFAULT '0', `action` char(5) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', magicid smallint(6) unsigned NOT NULL, remark char(15), KEY tid (tid,dateline), KEY expiration (expiration,`status`), KEY `action` (`action`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_threadtags; CREATE TABLE jrun_threadtags ( tagname char(20) NOT NULL, tid int(10) unsigned NOT NULL, KEY tagname (tagname), KEY tid (tid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_threadtypes; CREATE TABLE jrun_threadtypes ( typeid smallint(6) unsigned NOT NULL AUTO_INCREMENT, displayorder tinyint(3) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', description varchar(255) NOT NULL DEFAULT '', special smallint(6) NOT NULL DEFAULT '0', modelid smallint(6) unsigned NOT NULL DEFAULT '0', expiration tinyint(1) NOT NULL DEFAULT '0', template text NOT NULL, PRIMARY KEY (typeid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1; DROP TABLE IF EXISTS jrun_tradecomments; CREATE TABLE jrun_tradecomments ( id mediumint(8) NOT NULL AUTO_INCREMENT, orderid char(32) NOT NULL, pid int(10) unsigned NOT NULL, `type` tinyint(1) NOT NULL, raterid mediumint(8) unsigned NOT NULL, rater char(15) NOT NULL, rateeid mediumint(8) unsigned NOT NULL, ratee char(15) NOT NULL, message char(200) NOT NULL, explanation char(200) NOT NULL, score tinyint(1) NOT NULL, dateline int(10) unsigned NOT NULL, PRIMARY KEY (id), KEY raterid (raterid,`type`,dateline), KEY rateeid (rateeid,`type`,dateline), KEY orderid (orderid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1; DROP TABLE IF EXISTS jrun_tradelog; CREATE TABLE jrun_tradelog ( tid mediumint(8) unsigned NOT NULL, pid int(10) unsigned NOT NULL, orderid varchar(32) NOT NULL, tradeno varchar(32) NOT NULL, `subject` varchar(100) NOT NULL, price decimal(8,2) NOT NULL, quality tinyint(1) unsigned NOT NULL DEFAULT '0', itemtype tinyint(1) NOT NULL DEFAULT '0', number smallint(5) unsigned NOT NULL DEFAULT '0', tax decimal(6,2) unsigned NOT NULL DEFAULT '0.00', locus varchar(100) NOT NULL, sellerid mediumint(8) unsigned NOT NULL, seller varchar(15) NOT NULL, selleraccount varchar(50) NOT NULL, buyerid mediumint(8) unsigned NOT NULL, buyer varchar(15) NOT NULL, buyercontact varchar(50) NOT NULL, buyercredits smallint(5) unsigned NOT NULL DEFAULT '0', buyermsg varchar(200) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', lastupdate int(10) unsigned NOT NULL DEFAULT '0', offline tinyint(1) NOT NULL DEFAULT '0', buyername varchar(50) NOT NULL, buyerzip varchar(10) NOT NULL, buyerphone varchar(20) NOT NULL, buyermobile varchar(20) NOT NULL, transport tinyint(1) NOT NULL DEFAULT '0', transportfee smallint(6) unsigned NOT NULL DEFAULT '0', baseprice decimal(8,2) NOT NULL, discount tinyint(1) NOT NULL DEFAULT '0', ratestatus tinyint(1) NOT NULL DEFAULT '0', message text NOT NULL, UNIQUE KEY orderid (orderid), KEY sellerid (sellerid), KEY buyerid (buyerid), KEY `status` (`status`), KEY buyerlog (buyerid,`status`,lastupdate), KEY sellerlog (sellerid,`status`,lastupdate), KEY tid (tid,pid), KEY pid (pid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_tradeoptionvars; CREATE TABLE jrun_tradeoptionvars ( typeid smallint(6) unsigned NOT NULL DEFAULT '0', pid mediumint(8) unsigned NOT NULL DEFAULT '0', optionid smallint(6) unsigned NOT NULL DEFAULT '0', `value` mediumtext NOT NULL, KEY typeid (typeid), KEY pid (pid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_trades; CREATE TABLE jrun_trades ( tid mediumint(8) unsigned NOT NULL, pid int(10) unsigned NOT NULL, typeid smallint(6) unsigned NOT NULL, sellerid mediumint(8) unsigned NOT NULL, seller char(15) NOT NULL, account char(50) NOT NULL, `subject` char(100) NOT NULL, price decimal(8,2) NOT NULL, amount smallint(6) unsigned NOT NULL DEFAULT '1', quality tinyint(1) unsigned NOT NULL DEFAULT '0', locus char(20) NOT NULL, transport tinyint(1) NOT NULL DEFAULT '0', ordinaryfee smallint(4) unsigned NOT NULL DEFAULT '0', expressfee smallint(4) unsigned NOT NULL DEFAULT '0', emsfee smallint(4) unsigned NOT NULL DEFAULT '0', itemtype tinyint(1) NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', expiration int(10) unsigned NOT NULL DEFAULT '0', lastbuyer char(15) NOT NULL, lastupdate int(10) unsigned NOT NULL DEFAULT '0', totalitems smallint(5) unsigned NOT NULL DEFAULT '0', tradesum decimal(8,2) NOT NULL DEFAULT '0.00', closed tinyint(1) NOT NULL DEFAULT '0', aid mediumint(8) unsigned NOT NULL, displayorder tinyint(1) NOT NULL, costprice decimal(8,2) NOT NULL, PRIMARY KEY (tid,pid), KEY sellerid (sellerid), KEY totalitems (totalitems), KEY tradesum (tradesum), KEY displayorder (tid,displayorder), KEY sellertrades (sellerid,tradesum,totalitems), KEY typeid (typeid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_typemodels; CREATE TABLE jrun_typemodels ( id smallint(6) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL, displayorder tinyint(3) NOT NULL DEFAULT '0', `type` tinyint(1) NOT NULL DEFAULT '0', options mediumtext NOT NULL, customoptions mediumtext NOT NULL, PRIMARY KEY (id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=100; INSERT INTO jrun_typemodels VALUES ('1','房屋交易信息','0','1','7 10 13 65 66 68',''); INSERT INTO jrun_typemodels VALUES ('2','车票交易信息','0','1','55 56 58 67 7 13 68',''); INSERT INTO jrun_typemodels VALUES ('3','兴趣交友信息','0','1','8 9 31',''); INSERT INTO jrun_typemodels VALUES ('4','公司招聘信息','0','1','34 48 54 51 47 46 44 45 52 53',''); ALTER TABLE jrun_typemodels AUTO_INCREMENT=101; DROP TABLE IF EXISTS jrun_typeoptions; CREATE TABLE jrun_typeoptions ( optionid smallint(6) unsigned NOT NULL auto_increment, classid smallint(6) unsigned NOT NULL default '0', displayorder tinyint(3) NOT NULL default '0', title varchar(100) NOT NULL default '', description varchar(255) NOT NULL default '', identifier varchar(40) NOT NULL default '', `type` varchar(20) NOT NULL default '', rules mediumtext NOT NULL, PRIMARY KEY (optionid), KEY classid (classid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3001 ; INSERT INTO jrun_typeoptions VALUES (1, 0, 0, '通用类', '', '', '', ''); INSERT INTO jrun_typeoptions VALUES (2, 0, 0, '房产类', '', '', '', ''); INSERT INTO jrun_typeoptions VALUES (3, 0, 0, '交友类', '', '', '', ''); INSERT INTO jrun_typeoptions VALUES (4, 0, 0, '求职招聘类', '', '', '', ''); INSERT INTO jrun_typeoptions VALUES (5, 0, 0, '交易类', '', '', '', ''); INSERT INTO jrun_typeoptions VALUES (6, 0, 0, '互联网类', '', '', '', ''); INSERT INTO jrun_typeoptions VALUES (7, 1, 0, '姓名', '', 'name', 'text', ''); INSERT INTO jrun_typeoptions VALUES (9, 1, 0, '年龄', '', 'age', 'number', ''); INSERT INTO jrun_typeoptions VALUES (10, 1, 0, '地址', '', 'address', 'text', ''); INSERT INTO jrun_typeoptions VALUES (11, 1, 0, 'QQ', '', 'qq', 'number', ''); INSERT INTO jrun_typeoptions VALUES (12, 1, 0, '邮箱', '', 'mail', 'email', ''); INSERT INTO jrun_typeoptions VALUES (13, 1, 0, '电话', '', 'phone', 'text', ''); INSERT INTO jrun_typeoptions VALUES (14, 5, 0, '培训费用', '', 'teach_pay', 'text', ''); INSERT INTO jrun_typeoptions VALUES (15, 5, 0, '培训时间', '', 'teach_time', 'text', ''); INSERT INTO jrun_typeoptions VALUES (20, 2, 0, '楼层', '', 'floor', 'number', ''); INSERT INTO jrun_typeoptions VALUES (21, 2, 0, '交通状况', '', 'traf', 'textarea', ''); INSERT INTO jrun_typeoptions VALUES (22, 2, 0, '地图', '', 'images', 'image', ''); INSERT INTO jrun_typeoptions VALUES (24, 2, 0, '价格', '', 'price', 'text', ''); INSERT INTO jrun_typeoptions VALUES (26, 5, 0, '培训名称', '', 'teach_name', 'text', ''); INSERT INTO jrun_typeoptions VALUES (28, 3, 0, '身高', '', 'heighth', 'number', ''); INSERT INTO jrun_typeoptions VALUES (29, 3, 0, '体重', '', 'weighth', 'number', ''); INSERT INTO jrun_typeoptions VALUES (33, 1, 0, '照片', '', 'photo', 'image', ''); INSERT INTO jrun_typeoptions VALUES (35, 5, 0, '服务方式', '', 'service_type', 'text', ''); INSERT INTO jrun_typeoptions VALUES (36, 5, 0, '服务时间', '', 'service_time', 'text', ''); INSERT INTO jrun_typeoptions VALUES (37, 5, 0, '服务费用', '', 'service_pay', 'text', ''); INSERT INTO jrun_typeoptions VALUES (39, 6, 0, '网址', '', 'site_url', 'url', ''); INSERT INTO jrun_typeoptions VALUES (40, 6, 0, '电子邮件', '', 'site_mail', 'email', ''); INSERT INTO jrun_typeoptions VALUES (42, 6, 0, '网站名称', '', 'site_name', 'text', ''); INSERT INTO jrun_typeoptions VALUES (46, 4, 0, '职位', '', 'recr_intend', 'text', ''); INSERT INTO jrun_typeoptions VALUES (47, 4, 0, '工作地点', '', 'recr_palce', 'text', ''); INSERT INTO jrun_typeoptions VALUES (49, 4, 0, '有效期至', '', 'recr_end', 'calendar', ''); INSERT INTO jrun_typeoptions VALUES (51, 4, 0, '公司名称', '', 'recr_com', 'text', ''); INSERT INTO jrun_typeoptions VALUES (52, 4, 0, '年龄要求', '', 'recr_age', 'text', ''); INSERT INTO jrun_typeoptions VALUES (54, 4, 0, '专业', '', 'recr_abli', 'text', ''); INSERT INTO jrun_typeoptions VALUES (55, 5, 0, '始发', '', 'leaves', 'text', ''); INSERT INTO jrun_typeoptions VALUES (56, 5, 0, '终点', '', 'boundfor', 'text', ''); INSERT INTO jrun_typeoptions VALUES (57, 6, 0, 'Alexa排名', '', 'site_top', 'number', ''); INSERT INTO jrun_typeoptions VALUES (58, 5, 0, '车次/航班', '', 'train_no', 'text', ''); INSERT INTO jrun_typeoptions VALUES (59, 5, 0, '数量', '', 'trade_num', 'number', ''); INSERT INTO jrun_typeoptions VALUES (60, 5, 0, '价格', '', 'trade_price', 'text', ''); INSERT INTO jrun_typeoptions VALUES (61, 5, 0, '有效期至', '', 'trade_end', 'calendar', ''); INSERT INTO jrun_typeoptions VALUES (63, 1, 0, '详细描述', '', 'detail_content', 'textarea', ''); INSERT INTO jrun_typeoptions VALUES (64, 1, 0, '籍贯', '', 'born_place', 'text', ''); INSERT INTO jrun_typeoptions VALUES (65, 2, 0, '租金', '', 'money', 'text', ''); INSERT INTO jrun_typeoptions VALUES (66, 2, 0, '面积', '', 'acreage', 'text', ''); INSERT INTO jrun_typeoptions VALUES (67, 5, 0, '发车时间', '', 'time', 'calendar', 'N;'); INSERT INTO jrun_typeoptions VALUES (68, 1, 0, '所在地', '', 'now_place', 'text', ''); DROP TABLE IF EXISTS jrun_typeoptionvars; CREATE TABLE jrun_typeoptionvars ( typeid smallint(6) unsigned NOT NULL DEFAULT '0', tid mediumint(8) unsigned NOT NULL DEFAULT '0', optionid smallint(6) unsigned NOT NULL DEFAULT '0', expiration int(10) unsigned NOT NULL DEFAULT '0', `value` mediumtext NOT NULL, KEY typeid (typeid), KEY tid (tid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_typevars; CREATE TABLE jrun_typevars ( typeid smallint(6) NOT NULL DEFAULT '0', optionid smallint(6) NOT NULL DEFAULT '0', available tinyint(1) NOT NULL DEFAULT '0', required tinyint(1) NOT NULL DEFAULT '0', unchangeable tinyint(1) NOT NULL DEFAULT '0', search tinyint(1) NOT NULL DEFAULT '0', displayorder tinyint(3) NOT NULL DEFAULT '0', UNIQUE KEY optionid (typeid,optionid), KEY typeid (typeid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_usergroups; CREATE TABLE jrun_usergroups ( groupid smallint(6) unsigned NOT NULL AUTO_INCREMENT, radminid tinyint(3) NOT NULL DEFAULT '0', `type` enum('system','special','member') NOT NULL DEFAULT 'member', system char(8) NOT NULL DEFAULT 'private', grouptitle char(30) NOT NULL DEFAULT '', creditshigher int(10) NOT NULL DEFAULT '0', creditslower int(10) NOT NULL DEFAULT '0', stars tinyint(3) NOT NULL DEFAULT '0', color char(7) NOT NULL DEFAULT '', groupavatar char(60) NOT NULL DEFAULT '', readaccess tinyint(3) unsigned NOT NULL DEFAULT '0', allowvisit tinyint(1) NOT NULL DEFAULT '0', allowpost tinyint(1) NOT NULL DEFAULT '0', allowreply tinyint(1) NOT NULL DEFAULT '0', allowpostpoll tinyint(1) NOT NULL DEFAULT '0', allowpostreward tinyint(1) NOT NULL DEFAULT '0', allowposttrade tinyint(1) NOT NULL DEFAULT '0', allowpostactivity tinyint(1) NOT NULL DEFAULT '0', allowpostvideo tinyint(1) NOT NULL DEFAULT '0', allowdirectpost tinyint(1) NOT NULL DEFAULT '0', allowgetattach tinyint(1) NOT NULL DEFAULT '0', allowpostattach tinyint(1) NOT NULL DEFAULT '0', allowvote tinyint(1) NOT NULL DEFAULT '0', allowmultigroups tinyint(1) NOT NULL DEFAULT '0', allowsearch tinyint(1) NOT NULL DEFAULT '0', allowavatar tinyint(1) NOT NULL DEFAULT '0', allowcstatus tinyint(1) NOT NULL DEFAULT '0', allowuseblog tinyint(1) NOT NULL DEFAULT '0', allowinvisible tinyint(1) NOT NULL DEFAULT '0', allowtransfer tinyint(1) NOT NULL DEFAULT '0', allowsetreadperm tinyint(1) NOT NULL DEFAULT '0', allowsetattachperm tinyint(1) NOT NULL DEFAULT '0', allowhidecode tinyint(1) NOT NULL DEFAULT '0', allowhtml tinyint(1) NOT NULL DEFAULT '0', allowcusbbcode tinyint(1) NOT NULL DEFAULT '0', allowanonymous tinyint(1) NOT NULL DEFAULT '0', allownickname tinyint(1) NOT NULL DEFAULT '0', allowsigbbcode tinyint(1) NOT NULL DEFAULT '0', allowsigimgcode tinyint(1) NOT NULL DEFAULT '0', allowviewpro tinyint(1) NOT NULL DEFAULT '0', allowviewstats tinyint(1) NOT NULL DEFAULT '0', disableperiodctrl tinyint(1) NOT NULL DEFAULT '0', reasonpm tinyint(1) NOT NULL DEFAULT '0', maxprice smallint(6) unsigned NOT NULL DEFAULT '0', maxpmnum smallint(6) unsigned NOT NULL DEFAULT '0', maxsigsize smallint(6) unsigned NOT NULL DEFAULT '0', maxattachsize mediumint(8) unsigned NOT NULL DEFAULT '0', maxsizeperday int(10) unsigned NOT NULL DEFAULT '0', maxpostsperhour tinyint(3) unsigned NOT NULL DEFAULT '0', attachextensions char(100) NOT NULL DEFAULT '', raterange char(150) NOT NULL DEFAULT '', mintradeprice smallint(6) unsigned NOT NULL DEFAULT '1', maxtradeprice smallint(6) unsigned NOT NULL DEFAULT '0', minrewardprice smallint(6) NOT NULL DEFAULT '1', maxrewardprice smallint(6) NOT NULL DEFAULT '0', magicsdiscount tinyint(1) NOT NULL, allowmagics tinyint(1) unsigned NOT NULL, maxmagicsweight smallint(6) unsigned NOT NULL, allowbiobbcode tinyint(1) unsigned NOT NULL DEFAULT '0', allowbioimgcode tinyint(1) unsigned NOT NULL DEFAULT '0', maxbiosize smallint(6) unsigned NOT NULL DEFAULT '0', allowinvite tinyint(1) NOT NULL DEFAULT '0', allowmailinvite tinyint(1) NOT NULL DEFAULT '0', maxinvitenum tinyint(3) unsigned NOT NULL DEFAULT '0', inviteprice smallint(6) unsigned NOT NULL DEFAULT '0', maxinviteday smallint(6) unsigned NOT NULL DEFAULT '0', allowpostdebate tinyint(1) NOT NULL DEFAULT '0', tradestick tinyint(1) unsigned NOT NULL, allowviewdigest tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (groupid), KEY creditsrange (creditslower,creditshigher) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=16; INSERT INTO jrun_usergroups VALUES ('1','1','system','private','管理员','0','0','9','','','200','1','1','1','1','1','1','1','1','3','1','1','1','1','2','3','1','1','1','1','1','1','1','0','1','1','1','1','1','1','1','1','0','30','200','500','2048000','0','0','','1 -30 30 500','1','0','1','0','0','2','200','2','2','0','0','0','0','0','0','1','5','1'); INSERT INTO jrun_usergroups VALUES ('2','2','system','private','超级版主','0','0','8','','','150','1','1','1','1','1','1','1','1','3','1','1','1','1','1','3','1','1','1','1','1','1','1','0','1','0','1','1','1','1','1','1','0','20','120','300','2048000','0','0','chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png','1 -15 15 50','1','0','1','0','0','2','180','2','2','0','0','0','0','0','0','1','5','1'); INSERT INTO jrun_usergroups VALUES ('3','3','system','private','版主','0','0','7','','','100','1','1','1','1','1','1','1','1','3','1','1','1','1','1','3','1','1','0','1','1','1','1','0','1','0','1','1','1','1','1','1','0','10','80','200','2048000','0','0','chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png','1 -10 10 30','1','0','1','0','0','2','160','2','2','0','0','0','0','0','0','1','5','1'); INSERT INTO jrun_usergroups VALUES ('4','0','system','private','禁止发言','0','0','0','','','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','','1','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','5','0'); INSERT INTO jrun_usergroups VALUES ('5','0','system','private','禁止访问','0','0','0','','','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','','1','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','5','0'); INSERT INTO jrun_usergroups VALUES ('6','0','system','private','禁止 IP','0','0','0','','','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','','','1','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','5','0'); INSERT INTO jrun_usergroups VALUES ('7','0','system','private','游客','0','0','0','','','1','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','1','0','0','0','0','0','0','0','0','gif,jpg,jpeg,png','','1','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','5','0'); INSERT INTO jrun_usergroups VALUES ('8','0','system','private','等待验证会员','0','0','0','','','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','1','0','0','0','0','0','0','0','50','0','0','0','','','1','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','5','0'); INSERT INTO jrun_usergroups VALUES ('9','0','member','private','乞丐','-9999999','0','0','','','0','1','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','0','1','0','0','0','0','0','0','0','0','0','chm,pdf,zip,rar,tar,gz,bzip2,gif,jpg,jpeg,png','','1','0','1','0','1','0','0','0','0','0','0','0','0','0','0','0','5','0'); INSERT INTO jrun_usergroups VALUES ('10','0','member','private','新手上路','0','50','1','','','10','1','1','1','0','0','1','0','0','3','1','0','0','0','1','0','0','0','0','0','0','0','0','0','0','0','0','1','0','1','0','0','0','0','20','80','0','0','0','chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png','','1','0','1','0','0','1','40','1','1','0','0','0','0','0','0','1','5','0'); INSERT INTO jrun_usergroups VALUES ('11','0','member','private','注册会员','50','200','2','','','20','1','1','1','1','1','1','1','1','3','1','0','1','0','1','1','0','0','0','0','0','0','0','0','0','0','0','1','0','1','1','0','0','0','30','100','0','0','0','chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png','','1','0','1','0','0','1','60','1','1','0','0','0','0','0','0','1','5','1'); INSERT INTO jrun_usergroups VALUES ('12','0','member','private','中级会员','200','500','3','','','30','1','1','1','1','1','1','1','1','3','1','0','1','0','1','2','0','0','0','0','0','0','0','0','1','0','0','1','0','1','1','0','0','0','50','150','256000','0','0','chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png','','1','0','1','0','0','1','80','1','1','0','0','0','0','0','0','1','5','1'); INSERT INTO jrun_usergroups VALUES ('13','0','member','private','高级会员','500','1000','4','','','50','1','1','1','1','1','1','1','1','3','1','1','1','1','1','3','1','0','0','0','0','0','0','0','1','0','1','1','0','1','1','0','0','0','60','200','512000','0','0','chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png','1 -10 10 30','1','0','1','0','0','2','100','2','2','0','0','0','0','0','0','1','5','1'); INSERT INTO jrun_usergroups VALUES ('14','0','member','private','金牌会员','1000','3000','6','','','70','1','1','1','1','1','1','1','1','3','1','1','1','1','1','3','1','0','0','0','1','1','0','0','1','0','1','1','1','1','1','0','0','0','80','300','1024000','0','0','chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png','1 -15 15 40','1','0','1','0','0','2','120','2','2','0','0','0','0','0','0','1','5','1'); INSERT INTO jrun_usergroups VALUES ('15','0','member','private','论坛元老','3000','9999999','8','','','90','1','1','1','1','1','1','1','1','3','1','1','1','1','1','3','1','0','1','0','1','1','0','0','1','1','1','1','1','1','1','0','0','0','100','500','2048000','0','0','chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png','1 -20 20 50','1','0','1','0','0','2','140','2','2','0','0','0','0','0','0','1','5','1'); INSERT INTO jrun_usergroups VALUES ('16','3','special','private','版主助理','0','0','7','','','100','1','1','1','1','1','1','1','1','3','1','1','1','1','1','3','1','1','0','1','1','1','1','0','1','0','1','1','1','1','1','1','0','10','80','200','2048000','0','0','chm, pdf, zip, rar, tar, gz, bzip2, gif, jpg, jpeg, png','','1','0','1','0','0','2','160','2','2','0','0','0','0','0','0','1','5','1'); DROP TABLE IF EXISTS jrun_validating; CREATE TABLE jrun_validating ( uid mediumint(8) unsigned NOT NULL DEFAULT '0', submitdate int(10) unsigned NOT NULL DEFAULT '0', moddate int(10) unsigned NOT NULL DEFAULT '0', admin varchar(15) NOT NULL DEFAULT '', submittimes tinyint(3) unsigned NOT NULL DEFAULT '0', `status` tinyint(1) NOT NULL DEFAULT '0', message text NOT NULL, remark text NOT NULL, PRIMARY KEY (uid), KEY `status` (`status`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_videos; CREATE TABLE jrun_videos ( vid varchar(16) NOT NULL DEFAULT '', uid mediumint(8) unsigned NOT NULL DEFAULT '0', dateline int(10) unsigned NOT NULL DEFAULT '0', tid mediumint(8) unsigned NOT NULL DEFAULT '0', pid int(10) unsigned NOT NULL DEFAULT '0', vtype tinyint(1) unsigned NOT NULL DEFAULT '0', vview mediumint(8) unsigned NOT NULL DEFAULT '0', vtime smallint(6) unsigned NOT NULL DEFAULT '0', visup tinyint(1) unsigned NOT NULL DEFAULT '0', vthumb varchar(128) NOT NULL DEFAULT '', vtitle varchar(64) NOT NULL DEFAULT '', vclass varchar(32) NOT NULL DEFAULT '', vautoplay tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (vid), UNIQUE KEY uid (vid,uid), KEY dateline (dateline) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_videotags; CREATE TABLE jrun_videotags ( tagname char(10) NOT NULL DEFAULT '', vid char(14) NOT NULL DEFAULT '', tid mediumint(8) unsigned NOT NULL DEFAULT '0', UNIQUE KEY tagname (tagname,vid), KEY tid (tid) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS jrun_words; CREATE TABLE jrun_words ( id smallint(6) unsigned NOT NULL AUTO_INCREMENT, admin varchar(15) NOT NULL DEFAULT '', find varchar(255) NOT NULL DEFAULT '', replacement varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;
DROP TABLE IF EXISTS `field_group_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_group_translations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `field_group_id` int(11) NOT NULL, `locale` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `display_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `help` text COLLATE utf8_unicode_ci, PRIMARY KEY (`id`), KEY `index_field_group_translations_on_field_group_id` (`field_group_id`), KEY `index_field_group_translations_on_locale` (`locale`) ) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `field_group_translations` -- LOCK TABLES `field_group_translations` WRITE; /*!40000 ALTER TABLE `field_group_translations` DISABLE KEYS */; INSERT INTO `field_group_translations` VALUES (1,3,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Barometer','Barometer','Instrument used to measure atmospheric pressure'),(2,4,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Air Temp & Humid','Temperature and Humidity of the Air','Temperature and humidity of the air '),(3,7,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Clouds','Clouds','Cloud type classification'),(4,8,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Wind','Wind','Wind measurements '),(5,9,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Rain and Snow','Rain and Snow','Records the time and amount of rain or snow'),(6,15,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Anemometer','Anemometer','Instrument to measure wind speed'),(7,16,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Temperature Extremes','Maximum and Minimum Thermometers','The maximum and minimum thermometers are read once a day to determine the daily temperature extremes'),(8,17,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Ozone and Aurora','Ozone and Aurora','Ozone Electro-magnetic Atmospheric Phenomena'),(9,20,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Phenomena and Weather ','Phenomena and Weather ','Weather and any other atmospheric phenomena such as rainbows, haloes, or corona'),(10,24,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Phenomena and Weather 110','Phenomena and Weather','Written description of weather and other atmospheric phenomena such as rainbows, haloes, or corona'),(11,26,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Phenomena and Weather','Phenomena and Weather','Written description of weather and other atmospheric phenomena'),(12,27,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Remarks and Initials','Remarks and Initials','Any other remarks and the observer\'s initials'),(13,28,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Clouds','Clouds','Description of clouds according to 1878 one-letter standard abbreviations '),(14,30,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Temperature and Humidity','Temperature and Humidity','Air temperature and humidity of the air'),(15,31,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Weather and Phenomena','Weather and Phenomena','Written description of weather and other atmospheric phenomena'),(16,32,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Weather and Phenomena ','Weather and Phenomena ','Written description of weather and other atmospheric phenomena'),(17,33,'en','2017-08-04 04:28:11','2017-10-09 22:54:29','Anemometer/City Hall Barometer','Anemometer/City Hall Barometer','These NOT anemometer values, but are readings from a barometer kept at Montreal\'s City Hall. These readings do NOT match the printed column headings. The last box, \"City Hall Corr. Bar\" was not always written down on the page'),(18,34,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Weather','Weather','Weather'),(19,35,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Weather and Phenomena','Weather and Phenomena','Written description of weather and other atmospheric phenomena'),(20,37,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Rain and Snow','Rain and Snow','Records the time and amount of rain and snow'),(21,38,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Temperature and Humidity','Temperature and Humidity','Temperature and Humidity. Note that the values observed (hygrometer) and (wet and dry) are not the same as in the column headings'),(22,39,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Temperature and Humidity','Temperature and Humidity','Temperature and Humidity observations. Note that the values recorded on the page don\'t always line up with the column headings'),(23,40,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Temperature and Humidity','Temperature and Humidity','Temperature and Humidity obsservations. Note that the values recorded on the page don\'t always line up with the column headings'),(24,41,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Minimum and Maximum Temperature','Minimum and Maximum Temperature','Due to a misprint, the columns for page 1 were printed twice. Here the observations don\'t line up with the printed columns.'),(25,42,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Radiative Temperatures','Radiative Temperatures','Due to a misprint, the columns for page 1 were printed twice. Here the observations don\'t line up with the printed columns.'),(26,43,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Weather and Remarks','Weather and Remarks','Due to a misprint, the columns for page 1 were printed twice. Here the observations don\'t line up with the printed columns.'),(27,44,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Phenomena','Phenomena',''),(28,3,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Baromètre','Baromètre','Instrument utilisé pour mesurer la pression atmoshérique.'),(29,4,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température et humidité de l\'air','Température et humidité de l\'air','Température et humidité de l\'air.'),(30,7,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Nuages','Nuages','Classification des nuages par type.'),(31,8,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Vent ','Vent','Mesure du vent.'),(32,9,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Pluie et neige','Pluie et neige','La date, l\'heure et la quantité de pluie ou de neige.'),(33,15,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Anémomètre','Anémomètre','Instrument mesurant la vitesse du vent.'),(34,16,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Extrêmes de température','Thermomètres à maximum et à minimum','Les températures maximale et minimale sont mesurées une fois par jour afin de déterminer les extrêmes de température quotidiens. '),(35,17,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Ozone et aurore ','Ozone et aurore ','Phénomènes atmosphériques et électromagnétiques.'),(36,20,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Phenomènes et météo','Phénomènes et météo','Météo et autres phénomènes atmosphériques tels que les arcs-en-ciel, les halos ou les couronnes solaires et lunaires. '),(37,24,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Phenomènes et météo 110','Phénomènes et météo','Description écrite de la météo et d\'autres phénomènes atmosphériques tels que les arcs-en-ciel, les halos ou les couronnes solaires et lunaires. '),(38,26,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Phenomènes et météo','Phénomènes et météo','Description écrite de la météo et d\'autres phénomènes atmosphériques.'),(39,27,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Remarques et initiales ','Remarques et initiales','Toutes autres remarques accompagnées des initiales de l\'observateur.'),(40,28,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Nuages','Nuages','Description des nuages selon les normes d\'abbréviation à une lettre de 1878. '),(41,30,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température et humidité','Température et humidité','Température et humidité de l\'air.'),(42,31,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Météo et phénomènes ','Météo et phénomènes','Description écrite de la météo et d\'autres phénomènes atmosphériques.'),(43,32,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Météo et phénomènes ','Météo et phénomènes','Description écrite de la météo et d\'autres phénomènes atmosphériques.'),(44,33,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Anémomètre/ baromètre de l\'hôtel de ville ','Anémomètre/ baromètre de l\'hôtel de ville ','Ces données ne proviennent PAS d\'un anémomètre, mais de l\'un des baromètres de l\'hôtel de ville de Montréal. Notez donc qu\'elles ne correspondent pas aux en-têtes des colonnes. '),(45,34,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Météo','Météo','Météo.'),(46,35,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Météo et phénomènes ','Météo et phénomènes','Description écrite de la météo et d\'autres phénomènes atmosphériques.'),(47,37,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Pluie et neige','Pluie et neige','La date, l\'heure et la quantité de pluie et de neige.'),(48,38,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température et humidité','Température et humidité','Température et humidité. Notez que les données observées (« hygromètre » et « sec et humide ») ne correspondent pas aux en-têtes des colonnes. '),(49,39,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température et humidité','Température et humidité','Observations liées à la température et à l\'humidité. Notez que les données ne s\'alignent pas toujours sur les en-têtes des colonnes correspondantes.'),(50,40,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température et humidité','Température et humidité','Observations liées à la température et à l\'humidité. Notez que les données ne s\'alignent pas toujours sur les en-têtes des colonnes correspondantes.'),(51,41,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Températures minimale et maximale ','Températures minimale et maximale ','Les colonnes de la page 1 ont été imprimées deux fois en raison d\'une erreur typographique. Les observations ne s\'alignent donc pas sur les colonnes correspondantes. '),(52,42,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Températures radiatives','Températures radiatives','Les colonnes de la page 1 ont été imprimées deux fois en raison d\'une erreur typographique. Les observations ne s\'alignent donc pas sur les colonnes correspondantes. '),(53,43,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Météo et remarques ','Météo et remarques ','Les colonnes de la page 1 ont été imprimées deux fois en raison d\'une erreur typographique. Les observations ne s\'alignent donc pas sur les colonnes correspondantes. '),(54,44,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Phénomènes ','Phénomènes ','Phénomènes.'),(55,45,'en','2018-01-15 01:50:31','2018-01-15 01:50:31','Transcriber comments','Transcriber comments','You can note down any problems, inconsistencies or issues found anywhere along this row and observation time here'); /*!40000 ALTER TABLE `field_group_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `field_groups` -- DROP TABLE IF EXISTS `field_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_groups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `description` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `colour_class` varchar(255) NOT NULL DEFAULT '', `internal_name` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `field_groups` -- LOCK TABLES `field_groups` WRITE; /*!40000 ALTER TABLE `field_groups` DISABLE KEYS */; INSERT INTO `field_groups` VALUES (3,'','2016-05-25 02:53:19','2017-06-14 15:59:50','purple-group','100-200 Barometer'),(4,'','2016-05-25 03:06:44','2017-06-14 16:01:52','green-group','100-200 Air Temp & Humid'),(7,'','2016-08-29 23:12:17','2017-06-14 16:08:05','cyan-group','110 Clouds'),(8,'','2016-09-02 15:23:44','2017-06-14 16:06:22','yellow-group','110 Wind'),(9,'','2016-09-02 15:30:20','2017-06-14 16:09:25','orange-group','100 Rain and Snow'),(15,NULL,'2017-01-18 16:05:39','2017-01-18 16:05:39','purple-group',NULL),(16,NULL,'2017-01-18 16:07:36','2017-04-25 15:29:45','orange-group',''),(17,NULL,'2017-01-18 16:11:08','2017-06-14 15:56:21','purple-group','110 Ozone and Aurora'),(20,NULL,'2017-01-18 16:55:49','2017-06-14 15:57:09','pink-group','110 Weather and Phenomena at Observation'),(24,NULL,'2017-03-01 01:07:39','2017-05-30 17:20:59','pink-group',''),(26,NULL,'2017-03-01 01:07:57','2017-04-25 15:31:16','pink-group','Phenomena and Weather 120'),(27,NULL,'2017-03-07 20:57:41','2017-04-25 15:31:34','blue-group','Remarks and Initials'),(28,NULL,'2017-03-27 18:30:52','2017-03-27 18:30:52','purple-group','Clouds 120'),(30,NULL,'2017-04-25 14:41:15','2017-05-30 16:55:43','green-group','Temperature and Humidity 130'),(31,NULL,'2017-04-25 14:45:38','2017-05-30 16:46:09','pink-group','Phenomena and Weather 130'),(32,NULL,'2017-05-02 20:12:08','2017-05-30 16:58:30','pink-group','Weather and Phenomena 140'),(33,NULL,'2017-05-02 20:24:18','2017-10-09 22:54:29','purple-group','Anemometer/City Hall Barometer'),(34,NULL,'2017-05-02 20:28:10','2017-05-02 20:30:09','pink-group','Weather 210'),(35,NULL,'2017-05-02 20:32:47','2017-05-30 17:18:58','pink-group','Weather and Phenomena 210'),(37,NULL,'2017-05-02 20:47:05','2017-05-30 17:20:24','orange-group','Rain and Snow 220'),(38,NULL,'2017-05-02 21:04:47','2017-05-02 21:04:47','green-group','Temperature and Humidity 230'),(39,NULL,'2017-05-02 21:10:33','2017-06-22 21:40:45','green-group','Temperature and Humidity 220'),(40,NULL,'2017-05-02 21:23:25','2017-05-02 21:23:25','green-group','Temperature and Humidity 240'),(41,NULL,'2017-05-02 21:48:01','2017-06-14 15:58:33','orange-group','250 Minimum and Maximum Temperature'),(42,NULL,'2017-05-02 21:49:43','2017-06-14 15:58:10','yellow-group','250 Radiative Temperatures'),(43,NULL,'2017-05-02 21:50:59','2017-06-14 15:57:47','pink-group','250 Weather and Remarks'),(44,NULL,'2017-05-02 21:55:57','2017-06-14 15:57:29','pink-group','200 Phenomena '),(45,NULL,'2018-01-15 01:50:31','2018-01-15 01:50:31','yellow-group','Transcriber comments'); /*!40000 ALTER TABLE `field_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `field_groups_fields` -- DROP TABLE IF EXISTS `field_groups_fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_groups_fields` ( `field_group_id` int(11) NOT NULL, `field_id` int(11) NOT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `sort_order` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `index_field_groups_fields_on_field_group_id` (`field_group_id`), KEY `index_field_groups_fields_on_field_id` (`field_id`) ) ENGINE=InnoDB AUTO_INCREMENT=134 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `field_groups_fields` -- LOCK TABLES `field_groups_fields` WRITE; /*!40000 ALTER TABLE `field_groups_fields` DISABLE KEYS */; INSERT INTO `field_groups_fields` VALUES (3,4,1,-75),(3,5,2,-75),(3,6,3,-75),(3,7,4,-75),(3,8,5,-75),(4,9,6,-75),(4,10,7,-75),(7,16,8,-75),(7,17,9,-75),(8,19,10,-75),(8,20,11,-75),(8,21,12,-75),(7,22,13,-75),(7,23,14,-75),(7,24,15,-75),(9,25,16,-75),(9,26,17,-75),(9,27,18,-75),(4,11,19,-75),(4,12,20,-75),(4,13,21,-75),(4,14,22,-75),(4,15,23,-75),(9,28,24,-75),(9,29,25,-75),(9,30,26,-75),(9,31,27,-75),(15,34,31,6291381),(15,35,32,7339957),(16,36,33,7864245),(16,37,34,8126389),(16,38,35,8257461),(16,39,36,8322997),(20,40,40,8384437),(20,18,41,8386485),(17,43,43,8388021),(17,47,44,8388277),(17,46,45,8388405),(27,44,46,8388469),(27,45,47,8388501),(26,52,48,8388517),(26,56,50,-4194377),(28,54,52,8388531),(28,17,53,8388532),(28,53,54,8388533),(28,23,55,8388534),(28,24,56,8388535),(30,9,57,8388536),(30,10,58,8388537),(30,11,59,8388538),(30,12,60,8388539),(30,13,61,8388540),(30,14,62,8388541),(30,15,63,8388542),(30,33,64,8388543),(31,41,66,8388544),(31,52,67,-5242949),(31,56,68,-6291522),(31,43,69,-4718663),(31,57,71,8388546),(32,56,72,8388547),(32,52,73,8388548),(32,43,74,8388549),(32,42,75,8388550),(32,41,76,8388551),(34,52,77,8388552),(35,56,78,8388553),(35,42,79,8388554),(35,49,80,8388555),(35,50,81,8388556),(35,51,82,8388557),(37,25,83,8388558),(37,26,84,8388559),(37,70,85,8388560),(37,27,86,8388561),(37,28,87,8388562),(37,29,88,8388563),(37,71,89,8388564),(37,30,90,8388565),(37,31,91,8388566),(39,9,92,8388567),(39,10,93,8388568),(39,11,94,8388569),(39,12,95,8388570),(39,13,96,8388571),(39,14,97,8388572),(39,15,98,8388573),(39,74,99,8388574),(38,9,100,8388575),(38,10,101,8388576),(38,11,102,8388577),(38,12,103,8388578),(38,13,104,8388579),(38,72,105,8388580),(38,73,106,8388581),(40,9,107,8388582),(40,10,108,8388583),(40,11,109,8388584),(40,12,110,8388585),(40,13,111,8388586),(40,72,113,8388587),(40,73,114,8388588),(41,76,115,8388589),(41,77,116,8388590),(41,78,117,8388591),(41,79,118,8388592),(42,63,119,8388593),(42,81,120,8388594),(43,82,121,8388595),(43,83,122,8388596),(44,65,123,8388597),(44,66,124,8388598),(44,42,125,8388599),(44,49,126,8388600),(44,50,127,8388601),(44,51,128,8388602),(33,68,129,8388603),(33,67,130,-7340065),(33,69,131,8388605),(45,84,132,8388606),(4,33,133,8388607); /*!40000 ALTER TABLE `field_groups_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `field_option_translations` -- DROP TABLE IF EXISTS `field_option_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_option_translations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `field_option_id` int(11) NOT NULL, `locale` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `help` text COLLATE utf8_unicode_ci, PRIMARY KEY (`id`), KEY `index_field_option_translations_on_field_option_id` (`field_option_id`), KEY `index_field_option_translations_on_locale` (`locale`) ) ENGINE=InnoDB AUTO_INCREMENT=240 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `field_option_translations` -- LOCK TABLES `field_option_translations` WRITE; /*!40000 ALTER TABLE `field_option_translations` DISABLE KEYS */; INSERT INTO `field_option_translations` VALUES (1,7,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Cirrus','cirrus: thin, wispy high cloud'),(2,8,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Cumulus','cumulus: fluffy, individual clouds'),(3,9,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Gust','wind description: intermittent gusts of wind'),(4,10,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Steady','wind description: steady, continually wind'),(5,11,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','South','wind direction'),(6,12,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','North','wind direction'),(7,13,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','West','wind direction'),(8,14,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','East','wind direction'),(9,15,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','South-West','wind direction'),(10,16,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','South-East','wind direction'),(11,17,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','North-West','wind direction'),(12,18,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','North-East','wind direction'),(13,19,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Stratus','stratus: layer of cloud'),(14,20,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Clear','clear: no clouds'),(15,21,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Hidden','Hidden: when an upper layer of clouds is hidden by lower clouds, fog or haze'),(16,22,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Haze','obscured atmosphere but usually dry'),(17,23,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Smoke','smoke from local domestic fire or forest fire'),(18,24,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Fog','ground level cloud'),(19,25,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','One','one-tenth cloud cover'),(20,26,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Two','two-tenths cloud cover'),(21,27,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Three','three-tenths cloud cover'),(22,28,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Four','four-tenths cloud cover'),(23,29,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Five','five-tenths cloud cover'),(24,30,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Six','six-tenths cloud cover'),(25,31,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Seven','seven-tenths cloud cover'),(26,32,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Eight','eight-tenths cloud cover'),(27,33,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Nine','nine-tenths cloud cover'),(28,34,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Thunderstorm','thunderstorm'),(29,35,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Aurora','aurora'),(30,36,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Snow','snow'),(31,37,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Drifting Snow','drifting snow'),(32,38,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Zero','no cloud cover'),(33,39,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Ten','ten-tenths cloud cover'),(34,40,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Nimbus','nimbus: cloud with precipitation (rain, snow, hail)'),(35,41,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Cumulus','international symbol for cumulus, fluffy individual clouds'),(36,42,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Cirrus','international symbols for cirrus: thin wispy cloud'),(37,43,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Stratus','internation symbol for stratus: layer of cloud'),(38,44,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Nimbus','international symbol for nimbus: cloud with precipitation'),(39,45,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Hid','abbreviation of Hidden: higher level clouds are obscured by low level fog, haze or clouds'),(40,46,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Clear','international symbol for blue sky'),(41,47,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Calm','calm, no wind'),(42,48,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Clear','Clear sky'),(43,49,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Rain','Rain'),(44,50,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Cloudy','Cloudy'),(45,51,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Fair','Fair weather'),(46,52,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Smoke','Smoke from domestic or wild fires'),(47,53,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Shower','Rain shower'),(48,54,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Snow','Snow'),(49,55,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Lt Snow','Light snow fall'),(50,56,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Hv Rain','Heavy Rain'),(51,57,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Lt Rain','Light rain'),(52,58,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Hv Snow','Heavy Snow'),(53,59,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Sleet','Sleet'),(54,60,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Fog','Fog'),(55,61,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Foggy','Foggy'),(56,62,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Hail','Hail'),(57,63,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Threatening Rain','Looks like it might rain'),(58,64,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Sunshine','Sunny'),(59,65,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Mist','Mist'),(60,67,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Blue sky','Blue sky, clear, no clouds'),(61,68,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Cloudy','Cloudy but detached open clouds'),(62,69,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Overcast','Overcast, sky completely covered with clouds (dull)'),(63,70,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Clearing','Weather was cloudy but is starting to clear up'),(64,71,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Drizzle','Light misty but continual rain'),(65,72,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Foggy','foggy weather'),(66,73,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Fog','fog '),(67,74,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Misty','Misty, hazy, caused by condensed water vapour '),(68,75,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Dust haze','hazy atmosphere from dust'),(69,76,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Smoke','Smoke in atmosphere, from domestic or wild fires'),(70,77,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Gloomy','Gloomy, dark weather'),(71,78,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Hail','Hail, small ice pellets'),(72,79,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Soft hail','Soft hail'),(73,80,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Lightning','Lightning seen in sky'),(74,81,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Passing showers','Brief rain showers'),(75,82,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Squally','Brief, intense rain or snow with high winds'),(76,83,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Rain','Continual rain'),(77,84,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Snow','Steady snow fall'),(78,85,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Flurries','Brief, intermittent snow fall'),(79,86,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Ice crystals','Small, fine ice crystals in air. Frozen mist'),(80,87,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Snow drift','Loose snow blown by wind. Drifting snow can occur when there are no clouds of other precipitation'),(81,88,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Thunder','Thunder heard'),(82,89,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Thunderstorm','Thunderstorm'),(83,90,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Ugly','Ugly weather, threatening appearance'),(84,91,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Visibility','Unusual visibility of distant objects'),(85,92,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Dew','Dew on the grass in the morning'),(86,93,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Hoar frost','White frost usually in the morning- frozen dew '),(87,94,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Silver thaw','Thaw of frost'),(88,95,'en','2017-08-04 04:28:11','2018-01-16 16:57:17','Glazed frost','coating of frost'),(89,96,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Strong wind','Strong wind'),(90,97,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Lunar corona','Ring of light surrounding the moon'),(91,98,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Lunar halo','Halo of light around the moon, signifying high cloud'),(92,99,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Rainbow','Rainbow visible'),(93,100,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Snow on ground','Snow staying on the ground'),(94,101,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Solar corona','Ring of light around the sun, indicating thin high cloud'),(95,102,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Solar halo','Ring of light around the sun, showing thin high cloud'),(96,103,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Rain','rain'),(97,104,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','light rain','light rain indicated by the exponent 0'),(98,105,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','heavy rain','heavy rain indicated by the exponent 2'),(99,106,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Snow','Snow'),(100,107,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','light snow','light snow indicated by the exponent 0'),(101,108,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','heavy snow','heavy snow indicated by the exponent 2'),(102,109,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Drizzle','drizzle'),(103,110,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Cirrostratus','Cirrostratus clouds, high level layers of cloud'),(104,111,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Cirrocumulus','High level cumulus clouds'),(105,112,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Cumulostratus','A combination cloud type made up of layers of cumulus clouds'),(106,113,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Cirrocumulus','A combination cloud type of high level cumulus clouds'),(107,114,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Cumulostratus','A combination cloud type made up of layers of cumulus clouds'),(108,115,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Cumulonimbostratus ','Typically a summer rain storm cloud'),(109,116,'en','2017-10-01 20:48:35','2017-10-01 20:48:35','Cirrostratus','cirrostratus, a layer of high clouds'),(110,117,'en','2017-10-07 19:57:45','2018-01-16 17:01:09','Empty / Blank','cell is empty'),(111,118,'en','2017-10-07 19:57:45','2018-01-16 17:01:49','Illegible','choose this is the entry is unreadable'),(112,119,'en','2017-10-07 19:57:45','2018-01-16 17:02:20','Retracted / Line through','choose this is an entry has a line through it'),(113,7,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Cirrus','Cirrus: nuage haut, fin et éffiloché.'),(114,8,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Cumulus','Cumulus: nuage dense, moutonné et individuel. '),(115,9,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Rafale','Description du vent : rafales de vent intermittentes.'),(116,10,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Constant','Description du vent : vent constant.'),(117,11,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Sud','Direction du vent. '),(118,12,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Nord','Direction du vent. '),(119,13,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Ouest','Direction du vent. '),(120,14,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Est','Direction du vent. '),(121,15,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Sud-ouest','Direction du vent. '),(122,16,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Sud-est','Direction du vent. '),(123,17,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Nord-ouest','Direction du vent. '),(124,18,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Nord-est','Direction du vent. '),(125,19,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Stratus','Stratus : couche nuageuse uniforme.'),(126,20,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Clair','Clair : sans nuages. '),(127,21,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Cachés','Cachés : lorsque les nuages d\'un étage supérieur sont cachés par les nuages d\'un étage inférieur (du brouillard ou de la brume sèche). '),(128,22,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Brume sèche','Atmosphère obscure, mais sèche. '),(129,23,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Fumée','Fumée provenant de foyers domestiques ou de feux de forêt. '),(130,24,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Brouillard','Nuage au niveau du sol. '),(131,25,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Un','1 dixième de couverture nuageuse. '),(132,26,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Deux','2 dixièmes de couverture nuageuse. '),(133,27,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Trois','3 dixièmes de couverture nuageuse. '),(134,28,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Quatre','4 dixièmes de couverture nuageuse. '),(135,29,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Cinq','5 dixièmes de couverture nuageuse. '),(136,30,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Six','6 dixièmes de couverture nuageuse. '),(137,31,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Sept','7 dixièmes de couverture nuageuse. '),(138,32,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Huit','8 dixièmes de couverture nuageuse. '),(139,33,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Neuf','9 dixièmes de couverture nuageuse. '),(140,34,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Orage','Orage. '),(141,35,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Aurore','Aurore. '),(142,36,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Neige','Neige. '),(143,37,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Poudrerie','Poudrerie. '),(144,38,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Zéro','Pas de couverture nuageuse. '),(145,39,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Dix','10 dixièmes de couverture nuageuse. '),(146,40,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Nimbus','Nimbus : nuage produisant des précipitations (pluie, neige, grêle).'),(147,41,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Cumulus','Symbole international du cumulus, nuage dense, moutonné et individuel. '),(148,42,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Cirrus','Symbole international du cirrus, nuage haut, fin et éffiloché.'),(149,43,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Stratus','Symbole international du stratus, couche nuageuse uniforme.'),(150,44,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Nimbus','Symbole international du nimbus, nuage produisant des précipitations.'),(151,45,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Hid','Abréviation de « cachés » : lorsque les nuages d\'un étage supérieur sont cachés par les nuages d\'un étage inférieur (du brouillard ou de la brume sèche).'),(152,46,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Clair','Symbole international d\'un ciel clair. '),(153,47,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Calme','Calme, sans vent. '),(154,48,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Clair','Ciel clair. '),(155,49,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Pluie','Pluie. '),(156,50,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Nuageux','Nuageux. '),(157,51,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Beau temps','Beau temps. '),(158,52,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Fumée','Fumée provenant de foyers domestiques ou de feux de forêt. '),(159,53,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Averse','Averse de pluie. '),(160,54,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Neige ','Neige. '),(161,55,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Neige légère','Chutes de neige légères. '),(162,56,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Pluie forte','Pluie forte. '),(163,57,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Pluie faible','Pluie faible.'),(164,58,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Neige abondante','Neige abondante. '),(165,59,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Giboulée','Giboulée. '),(166,60,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Brouillard','Brouillard. '),(167,61,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Brumeux','Brumeux. '),(168,62,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Grêle','Grêle. '),(169,63,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Ciel menaçant ','Il menance de pleuvoir. '),(170,64,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Ensoleillement','Ensoleillé. '),(171,65,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Brume','Brume. '),(172,67,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Ciel clair','Ciel bleu, clair, sans nuages. '),(173,68,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Nuageux',' Nuageux, présence de nuages détachés les uns des autres.'),(174,69,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Couvert','Ciel complètement couvert de nuages. '),(175,70,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Dégagement ','Le ciel était nuageux, mais commence à s\'éclaircir. '),(176,71,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Bruine','Pluie légère, brumeuse et continue. '),(177,72,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Brumeux','Temps brumeux. '),(178,73,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Brouillard','Brouillard. '),(179,74,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Brumeux','Temps brumeux causé par de la vapeur d\'eau condensée. '),(180,75,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Brume de poussière ','Temps brumeux causé par de la poussière. '),(181,76,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Fumée','Fumée dans l\'air provenant de foyers domestiques ou de feux de forêt. '),(182,77,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Sombre ','Ciel sombre. '),(183,78,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Grêle ','Grêle, petites granules de glace. '),(184,79,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Grésil ','Grésil. '),(185,80,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Éclairs ','Éclairs visibles dans le ciel. '),(186,81,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Averses passagères ','Averses de pluie de courte durée. '),(187,82,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Grain','Averses de pluie ou neige, abondantes et de courte durée, accompagnées de vents forts. '),(188,83,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Pluie','Pluie continue. '),(189,84,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Neige ','Chutes de neige continues. '),(190,85,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Averses de neige','Chutes de neige intermittentes et de courte durée. '),(191,86,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Cristaux de glace ','Cristaux de glace petits et fins dans l\'air. Brouillard de glace. '),(192,87,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Poudrerie','Neige poudreuse chassée par le vent. Ce phénomène peut se produire même lorsqu\'il n\'y a pas de nuages ou de précipitation. '),(193,88,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Tonnerre ','Bruit de tonnerre. '),(194,89,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Orage','Orage. '),(195,90,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Mauvais temps',' Mauvais temps, d\'apparence menaçante. '),(196,91,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Visibilité','Visibilité inhabituelle d\'objets lointains. '),(197,92,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Rosée ','Rosée sur l\'herbe, le matin. '),(198,93,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','<NAME> ','Gel de la rosée, le matin. '),(199,94,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Givre','Température se réchauffe après une période de gel. '),(200,95,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Verglas ','Pluie se congelant. '),(201,96,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Vent fort','Vent fort. '),(202,97,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Couronne lunaire','Anneau de lumière autour de la lune. '),(203,98,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Halo lunaire','Halo de lumière autour de la lune, indiquant la présence de hauts nuages. '),(204,99,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Arc-en-ciel','Arc-en-ciel apparent. '),(205,100,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Neige au sol','Neige demeurant au sol. '),(206,101,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Couronne solaire ','Anneau de lumière autour du soleil, indiquant la présence de hauts nuages fins. '),(207,102,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Halo solaire ','Halo de lumière autour du soleil, indiquant la présence de hauts nuages fins. '),(208,103,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Pluie ','Pluie. '),(209,104,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Pluie faible ','Pluie faible indiquée à l\'aide de l\'exposant 0. '),(210,105,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Pluie forte ','Pluie forte indiquée à l\'aide de l\'exposant 2. '),(211,106,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Neige ','Neige. '),(212,107,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Neige légère','Neige légère indiquée à l\'aide de l\'exposant 0. '),(213,108,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Neige abondante','Neige abondante indiquée à l\'aide de l\'exposant 2. '),(214,109,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Bruine','Bruine. '),(215,110,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Cirrostratus','Cirrostratus : couche nuageuse se formant dans l\'étage supérieur du ciel. '),(216,111,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Cirrocumulus','Cumulus se formant dans l\'étage supérieur du ciel. '),(217,112,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Cumulostratus','Combinaison de nuages, couche nuageuse formée cumulus. '),(218,113,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Cirrocumulus','Combinaison de nuages, couche nuageuse formée de cumulus dans l\'étage supérieur du ciel. '),(219,114,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Cumulostratus','Combinaison de nuages, couche nuageuse formée cumulus. '),(220,115,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Cumulonimbostratus ','Nuage produisant généralement des orages en été. '),(221,117,'fr','2017-10-14 02:41:57','2017-10-14 02:41:57','Vide','Champ laissé vide'),(222,118,'fr','2017-10-14 02:43:34','2017-10-14 02:43:34','Illisable','Difficle à lire les contenues du champ'),(223,119,'fr','2017-10-14 02:45:26','2017-10-14 02:45:26','Retracté / Ligne à travers','L\'observateur a retracté l\'observation'),(224,120,'en','2017-11-02 16:12:37','2017-11-02 16:12:37','I','Roman numeral one'),(225,121,'en','2017-11-02 16:13:08','2017-11-02 16:13:08','II','Roman numeral two'),(226,122,'en','2017-11-02 16:13:41','2017-11-02 16:13:41','III','Roman numeral three'),(228,124,'en','2017-11-02 16:57:45','2017-11-02 18:29:47','Light cloud','Light cloud'),(229,125,'en','2017-11-02 16:58:42','2017-11-02 18:29:26','Heavy cloud','Heavy cloud'),(230,120,'fr','2017-11-02 18:24:20','2017-11-02 18:24:20','I','chiffre romain \"un\"'),(231,121,'fr','2017-11-02 18:24:46','2017-11-02 18:24:46','II','chiffre romain \"deux\"'),(232,122,'fr','2017-11-02 18:25:06','2017-11-02 18:25:06','III','chiffre romain \"trois\"'),(234,124,'fr','2017-11-02 18:26:23','2017-11-02 18:28:30','Nuage léger','nuage léger'),(235,125,'fr','2017-11-02 18:27:41','2017-11-02 18:27:41','Nuage important','Nuage important'),(236,126,'en','2017-11-21 16:52:02','2017-11-21 16:52:02','Roman numeral four','Roman numeral four for aurora class'),(237,127,'en','2017-12-03 17:24:06','2017-12-03 17:24:06','heavy thunderstorm','heavy thunderstorms'),(238,128,'en','2018-01-15 00:32:08','2018-01-15 00:32:08','Haze','Haze'),(239,129,'en','2018-01-15 01:39:26','2018-01-15 01:39:26','Hazy','hazy'); /*!40000 ALTER TABLE `field_option_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `field_options` -- DROP TABLE IF EXISTS `field_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_options` ( `id` int(11) NOT NULL AUTO_INCREMENT, `image_file_name` varchar(255) DEFAULT NULL, `image_content_type` varchar(255) DEFAULT NULL, `image_file_size` int(11) DEFAULT NULL, `image_updated_at` datetime DEFAULT NULL, `value` varchar(255) DEFAULT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `text_symbol` varchar(255) DEFAULT NULL, `display_attribute` varchar(255) DEFAULT 'name', `internal_name` varchar(255) DEFAULT NULL, `is_default` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `field_options` -- LOCK TABLES `field_options` WRITE; /*!40000 ALTER TABLE `field_options` DISABLE KEYS */; INSERT INTO `field_options` VALUES (7,'Cirrus.png','image/png',8893,'2017-03-07 22:44:13','Cirrus','2016-08-29 23:50:14','2017-03-27 21:33:28','Ci','symbol','Cirrus 110',0),(8,'Cumulus.png','image/png',9099,'2017-03-07 22:44:32','Cumulus','2016-08-29 23:50:26','2017-05-02 17:48:15','Cu','symbol','Cumulus 110',0),(9,'letter-g.png','image/png',3979,'2016-09-02 22:24:12','Gust','2016-09-02 22:24:12','2017-03-06 22:45:12','G','symbol','',0),(10,'letter-s.png','image/png',3570,'2016-09-02 22:24:37','Steady','2016-09-02 22:24:37','2017-05-02 17:48:28','S','symbol','',0),(11,'South_copy.png','image/png',19458,'2017-03-07 22:45:08','South','2016-09-02 22:31:56','2017-05-02 17:48:39','S','symbol','',0),(12,'north.png','image/png',12352,'2017-03-07 22:45:45','North','2016-09-02 22:32:10','2017-05-02 17:48:48','N','symbol','',0),(13,'W.png','image/png',21417,'2017-03-07 22:46:02','West','2016-09-02 22:32:22','2017-05-02 17:48:56','W','symbol','',0),(14,'east.png','image/png',21584,'2017-03-07 22:46:19','East','2016-09-02 22:32:53','2017-03-27 21:31:31','E','symbol','',0),(15,'south-west.png','image/png',18899,'2017-03-07 22:46:36','South-West','2016-09-02 22:33:11','2017-05-02 17:49:04','SW','symbol','',0),(16,'southeast.png','image/png',15960,'2017-03-07 22:46:56','South-East','2016-09-02 22:33:30','2017-05-02 17:49:15','SE','symbol','',0),(17,'NW.png','image/png',27352,'2017-03-07 22:47:16','North-West','2016-09-02 22:33:45','2017-05-02 17:49:35','NW','symbol','',0),(18,'north-east.png','image/png',9771,'2017-03-07 22:47:32','North-East','2016-09-02 22:33:54','2017-05-02 17:49:48','NE','symbol','',0),(19,'Stratus.png','image/png',8942,'2017-03-07 22:48:08','Stratus','2016-09-02 22:43:28','2017-05-02 17:49:59','St','symbol','Stratus 110',0),(20,'Clear_2.png','image/png',17984,'2017-03-07 22:48:31','Clear','2016-09-02 22:43:53','2017-05-02 17:47:42','Cl','name','Clear 110',0),(21,'Hidden.png','image/png',22304,'2017-03-07 22:48:51','Hidden','2016-09-02 22:44:35','2017-04-25 15:12:09','Hid','symbol','',0),(22,'Haze.png','image/png',17230,'2017-03-07 22:49:09','Haze','2016-09-02 22:46:22','2017-04-25 15:13:09','Haze','symbol','Haze 110',0),(23,'Smoke.png','image/png',19202,'2017-03-07 22:49:37','Smoke','2016-09-02 22:46:38','2017-04-25 15:14:07','Smoke','symbol','Smoke 110',0),(24,'Fog.png','image/png',10667,'2017-03-07 22:50:02','Fog','2016-09-02 22:47:03','2017-04-25 15:14:40','Fog','symbol','Fog 110',0),(25,NULL,NULL,NULL,NULL,'1','2016-09-02 22:47:29','2016-10-21 15:00:14','1','symbol',NULL,0),(26,NULL,NULL,NULL,NULL,'2','2016-09-02 22:47:34','2016-10-21 15:00:32','2','symbol',NULL,0),(27,NULL,NULL,NULL,NULL,'3','2016-09-02 22:47:37','2016-10-21 15:00:44','3','symbol',NULL,0),(28,NULL,NULL,NULL,NULL,'4','2016-09-02 22:47:44','2016-10-21 15:00:55','4','symbol',NULL,0),(29,NULL,NULL,NULL,NULL,'5','2016-09-02 22:47:49','2016-10-21 15:01:07','5','symbol',NULL,0),(30,NULL,NULL,NULL,NULL,'6','2016-09-02 22:47:55','2016-10-21 15:01:21','6','symbol',NULL,0),(31,NULL,NULL,NULL,NULL,'7','2016-09-02 22:47:59','2016-10-21 15:01:38','7','symbol',NULL,0),(32,NULL,NULL,NULL,NULL,'8','2016-09-02 22:48:03','2016-10-21 15:01:49','8','symbol',NULL,0),(33,NULL,NULL,NULL,NULL,'9','2016-09-02 22:48:07','2016-10-21 15:02:02','9','symbol',NULL,0),(34,'thunderstorm_16.png','image/png',291,'2016-09-13 17:53:04','Thunderstorm','2016-09-13 17:53:04','2017-03-06 20:15:19','','icon','Thunderstorm 120',0),(35,'aurora_16.png','image/png',307,'2016-09-13 17:53:25','Aurora','2016-09-13 17:53:25','2017-05-02 17:50:39','','icon','Aurora 120',0),(36,'snow_16.png','image/png',276,'2016-09-13 17:53:50','Snow','2016-09-13 17:53:50','2017-05-02 19:59:17','s','icon','Snow 120',0),(37,'snowdrift_16.png','image/png',272,'2016-09-13 17:54:14','Drifting_Snow','2016-09-13 17:54:14','2018-01-16 16:50:47','','icon','Drifting Snow 120',0),(38,NULL,NULL,NULL,NULL,'0','2016-09-30 13:00:43','2016-10-21 15:03:35','0','symbol',NULL,0),(39,NULL,NULL,NULL,NULL,'10','2016-10-21 14:45:06','2016-10-21 18:35:28','10','symbol',NULL,0),(40,'nimbus.png','image/png',11685,'2017-03-07 22:50:31','Nimbus','2016-10-21 15:05:00','2017-05-02 17:51:28','Ni','symbol','Nimbus 110',0),(41,'cumulus.png','image/png',14600,'2017-03-07 22:51:05','Cumulus','2016-10-21 15:07:48','2017-05-02 17:51:42','K','symbol','Cumulus 120',0),(42,'cirrus.png','image/png',15733,'2017-03-07 22:51:45','Cirrus','2016-10-21 15:09:35','2017-05-02 17:52:30','C','symbol','Cirrus 120',0),(43,'Stratus.png','image/png',14979,'2017-03-07 22:52:08','Stratus','2016-10-21 15:10:35','2017-05-02 17:52:50','S','symbol','Stratus 120',0),(44,'Nimbus.png','image/png',11938,'2017-03-07 22:52:33','Nimbus','2016-10-21 15:17:07','2017-05-02 17:53:10','N','symbol','Nimbus 120',0),(45,NULL,NULL,NULL,NULL,'Hidden','2016-10-21 15:23:31','2017-03-07 22:52:49','Hid','symbol','',0),(46,'blue_sky.png','image/png',8738,'2017-03-07 22:53:12','Clear','2016-10-21 15:32:17','2017-05-02 17:53:30','b','symbol','Clear 120',0),(47,'calm.png','image/png',5844,'2017-03-07 22:53:42','Calm','2016-10-25 17:00:35','2017-03-07 22:53:42','C','symbol','',0),(48,'Clear.png','image/png',12674,'2017-03-07 22:54:16','Clear','2017-02-28 22:53:22','2017-05-02 17:35:14','Clear','symbol','Clear 110',0),(49,'Rain.png','image/png',24833,'2017-03-07 22:55:48','Rain','2017-02-28 22:53:48','2017-03-07 22:55:48','Rain','symbol','Rain 110',0),(50,'Cloudy.png','image/png',21833,'2017-03-07 22:56:19','Cloudy','2017-02-28 22:54:21','2017-03-07 22:56:19','Cloudy','symbol','Cloudy 110',0),(51,'Fair.png','image/png',13810,'2017-03-07 22:56:43','Fair','2017-02-28 22:55:29','2017-05-02 17:54:18','Fair','symbol','Fair 110',0),(52,'Smoke.png','image/png',19202,'2017-03-07 22:57:28','Smoke','2017-02-28 22:56:04','2017-03-07 22:57:28','Smoke','symbol','Smoke 110',0),(53,NULL,NULL,NULL,NULL,'Shower','2017-02-28 22:56:41','2017-03-06 22:19:38','Shower','symbol','Shower 110',0),(54,'Snow.png','image/png',21317,'2017-03-07 22:58:27','Snow','2017-02-28 22:57:10','2017-03-07 22:58:27','Snow','symbol','Snow 110',0),(55,'Light_Snow.png','image/png',26639,'2017-03-07 22:58:49','Light_Snow','2017-02-28 22:57:40','2018-01-16 16:51:16','Lt Snow','symbol','Lt Snow 110',0),(56,'Heavy_Rain_110.png','image/png',34504,'2017-03-07 23:27:13','Heavy_Rain','2017-02-28 22:58:26','2018-01-16 16:51:43','Hv Rain','symbol','Hv Rain 110',0),(57,NULL,NULL,NULL,NULL,'Light_Rain','2017-02-28 22:59:27','2018-01-16 16:52:02','Lt Rain','symbol','Lt Rain 110',0),(58,NULL,NULL,NULL,NULL,'Heavy_Snow','2017-02-28 22:59:52','2018-01-16 16:52:21','Hv Snow','symbol','Hv Snow 110',0),(59,'Sleet.png','image/png',14758,'2017-03-07 23:05:20','Sleet','2017-02-28 23:00:16','2017-03-07 23:05:20','Sleet','symbol','Sleet 110',0),(60,'Fog.png','image/png',10667,'2017-03-07 23:05:50','Fog','2017-02-28 23:01:11','2017-03-07 23:05:50','Fog','symbol','Fog 110',0),(61,NULL,NULL,NULL,NULL,'Foggy','2017-02-28 23:01:37','2017-03-06 22:25:41','Foggy','symbol','Foggy 110',0),(62,NULL,NULL,NULL,NULL,'Hail','2017-02-28 23:10:53','2017-03-06 22:26:11','Hail','symbol','Hail 110',0),(63,NULL,NULL,NULL,NULL,'Threatening_Rain','2017-02-28 23:11:33','2018-01-16 16:52:39','Threatening Rain','symbol','Threatening Rain 110',0),(64,NULL,NULL,NULL,NULL,'Sunshine','2017-02-28 23:12:03','2017-03-06 22:27:25','Sunshine','symbol','Sunshine 100',0),(65,NULL,NULL,NULL,NULL,'Mist','2017-02-28 23:12:28','2017-03-06 22:27:53','Mist','symbol','Mist 110',0),(67,NULL,NULL,NULL,NULL,'Blue_Sky','2017-02-28 23:14:43','2018-01-16 16:52:59','b','symbol','Blue sky 120',0),(68,'cloudy_again.png','image/png',8504,'2017-03-08 17:55:44','Cloudy','2017-02-28 23:15:33','2017-05-02 19:59:49','c','symbol','Cloudy 120',0),(69,'overcast_96.png','image/png',1843,'2017-02-28 23:18:25','Overcast','2017-02-28 23:16:24','2017-05-02 19:59:02','o','icon','Overcast 120',0),(70,'clearing-weather_96.png','image/png',1556,'2017-02-28 23:17:53','Clearing_Weather','2017-02-28 23:17:54','2018-01-16 16:53:29','Clearing weather','icon','Clearing 120',0),(71,'drizzle.png','image/png',13795,'2017-03-07 23:04:05','Drizzling_Rain','2017-02-28 23:19:27','2018-01-16 16:53:52','d','symbol','Drizzle 120',0),(72,'foggy_96.png','image/png',1294,'2017-02-28 23:20:19','Foggy','2017-02-28 23:20:19','2017-03-07 16:51:16','f','icon','Foggy 120',0),(73,'foggy_96.png','image/png',1294,'2017-02-28 23:21:29','Foggy','2017-02-28 23:21:30','2017-03-07 16:51:42','f','icon','Fog 120',0),(74,'misty_96.png','image/png',790,'2017-02-28 23:22:31','Misty','2017-02-28 23:22:31','2017-05-02 17:56:47','Misty','icon','Misty 120',0),(75,'dust-haze_96.png','image/png',702,'2017-02-28 23:23:22','Dust_Haze','2017-02-28 23:23:22','2018-01-16 16:54:16','Dust haze','icon','Dust haze 120',0),(76,'smoke_96.png','image/png',932,'2017-02-28 23:24:16','Smoke','2017-02-28 23:24:16','2017-03-07 16:53:06','Smoke','icon','Smoke 120',0),(77,NULL,NULL,NULL,NULL,'Gloomy','2017-02-28 23:24:52','2017-03-07 16:53:25','g','symbol','Gloomy 120',0),(78,'hail_96.png','image/png',792,'2017-02-28 23:25:52','Hail','2017-02-28 23:25:52','2017-03-07 16:53:46','h','icon','Hail 120',0),(79,'soft-hail_96.png','image/png',892,'2017-02-28 23:26:28','Soft_Hail','2017-02-28 23:26:28','2018-01-16 16:54:38','soft hail','icon','Soft hail 120',0),(80,'lightning_96.png','image/png',954,'2017-02-28 23:27:11','Lightning','2017-02-28 23:27:11','2017-03-07 16:54:34','l','icon','Lightning 120',0),(81,'passing_showers.png','image/png',10764,'2017-03-07 23:15:18','Passing_Temporary_Showers','2017-02-28 23:28:11','2018-01-16 16:55:04','p','symbol','Passing showers 120',0),(82,NULL,NULL,NULL,NULL,'Squally','2017-02-28 23:29:04','2017-03-07 16:56:01','q','symbol','Squally 120',0),(83,'rain_96.png','image/png',751,'2017-02-28 23:29:55','Rain','2017-02-28 23:29:55','2017-03-07 16:56:23','rain','icon','Rain 120',0),(84,'snow_96.png','image/png',865,'2017-02-28 23:35:58','Snow','2017-02-28 23:35:58','2017-03-07 16:56:46','s','icon','Snow 120',0),(85,'flurries_96.png','image/png',642,'2017-02-28 23:36:52','Flurries','2017-02-28 23:36:52','2017-03-07 16:57:07','Flurries','icon','Flurries 120',0),(86,'ice-crystals_96.png','image/png',611,'2017-02-28 23:37:53','Ice_Crystals','2017-02-28 23:37:53','2018-01-16 16:55:25','Ice crystals','icon','Ice crystals 120',0),(87,'snowdrift_96.png','image/png',827,'2017-02-28 23:39:00','Snow_Drift','2017-02-28 23:39:00','2018-01-16 16:55:47','Snow drift','icon','Snow drift 120',0),(88,NULL,NULL,NULL,NULL,'Thunder','2017-02-28 23:49:17','2017-03-07 16:58:22','t','symbol','Thunder 120',0),(89,'thunderstorm_96.png','image/png',903,'2017-02-28 23:52:12','Thunderstorm','2017-02-28 23:52:12','2017-03-07 16:59:12','Thunderstorm','icon','Thunderstorm 120',0),(90,NULL,NULL,NULL,NULL,'Ugly','2017-02-28 23:53:02','2017-02-28 23:53:02','u','symbol',NULL,0),(91,'unusual-visibility_96.png','image/png',1262,'2017-02-28 23:54:17','Visibility','2017-02-28 23:54:18','2017-03-07 16:58:45','Visibility','icon','Visibility 120',0),(92,'dew_96.png','image/png',592,'2017-02-28 23:55:08','Dew','2017-02-28 23:55:08','2017-03-07 16:59:47','w','icon','Dew 120',0),(93,'hoar-frost_96.png','image/png',540,'2017-02-28 23:56:14','Hoar_Frost','2017-02-28 23:56:14','2018-01-16 16:56:08','Hoar frost','icon','Hoar frost 120',0),(94,'silver-thaw_96.png','image/png',950,'2017-02-28 23:57:02','Silver_Thaw','2017-02-28 23:57:02','2018-01-16 16:56:30','Silver thaw','icon','',0),(95,'glazed-frost_96.png','image/png',615,'2017-02-28 23:58:07','Glazed_Frost ','2017-02-28 23:58:07','2018-01-16 16:57:17','Glazed frost ','icon','Glazed frost 120',0),(96,'strong-wind_96.png','image/png',703,'2017-02-28 23:58:56','Strong_Wind','2017-02-28 23:58:56','2018-01-16 16:57:33','Strong wind','icon','Strong wind 120',0),(97,'lunar-corona_96.png','image/png',1060,'2017-03-01 00:00:57','Lunar_Corona','2017-03-01 00:00:57','2018-01-16 16:57:54','Lunar corona','icon','Lunar corona 120',0),(98,'lunar-halo_96.png','image/png',985,'2017-03-01 00:01:55','Lunar_Halo ','2017-03-01 00:01:55','2018-01-16 16:58:07','Lunar halo ','icon','Lunar halo 120',0),(99,'rainbow_96.png','image/png',628,'2017-03-01 00:02:40','Rainbow','2017-03-01 00:02:40','2017-03-07 17:02:33','Rainbow','icon','Rainbow 120',0),(100,NULL,NULL,NULL,NULL,'Snow_On_Ground','2017-03-01 00:03:47','2018-01-16 16:58:33','Snow on ground','symbol','Snow on ground 120',0),(101,'solar-corona_96.png','image/png',967,'2017-03-01 00:04:47','Solar_Corona','2017-03-01 00:04:47','2018-01-16 16:58:51','Solar corona','icon','Solar corona 120',0),(102,'solar-halo_96.png','image/png',1183,'2017-03-01 00:05:50','Solar_Halo ','2017-03-01 00:05:50','2018-01-16 16:59:07','Solar halo ','icon','Solar halo 120',0),(103,'rain.png','image/png',6151,'2017-03-07 23:08:19','Rain','2017-03-07 23:08:19','2017-05-02 17:58:01','r','icon','rain letter 120',0),(104,'light_rain_1.png','image/png',11958,'2017-03-07 23:09:07','Light_Rain','2017-03-07 23:09:07','2018-01-16 16:59:26','r0','icon','light rain 120',0),(105,'heavy_rain.png','image/png',11071,'2017-03-07 23:09:52','Heavy_Rain','2017-03-07 23:09:52','2018-01-16 16:59:52','r2','icon','heavy rain 120',0),(106,'snow.png','image/png',6016,'2017-03-07 23:10:36','Snow','2017-03-07 23:10:36','2017-03-07 23:10:36','s','icon','snow letter 120',0),(107,'light_snow_copy.png','image/png',14275,'2017-03-07 23:11:28','Light_Snow','2017-03-07 23:11:28','2018-01-16 17:00:16','s0','icon','light snow 120',0),(108,'heavy_snow.png','image/png',11352,'2017-03-07 23:12:30','Heavy_Snow','2017-03-07 23:12:30','2018-01-16 17:00:37','s2','icon','heavy snow 120',0),(109,'drizzle.png','image/png',13795,'2017-03-07 23:14:45','Drizzle','2017-03-07 23:14:45','2017-03-07 23:14:45','d','icon','Drizzle 120 letter',0),(110,'Cirrus_Stratus.png','image/png',12946,'2017-03-07 23:17:04','Cirrostratus','2017-03-07 23:17:04','2017-05-02 17:59:16','CiSt','symbol','Cirro-Stratus 100',0),(111,'Cirrus_Cumulus.png','image/png',12848,'2017-03-07 23:17:55','Cirrocumulus','2017-03-07 23:17:56','2017-05-02 17:58:34','CiCu','symbol','Cirro-Cumulus 100',0),(112,'Cumulus_Stratus.png','image/png',12938,'2017-03-07 23:19:21','Cumulostratus','2017-03-07 23:19:21','2017-05-02 17:59:38','CuSt','symbol','Cumulus Stratus 100',0),(113,'cirro-cumulus.png','image/png',27289,'2017-03-07 23:21:10','Cirrocumulus','2017-03-07 23:21:10','2017-05-02 17:59:58','CK','symbol','Cirro-Cumulus 120',0),(114,'cumulus___stratus.png','image/png',19805,'2017-03-07 23:22:19','Cumulostratus','2017-03-07 23:22:19','2017-05-02 18:00:12','KS','symbol','Cumulus Stratus 120',0),(115,'nimbus___cumulus___stratus.png','image/png',9121,'2017-03-07 23:24:18','Cumulonimbostratus','2017-03-07 23:24:18','2017-05-02 18:00:29','CNS','symbol','Cumulo-nimbo-stratus 120',0),(116,'cs.png','image/png',21484,'2017-12-14 22:04:57','Cirrostratus','2017-10-01 20:48:35','2018-01-16 17:47:36','CS','symbol','Cirro-Stratus 120',0),(117,NULL,NULL,NULL,NULL,'Empty','2017-10-07 19:57:45','2018-01-16 17:01:09','','name','',1),(118,NULL,NULL,NULL,NULL,'Illegible','2017-10-07 19:57:45','2018-01-16 17:01:49','','name','',1),(119,NULL,NULL,NULL,NULL,'Retracted','2017-10-07 19:57:45','2018-01-16 17:02:20','','name','',1),(120,NULL,NULL,NULL,NULL,'I','2017-11-02 16:12:37','2017-11-02 18:24:20','I','name','Roman numeral one',0),(121,NULL,NULL,NULL,NULL,'II','2017-11-02 16:13:08','2017-11-02 18:24:46','II','name','Roman numeral two',0),(122,NULL,NULL,NULL,NULL,'III','2017-11-02 16:13:41','2017-11-02 18:25:06','III','name','Roman numeral three',0),(124,'light_cloud.png','image/png',6053,'2017-11-02 17:14:55','Light_Cloud','2017-11-02 16:57:45','2018-01-16 17:03:52','c0','name','light cloud 120',0),(125,NULL,NULL,NULL,NULL,'Heavy_Cloud','2017-11-02 16:58:42','2018-01-16 17:04:04','c2','name','heavy cloud 120',0),(126,NULL,NULL,NULL,NULL,'IV','2017-11-21 16:52:02','2017-11-21 16:52:02','IV','symbol','Roman numeral four',0),(127,'heavy_thunderstorm.png','image/png',26811,'2017-12-03 17:24:06','Heavy_Thunderstorm','2017-12-03 17:24:06','2018-01-16 17:04:32','th2','icon','heavy thunderstorm',0),(128,'haze.png','image/png',22846,'2018-01-15 01:38:47','Haze','2018-01-15 00:32:08','2018-01-15 01:38:47','Haze','icon','Haze 120',0),(129,'hazy.png','image/png',39158,'2018-01-15 01:39:26','Hazy','2018-01-15 01:39:26','2018-01-15 01:40:44','','icon','Hazy 120',0); /*!40000 ALTER TABLE `field_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `field_options_fields` -- DROP TABLE IF EXISTS `field_options_fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_options_fields` ( `field_option_id` int(11) NOT NULL, `field_id` int(11) NOT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `sort_order` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `index_field_options_fields_on_field_option_id` (`field_option_id`), KEY `index_field_options_fields_on_field_id` (`field_id`) ) ENGINE=InnoDB AUTO_INCREMENT=613 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `field_options_fields` -- LOCK TABLES `field_options_fields` WRITE; /*!40000 ALTER TABLE `field_options_fields` DISABLE KEYS */; INSERT INTO `field_options_fields` VALUES (8,16,9,-612946),(7,16,10,-753048),(9,21,12,1733763),(10,21,13,1768788),(11,19,14,-1348481),(12,19,15,-2048991),(13,19,16,-1173354),(14,19,17,-1628685),(15,19,18,-8270942),(16,19,19,-1488583),(17,19,20,1803814),(18,19,21,-2013966),(20,16,22,192641),(21,16,23,-437818),(19,16,24,-788073),(22,16,25,-332742),(23,16,26,-297716),(24,16,27,-367767),(8,22,38,-192640),(19,22,39,-823099),(20,22,40,472845),(21,22,41,-157614),(22,22,42,-577920),(23,22,43,-52538),(24,22,44,-122589),(25,22,45,1418533),(26,22,46,1453559),(27,22,47,1488584),(28,22,48,1523610),(29,22,49,1558635),(30,22,50,1593661),(31,22,51,1628686),(32,22,52,1663712),(33,22,53,1698737),(11,17,72,718023),(12,17,73,753049),(13,17,74,682998),(14,17,75,788074),(15,17,76,928176),(16,17,77,1138329),(17,17,78,1103304),(18,17,79,1383508),(14,23,80,612947),(12,23,81,1208380),(18,23,82,1838839),(17,23,83,1278431),(11,23,84,1173355),(16,23,85,1313457),(15,23,86,1243406),(13,23,87,507870),(40,16,96,-647971),(45,16,97,-402793),(47,19,99,1873865),(47,23,100,1908890),(47,17,101,1943916),(25,16,102,577921),(26,16,103,647972),(27,16,104,823100),(28,16,105,858125),(29,16,107,893151),(30,16,108,963202),(31,16,109,998227),(32,16,110,1033253),(33,16,111,1068278),(39,16,112,-8064620),(39,22,113,-8160941),(40,22,114,-262691),(25,24,119,1978941),(38,24,120,542896),(26,24,121,2013967),(27,24,122,2048992),(28,24,123,2084018),(29,24,124,2119043),(30,24,125,2154069),(31,24,126,2189094),(32,24,127,2224120),(33,24,128,2259145),(39,24,129,2294171),(45,17,131,2329196),(21,17,132,2364222),(21,23,133,2399247),(45,23,134,2434273),(20,23,135,2469298),(20,17,136,2504324),(22,18,141,367768),(24,18,143,-1103303),(48,18,144,-17512),(49,18,145,-1383507),(50,18,146,17513),(51,18,147,52539),(52,18,148,402794),(53,18,149,122590),(54,18,150,297717),(55,18,151,332743),(56,18,152,-1278430),(57,18,153,262692),(58,18,154,-1208379),(59,18,155,-1138328),(61,18,157,-1068277),(62,18,158,-1033252),(63,18,159,2539349),(65,18,160,437819),(22,40,162,-1523609),(23,40,163,-1838838),(24,40,164,-1768787),(48,40,165,-3695190),(49,40,166,-2084017),(50,40,167,-2189093),(51,40,168,-2154068),(54,40,171,-1978940),(55,40,172,-1908889),(56,40,173,-1663711),(57,40,174,-1943915),(58,40,175,-1803813),(59,40,176,-1873864),(61,40,178,-1733762),(62,40,179,-1698736),(63,40,180,-1453558),(64,40,181,-1418532),(65,40,182,-1313456),(64,18,183,2574375),(46,41,186,-4710929),(68,41,188,-4535802),(69,41,189,-3660164),(70,41,190,-4675904),(83,41,191,-3450011),(85,41,193,-2854578),(86,41,194,-2714476),(87,41,195,-2819552),(89,41,196,-3134782),(91,41,197,-2294170),(92,41,198,-2679450),(93,41,199,-2434272),(94,41,200,-2364221),(95,41,201,-2539348),(96,41,202,-2259144),(97,41,203,-1593660),(98,41,204,-1558634),(99,41,205,87564),(100,41,206,-2644425),(101,41,207,157615),(102,41,208,227666),(82,41,209,-3029705),(81,41,210,-3169807),(80,41,211,-3064731),(79,41,212,-2749501),(78,41,213,-2784527),(77,41,214,-2504323),(76,41,215,-2329195),(75,41,216,-2609399),(74,41,217,-2399246),(73,41,218,-2574374),(72,41,219,-2469297),(71,41,220,-3204833),(36,41,223,-2994680),(35,41,224,-2224119),(46,52,226,-8178454),(68,52,227,-8108403),(69,52,228,-7793173),(70,52,229,-8143428),(83,52,230,-7758148),(71,52,231,-7583020),(81,52,232,-7442918),(84,52,233,-7057638),(87,52,234,-6777434),(86,52,235,-5516516),(89,52,236,-6111949),(88,52,237,-6041898),(72,52,239,-6567281),(73,52,240,-5341388),(80,52,241,-6006873),(82,52,242,-5936822),(85,52,243,-5761694),(78,52,244,-6847485),(79,52,245,-6812459),(92,52,246,-6672357),(93,52,247,-5201286),(35,52,251,-6252051),(74,52,252,-5166261),(75,52,253,-5411439),(76,52,254,-5096210),(77,52,255,-5236312),(91,52,256,-6287077),(95,52,257,-5271337),(96,52,258,-5061184),(97,52,259,-4921082),(98,52,260,-6182000),(99,52,261,-4886057),(100,52,262,-5481490),(101,52,263,-4185547),(102,52,264,-4220572),(46,51,265,-6602306),(68,51,266,-6497230),(69,51,267,-5691643),(70,51,268,-6532255),(83,51,270,-5621592),(71,51,271,-4395700),(81,51,272,-4325649),(84,51,273,-4010419),(87,51,274,-4115496),(85,51,275,-4150521),(86,51,276,-3835292),(89,51,277,-4290623),(88,51,278,-4500776),(80,51,279,-4465751),(82,51,280,-4430725),(78,51,282,-4080470),(79,51,283,-4045445),(92,51,284,-3625139),(72,51,285,-3590113),(73,51,286,-3870317),(74,51,287,-3520062),(91,51,288,2609400),(75,51,289,-3905343),(76,51,290,-3344935),(77,51,291,-3730215),(93,51,292,-3555088),(94,51,293,-3379960),(95,51,294,-3765241),(96,51,295,-3309909),(35,51,296,2644426),(99,51,297,2714477),(97,51,298,2679451),(98,51,299,-3485037),(101,51,300,2749502),(102,51,301,2784528),(100,51,302,-3975394),(88,41,303,-3099756),(46,56,304,-7407893),(68,56,306,-7232765),(69,56,307,-7092663),(70,56,308,-7372867),(83,56,309,-6882510),(71,56,310,-6462204),(81,56,311,-6357128),(84,56,312,-5726669),(87,56,313,-6076924),(85,56,314,-5306363),(86,56,315,-5971847),(89,56,316,-6427179),(88,56,317,-6392153),(80,56,318,-5901796),(82,56,319,-5866771),(78,56,320,-4991133),(79,56,321,-4956108),(92,56,322,-4780980),(73,56,323,-5831745),(72,56,324,-5796720),(74,56,325,-5656618),(91,56,326,-4360674),(75,56,327,-4745955),(76,56,328,-5551541),(77,56,329,-4605853),(93,56,330,-4570827),(94,56,331,-5586567),(95,56,332,-4640878),(96,56,333,2819553),(35,56,334,2854579),(99,56,335,-5376414),(97,56,336,2889604),(98,56,337,2924630),(101,56,338,2959655),(102,56,339,2994681),(103,41,340,-3414986),(104,41,341,-3274884),(105,41,342,-3239858),(106,41,343,-2959654),(107,41,344,-2889603),(108,41,345,-2924629),(103,51,347,-5446465),(104,51,348,-5026159),(105,51,349,-4851031),(106,51,350,-3940368),(107,51,351,-3800266),(108,51,352,-4255598),(103,52,353,-7723122),(104,52,354,-7653071),(94,52,355,-5131235),(105,52,356,-7618046),(106,52,357,-7022612),(107,52,358,-6987587),(108,52,359,-6917536),(112,22,364,-718022),(111,16,366,-507869),(112,16,367,-472844),(110,16,370,-542895),(41,53,376,-963201),(43,53,378,-1243405),(44,53,379,-998226),(45,53,380,3029706),(114,53,382,-928175),(115,53,383,-858124),(24,53,384,3064732),(22,53,385,3099757),(23,53,386,-8055864),(25,53,388,3169808),(26,53,389,3204834),(27,53,390,3274885),(28,53,391,-8219840),(29,53,392,3309910),(30,53,393,3344936),(31,53,394,3379961),(32,53,395,3414987),(33,53,396,3450012),(39,53,397,3485038),(46,53,398,-682997),(43,54,399,3520063),(44,54,400,3555089),(41,54,401,3590114),(113,54,403,3625140),(114,54,404,-893150),(115,54,405,3660165),(21,54,406,3695191),(24,54,407,3730216),(22,54,408,3765242),(52,54,409,3800267),(46,54,410,3835293),(25,54,411,3870318),(26,54,412,3905344),(27,54,413,3940369),(28,54,414,3975395),(29,54,415,4010420),(30,54,416,4045446),(31,54,417,4080471),(32,54,418,4115497),(33,54,419,4150522),(39,54,420,4185548),(100,56,421,-4816006),(103,56,422,-6742408),(104,56,423,-6707383),(105,56,424,-6637332),(106,56,425,-6322102),(107,56,426,-6217026),(108,56,427,-6146975),(83,57,428,4220573),(104,57,429,4255599),(104,57,430,4290624),(105,57,431,4360675),(104,57,432,4325650),(106,57,433,4395701),(107,57,434,4430726),(108,57,435,4465752),(67,57,436,-8318556),(68,57,437,-8248505),(69,57,438,-8213479),(70,57,439,-8283530),(70,57,440,4500777),(71,57,441,-8038352),(81,57,442,-8003326),(84,57,443,-7828199),(87,57,444,4535803),(85,57,445,-7688097),(86,57,446,-7547995),(89,57,447,-7968301),(88,57,448,-7933275),(80,57,449,-7898250),(82,57,450,-7863224),(78,57,451,4570828),(79,57,452,4605854),(92,57,453,4640879),(73,57,454,4675905),(72,57,455,4710930),(73,57,456,4745956),(74,57,457,4780981),(91,57,458,4816007),(75,57,459,-7477944),(76,57,460,-7127689),(77,57,461,-7302816),(93,57,462,-7267791),(94,57,463,-7197740),(95,57,464,-7337842),(93,57,465,4851032),(96,57,466,-7162714),(35,57,467,4886058),(99,57,468,-6952561),(100,57,469,-7512969),(97,57,470,4921083),(97,57,471,4956109),(98,57,472,4991134),(101,57,473,5026160),(102,57,474,5061185),(53,40,475,-2119042),(46,80,476,5096211),(70,80,477,5131236),(68,80,478,5166262),(69,80,479,5201287),(83,80,480,5236313),(103,80,481,5271338),(104,80,482,5306364),(105,80,483,5341389),(109,80,484,5376415),(81,80,485,5411440),(34,80,486,5446466),(88,80,487,5481491),(80,80,488,5516517),(82,80,489,5551542),(84,80,490,5586568),(106,80,491,5621593),(107,80,492,5656619),(108,80,493,5691644),(85,80,494,5726670),(87,80,495,5761695),(78,80,496,5796721),(79,80,497,5831746),(86,80,498,5866772),(100,80,499,5901797),(92,80,500,5936823),(75,80,501,5971848),(73,80,502,6006874),(72,80,503,6041899),(95,80,504,6076925),(93,80,505,6111950),(74,80,506,6146976),(94,80,507,6182001),(76,80,508,6217027),(96,80,509,6252052),(91,80,510,6287078),(35,80,511,6322103),(97,80,512,6357129),(98,80,513,6392154),(99,80,514,6427180),(101,80,515,6462205),(102,80,516,6497231),(46,82,517,6532256),(70,82,518,6567282),(68,82,519,6602307),(69,82,520,6637333),(83,82,521,6672358),(103,82,522,6707384),(104,82,523,6742409),(105,82,524,6777435),(71,82,529,6812460),(81,82,530,6847486),(34,82,531,6882511),(88,82,532,6917537),(80,82,533,6952562),(82,82,534,6987588),(84,82,535,7022613),(106,82,536,7057639),(107,82,537,7092664),(108,82,538,7127690),(85,82,539,7162715),(87,82,540,7197741),(78,82,541,7232766),(79,82,542,7267792),(86,82,543,7302817),(100,82,544,7337843),(92,82,545,7372868),(75,82,546,7407894),(73,82,547,7442919),(72,82,548,7477945),(95,82,549,7512970),(93,82,550,7547996),(74,82,551,7583021),(94,82,552,7618047),(76,82,553,7653072),(96,82,554,7688098),(91,82,555,7723123),(35,82,556,7758149),(97,82,557,7793174),(98,82,558,7828200),(99,82,559,7863225),(101,82,560,7898251),(102,82,561,7933276),(116,54,564,-8073377),(42,54,565,-8353581),(120,56,567,8003327),(121,56,568,8038353),(122,56,569,8073378),(120,40,571,8143429),(121,40,572,8178455),(122,40,573,8213480),(120,51,575,8283531),(121,51,576,8353582),(122,51,577,8318557),(120,57,579,8379851),(121,57,580,8384229),(122,57,581,8386418),(120,80,583,8388060),(121,80,584,8388334),(122,80,585,8388471),(124,82,587,-8266017),(125,82,588,-8257261),(124,41,589,-8268206),(125,41,590,-8267111),(124,52,591,-8278604),(125,52,592,-8273678),(42,53,593,-8230992),(120,42,594,8388539),(121,42,595,8388573),(122,42,596,8388590),(126,42,597,8388599),(127,52,598,8388603),(116,53,599,-8222235),(113,53,600,-8217857),(129,52,601,-7600533),(128,52,602,-7609289),(128,51,605,-7635558),(129,51,606,-7626802),(128,41,607,-7740635),(129,41,608,-7731878),(38,22,609,-8239748),(38,16,610,-8221824),(38,53,611,-8226613),(38,54,612,-8222106); /*!40000 ALTER TABLE `field_options_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `field_translations` -- DROP TABLE IF EXISTS `field_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `field_translations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `field_id` int(11) NOT NULL, `locale` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `full_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `help` text COLLATE utf8_unicode_ci, PRIMARY KEY (`id`), KEY `index_field_translations_on_field_id` (`field_id`), KEY `index_field_translations_on_locale` (`locale`) ) ENGINE=InnoDB AUTO_INCREMENT=159 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `field_translations` -- LOCK TABLES `field_translations` WRITE; /*!40000 ALTER TABLE `field_translations` DISABLE KEYS */; INSERT INTO `field_translations` VALUES (1,4,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Barometer Observed','Barometer initial reading','Measurement of atmospheric pressure using inches of mercury as a unit. Range 26.000-33.000'),(2,5,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Barometer Attd Ther','thermometer attached to barometer','Temperature of the mercury barometer column, used to correct the mercury for thermal expansion. Range 30°F-100°F\r\n'),(3,6,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Barometer Corrected for Instrumental Error','Barometer Corrected for Instrumental Error','Pressure adjusted to account for the error of the instrument used. Range 26.000-33.000'),(4,7,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Barometer Reduced to Temp 32°','Barometer Reduced to Temp 32°','Pressure measurement reduced to 32°F (equal to 0°C). Range 26.000-33.000'),(5,8,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Barometer Reduced to Sea Level','Barometer Reduced to Sea Level','Pressure reduced to sea elevation. Range 26.000-33.000'),(6,9,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Temp of the Air Observed','Temperature of the Air Observed','Temperature as observed on the thermometer (measured in ° fahrenheit). Range -45° to 120°F'),(7,10,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Temp of the Air Corrected','Temperature of the Air Corrected','Temperature measurement corrected to account for the instrumental error. Range -45 to 120°F'),(8,11,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Wet Bulb Observed','Wet Bulb Temperature Observed','Measurement of the temperature the air would have if it were cooled to saturation (100% relative humidity) by the evaporation of water. Range -45 to 120°F'),(9,12,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Wet Bulb Corrected','Wet Bulb Temperature Corrected','Wet Bulb measurement corrected for instrumental error. Range -45 to 120°F'),(10,13,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Difference','difference dry bulb-wet bulb','Difference between the \'Temperature of the Air\' and the \'Wet Bulb\'. A difference of zero indicates saturated air (fog)'),(11,14,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Pressure Vapor','Vapor Pressure','Partial pressure exerted by the water vapour in the atmosphere.\r\n'),(12,15,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Relative Humidity','Relative Humidity','The amount of water vapor present in the air expressed as a percentage of the saturation amount (Range 0-100%)'),(13,16,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Upper Cloud type ','Upper Cloud type 110','Select a combination of options for the cloud type and amount of cloud cover (1-10). Some clouds are composed of multiple types. Please select each type you see written. For example, for \"Cu St\", select \"Cu\" then \"St\". For more please see FAQ'),(14,17,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Upper Cloud Direction','Upper Cloud Direction','Direction of Cloud movement in the upper atmosphere. Select one.'),(15,18,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Weather ','Weather 110','Weather descriptors.'),(16,19,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Wind Direction','Wind Direction','The direction from which the wind blows. Select from the options below.'),(17,20,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Wind Velocity','Wind Velocity','Measurement of wind speed.'),(18,21,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','S or in G','Wind S or in G','Is the wind Steady or in Gusts?'),(19,22,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Lower Clouds ','Lower cloud type 110','Select the option or options that corresponds the type of cloud.'),(20,23,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Lower Direction','Lower Cloud Direction','Direction of cloud movement in the lower atmosphere. Select one.'),(21,24,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Total in Tenths','Cloud Total in Tenths','This represents the fraction of the sky (out of ten) that is covered by clouds.'),(22,25,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Rain Began','Time Rain Began','Time at which rain began.'),(23,26,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Rain Ended','Time Rain Ended','Time at which rain ended.'),(24,27,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Depth in Inches','Depth of Rain in Inches','Depth of rain collected in the rain gauge since the last observation.'),(25,28,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Snow Began','Time Snow Began','Time at which snow began to fall.'),(26,29,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Snow Ended','Time Snow Ended','Time at which snow ended.'),(27,30,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Depth in Inches','Depth of Snow in Inches','Total snow depth that fell since the previous observation.'),(28,31,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Rain and Melted Snow','Depth of Rain and Melted Snow','Sum of rain and water content of snow.'),(29,33,'en','2017-08-04 04:28:10','2017-08-04 04:28:10','Dewpoint','Dewpoint','Dewpoint is the temperature at which moisture in the atmosphere would start to condense, that is, to form dew.'),(30,34,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Anemometer Dial Reading','Anemometer Reading of Dial','This field is often left blank in this document and entered into a separate ledger'),(31,35,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Anemometer Miles','Anemometer miles since last Observations','This field is often left blank as observations entered into separate ledger'),(32,36,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Maximum Ther Observed','Maximum Thermometer Observed','The maximum temperature is read only once a day. Range from -45°F to +120°F'),(33,37,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Maximum Ther Corrected','Maximum Thermometer Corrected','Maximum temperature corrected for instrument error. Range -45 to 120°\r\nF'),(34,38,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Minimum Ther Observed','Minimum Thermometer Observed','Minimum temperature observed once a day. Range from -45°F to 120°\r\nF'),(35,39,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Minimum Ther Corrected','Minimum Thermometer Corrected','Minimum temperature observed once a day. Range from -45°F to 120°\r\nF'),(36,40,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Phenomena at Observation','Phenomena at Observation 110','Any atmospheric or weather noted at observation time '),(37,41,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Weather since last Observation','Weather since last Observation 120','Weather occurring since last observation time '),(38,42,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Aurora Class and Time','Aurora class and time','Aurora are classed in categories I-IV (1-4)'),(39,43,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Ozone','Ozone','Ozone was found difficult to measure and often left blank'),(40,44,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Remarks','Remarks','Any other comments or remarks concerning the observations'),(41,45,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Initials of Observer','Initials of Observer','The first initials of the observer\'s name'),(42,46,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Aurora Time','Time of Aurora','Time of aurora'),(43,47,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Aurora Class','Aurora Class','Class of Aurora, intensity I-IV (1-4)'),(44,48,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Anemometer Miles in Last 24 Hours','Anemometer Miles in Last 24 Hours','Distance in miles the wind has run in the last 24 hours'),(45,49,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Sleighing Quality','Sleighing Quality 1-3','A measure of the ease of transport over snow roads by horse and sleigh, rated from 1 to 3.'),(46,50,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Total Snow on Ground','Total Snow on Ground','Total amount of snow accumulated on the ground'),(47,51,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Weather and Phenomena since last Observation','Weather and Phenomena since last Observation','Weather and other atmospheric phenomena which occurred between observations'),(48,52,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Weather','Weather 120','Descriptions of the weather in symbolic form. For more on weather symbols, please see the FAQ'),(49,53,'en','2017-08-04 04:28:11','2017-10-01 20:49:36','Lower cloud type','Lower cloud type 120 and later','Abbreviations of cloud type and amount in tenths (0-10). Some clouds are composed of multiple types. Please select each type you see written. For example, for \"N S\", select \"N\" then \"S\". For more please see FAQ'),(50,54,'en','2017-08-04 04:28:11','2017-10-01 20:51:51','Upper Cloud type','Upper Cloud type 120 and later','Abbreviations of cloud type and amount in tenths (0-10). Some clouds are composed of multiple types. Please select each type you see written. For example, for \"N S\", select \"N\" then \"S\". For more please see FAQ'),(51,56,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Phenomena at Observation','Phenomena at Observation 120','Any atmospheric phenomena at the time the weather observation is made'),(52,57,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Phenomena and time of occurrence','Phenomena and time of occurrence 130','Atmospheric phenomena such as rainbows, solar or lunar halos, aurora'),(53,58,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Relative Humidity ','Relative Humidity from wet and dry thermometers','Relative humidity calculated from the difference wet and dry thermometers'),(54,59,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Relative Humidity (Hydrograph)','Relative Humidity from Hydrograph','Relative Humidity as recorded by the hydrograph'),(55,60,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Hygrometer','Hygrometer','Humidity value as recorded by the hydrograph'),(56,61,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Wind Steady or Variable','Wind description','Description of wind as steady or variable (gusts or intermittent)'),(57,62,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Grass minimum','Radiation','Minimum temperature as recorded directly on the ground. This helps to estimate long-wave radiation (heat lost from the surface of the Earth)'),(58,63,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Solar temperature','Radiation blackbulb thermometer 250','The temperature recorded by a thermometer covered in black ink to estimate the amount of solar radiation. Due to a misprint, this value is written in the relative humidity column'),(59,64,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Blackbulb temperature','Radiation blackbulb thermometer','The temperature recorded by a thermometer covered in black ink to estimate the amount of solar radiation'),(60,65,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Hours of sunshine','Total hours of bright sunshine','The number of hours of bright, strong sunshine recorded during the day by a Campbell-Stokes recorded'),(61,66,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Thunderstorm','Thunderstorm','Record of thunderstorms during the day'),(62,67,'en','2017-08-04 04:28:11','2017-09-21 22:18:44','City Hall Barometer (printed heading Reading of Dial)','City Hall Barometer','The barometer reading from another observatory at Montreal\'s City Hall. Note that these are not the anemometer values as indicated in the column heading'),(63,68,'en','2017-08-04 04:28:11','2017-09-21 22:20:02','City Hall Att\'d Therm (printed title Miles Since Last Observ)','City Hall Attached Thermometer','Thermometer reading for the barometer kept at City Hall. Note that this does not match the column heading'),(64,69,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','City Hall Corr. Bar','City Hall Corrected Barometer','Corrected barometer reading for City Hall. Note that this does not match the column heading'),(65,70,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Rain Duration','Rain Duration 220','Amount of time rain lasted'),(66,71,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Snow Duration','Snow Duration 220','Amouunt of time snow lasted'),(67,72,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Pressure of vapour (hygro)','Pressure of Vapour/Hygrometer type 230','The values entered in the column are from a hygrometer, which measures humidity, and is not the vapour pressure as indicated in the column heading'),(68,73,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Relative Humidity (wet & dry)','Relative Humidity wet & dry 230','The relative humidity indicated here is calculated from the wet and dry bulb thermometers'),(69,74,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Extra Humidity Reading','Extra Humidity Reading 220','A second relative humidity reading is sometimes entered to the right of the Relative Humidity printed column.'),(70,75,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Vapour Pressure/Humidity Wet & Dry','Vapour Pressure Relative Humidity Wet & Dry 240','Relative Humidity from Wet and Dry bulb thermometer. Note that the observation is not the same as indicated in the column heading'),(71,76,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Min T','Minimum Temperature 250','Due to a misprint page 1 repeated instead of printing page, the column headings don\'t match up with the observed value. The minimum temperature is entered in the \"Air Temperature\" column'),(72,77,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Min T Corr','Minimum Temperature Corrected 250','Due to a misprint page 1 repeated instead of printing page, the column headings don\'t match up with the observed value. The corrected minimum temperature is entered in the \"Corrected Air Temperature\" column'),(73,78,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Max T','Maximum Temperature 250','Due to a misprint page 1 repeated instead of printing page, the column headings don\'t match up with the observed value. The maximum temperature is entered in the \"Wet bulb Temperature\" column'),(74,79,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Max T Corr','Maximum Temperature Corrected 250','Due to a misprint page 1 repeated instead of printing page, the column headings don\'t match up with the observed value. The corrected maximum temperature is entered in the \"Corrected Wet Bulb Temperature\" column'),(75,80,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Phenomena at Observation','Phenomena at Observation 250','Due to a misprint page 1 repeated instead of printing page, the column headings don\'t match up with the observed value. The Phenomena at Observation are written in the humidity columns'),(76,81,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Grass minimum','Grass Minimum 250','Due to a misprint, page 1 was repeated twice, with no page 2 printed. Here, the grass minimum thermometer estimates the long-wave radiation from the Earth\'s surface'),(77,82,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Weather Since last Observation','Weather Since last Observation 250','Due to a misprint, page 1 was repeated twice with no page two printed. Here, the weather since the last observation is recorded in the \"Weather\" column'),(78,83,'en','2017-08-04 04:28:11','2017-08-04 04:28:11','Remarks','Remarks 250','Due to a misprint, page 1 was repeated twice with no page 2 printed. Here the \"Remarks\" observation is written in the second half of page 1.'),(80,4,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Hauteur barométrique observée','Hauteur barométrique initiale ','Mesure la pression atmosphérique grâce à la hauteur d\'une colonne de mercure. Variation allant de 26.000 à 33.000. '),(81,5,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Thermomètre attaché au baromètre ','Thermomètre attaché au baromètre','Température de la colonne de mercure du baromètre afin d\'éviter la dilatation thermique. Variation allant de 30 °F à 100 °F. \n'),(82,6,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Hauteur barométrique corrigée (risque d\'erreur instrumentale)','Hauteur barométrique corrigée (risque d\'erreur instrumentale)','Pression ajustée pour tenir compte de l\'erreur de l\'instrument utilisé. Variation allant de 26.000 à 33.000. '),(83,7,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température du baromètre réduite à 32 °F','Température du baromètre réduite à 32 °F','Mesure de la pression réduite à 32 °F (ou 0 °C). Variation allant de 26.000 à 33.000.'),(84,8,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Hauteur baromètrique réduite au niveau de la mer','Hauteur baromètrique réduite au niveau de la mer','Pression réduite au niveau de la mer. Variation allant de 26.000 à 33.000.'),(85,9,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température de l\'air observée','Température de l\'air observée','Température telle qu\'observée sur le thermomètre (mesurée en Fahrenheit). Variation allant de -45 °F à 120 °F. '),(86,10,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température de l\'air corrigée','Température de l\'air corrigée','Température ajustée pour tenir compte de l\'erreur de l\'instrument utilisé. Variation allant de - 45 °F à 120 °F. '),(87,11,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Thermomètre mouillé observé','Thermomètre mouillé observé','Température qu\'aurait l\'air s\'il était refroidi jusqu\'à saturation (100 % d\'humidité relative) par l\'évaportation de l\'eau. Variation allant de -45 °F à 120 °F.'),(88,12,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Thermomètre mouillé corrigé','Thermomètre mouillé corrigé','Mesure du thermomètre mouillé ajustée pour tenir compte de l\'erreur de l\'instrument utilisé. Variation allant de -45 °F à 120 °F. '),(89,13,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Différence ','Différence entre les thermomètres mouillé et sec','Différence entre la « Température de l\'air » et le « Thermomètre mouillé ». Une différence de zéro indique que l\'air est saturé (brouillard). '),(90,14,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Pression de la vapeur ','Pression de la vapeur ','Pression partielle exercée par la vapeur d\'eau dans l\'atmosphère. \n'),(91,15,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Humidité relative ','Humidité relative','Quantité de vapeur d\'eau contenue dans l\'air, exprimée en pourcentage de la saturation de l\'air (variation allant de 0 % à 100 %). '),(92,16,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Nuages de l\'étage supérieur ','Nuages de l\'étage supérieur ','Sélectionnez le type des nuages et le degré de couverture nuageuse (de 1 à 10). Certains nuages sont composés de plusieurs types. Sélectionnez tous les types qui sont notés. Par exemple, lorsque vous voyez « Cu St » inscrit dans le registre, sélectionnez « Cu », puis « St ». Pour de plus amples informations, référez-vous à notre page FAQ. '),(93,17,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Direction des nuages de l\'étage supérieur','Direction des nuages de l\'étage supérieur','Sélectionnez la direction du déplacement des nuages de l\'atmosphère supérieure. '),(94,18,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Météo','Météo 110','Description de la météo. '),(95,19,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Direction du vent','Direction du vent','Sélectionnez la direction du souffle du vent parmi les options proposées. '),(96,20,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Vecteur vent','Vecteur vent','Mesure la vitesse du vent. '),(97,21,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','S ou G','Vent S ou G','Vent constant ou rafales de vent ?'),(98,22,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Nuages de l\'étage inférieur','Nuage de l\'étage inférieur 110','Choississez le ou les type(s) de nuages approprié(s). '),(99,23,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Direction des nuages de l\'étage inférieur','Direction des nuages de l\'étage inférieur','Sélectionnez la direction du déplacement des nuages de l\'atmosphère supérieure.'),(100,24,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Total en dixièmes','Total de nuages en dixièmes','Fraction du ciel (en dixièmes) qui est recouverte de nuages.'),(101,25,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Début de la pluie','Heure du début de la pluie ','Heure à laquelle la pluie a commencé. '),(102,26,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Fin de la pluie','Heure de fin de la pluie','Heure à laquelle la pluie s\'est arrêtée. '),(103,27,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Quantité en pouces ','Quantité de pluie en pouces ','Quantité de pluie recueillie par le pluviomètre depuis la dernière observation. '),(104,28,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Début de la neige ','Heure du début de la neige ','Heure à laquelle la neige a commencé. '),(105,29,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Fin de la neige','Fin de la neige','Heure à laquelle la neige s\'est arrêtée. '),(106,30,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Quantité en pouces ','Quantité de neige en pouces ','Quantité de neige tombée depuis la dernière observation. '),(107,31,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Pluie et neige fondue ','Quantité de pluie et de neige fondue','Somme des quantités de pluie et d\'eau contenue dans la neige. '),(108,33,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Point de rosée','Point de rosée','Température à laquelle l\'humidité atmosphérique commence à se condenser, soit à former de la rosée. '),(109,34,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Lecture du cadran de l\'anémomètre ','Lecture du cadran de l\'anémomètre','La colonne est souvent vide, cette observation étant notée dans un registre à part. '),(110,35,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Milles mesurés par l\'anémomètre ','Milles mesurés par l\'anémomètre depuis la dernière observation','La colonne est souvent vide, cette observation étant notée dans un registre à part. '),(111,36,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température maximale observée','Température maximale observée','La température maximale n\'est lue qu\'une fois par jour. Variation allant de -45 °F à 120 °F.'),(112,37,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température maximale corrigée','Température maximale corrigée','Température maximale ajustée pour tenir compte de l\'erreur de l\'instrument utilisé. Variation allant de -45 °F to 120 °F. '),(113,38,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température minimale observée','Température minimale observée','La température minimale n\'est lue qu\'une fois par jour. Variation allant de -45 °F à 120 °F.'),(114,39,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température minimale corrigée','Température minimale corrigée','Température minimale ajustée pour tenir compte de l\'erreur de l\'instrument utilisé. Variation allant de -45 °F to 120 °F. '),(115,40,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Phénomènes au moment de l\'observation','Phénomènes au moment de l\'observation 110','Tout phénomène atmosphérique ou météorologique noté au moment de l\'observation. '),(116,41,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Météo depuis la dernière observation ','Météo depuis la dernière observation 120','Conditions météorologiques depuis la dernière observation. '),(117,42,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Catégorie et heure de l\'aurore ','Catégorie et heure de l\'aurore ','Les aurores sont classées par catégories, ces dernières allant de I à IV (1 à 4).'),(118,43,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Ozone','Ozone','Cette colonne est souvent vide, l\'ozone étant difficile à mesurer. '),(119,44,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Remarques','Remarques','Tout commentaire ou remarque relatifs aux observations.'),(120,45,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Initiales de l\'observateur ','Initiales de l\'observateur ','Premières initiales du nom de l\'observateur. '),(121,46,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Heure de l\'aurore','Heure de l\'aurore ','Heure de l\'aurore.'),(122,47,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Catégorie de l\'aurore','Catégorie de l\'aurore','Catégorie de l\'aurore selon son intensité (I à IV). '),(123,48,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Milles mesurés par l\'anémomètre durant les 24 dernières heures ','Milles mesurés par l\'anémomètre durant les 24 dernières heures ','Distance parcourue par le vent durant les dernières 24 h, mesurée en milles. '),(124,49,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Qualité de transport','Qualité de transport de 1 à 3','Mesure la facilité de transport par cheval et traineau sur des routes enneigées (notée de 1 à 3). '),(125,50,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Quantité totale de neige au sol','Quantité totale de neige au sol','Quantité totale de neige accumulée au sol. '),(126,51,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Météo et phénomènes depuis la dernière observation ','Météo et phénomènes depuis la dernière observation. ','Météo et phénomènes qui se sont produits entre deux observations. '),(127,52,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Météo','Météo 120','Description de la météo à l\'aide de symboles. Pour de plus amples informations sur les symboles météorologiques, référez-vous à notre page « FAQ ». '),(128,53,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Nuages de l\'étage inférieur ','Nuages de l\'étage inférieur 120 et ultérieurs','Abréviations des types de nuages et total en dixièmes (0 à 10). Certains nuages sont composés de plusieurs types. Sélectionnez tous les types qui sont notés. Par exemple, lorsque vous voyez « N S » inscrit dans le registre, sélectionnez « N », puis « S ». Pour de plus amples informations, référez-vous à notre page FAQ.'),(129,54,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Nuages de l\'étage supérieur ','Nuages de l\'étage supérieur 120 et ultérieurs','Abréviations des types de nuages et total en dixièmes (0 à 10). Certains nuages sont composés de plusieurs types. Sélectionnez tous les types qui sont notés. Par exemple, lorsque vous voyez « N S » inscrit dans le registre, sélectionnez « N », puis « S ». Pour de plus amples informations, référez-vous à notre page FAQ.'),(130,56,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Phénomènes au moment de l\'observation','Phénomènes au moment de l\'observation 120','Tout phénomène atmosphérique noté au moment de l\'observation météorologique. '),(131,57,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Phénomènes et heure à laquelle ils se produisent ','Phénomènes et heure à laquelle ils se produisent 130','Phénomènes atmosphériques comme les arcs-en-ciel, les halos solaires ou lunaires et les aurores.'),(132,58,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Humidité relative ','Humidité relative calculée à partir des thermomètres mouillé et sec ','L\'humidité relative est calculée à partir de la différence entre les températures des thermomètres mouillé et sec. '),(133,59,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Humidité relative (hydrographe)','Humidité relative lue sur l\'hydrographe','Humidité de l\'air enregistrée par l\'hydrographe. '),(134,60,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Hygromètre','Hygromètre','Humidité de l\'air enregistrée par l\'hydrographe. '),(135,61,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Vent constant ou variable ','Description du vent','Description du vent : vent constant ou variable (soit rafales de vent ou vent intermittent) ?'),(136,62,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température minimale sur gazon','Rayonnement','Température minimale mesurée directement au sol. Cette mesure aide à évaluer le rayonnement de grandes longueurs d\'onde (l\'émission thermique au niveau de la Terre). '),(137,63,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température solaire ','Rayonnement mesuré par un thermomètre à boule noire 250','Température mesurée par un thermomètre recouvert d\'encre noire. Cette mesure permet d\'évaluer l\'importance du rayonnement solaire. Cette donnée se trouve dans la colonne « Humidité relative » en raison d\'une erreur typographique. '),(138,64,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Thermomètre à boule noire','Rayonnement mesuré par un thermomètre à boule noire ','Température mesurée par un thermomètre recouvert d\'encre noire. Cette mesure permet d\'évaluer l\'importance du rayonnement solaire. '),(139,65,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Heures d\'ensoleillement ','Total d\'heures d\'ensoleillement ','Le nombre total d\'heures de fort ensoleillement enregistré par un héliographe de Campbell-Stokes durant la journée. '),(140,66,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Orage','Orage','Orages notés durant la journée. '),(141,67,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Baromètre de l\'hôtel de ville (sous l\'en-tête « Lecture du cadran »)','Baromètre de l\'hôtel de ville','La hauteur barométrique provient de l\'observatoire de l\'hôtel de ville de Montréal. Notez que cette mesure se trouve dans la colonne « Anémomètre ». '),(142,68,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Thermomètre attaché au baromètre de l\'hôtel de ville (sous l\'en-tête « Milles depuis la dernière observation »)','Thermomètre attaché au baromètre de l\'hôtel de ville','Température mesurée par le thermomètre attaché au baromètre de l\'hôtel de ville. Notez que cette mesure ne correspond pas à l\'en-tête de la colonne. '),(143,69,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Hauteur barométrique corrigée (baromètre de l\'hôtel de ville)','Hauteur barométrique corrigée (baromètre de l\'hôtel de ville)','Hauteur barométrique corrigée (baromètre de l\'hôtel de ville). Notez que cette mesure ne correspond pas à l\'en-tête de la colonne. '),(144,70,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Durée de la pluie','Durée de la pluie 220','Quantité de temps durant laquelle il a plu. '),(145,71,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Durée de la neige ','Durée de la neige 220','Quantité de temps durant laquelle il a neigé. '),(146,72,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Pression de la vapeur (hygro)','Pression de la vapeur/ hygromètre 230','Les données notées dans la colonne proviennent d\'un hygromètre, instrument qui mesure l\'humidité de l\'air. Les données ne correspondent donc pas à l\'en-tête « Pression de la vapeur ». '),(147,73,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Humidité relative (mouillé & sec)','Humidité relative (mouillé & sec) 230','Humidité relative mesurée par les thermomètres mouillé et sec. '),(148,74,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Mesure d\'humidité supplémentaire','Mesure d\'humidité supplémentaire 220','Une deuxième mesure de l\'humidité relative est parfois notée à droite de la colonne « Humidité relative ». '),(149,75,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Pression de la vapeur/ humidité (mouillé & sec)','Pression de la vapeur/ humidité (mouillé & sec) 240','Humidité relative mesurée par les thermomètres mouillé et sec. Notez que cette mesure ne correspond pas à l\'en-tête de la colonne. '),(150,76,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température minimale','Température minimale 250','La page 1 est dupliquée en raison d\'une erreur typographique. Par conséquent, les en-têtes des colonnes ne correspondent pas aux données observées. La température minimale se trouve dans la colonne « Température de l\'air ». '),(151,77,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température minimale corrigée','Température minimale corrigée 250','La page 1 est dupliquée en raison d\'une erreur typographique. Par conséquent, les en-têtes des colonnes ne correspondent pas aux données observées. La température minimale se trouve dans la colonne « Température de l\'air corrigée ». '),(152,78,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température maximale','Température maximale 250','La page 1 est dupliquée en raison d\'une erreur typographique. Par conséquent, les en-têtes des colonnes ne correspondent pas aux données observées. La température maximale se trouve dans la colonne « Thermomètre mouillé ». '),(153,79,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température maximale corrigée','Température maximale 250','La page 1 est dupliquée en raison d\'une erreur typographique. Par conséquent, les en-têtes des colonnes ne correspondent pas aux données observées. La température maximale corrigée se trouve dans la colonne « Thermomètre mouillé corrigé ». '),(154,80,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Phénomènes au moment de l\'observation','Phénomènes au moment de l\'observation 250','La page 1 est dupliquée en raison d\'une erreur typographique. Les données qui correspondent à la colonne « Phénomènes au moment de l\'observation » se trouvent dans les colonnes liées à l\'humidité. '),(155,81,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Température minimale sur gazon','Température minimale sur gazon 250','La page 1 est dupliquée en raison d\'une erreur typographique. La température minimale sur gazon aide à évaluer le rayonnement de grandes longueurs d\'onde émis au niveau de la Terre.'),(156,82,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Météo depuis la dernière observation ','Météo depuis la dernière observation 250','La page 1 est dupliquée en raison d\'une erreur typographique. Par conséquent, les en-têtes des colonnes ne correspondent pas aux données observées. Here, the weather since the last observation is recorded in the \"Weather\"\" column\"'),(157,83,'fr','2017-10-11 22:00:00','2017-10-11 22:00:00','Remarques','Remarques 250','La page 1 est dupliquée en raison d\'une erreur typographique. Les données qui correspondent à la colonne « Remarques » sont notées dans la deuxième moitié de la page 1. '),(158,84,'en','2018-01-15 01:48:48','2018-01-15 01:48:48','Transcriber Comments','Transcriber Comments','This field is for transcribers to enter in any comments, difficulties or unexpected material found anywhere along the row of observations for this observation time'); /*!40000 ALTER TABLE `field_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fields` -- DROP TABLE IF EXISTS `fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fields` ( `id` int(11) NOT NULL AUTO_INCREMENT, `field_key` varchar(255) DEFAULT NULL, `html_field_type` varchar(255) DEFAULT NULL, `data_type` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `multi_select` tinyint(1) DEFAULT '0', `internal_name` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fields` -- LOCK TABLES `fields` WRITE; /*!40000 ALTER TABLE `fields` DISABLE KEYS */; INSERT INTO `fields` VALUES (4,'Barometer_Observed','text','string','2016-04-19 23:06:19','2017-10-14 17:28:53',0,NULL),(5,'Barometer_Attd_Ther','text','string','2016-04-19 23:07:13','2017-01-18 15:16:54',0,NULL),(6,'Barometer_Corrected_for_Instrumental_Error','text','string','2016-04-19 23:08:02','2017-01-18 15:03:31',0,NULL),(7,'Barometer_Reduced_to_Temp_32','text','string','2016-04-19 23:11:29','2017-01-18 15:17:24',0,NULL),(8,'Barometer_Reduced_to_Sea_Level','text','string','2016-04-19 23:12:15','2017-01-18 15:03:58',0,NULL),(9,'Temp_of_the_Air_Observed','text','string','2016-04-19 23:13:34','2017-01-18 15:17:42',0,NULL),(10,'Temp_of_the_Air_Corrected','text','string','2016-04-19 23:15:46','2017-01-18 15:04:40',0,NULL),(11,'Wet_Bulb_Observed','text','string','2016-04-19 23:16:33','2017-01-18 15:04:55',0,NULL),(12,'Wet_Bulb_Corrected','text','string','2016-04-19 23:17:03','2017-01-18 15:05:12',0,NULL),(13,'Diff_Dry_Wet_bulb','text','string','2016-04-19 23:17:32','2017-01-18 15:41:38',0,NULL),(14,'Pressure_Vapor','text','string','2016-04-19 23:17:57','2017-01-18 15:05:51',0,NULL),(15,'Relative_Humidity','text','string','2016-04-19 23:18:22','2017-01-18 15:41:52',0,NULL),(16,'Cloud_Type_Upper','text','string','2016-08-29 23:16:43','2017-03-07 17:04:56',1,NULL),(17,'Cloud_Direction_Upper','text','string','2016-08-29 23:18:20','2017-10-01 20:37:36',1,NULL),(18,'Weather','select','string','2016-08-30 00:34:04','2017-05-02 17:33:17',1,NULL),(19,'Wind_Direction','text','string','2016-09-02 15:27:08','2017-10-01 20:37:54',1,NULL),(20,'Wind_Velocity','text','string','2016-09-02 15:46:51','2017-01-18 15:44:53',0,NULL),(21,'Wind_S_or_G','text','string','2016-09-02 15:49:11','2017-01-18 15:45:13',0,NULL),(22,'Cloud_Type_Lower','text','string','2016-09-02 15:51:37','2017-03-07 17:08:00',1,NULL),(23,'Cloud_Direction_Lower','text','string','2016-09-02 15:52:49','2017-10-01 20:38:13',1,NULL),(24,'Cloud_Total_Tenths','text','string','2016-09-02 15:54:44','2017-01-18 15:46:31',0,NULL),(25,'Time_Rain_Began','text','string','2016-09-02 16:01:35','2017-01-18 15:46:53',0,NULL),(26,'Time_Rain_Ended','time','string','2016-09-02 16:02:24','2017-01-18 15:47:14',0,NULL),(27,'Rain_Depth_Inches','number','string','2016-09-02 16:06:49','2017-01-18 15:47:34',0,NULL),(28,'Time_Snow_Began','time','string','2016-09-02 16:07:26','2017-01-18 15:47:57',0,NULL),(29,'Time_Snow_Ended','time','string','2016-09-02 16:08:12','2017-01-18 15:48:14',0,NULL),(30,'Snow_Depth_Inches','text','string','2016-09-02 16:09:51','2017-01-18 15:48:32',0,NULL),(31,'Depth_Rain_Melted_Snow','number','string','2016-09-02 16:13:28','2017-01-18 15:49:19',0,NULL),(33,'Dewpoint','text','string','2016-10-25 19:33:01','2017-01-18 15:49:40',0,NULL),(34,'Anemometer_Dial_Reading',NULL,'string','2017-01-18 15:12:47','2017-04-25 23:46:16',0,NULL),(35,'Anemometer_Miles_Since_Last',NULL,'','2017-01-18 15:13:46','2017-01-18 15:50:18',0,NULL),(36,'Max_Thermometer_Obs',NULL,'','2017-01-18 15:16:25','2017-05-24 14:23:01',0,NULL),(37,'Max_Thermometer_Cor',NULL,'string','2017-01-18 15:19:13','2017-04-25 23:07:47',0,NULL),(38,'Min_Thermometer_Obs',NULL,'','2017-01-18 15:21:51','2017-01-18 15:51:13',0,NULL),(39,'Min_Thermometer_Cor',NULL,'','2017-01-18 15:26:15','2017-01-18 15:51:29',0,NULL),(40,'Phenomena_Observation',NULL,'','2017-01-18 15:31:31','2017-03-07 20:41:58',0,NULL),(41,'Weather_Since_Last_Obs',NULL,'','2017-01-18 15:35:20','2017-05-02 18:42:02',1,NULL),(42,'Aurora_Class_Time',NULL,'','2017-01-18 15:38:49','2017-01-18 15:52:05',0,NULL),(43,'Ozone',NULL,'','2017-01-18 15:39:18','2017-01-18 15:52:15',0,NULL),(44,'Remarks',NULL,'string','2017-01-18 15:40:22','2017-04-26 00:03:17',0,NULL),(45,'Observer_Initials',NULL,'','2017-01-18 15:41:15','2017-01-18 15:52:37',0,NULL),(46,'Aurora_Time',NULL,'','2017-01-18 15:53:52','2017-01-18 15:53:52',0,NULL),(47,'Aurora_Class',NULL,'','2017-01-18 15:54:38','2017-01-18 15:54:38',0,NULL),(48,'Anemometer_Miles_Last_24_Hours',NULL,'','2017-01-18 15:57:26','2017-01-18 15:57:26',0,NULL),(49,'Sleighing_Quality',NULL,'','2017-01-18 16:00:46','2017-01-18 16:00:46',0,NULL),(50,'Total_Snow_on_Ground',NULL,'','2017-01-18 16:01:57','2017-01-18 16:01:57',0,NULL),(51,'Weather_Phenomena_since_last_Observation',NULL,'','2017-01-18 16:03:27','2017-05-02 18:41:44',1,NULL),(52,'Weather',NULL,'','2017-02-14 00:27:34','2017-05-02 18:42:38',1,NULL),(53,'Cloud_Type_Lower',NULL,'string','2017-02-14 00:30:49','2017-10-01 20:49:36',1,NULL),(54,'Cloud_Type_Upper',NULL,'string','2017-02-14 00:33:18','2017-10-01 20:51:51',1,NULL),(56,'Phenomena at Observation',NULL,'','2017-03-07 21:06:42','2017-04-28 16:49:23',1,NULL),(57,'Phenomena and time of occurrence',NULL,'string','2017-04-25 14:58:54','2017-04-25 14:59:26',1,NULL),(58,'Relative Humidity from wet and dry',NULL,'string','2017-04-25 15:37:31','2017-04-25 15:37:31',0,NULL),(59,'Relative Humidity from Hydrograph',NULL,'string','2017-04-25 15:38:26','2017-04-25 15:38:26',0,NULL),(60,'Hygrometer',NULL,'','2017-04-25 15:39:17','2017-04-25 15:39:17',0,NULL),(61,'Wind Steady or Variable',NULL,'string','2017-04-25 15:41:17','2017-04-25 15:41:17',0,NULL),(62,'Grass minimum',NULL,'string','2017-04-25 15:44:37','2017-04-25 23:47:54',0,NULL),(63,'Radiation blackbulb thermometer',NULL,'string','2017-04-25 15:46:29','2017-05-02 21:41:22',0,NULL),(64,'Radiation blackbulb thermometer',NULL,'string','2017-04-25 15:46:32','2017-04-25 15:46:32',0,NULL),(65,'Total hours of bright sunshine',NULL,'string','2017-04-25 15:48:39','2017-04-25 15:48:39',0,NULL),(66,'Thunderstorm',NULL,'string','2017-04-25 15:51:48','2017-04-25 15:51:48',0,NULL),(67,'City Hall Barometer',NULL,'string','2017-05-02 20:18:47','2017-09-21 22:19:10',0,NULL),(68,'City Hall Attached Thermometer',NULL,'string','2017-05-02 20:20:01','2017-09-21 22:20:02',0,NULL),(69,'City Hall Corrected Barometer',NULL,'','2017-05-02 20:21:18','2017-05-02 20:21:18',0,NULL),(70,'Rain Duration',NULL,'string','2017-05-02 20:45:12','2017-05-02 20:46:19',0,NULL),(71,'Snow Duration',NULL,'string','2017-05-02 20:45:49','2017-05-02 20:46:03',0,NULL),(72,'hygrometer 230',NULL,'','2017-05-02 21:06:20','2017-05-02 21:06:20',0,NULL),(73,'Relative Humidity 230',NULL,'','2017-05-02 21:07:53','2017-05-02 21:07:53',0,NULL),(74,'Extra Humidity Reading 220',NULL,'','2017-05-02 21:12:37','2017-05-02 21:12:37',0,NULL),(75,'Relative Humidity Wet & Dry 240',NULL,'string','2017-05-02 21:21:52','2017-05-02 21:21:52',0,NULL),(76,'Minimum Temperature 250',NULL,'','2017-05-02 21:33:36','2017-05-02 21:33:36',0,NULL),(77,'Minimum Temperature Corrected 250',NULL,'','2017-05-02 21:34:23','2017-05-02 21:34:23',0,NULL),(78,'Maximum Temperature 250',NULL,'string','2017-05-02 21:35:35','2017-05-02 21:35:35',0,NULL),(79,'Maximum Temperature Corrected 250',NULL,'','2017-05-02 21:37:20','2017-05-02 21:37:20',0,NULL),(80,'Phenomena at Observation 250',NULL,'','2017-05-02 21:39:55','2017-05-02 22:06:16',1,NULL),(81,'Grass Minimum 250',NULL,'','2017-05-02 21:43:15','2017-05-02 21:43:15',0,NULL),(82,'Weather Since last Observation 250',NULL,'','2017-05-02 21:45:02','2017-05-02 22:12:12',1,NULL),(83,'Remarks 250',NULL,'string','2017-05-02 21:46:25','2017-05-02 21:46:25',0,NULL),(84,'Transcriber Comments',NULL,'string','2018-01-15 01:48:48','2018-01-15 01:48:48',0,NULL); /*!40000 ALTER TABLE `fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ledgers` -- DROP TABLE IF EXISTS `ledgers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ledgers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `ledger_type` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ledgers` -- LOCK TABLES `ledgers` WRITE; /*!40000 ALTER TABLE `ledgers` DISABLE KEYS */; INSERT INTO `ledgers` VALUES (5,'120','120','2017-03-17 18:59:22','2017-03-17 18:59:22'),(6,'110','110','2017-03-22 16:53:08','2017-03-22 16:53:08'),(7,'110','110','2017-03-22 16:53:08','2017-03-22 16:53:08'),(8,'130','130','2017-03-22 16:53:36','2017-03-22 16:53:36'),(9,'300','300','2017-03-22 16:53:54','2017-03-22 16:53:54'),(10,'140','140','2017-04-27 17:33:17','2017-04-27 17:33:17'),(11,'140','140','2017-04-27 17:33:17','2017-04-27 17:33:17'),(12,'150','150','2017-04-27 17:33:42','2017-04-27 17:33:42'),(13,'210','210','2017-04-27 17:33:59','2017-04-27 17:33:59'),(14,'220','220','2017-04-27 17:34:24','2017-04-27 17:34:24'),(15,'220','220','2017-04-27 17:34:26','2017-04-27 17:34:26'),(16,'230','230','2017-04-27 17:34:33','2017-04-27 17:34:33'),(17,'230','230','2017-04-27 17:34:34','2017-04-27 17:34:34'),(18,'240','240','2017-04-27 17:34:51','2017-04-27 17:34:51'),(19,'240','240','2017-04-27 17:34:52','2017-04-27 17:34:52'),(20,'250','250','2017-04-27 17:35:09','2017-04-27 17:35:09'),(21,'250','250','2017-04-27 17:35:11','2017-04-27 17:35:11'),(22,'260','260','2017-04-27 17:35:20','2017-04-27 17:35:20'); /*!40000 ALTER TABLE `ledgers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `page_types` -- DROP TABLE IF EXISTS `page_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `page_types` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `ledger_type` varchar(255) DEFAULT NULL, `number` int(11) DEFAULT NULL, `description` text, `ledger_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `visible` tinyint(1) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `page_types` -- LOCK TABLES `page_types` WRITE; /*!40000 ALTER TABLE `page_types` DISABLE KEYS */; INSERT INTO `page_types` VALUES (7,'Register 120, page 1','120',1,'',5,'2017-03-17 18:59:22','2017-03-27 18:29:17',1),(8,'Register 120, page 2','120',2,'',5,'2017-03-17 19:00:18','2017-03-27 18:42:24',1),(9,'Register 110, page 1','110',1,'',6,'2017-03-22 16:53:08','2017-03-27 18:44:13',1),(10,'Register 110, page 2','110',2,'',7,'2017-03-22 16:53:08','2017-03-27 18:45:29',1),(11,'Register 130, page 1','130',1,'',8,'2017-03-22 16:53:36','2017-04-25 14:39:09',1),(12,'Register 130, page 2','130',2,'',8,'2017-03-22 16:53:37','2017-04-25 14:44:44',1),(13,'Register 300, page 1','300',1,'',9,'2017-03-22 16:53:54','2017-05-16 18:47:51',0),(14,'Register 300, page 2','300',2,'',9,'2017-03-22 16:53:55','2017-05-16 18:48:03',0),(15,'Register 140, page 1','140',1,'',10,'2017-04-27 17:33:17','2017-05-02 20:07:33',1),(16,'Register 140, page 2','140',2,'',11,'2017-04-27 17:33:17','2017-05-02 20:14:43',1),(17,'Register 150, page 2','150',2,'',12,'2017-04-27 17:33:42','2017-05-02 20:25:26',1),(18,'Register 150, page 1','150',1,'',12,'2017-04-27 17:33:48','2017-05-02 20:16:16',1),(19,'Register 210, page 1','210',1,'',13,'2017-04-27 17:33:59','2017-05-02 20:27:15',1),(20,'Register 210, page 2','210',2,'',13,'2017-04-27 17:34:00','2017-05-02 20:32:00',1),(21,'Register 220, page 1','220',1,'',14,'2017-04-27 17:34:24','2017-05-16 18:48:54',0),(22,'Register 220, page 2','220',2,'',15,'2017-04-27 17:34:26','2017-05-16 18:49:21',0),(23,'Register 230, page 1','230',1,'',16,'2017-04-27 17:34:33','2017-05-16 18:49:32',0),(24,'Register 230, page 2','230',2,'',17,'2017-04-27 17:34:34','2017-05-16 18:49:54',0),(25,'Register 240, page 1','240',1,'',18,'2017-04-27 17:34:51','2017-05-16 18:50:08',0),(26,'Register 240, page 2','240',2,'',19,'2017-04-27 17:34:52','2017-05-16 18:50:18',0),(27,'Register 250, page 2','250',2,'',20,'2017-04-27 17:35:09','2017-05-16 18:49:45',0),(28,'Register 250, page 1','250',1,'',21,'2017-04-27 17:35:11','2017-05-16 18:50:29',0),(29,'Register 260, page 2','260',2,'',22,'2017-04-27 17:35:20','2017-05-16 18:50:40',0),(30,'Register 260, page 1','260',1,'',22,'2017-04-27 17:35:25','2017-05-16 18:50:49',0); /*!40000 ALTER TABLE `page_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `page_types_field_groups` -- DROP TABLE IF EXISTS `page_types_field_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `page_types_field_groups` ( `page_type_id` int(11) NOT NULL, `field_group_id` int(11) NOT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `sort_order` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `index_page_types_field_groups_on_page_type_id` (`page_type_id`), KEY `index_page_types_field_groups_on_field_group_id` (`field_group_id`) ) ENGINE=InnoDB AUTO_INCREMENT=164 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `page_types_field_groups` -- LOCK TABLES `page_types_field_groups` WRITE; /*!40000 ALTER TABLE `page_types_field_groups` DISABLE KEYS */; INSERT INTO `page_types_field_groups` VALUES (7,3,30,8381952),(7,4,31,8385229),(7,8,32,8386867),(7,28,33,8387686),(7,9,34,8388096),(8,15,35,8388301),(8,16,36,8388403),(8,26,37,8388454),(8,17,38,8388480),(8,27,39,8388493),(9,3,40,8388499),(9,4,41,8388502),(9,8,42,8388504),(9,7,43,8388505),(9,9,44,8388506),(10,15,45,8388507),(10,16,46,8388508),(10,20,47,8388509),(10,17,48,8388510),(10,27,49,8388511),(11,3,50,-3327),(11,8,52,8388514),(11,28,53,8388515),(11,9,54,8388516),(11,30,55,8382362),(12,15,56,8388518),(12,16,57,8388519),(12,31,59,8388520),(12,27,60,8388521),(15,3,61,-4195967),(15,8,63,4189313),(15,9,65,8388526),(15,28,66,8386048),(15,30,67,-2099647),(16,15,68,8388527),(16,16,69,8388528),(16,32,71,8388529),(16,27,72,8388530),(18,3,73,8388531),(18,30,74,8388532),(18,8,75,8388533),(18,28,76,8388534),(18,9,77,8388535),(17,33,78,8388536),(17,16,79,8388537),(17,32,80,8388538),(17,27,81,8388539),(19,3,82,8388540),(19,4,83,8388541),(19,8,84,8388542),(19,28,85,8388543),(19,9,86,8388544),(19,34,88,8384410),(20,15,89,8388545),(20,16,90,8388546),(20,35,91,8388547),(20,27,92,8388548),(21,3,93,8388549),(21,34,95,8388551),(21,8,96,8388552),(21,28,97,8388553),(21,37,98,8388554),(22,15,99,8388555),(22,16,100,8388556),(22,35,101,8388557),(22,27,103,8388558),(23,3,104,8388559),(23,38,106,8388560),(23,34,107,8388561),(23,8,108,8388562),(23,7,109,8388563),(23,37,110,8388564),(21,39,111,8382772),(24,15,112,8388565),(24,16,113,8388566),(24,35,114,8388567),(24,27,115,8388568),(25,3,116,8388569),(25,40,117,8388570),(25,34,118,8388571),(25,37,119,8388572),(26,15,120,8388573),(26,16,121,8388574),(26,35,122,8388575),(26,27,123,8388576),(28,3,124,8388577),(28,4,126,8388578),(28,34,129,8388579),(28,8,130,8388580),(28,28,132,8388581),(28,37,133,8388582),(27,41,134,8388583),(27,42,135,8388584),(27,43,136,8388585),(29,16,138,8388586),(29,42,139,8388587),(29,44,144,8388589),(29,27,145,8388590),(30,3,146,8388591),(30,4,147,8388592),(30,28,148,8388593),(30,8,149,8383182),(30,37,150,8388594),(7,45,151,8388595),(8,45,152,8388596),(12,45,153,8388597),(11,45,154,8388598),(15,45,155,8388599),(16,45,156,8388600),(17,45,157,8388601),(18,45,158,8388602),(23,45,159,8388603),(25,45,160,8388604),(26,45,161,8388605),(27,45,162,8388606),(30,45,163,8388607); /*!40000 ALTER TABLE `page_types_field_groups` ENABLE KEYS */; UNLOCK TABLES;
<reponame>Shuttl-Tech/antlr_psql<gh_stars>10-100 -- file:rules.sql ln:366 expect:true insert into rtest_nothn1 values (2, 'want this')
<filename>seeds.sql DROP DATABASE IF EXISTS businessDB; CREATE DATABASE businessDB; USE businessDB; CREATE TABLE department ( id INT AUTO_INCREMENT NOT NULL, department_name varchar(30) NOT NULL, PRIMARY KEY(id) ); CREATE TABLE roles ( id INT AUTO_INCREMENT NOT NULL, title varchar(30) NOT NULL, salary DECIMAL(10,2) NULL, department_id INT NULL, PRIMARY KEY(id), FOREIGN KEY (department_id) REFERENCES department(id) ON DELETE CASCADE ); CREATE TABLE employees ( id INT AUTO_INCREMENT NOT NULL, first_name varchar(30) NOT NULL, last_name varchar(30) NOT NULL, role_id INT NULL, manager_id INT NULL DEFAULT false, PRIMARY KEY(id), FOREIGN KEY (role_id) REFERENCES roles(id) ON DELETE CASCADE, FOREIGN KEY (manager_id) REFERENCES employees(id) ON DELETE SET NULL ); -- Inserted a set of records into the table INSERT INTO department (department_name) VALUES ("Web Development"),("HR"),("Financials"),("R&D"),("Training"),("Accounting"); INSERT INTO roles (title, salary, department_id) VALUES ("Nodejs Developer", 80000.00, 1),("Receptionist", 60000.00, 2),("Book Guy", 120000.00, 3), ("Research Specialist", 110000.00, 4),("Intern Manager", 90000.00, 5),("Cost Analyist", 130000.00, 6); INSERT INTO employees (first_name, last_name, role_id, manager_id) VALUES ("Nick", "Keller", 1, null),("Jason", "Aristides", 2, 2),("Chase", "Culp", 3, 1),("Ramsey", "Hayek", 4, 3),("Henry", "Leigh", 5, 3), ("Josh", "Pagel", 6, null),("Kai", "Chamberlain", 1, 1),("Jacob", "Rowlen", 4, null),("Shea", "Carstens", 2, 4);
<reponame>askmohanty/metasfresh<filename>backend/de.metas.contracts/src/main/sql/postgresql/system/50-de.metas.contracts/5594701_cli_gh11694_mediateOrder_doctype_printformat.sql update c_doctype set ad_printformat_id=1000015, updatedby=99, updated='2021-10-28 16:22' where c_doctype_id=541018;
<reponame>jereIN/sakai ----------------------------------------------------------------------------- -- SAKAI_REALM -- Note: REALM_ID is the old "resource reference" string id for the realm -- REALM_KEY is the surrogate key integer id used to crossreference the other tables ----------------------------------------------------------------------------- CREATE TABLE SAKAI_REALM ( REALM_KEY INTEGER NOT NULL, REALM_ID VARCHAR2(255) NOT NULL, PROVIDER_ID VARCHAR2(4000) NULL, MAINTAIN_ROLE INTEGER NULL, CREATEDBY VARCHAR2(99) NULL, MODIFIEDBY VARCHAR2(99) NULL, CREATEDON TIMESTAMP NULL, MODIFIEDON TIMESTAMP NULL ); ALTER TABLE SAKAI_REALM ADD ( PRIMARY KEY (REALM_KEY) ) ; CREATE UNIQUE INDEX AK_SAKAI_REALM_ID ON SAKAI_REALM ( REALM_ID ASC ); CREATE INDEX IE_SAKAI_REALM_CREATED ON SAKAI_REALM ( CREATEDBY ASC, CREATEDON ASC ); CREATE INDEX IE_SAKAI_REALM_MODDED ON SAKAI_REALM ( MODIFIEDBY ASC, MODIFIEDON ASC ); CREATE SEQUENCE SAKAI_REALM_SEQ; ----------------------------------------------------------------------------- -- SAKAI_REALM_PROPERTY ----------------------------------------------------------------------------- CREATE TABLE SAKAI_REALM_PROPERTY ( REALM_KEY INTEGER NOT NULL, NAME VARCHAR2(99) NOT NULL, VALUE CLOB NULL ); ALTER TABLE SAKAI_REALM_PROPERTY ADD ( PRIMARY KEY (REALM_KEY, NAME) ) ; CREATE INDEX FK_SAKAI_REALM_PROPERTY ON SAKAI_REALM_PROPERTY ( REALM_KEY ASC ); ----------------------------------------------------------------------------- -- SAKAI_REALM_ROLE ----------------------------------------------------------------------------- CREATE TABLE SAKAI_REALM_ROLE ( ROLE_KEY INTEGER NOT NULL, ROLE_NAME VARCHAR2(99) NOT NULL ); ALTER TABLE SAKAI_REALM_ROLE ADD ( PRIMARY KEY (ROLE_KEY) ) ; CREATE UNIQUE INDEX IE_SAKAI_REALM_ROLE_NAME ON SAKAI_REALM_ROLE ( ROLE_NAME ASC ); CREATE SEQUENCE SAKAI_REALM_ROLE_SEQ; ----------------------------------------------------------------------------- -- SAKAI_REALM_ROLE_DESC ----------------------------------------------------------------------------- CREATE TABLE SAKAI_REALM_ROLE_DESC ( REALM_KEY INTEGER NOT NULL, ROLE_KEY INTEGER NOT NULL, DESCRIPTION CLOB NULL, PROVIDER_ONLY CHAR(1) NULL ); ALTER TABLE SAKAI_REALM_ROLE_DESC ADD ( PRIMARY KEY (REALM_KEY, ROLE_KEY) ) ; CREATE INDEX FK_SAKAI_REALM_ROLE_DESC_REALM ON SAKAI_REALM_ROLE_DESC ( REALM_KEY ASC ); ----------------------------------------------------------------------------- -- SAKAI_REALM_FUNCTION ----------------------------------------------------------------------------- CREATE TABLE SAKAI_REALM_FUNCTION ( FUNCTION_KEY INTEGER NOT NULL, FUNCTION_NAME VARCHAR2(99) NOT NULL ); ALTER TABLE SAKAI_REALM_FUNCTION ADD ( PRIMARY KEY (FUNCTION_KEY) ) ; CREATE UNIQUE INDEX IE_SAKAI_REALM_FUNCTION_NAME ON SAKAI_REALM_FUNCTION ( FUNCTION_NAME ASC ); CREATE INDEX SAKAI_REALM_FUNCTION_KN ON SAKAI_REALM_FUNCTION ( FUNCTION_KEY, FUNCTION_NAME ); CREATE SEQUENCE SAKAI_REALM_FUNCTION_SEQ; ----------------------------------------------------------------------------- -- SAKAI_REALM_PROVIDER -- provider id here is individual ids, where in the main table it may be -- a single compound id ----------------------------------------------------------------------------- CREATE TABLE SAKAI_REALM_PROVIDER ( REALM_KEY INTEGER NOT NULL, PROVIDER_ID VARCHAR2(200) NOT NULL ); ALTER TABLE SAKAI_REALM_PROVIDER ADD ( PRIMARY KEY (REALM_KEY, PROVIDER_ID) ) ; CREATE INDEX FK_SAKAI_REALM_PROVIDER ON SAKAI_REALM_PROVIDER ( REALM_KEY ASC ); CREATE INDEX IE_SAKAI_REALM_PROVIDER_ID ON SAKAI_REALM_PROVIDER ( PROVIDER_ID ASC ); ----------------------------------------------------------------------------- -- SAKAI_REALM_RL_FN -- role function ----------------------------------------------------------------------------- CREATE TABLE SAKAI_REALM_RL_FN ( REALM_KEY INTEGER NOT NULL, ROLE_KEY INTEGER NOT NULL, FUNCTION_KEY INTEGER NOT NULL ); ALTER TABLE SAKAI_REALM_RL_FN ADD ( PRIMARY KEY (REALM_KEY, ROLE_KEY, FUNCTION_KEY) ) ; CREATE INDEX FK_SAKAI_REALM_RL_FN_REALM ON SAKAI_REALM_RL_FN ( REALM_KEY ASC ); CREATE INDEX FK_SAKAI_REALM_RL_FN_FUNC ON SAKAI_REALM_RL_FN ( FUNCTION_KEY ASC ); CREATE INDEX FK_SAKAI_REALM_RL_FN_ROLE ON SAKAI_REALM_RL_FN ( ROLE_KEY ASC ); CREATE INDEX FK_SAKAI_REALM_RL_FN_FNRL ON SAKAI_REALM_RL_FN ( FUNCTION_KEY ASC, ROLE_KEY ASC ); ----------------------------------------------------------------------------- -- SAKAI_REALM_RL_GR -- role grant ----------------------------------------------------------------------------- CREATE TABLE SAKAI_REALM_RL_GR ( REALM_KEY INTEGER NOT NULL, USER_ID VARCHAR2(99) NOT NULL, ROLE_KEY INTEGER NOT NULL, ACTIVE CHAR(1) NULL CHECK (ACTIVE IN (1, 0)), PROVIDED CHAR(1) NULL CHECK (PROVIDED IN (1, 0)) ); ALTER TABLE SAKAI_REALM_RL_GR ADD ( PRIMARY KEY (REALM_KEY, USER_ID) ) ; CREATE INDEX FK_SAKAI_REALM_RL_GR_REALM ON SAKAI_REALM_RL_GR ( REALM_KEY ASC ); CREATE INDEX FK_SAKAI_REALM_RL_GR_ROLE ON SAKAI_REALM_RL_GR ( ROLE_KEY ASC ); CREATE INDEX IE_SAKAI_REALM_RL_GR_ACT ON SAKAI_REALM_RL_GR ( ACTIVE ASC ); CREATE INDEX IE_SAKAI_REALM_RL_GR_USR ON SAKAI_REALM_RL_GR ( USER_ID ASC ); CREATE INDEX IE_SAKAI_REALM_RL_GR_PRV ON SAKAI_REALM_RL_GR ( PROVIDED ASC ); CREATE INDEX SAKAI_REALM_RL_GR_RAU ON SAKAI_REALM_RL_GR ( ROLE_KEY, ACTIVE, USER_ID ); ----------------------------------------------------------------------------- -- SAKAI_REALM_LOCKS ----------------------------------------------------------------------------- CREATE TABLE SAKAI_REALM_LOCKS ( REALM_KEY INTEGER NOT NULL, REFERENCE VARCHAR2 (255) NOT NULL, LOCK_MODE INTEGER NOT NULL ); ALTER TABLE SAKAI_REALM_LOCKS ADD ( PRIMARY KEY (REALM_KEY, REFERENCE) ) ; ----------------------------------------------------------------------------- -- FOREIGN KEYS ----------------------------------------------------------------------------- ALTER TABLE SAKAI_REALM ADD ( FOREIGN KEY (MAINTAIN_ROLE) REFERENCES SAKAI_REALM_ROLE ) ; ALTER TABLE SAKAI_REALM_PROPERTY ADD ( FOREIGN KEY (REALM_KEY) REFERENCES SAKAI_REALM ) ; ALTER TABLE SAKAI_REALM_PROVIDER ADD ( FOREIGN KEY (REALM_KEY) REFERENCES SAKAI_REALM ) ; ALTER TABLE SAKAI_REALM_RL_FN ADD ( FOREIGN KEY (REALM_KEY) REFERENCES SAKAI_REALM ) ; ALTER TABLE SAKAI_REALM_RL_FN ADD ( FOREIGN KEY (ROLE_KEY) REFERENCES SAKAI_REALM_ROLE ) ; ALTER TABLE SAKAI_REALM_RL_FN ADD ( FOREIGN KEY (FUNCTION_KEY) REFERENCES SAKAI_REALM_FUNCTION ) ; ALTER TABLE SAKAI_REALM_ROLE_DESC ADD ( FOREIGN KEY (REALM_KEY) REFERENCES SAKAI_REALM ) ; ALTER TABLE SAKAI_REALM_ROLE_DESC ADD ( FOREIGN KEY (ROLE_KEY) REFERENCES SAKAI_REALM_ROLE ) ; ALTER TABLE SAKAI_REALM_RL_GR ADD ( FOREIGN KEY (REALM_KEY) REFERENCES SAKAI_REALM ) ; ALTER TABLE SAKAI_REALM_RL_GR ADD ( FOREIGN KEY (ROLE_KEY) REFERENCES SAKAI_REALM_ROLE ) ; INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, '.anon'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, '.auth'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, '.default'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'access'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'admin'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'CIG Coordinator'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'CIG Participant'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Evaluator'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Instructor'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'maintain'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Program Admin'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Program Coordinator'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'pubview'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Reviewer'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Student'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Teaching Assistant'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'annc.all.groups'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'annc.delete.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'annc.delete.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'annc.new'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'annc.read'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'annc.read.drafts'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'annc.revise.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'annc.revise.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'asn.delete'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'asn.grade'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'asn.receive.notifications'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'asn.new'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'asn.read'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'asn.revise'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'asn.submit'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'asn.all.groups'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.createAssessment'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.deleteAssessment.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.deleteAssessment.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.editAssessment.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.editAssessment.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.gradeAssessment.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.gradeAssessment.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.publishAssessment.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.publishAssessment.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.questionpool.copy.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.questionpool.create'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.questionpool.delete.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.questionpool.edit.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.submitAssessmentForGrade'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.takeAssessment'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.template.create'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.template.delete.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'assessment.template.edit.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'calendar.delete.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'calendar.delete.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'calendar.import'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'calendar.new'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'calendar.read'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'calendar.revise.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'calendar.revise.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'calendar.subscribe'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'calendar.all.groups'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'calendar.view.audience'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'chat.delete.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'chat.delete.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'chat.delete.channel'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'chat.new'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'chat.new.channel'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'chat.read'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'chat.revise.channel'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'content.delete.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'content.delete.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'content.new'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'content.read'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'content.revise.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'content.revise.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'content.all.groups'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'content.hidden'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.roletype.instructor'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.moderate'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.topic.create'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.topic.update.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.topic.update.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.topic.delete.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.topic.delete.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.topic.tag'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.topic.pin'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.tag.create'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.topic.view.groups'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.post.create'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.post.update.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.post.update.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.post.delete.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.post.delete.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.post.react'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.post.upvote'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.comment.create'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.comment.update.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.comment.update.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.comment.delete.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.comment.delete.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.anonymous.view'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'conversations.statistics.view'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'disc.delete.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'disc.delete.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'disc.new'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'disc.new.topic'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'disc.read'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'disc.revise.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'disc.revise.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'dropbox.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'dropbox.maintain'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'dropbox.maintain.own.groups'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'dropbox.write.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'dropbox.write.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'dropbox.delete.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'dropbox.delete.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'gradebook.editAssignments'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'gradebook.gradeAll'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'gradebook.gradeSection'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'gradebook.viewOwnGrades'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'mail.delete.any'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'mail.new'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'mail.read'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'msg.emailout'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'msg.permissions.allowToField.allParticipants'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'msg.permissions.allowToField.groups'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'msg.permissions.allowToField.roles'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'msg.permissions.allowToField.myGroupMembers'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'msg.permissions.allowToField.myGroups'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'msg.permissions.allowToField.users'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'msg.permissions.viewHidden.groups'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'prefs.add'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'prefs.del'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'prefs.upd'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'realm.add'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'realm.del'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'realm.upd'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'realm.upd.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'roster.export'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'roster.viewallmembers'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'roster.viewhidden'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'roster.viewofficialphoto'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'roster.viewenrollmentstatus'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'roster.viewgroup'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'roster.viewprofile'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'roster.viewsitevisits'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'section.role.instructor'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'section.role.student'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'section.role.ta'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.add'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.add.course'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.add.usersite'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.del'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.upd'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.upd.site.mbrshp'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.upd.grp.mbrshp'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.viewRoster'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.visit'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.visit.unp'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.viewRoster'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'user.add'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'user.upd.own'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'rubrics.associator'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'rubrics.editor'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'rubrics.evaluator'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'rubrics.evaluee'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'rwiki.admin'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'rwiki.create'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'rwiki.delete'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'rwiki.read'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'rwiki.superadmin'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'rwiki.update'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'mailtool.admin'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'mailtool.send'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'poll.add'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'poll.deleteAny'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'poll.deleteOwn'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'poll.editAny'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'poll.editOwn'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'poll.vote'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.add.project'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.import.archive'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'lessonbuilder.read'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'lessonbuilder.upd'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'signup.create.group'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'signup.create.group.all'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'signup.create.site'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'signup.delete.group'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'signup.delete.group.all'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'signup.delete.site'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'signup.update.group'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'signup.update.group.all'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'signup.update.site'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'signup.attend'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'signup.attend.all'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'signup.view'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'signup.view.all'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'sitestats.view'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'site.roleswap'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'sitestats.usertracking.track'); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'sitestats.usertracking.be.tracked'); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!site.helper', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.helper'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.helper'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!site.user', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.evaluee')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read.drafts')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.import')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.subscribe')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.view.audience')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.revise.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.hidden')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new.topic')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.maintain')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.editAssignments')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.gradeAll')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.viewHidden.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit.unp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.viewRoster')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.associator')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.editor')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.evaluator')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.evaluee')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!user.template', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add.usersite')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.upd.own')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!user.template.guest', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.guest'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.guest'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.guest'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.guest'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.guest'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.guest'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.guest'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add.usersite')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.guest'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.guest'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.upd.own')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!user.template.maintain', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.maintain'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.maintain'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.maintain'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.maintain'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.maintain'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.maintain'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.maintain'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.maintain'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add.course')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.maintain'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add.usersite')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.maintain'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.maintain'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.upd.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.maintain'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add.project')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!user.template.registered', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.registered'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.registered'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.registered'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.registered'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.registered'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.registered'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.registered'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.registered'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add.course')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.registered'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add.usersite')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.registered'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.registered'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.upd.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.registered'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add.project')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!user.template.sample', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.sample'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.sample'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.sample'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.sample'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'prefs.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.sample'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.sample'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.sample'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.sample'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add.course')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.sample'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add.usersite')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.sample'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.sample'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'user.upd.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!user.template.sample'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.add.project')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!site.template', '', (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.submitAssessmentForGrade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.takeAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.tag')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.react')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.write.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.evaluee')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.attend')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.view')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'sitestats.usertracking.be.tracked')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read.drafts')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.delete')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.grade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.receive.notifications')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.revise')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.createAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.deleteAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.deleteAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.editAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.editAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.gradeAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.gradeAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.publishAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.publishAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.copy.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.edit.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.template.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.template.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.template.edit.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.import')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.subscribe')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.view.audience')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.revise.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.hidden')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.roletype.instructor')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.moderate')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.update.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.tag')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.pin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.view.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.tag.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.update.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.react')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.update.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.statistics.view')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new.topic')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.maintain')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.write.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.editAssignments')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.gradeAll')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.emailout')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.viewHidden.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewgroup')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewsitevisits')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.associator')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.editor')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.evaluator')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.evaluee')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.instructor')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit.unp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.viewRoster')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.roleswap')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'sitestats.view')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'sitestats.usertracking.track')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.create.site')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.delete.site')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.update.site')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.view.all')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!site.template.course', '', (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read.drafts')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.delete')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.grade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.receive.notifications')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.revise')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.createAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.deleteAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.deleteAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.editAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.editAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.gradeAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.gradeAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.publishAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.publishAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.copy.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.edit.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.template.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.template.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.template.edit.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.import')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.subscribe')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.view.audience')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.revise.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.hidden')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.roletype.instructor')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.moderate')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.update.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.tag')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.pin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.view.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.tag.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.update.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.react')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.update.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.statistics.view')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new.topic')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.maintain')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.write.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.editAssignments')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.gradeAll')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.emailout')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.viewHidden.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewenrollmentstatus')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewhidden')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewgroup')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewofficialphoto')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewsitevisits')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.associator')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.editor')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.evaluator')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.evaluee')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.instructor')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit.unp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.viewRoster')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.roleswap')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'sitestats.view')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'sitestats.usertracking.track')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.create.site')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.delete.site')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.update.site')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.view.all')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.submitAssessmentForGrade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.takeAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.tag')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.react')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.write.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.evaluee')); -- SAK-8234 INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); -- SAK-8234 INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.attend')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.view')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'sitestats.usertracking.be.tracked')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.gradeAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.gradeAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.hidden')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.roletype.instructor')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.moderate')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.update.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.tag')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.pin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.topic.view.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.tag.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.update.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.post.react')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.update.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.update.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.comment.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'conversations.statistics.view')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.maintain.own.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.write.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.gradeSection')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.viewHidden.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewofficialphoto')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.evaluator')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rubrics.evaluee')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.ta')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.create.group')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.delete.group')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.update.group')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.attend.all')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.view.all')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!group.template', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewgroup')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.attend')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.view')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read.drafts')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.gradeAll')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.editAssignments')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.delete')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.grade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.receive.notifications')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.revise')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.import')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.subscribe')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.hidden')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.instructor')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit.unp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.viewRoster')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.create.site')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.delete.site')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.update.site')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.view.all')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!group.template.course', '', (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read.drafts')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.gradeAll')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.editAssignments')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.delete')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.grade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.receive.notifications')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.revise')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.import')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.subscribe')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.hidden')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.instructor')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit.unp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.viewRoster')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.create.site')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.delete.site')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.update.site')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.view.all')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewgroup')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.attend')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.view')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read.drafts')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.gradeSection')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.delete')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.grade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.revise')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.import')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.subscribe')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.hidden')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.maintain.own.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewhidden')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewgroup')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewsitevisits')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.ta')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.create.group')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.delete.group')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.update.group')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.attend.all')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'signup.view.all')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '/content/public/', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/content/public/'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/content/public/'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '/content/attachment/', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/content/attachment/'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/content/attachment/'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/content/attachment/'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/content/attachment/'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/content/attachment/'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/content/attachment/'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/content/attachment/'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.any')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '/announcement/channel/!site/motd', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/announcement/channel/!site/motd'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/announcement/channel/!site/motd'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!pubview', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!pubview'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'pubview'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!pubview'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'pubview'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!pubview'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'pubview'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!pubview'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'pubview'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!pubview'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'pubview'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!pubview'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'pubview'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!pubview'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'pubview'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '/site/!gateway', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/!gateway'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/!gateway'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '/site/!error', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/!error'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/!error'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '/site/!urlError', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/!urlError'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/!urlError'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '/site/mercury', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewgroup')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read.drafts')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.delete')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.grade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.receive.notifications')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.revise')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.subscribe')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.import')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.revise.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.hidden')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new.topic')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.maintain')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.editAssignments')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.gradeAll')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewenrollmentstatus')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit.unp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.viewRoster')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.roleswap')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'sitestats.view')); INSERT INTO SAKAI_REALM_RL_GR VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'),'admin', (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), '1', '0'); INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '/site/!admin', '', (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'admin'), 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/!admin'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'admin'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd')); INSERT INTO SAKAI_REALM_RL_GR VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/!admin'),'admin', (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'admin'), '1', '0'); INSERT INTO SAKAI_REALM_ROLE_DESC VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), 'Can read, revise, delete and add both content and participants to a site.', '0'); INSERT INTO SAKAI_REALM_ROLE_DESC VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), 'Can read content, and add content to a site where appropriate.', '0'); INSERT INTO SAKAI_REALM_ROLE_DESC VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), 'Can read, add, and revise most content in their sections.', '0'); INSERT INTO SAKAI_REALM_ROLE_DESC VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), 'Can read, revise, delete and add both content and participants to a site.', '0'); INSERT INTO SAKAI_REALM_ROLE_DESC VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), 'Can read content, and add content to a site where appropriate.', '0'); INSERT INTO SAKAI_REALM_ROLE_DESC VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), 'Can read, add, and revise most content in their sections.', '0'); -- Roles for adding .auth/.anon to a site. INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!site.roles', '', NULL, 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.anon'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.auth'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.default'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.default'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.default'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.default'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.default'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.default'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.roles'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = '.default'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); ---------------------------------------------------------------------------------------------------------------------------------------- -- SAK-9327 - Poll tool default authz permissions ---------------------------------------------------------------------------------------------------------------------------------------- -- maintain role INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.deleteAny')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.deleteOwn')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.editAny')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.editOwn')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.vote')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.deleteAny')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.deleteOwn')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.editAny')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.editOwn')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.vote')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.deleteAny')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.deleteOwn')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.editAny')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.editOwn')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.vote')); -- access role INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.vote')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.vote')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.vote')); -- Instructor role INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.deleteAny')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.deleteOwn')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.editAny')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.editOwn')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.vote')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.add')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.deleteAny')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.deleteOwn')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.editAny')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.editOwn')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.vote')); -- Teaching Assistant role INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.vote')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.vote')); -- Student role INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.vote')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!group.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'poll.vote')); -- KNL-879 add IMS/LIS roles INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Faculty'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Member'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Learner'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Mentor'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Staff'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Alumni'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'ProspectiveStudent'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Guest'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Other'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Administrator'); INSERT INTO SAKAI_REALM_ROLE VALUES (SAKAI_REALM_ROLE_SEQ.NEXTVAL, 'Observer'); -- Note that other roles already imported are: Student, Instructor -- KNL-879 create a new site type INSERT INTO SAKAI_REALM VALUES (SAKAI_REALM_SEQ.NEXTVAL, '!site.template.lti', '', (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), 'admin', 'admin', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); -- KNL-879 add the relevant IMS/LIS roles and permissions to that site type -- All roles are identical to 'access' with the following exceptions: -- Instructor,Administrator=maintain -- Guest, Observer are the same as access but with some write permissions removed -- Student INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.submitAssessmentForGrade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.takeAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); -- Faculty INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.submitAssessmentForGrade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.takeAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.viewHidden.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.roleswap')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Faculty'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'sitestats.view')); -- Member INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.submitAssessmentForGrade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.takeAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Member'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); -- Learner INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.submitAssessmentForGrade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.takeAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Learner'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); -- Mentor INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.submitAssessmentForGrade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.takeAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.viewHidden.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Mentor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); -- Staff INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.submitAssessmentForGrade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.takeAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.viewHidden.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Staff'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); -- Alumni INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.submitAssessmentForGrade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.takeAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Alumni'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); -- ProspectiveStudent INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.submitAssessmentForGrade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.takeAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'ProspectiveStudent'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); -- Other INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.submitAssessmentForGrade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.takeAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Other'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); -- Guest INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Guest'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); -- Observer INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.viewOwnGrades')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.viewHidden.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.student')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Observer'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); -- Administrator INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read.drafts')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.delete')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.grade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.receive.notifications')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.revise')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.createAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.deleteAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.deleteAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.editAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.editAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.gradeAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.gradeAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.publishAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.publishAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.copy.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.edit.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.template.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.template.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.template.edit.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.subscribe')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.import')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.revise.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.hidden')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new.topic')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.maintain')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.editAssignments')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.gradeAll')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.emailout')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.viewHidden.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewgroup')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewsitevisits')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.instructor')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit.unp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.viewRoster')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.roleswap')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Administrator'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'sitestats.view')); -- Instructor INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.read.drafts')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'annc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.delete')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.grade')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.receive.notifications')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.revise')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'asn.submit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.createAssessment')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.deleteAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.deleteAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.editAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.editAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.gradeAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.gradeAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.publishAssessment.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.publishAssessment.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.copy.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.questionpool.edit.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.template.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.template.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'assessment.template.edit.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.subscribe')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.import')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.view.audience')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.delete.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.new.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'chat.revise.channel')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.hidden')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'content.all.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.delete.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.new.topic')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'disc.revise.own')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'dropbox.maintain')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.editAssignments')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'gradebook.gradeAll')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.delete.any')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.new')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mail.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.emailout')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.allParticipants')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.roles')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroupMembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.myGroups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.allowToField.users')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'msg.permissions.viewHidden.groups')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'realm.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.export')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewallmembers')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewgroup')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewprofile')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'roster.viewsitevisits')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.create')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'rwiki.update')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'section.role.instructor')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.del')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.site.mbrshp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.upd.grp.mbrshp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.visit.unp')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.viewRoster')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.send')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'mailtool.admin')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.read')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'lessonbuilder.upd')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'site.roleswap')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.lti'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'sitestats.view')); -- KNL-1002 / SAK-22549 add calendar.options to all default roles where applicable INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'calendar.options'); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.options')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.options')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.options')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.options')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Student'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.options')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.options')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'access'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.options')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'calendar.options')); -- SAK-30141 add new syllabus permissions to all default roles where applicable INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'syllabus.add.item'); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.add.item')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.add.item')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.add.item')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.add.item')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.add.item')); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'syllabus.bulk.add.item'); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.bulk.add.item')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.bulk.add.item')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.bulk.add.item')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.bulk.add.item')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.bulk.add.item')); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'syllabus.bulk.edit.item'); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.bulk.edit.item')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.bulk.edit.item')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.bulk.edit.item')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.bulk.edit.item')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.bulk.edit.item')); INSERT INTO SAKAI_REALM_FUNCTION VALUES (SAKAI_REALM_FUNCTION_SEQ.NEXTVAL, 'syllabus.redirect'); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.user'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.redirect')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.redirect')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Instructor'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.redirect')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '!site.template.course'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'Teaching Assistant'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.redirect')); INSERT INTO SAKAI_REALM_RL_FN VALUES((select REALM_KEY from SAKAI_REALM where REALM_ID = '/site/mercury'), (select ROLE_KEY from SAKAI_REALM_ROLE where ROLE_NAME = 'maintain'), (select FUNCTION_KEY from SAKAI_REALM_FUNCTION where FUNCTION_NAME = 'syllabus.redirect'));