You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(6) |
Sep
|
Oct
(19) |
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(12) |
Feb
(1) |
Mar
(4) |
Apr
(4) |
May
(32) |
Jun
(12) |
Jul
(11) |
Aug
(1) |
Sep
(6) |
Oct
(3) |
Nov
|
Dec
(10) |
2012 |
Jan
(11) |
Feb
(1) |
Mar
(3) |
Apr
(25) |
May
(53) |
Jun
(38) |
Jul
(103) |
Aug
(54) |
Sep
(31) |
Oct
(66) |
Nov
(77) |
Dec
(20) |
2013 |
Jan
(91) |
Feb
(86) |
Mar
(103) |
Apr
(107) |
May
(25) |
Jun
(37) |
Jul
(17) |
Aug
(59) |
Sep
(38) |
Oct
(78) |
Nov
(29) |
Dec
(15) |
2014 |
Jan
(23) |
Feb
(82) |
Mar
(118) |
Apr
(101) |
May
(103) |
Jun
(45) |
Jul
(6) |
Aug
(10) |
Sep
|
Oct
(32) |
Nov
|
Dec
(9) |
2015 |
Jan
(3) |
Feb
(5) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(9) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2016 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
|
1
|
2
|
3
|
4
|
5
(19) |
6
|
7
(3) |
8
|
9
|
10
(1) |
11
(4) |
12
(1) |
13
(4) |
14
|
15
|
16
|
17
|
18
|
19
|
20
(2) |
21
|
22
|
23
|
24
(1) |
25
(2) |
26
|
27
|
28
|
29
|
30
|
|
|
|
|
|
|
From: Afonso B. <aag...@gm...> - 2013-06-12 10:46:40
|
Please, i'm very new in postgres-xc and I need help with instlal moodle 2.5 with postgres-xc here is the error message Debug info: ERROR: duplicate key value violates unique constraint "mdl_cont_id_pk" DETAIL: Key (id)=(1) already exists. INSERT INTO mdl_context (contextlevel,instanceid,depth,path) VALUES($1,$2,$3,$4) RETURNING id [array ( 'contextlevel' => 50, 'instanceid' => '1', 'depth' => 0, 'path' => NULL, )] --------------------------------------------- and this are the tables that the system shows -- -- Name: mdl_context; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE mdl_context ( id bigint NOT NULL, contextlevel bigint DEFAULT 0 NOT NULL, instanceid bigint DEFAULT 0 NOT NULL, path character varying(255), depth smallint DEFAULT 0 NOT NULL ); ALTER TABLE public.mdl_context OWNER TO postgres; -- -- Name: mdl_cont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: -- ALTER TABLE ONLY mdl_context ADD CONSTRAINT mdl_cont_id_pk PRIMARY KEY (id); -- -- Name: TABLE mdl_context; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE mdl_context IS 'one of these must be set'; - -- Name: mdl_context_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE mdl_context_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.mdl_context_id_seq OWNER TO postgres; -- -- Name: mdl_context_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE mdl_context_id_seq OWNED BY mdl_context.id; -- -- Name: mdl_context_temp; Type: TABLE; Schema: public; Owner: postgres; Tablespace: -- CREATE TABLE mdl_context_temp ( id bigint NOT NULL, path character varying(255) DEFAULT ''::character varying NOT NULL, depth smallint NOT NULL ); ALTER TABLE public.mdl_context_temp OWNER TO postgres; -- -- Name: TABLE mdl_context_temp; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE mdl_context_temp IS 'Used by build_context_path() in upgrade and cron to keep context depths and paths in sync.'; Best Regards Afonso Bione |