[jboss-svn-commits] JBL Code SVN: r5409 - labs/jbossesb/trunk/product/docs/Install/database
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Wed Aug 2 10:19:44 EDT 2006
Author: kurt.stam at jboss.com
Date: 2006-08-02 10:19:43 -0400 (Wed, 02 Aug 2006)
New Revision: 5409
Added:
labs/jbossesb/trunk/product/docs/Install/database/JBossESB-DB-postgres.sql
Removed:
labs/jbossesb/trunk/product/docs/Install/database/JBossESB-DB.sql
Log:
adding postgres to the file name
Copied: labs/jbossesb/trunk/product/docs/Install/database/JBossESB-DB-postgres.sql (from rev 5406, labs/jbossesb/trunk/product/docs/Install/database/JBossESB-DB.sql)
Deleted: labs/jbossesb/trunk/product/docs/Install/database/JBossESB-DB.sql
===================================================================
--- labs/jbossesb/trunk/product/docs/Install/database/JBossESB-DB.sql 2006-08-02 14:06:11 UTC (rev 5408)
+++ labs/jbossesb/trunk/product/docs/Install/database/JBossESB-DB.sql 2006-08-02 14:19:43 UTC (rev 5409)
@@ -1,208 +0,0 @@
---
--- PostgreSQL database dump
---
-
--- Started on 2006-06-23 18:14:49 SA Eastern Standard Time
-
-SET client_encoding = 'LATIN1';
-SET check_function_bodies = false;
-SET client_min_messages = warning;
-
---
--- TOC entry 1378 (class 1262 OID 346681)
--- Name: rosetta; Type: DATABASE; Schema: -; Owner: postgres
---
-
-CREATE DATABASE rosetta WITH TEMPLATE = template0 ENCODING = 'LATIN1';
-
-
-\connect rosetta
-
-SET client_encoding = 'LATIN1';
-SET check_function_bodies = false;
-SET client_min_messages = warning;
-
---
--- TOC entry 1379 (class 0 OID 0)
--- Dependencies: 4
--- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres
---
-
-COMMENT ON SCHEMA public IS 'Standard public schema';
-
-
-SET search_path = public, pg_catalog;
-
-SET default_tablespace = '';
-
-SET default_with_oids = false;
-
---
--- TOC entry 1123 (class 1259 OID 346691)
--- Dependencies: 4
--- Name: batches; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
---
-
-CREATE TABLE batches (
- batch_num bigint NOT NULL,
- seq integer NOT NULL,
- data text
-);
-
-
---
--- TOC entry 1125 (class 1259 OID 346712)
--- Dependencies: 4
--- Name: object_snap; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
---
-
-CREATE TABLE object_snap (
- uid bigint NOT NULL,
- stamp bigint,
- snap_type text,
- object_uid bigint,
- batch_num bigint,
- xml_data text
-);
-
-
---
--- TOC entry 1124 (class 1259 OID 346698)
--- Dependencies: 4
--- Name: people_index; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
---
-
-CREATE TABLE people_index (
- uid bigint NOT NULL,
- stamp bigint,
- latest_snap_uid bigint,
- latest_snap_date text,
- name text,
- phone text,
- address text
-);
-
-
---
--- TOC entry 1122 (class 1259 OID 346682)
--- Dependencies: 4
--- Name: uid_table; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
---
-
-CREATE TABLE uid_table (
- uid integer NOT NULL,
- sequence_name text NOT NULL,
- last_used_uid bigint NOT NULL
-);
-
-
---
--- TOC entry 1374 (class 0 OID 346691)
--- Dependencies: 1123
--- Data for Name: batches; Type: TABLE DATA; Schema: public; Owner: postgres
---
-
-
-
---
--- TOC entry 1376 (class 0 OID 346712)
--- Dependencies: 1125
--- Data for Name: object_snap; Type: TABLE DATA; Schema: public; Owner: postgres
---
-
-
-
---
--- TOC entry 1375 (class 0 OID 346698)
--- Dependencies: 1124
--- Data for Name: people_index; Type: TABLE DATA; Schema: public; Owner: postgres
---
-
-
-
---
--- TOC entry 1373 (class 0 OID 346682)
--- Dependencies: 1122
--- Data for Name: uid_table; Type: TABLE DATA; Schema: public; Owner: postgres
---
-
-INSERT INTO uid_table (uid, sequence_name, last_used_uid) VALUES (1, '
-jbossEsb_objuid', 10500000);
-INSERT INTO uid_table (uid, sequence_name, last_used_uid) VALUES (2, 'jbossEsb_batchuid', 251000);
-
-
---
--- TOC entry 1363 (class 16386 OID 346690)
--- Dependencies: 1122 1122
--- Name: ix1_uid_table; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
---
-
-ALTER TABLE ONLY uid_table
- ADD CONSTRAINT ix1_uid_table UNIQUE (sequence_name);
-
-
---
--- TOC entry 1369 (class 16386 OID 346704)
--- Dependencies: 1124 1124
--- Name: people_index_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
---
-
-ALTER TABLE ONLY people_index
- ADD CONSTRAINT people_index_pkey PRIMARY KEY (uid);
-
-
---
--- TOC entry 1367 (class 16386 OID 346697)
--- Dependencies: 1123 1123 1123
--- Name: pkey_batches; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
---
-
-ALTER TABLE ONLY batches
- ADD CONSTRAINT pkey_batches PRIMARY KEY (batch_num, seq);
-
-
---
--- TOC entry 1372 (class 16386 OID 346718)
--- Dependencies: 1125 1125
--- Name: pkey_object_snap; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
---
-
-ALTER TABLE ONLY object_snap
- ADD CONSTRAINT pkey_object_snap PRIMARY KEY (uid);
-
-
---
--- TOC entry 1365 (class 16386 OID 346688)
--- Dependencies: 1122 1122
--- Name: uid_table_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
---
-
-ALTER TABLE ONLY uid_table
- ADD CONSTRAINT uid_table_pkey PRIMARY KEY (uid);
-
-
---
--- TOC entry 1370 (class 1259 OID 346719)
--- Dependencies: 1125 1125
--- Name: ix1_object_snap; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
---
-
-CREATE INDEX ix1_object_snap ON object_snap USING btree (batch_num, uid);
-
-
---
--- TOC entry 1380 (class 0 OID 0)
--- Dependencies: 4
--- Name: public; Type: ACL; Schema: -; Owner: postgres
---
-
-REVOKE ALL ON SCHEMA public FROM PUBLIC;
-GRANT ALL ON SCHEMA public TO PUBLIC;
-
-
--- Completed on 2006-06-23 18:14:49 SA Eastern Standard Time
-
---
--- PostgreSQL database dump complete
---
-
More information about the jboss-svn-commits
mailing list