DBModel.sql 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  1. create or replace function update_db_model() returns void as
  2. $$
  3. begin
  4. ------------------------------------------------------------------------------------------------
  5. --
  6. if not exists(select * from information_schema.tables
  7. where
  8. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  9. and table_name = 'carrier_data') then
  10. CREATE TABLE "carrier_data"
  11. (
  12. "guid" text NOT NULL,
  13. "load_time" timestamp without time zone,
  14. "unload_time" timestamp without time zone,
  15. "rfid" text,
  16. "lot_id" text,
  17. "product_category" text,
  18. "station" text,
  19. CONSTRAINT "carrier_data_pkey" PRIMARY KEY ("guid" )
  20. )
  21. WITH (
  22. OIDS=FALSE
  23. );
  24. ALTER TABLE "carrier_data"
  25. OWNER TO postgres;
  26. GRANT SELECT ON TABLE "carrier_data" TO postgres;
  27. end if;
  28. ------------------------------------------------------------------------------------------------
  29. --
  30. if not exists(select * from information_schema.tables
  31. where
  32. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  33. and table_name = 'wafer_data') then
  34. CREATE TABLE "wafer_data"
  35. (
  36. "guid" text NOT NULL,
  37. "create_time" timestamp without time zone,
  38. "delete_time" timestamp without time zone,
  39. "carrier_data_guid" text,
  40. "create_station" text,
  41. "create_slot" text,
  42. "process_data_guid" text,
  43. "wafer_id" text,
  44. "lasermarker1" text,
  45. "lasermarker2" text,
  46. "lasermarker3" text,
  47. "t7code1" text,
  48. "t7code2" text,
  49. "t7code3" text,
  50. "pj_data_guid" text,
  51. "lot_data_guid" text,
  52. CONSTRAINT "wafer_data_pkey" PRIMARY KEY ("guid" )
  53. )
  54. WITH (
  55. OIDS=FALSE
  56. );
  57. ALTER TABLE "wafer_data"
  58. OWNER TO postgres;
  59. GRANT SELECT ON TABLE "wafer_data" TO postgres;
  60. end if;
  61. ------------------------------------------------------------------------------------------------
  62. --
  63. if not exists(select * from information_schema.tables
  64. where
  65. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  66. and table_name = 'user') then
  67. CREATE TABLE "user"
  68. (
  69. "No" serial PRIMARY KEY,
  70. "UserName" VARCHAR(100),
  71. "Role" VARCHAR(100),
  72. "Password" VARCHAR(100),
  73. "Notes" text
  74. )
  75. WITH (
  76. OIDS=FALSE
  77. );
  78. ALTER TABLE "user"
  79. OWNER TO postgres;
  80. GRANT SELECT ON TABLE "user" TO postgres;
  81. end if;
  82. ------------------------------------------------------------------------------------------------
  83. --
  84. if not exists(select * from information_schema.tables
  85. where
  86. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  87. and table_name = 'event_data') then
  88. CREATE TABLE "event_data"
  89. (
  90. "gid" serial NOT NULL,
  91. "event_id" integer,
  92. "event_enum" text,
  93. "type" text,
  94. "source" text,
  95. "description" text,
  96. "level" text,
  97. "occur_time" timestamp without time zone,
  98. CONSTRAINT "event_data_pkey" PRIMARY KEY ("gid" )
  99. )
  100. WITH (
  101. OIDS=FALSE
  102. );
  103. --ALTER TABLE "EventManager"
  104. --OWNER TO postgres;
  105. GRANT ALL ON TABLE "event_data" TO postgres;
  106. GRANT SELECT ON TABLE "event_data" TO postgres;
  107. CREATE INDEX "event_data_occur_time_event_id_idx"
  108. ON "event_data"
  109. USING btree
  110. ("occur_time" , "event_id" );
  111. end if;
  112. ------------------------------------------------------------------------------------------------
  113. --
  114. if not exists(select * from information_schema.tables
  115. where
  116. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  117. and table_name = 'wafer_move_history') then
  118. CREATE TABLE "wafer_move_history"
  119. (
  120. "gid" serial NOT NULL,
  121. "wafer_data_guid" text,
  122. "arrive_time" timestamp without time zone,
  123. "station" text,
  124. "slot" text,
  125. "status" text,
  126. CONSTRAINT "wafer_move_history_pkey" PRIMARY KEY ("gid" )
  127. )
  128. WITH (
  129. OIDS=FALSE
  130. );
  131. ALTER TABLE "wafer_move_history"
  132. OWNER TO postgres;
  133. GRANT SELECT ON TABLE "wafer_move_history" TO postgres;
  134. end if;
  135. ------------------------------------------------------------------------------------------------
  136. --
  137. if not exists(select * from information_schema.tables
  138. where
  139. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  140. and table_name = 'process_data') then
  141. CREATE TABLE "process_data"
  142. (
  143. "guid" text NOT NULL,
  144. "process_begin_time" timestamp without time zone,
  145. "process_end_time" timestamp without time zone,
  146. "recipe_name" text,
  147. "chuck_name" text,
  148. "dechuck_name" text,
  149. "process_status" text,
  150. "wafer_data_guid" text,
  151. "process_in" text,
  152. "recipe_type" text,
  153. CONSTRAINT "process_data_pkey" PRIMARY KEY ("guid" )
  154. )
  155. WITH (
  156. OIDS=FALSE
  157. );
  158. ALTER TABLE "process_data"
  159. OWNER TO postgres;
  160. GRANT SELECT ON TABLE "process_data" TO postgres;
  161. end if;
  162. ------------------------------------------------------------------------------------------------
  163. if not exists(select * from information_schema.COLUMNS
  164. where
  165. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  166. and table_name = 'process_data' and column_name = 'recipe_type')
  167. then
  168. ALTER TABLE "process_data" ADD COLUMN "recipe_type" TEXT;
  169. ALTER TABLE "process_data"
  170. OWNER TO postgres;
  171. GRANT SELECT ON TABLE "process_data" TO postgres;
  172. end if ;
  173. ------------------------------------------------------------------------------------------------
  174. --
  175. if not exists(select * from information_schema.tables
  176. where
  177. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  178. and table_name = 'stats_data') then
  179. CREATE TABLE "stats_data"
  180. (
  181. "name" text,
  182. "value" integer,
  183. "total" integer,
  184. "description" text,
  185. "last_update_time" timestamp without time zone,
  186. "last_reset_time" timestamp without time zone,
  187. "last_total_reset_time" timestamp without time zone,
  188. "is_visible" boolean,
  189. "enable_warning" boolean,
  190. "warning_value" integer,
  191. "enable_alarm" boolean,
  192. "alarm_value" integer,
  193. CONSTRAINT "stats_data_pkey" PRIMARY KEY ("name" )
  194. )
  195. WITH (
  196. OIDS=FALSE
  197. );
  198. ALTER TABLE "stats_data"
  199. OWNER TO postgres;
  200. GRANT SELECT ON TABLE "stats_data" TO postgres;
  201. end if;
  202. ------------------------------------------------------------------------------------------------
  203. if not exists(select * from information_schema.COLUMNS
  204. where
  205. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  206. and table_name = 'stats_data' and column_name = 'enable_warning')
  207. then
  208. ALTER TABLE "stats_data" ADD COLUMN "enable_warning" TEXT;
  209. ALTER TABLE "stats_data"
  210. OWNER TO postgres;
  211. GRANT SELECT ON TABLE "stats_data" TO postgres;
  212. end if ;
  213. ------------------------------------------------------------------------------------------------
  214. if not exists(select * from information_schema.COLUMNS
  215. where
  216. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  217. and table_name = 'stats_data' and column_name = 'warning_value')
  218. then
  219. ALTER TABLE "stats_data" ADD COLUMN "warning_value" TEXT;
  220. ALTER TABLE "stats_data"
  221. OWNER TO postgres;
  222. GRANT SELECT ON TABLE "stats_data" TO postgres;
  223. end if ;
  224. ------------------------------------------------------------------------------------------------
  225. --
  226. if not exists(select * from information_schema.tables
  227. where
  228. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  229. and table_name = 'leak_check_data') then
  230. CREATE TABLE "leak_check_data"
  231. (
  232. "guid" text NOT NULL,
  233. "operate_time" timestamp without time zone,
  234. "status" text,
  235. "leak_rate" real,
  236. "start_pressure" real,
  237. "stop_pressure" real,
  238. "mode" text,
  239. "leak_check_time" integer,
  240. CONSTRAINT "leak_check_data_pkey" PRIMARY KEY ("guid" )
  241. )
  242. WITH (
  243. OIDS=FALSE
  244. );
  245. ALTER TABLE "leak_check_data"
  246. OWNER TO postgres;
  247. GRANT ALL ON TABLE "leak_check_data" TO postgres;
  248. GRANT SELECT ON TABLE "leak_check_data" TO postgres;
  249. end if;
  250. ------------------------------------------------------------------------------------------------
  251. --
  252. if not exists(select * from information_schema.tables
  253. where
  254. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  255. and table_name = 'kepler_leak_check_data') then
  256. CREATE TABLE "kepler_leak_check_data"
  257. (
  258. "guid" text NOT NULL,
  259. "operate_time" timestamp without time zone,
  260. "status" text,
  261. "leak_rate" real,
  262. "base_pressure" real,
  263. "start_pressure" real,
  264. "stop_pressure" real,
  265. "mode" text,
  266. "leak_check_time" integer,
  267. CONSTRAINT "kepler_leak_check_data_pkey" PRIMARY KEY ("guid" )
  268. )
  269. WITH (
  270. OIDS=FALSE
  271. );
  272. ALTER TABLE "kepler_leak_check_data"
  273. OWNER TO postgres;
  274. GRANT ALL ON TABLE "kepler_leak_check_data" TO postgres;
  275. GRANT SELECT ON TABLE "kepler_leak_check_data" TO postgres;
  276. end if;
  277. ------------------------------------------------------------------------------------------------
  278. --
  279. if not exists(select * from information_schema.tables
  280. where
  281. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  282. and table_name = 'cj_data') then
  283. CREATE TABLE cj_data
  284. (
  285. "guid" text NOT NULL,
  286. "start_time" timestamp without time zone,
  287. "end_time" timestamp without time zone,
  288. "carrier_data_guid" text,
  289. "name" text,
  290. "input_port" text,
  291. "output_port" text,
  292. CONSTRAINT "cj_data_pkey" PRIMARY KEY ("guid" )
  293. )
  294. WITH (
  295. OIDS=FALSE
  296. );
  297. ALTER TABLE "cj_data"
  298. OWNER TO postgres;
  299. GRANT SELECT ON TABLE "cj_data" TO postgres;
  300. end if;
  301. ------------------------------------------------------------------------------------------------
  302. --
  303. if not exists(select * from information_schema.tables
  304. where
  305. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  306. and table_name = 'mfc_verification_data') then
  307. CREATE TABLE mfc_verification_data
  308. (
  309. "module" text,
  310. "name" text,
  311. "operate_time" timestamp without time zone,
  312. "percent10_setpoint" real,
  313. "percent10_calculate" real,
  314. "percent20_setpoint" real,
  315. "percent20_calculate" real,
  316. "percent30_setpoint" real,
  317. "percent30_calculate" real,
  318. "percent40_setpoint" real,
  319. "percent40_calculate" real,
  320. "percent50_setpoint" real,
  321. "percent50_calculate" real,
  322. "percent60_setpoint" real,
  323. "percent60_calculate" real,
  324. "percent70_setpoint" real,
  325. "percent70_calculate" real,
  326. "percent80_setpoint" real,
  327. "percent80_calculate" real,
  328. "percent90_setpoint" real,
  329. "percent90_calculate" real,
  330. "percent100_setpoint" real,
  331. "percent100_calculate" real,
  332. "setpoint" real,
  333. "calculate" real,
  334. CONSTRAINT "mfc_verification_data_pkey" PRIMARY KEY ("operate_time" )
  335. )
  336. WITH (
  337. OIDS=FALSE
  338. );
  339. ALTER TABLE "mfc_verification_data"
  340. OWNER TO postgres;
  341. GRANT SELECT ON TABLE "mfc_verification_data" TO postgres;
  342. end if;
  343. ------------------------------------------------------------------------------------------------
  344. --
  345. if not exists(select * from information_schema.tables
  346. where
  347. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  348. and table_name = 'mfc_verification_data_onepoint') then
  349. CREATE TABLE mfc_verification_data_onepoint
  350. (
  351. "module" text,
  352. "name" text,
  353. "operate_time" timestamp without time zone,
  354. "setpoint" real,
  355. "calculate" real,
  356. CONSTRAINT "mfc_verification_data_onepoint_pkey" PRIMARY KEY ("operate_time" )
  357. )
  358. WITH (
  359. OIDS=FALSE
  360. );
  361. ALTER TABLE "mfc_verification_data_onepoint"
  362. OWNER TO postgres;
  363. GRANT SELECT ON TABLE "mfc_verification_data_onepoint" TO postgres;
  364. end if;
  365. ------------------------------------------------------------------------------------------------
  366. --
  367. if not exists(select * from information_schema.tables
  368. where
  369. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  370. and table_name = 'mfc_verification_data_tenpoints') then
  371. CREATE TABLE mfc_verification_data_tenpoints
  372. (
  373. "module" text,
  374. "name" text,
  375. "operate_time" timestamp without time zone,
  376. "percent10_setpoint" real,
  377. "percent10_calculate" real,
  378. "percent20_setpoint" real,
  379. "percent20_calculate" real,
  380. "percent30_setpoint" real,
  381. "percent30_calculate" real,
  382. "percent40_setpoint" real,
  383. "percent40_calculate" real,
  384. "percent50_setpoint" real,
  385. "percent50_calculate" real,
  386. "percent60_setpoint" real,
  387. "percent60_calculate" real,
  388. "percent70_setpoint" real,
  389. "percent70_calculate" real,
  390. "percent80_setpoint" real,
  391. "percent80_calculate" real,
  392. "percent90_setpoint" real,
  393. "percent90_calculate" real,
  394. "percent100_setpoint" real,
  395. "percent100_calculate" real,
  396. CONSTRAINT "mfc_verification_data_tenpoints_pkey" PRIMARY KEY ("operate_time" )
  397. )
  398. WITH (
  399. OIDS=FALSE
  400. );
  401. ALTER TABLE "mfc_verification_data_tenpoints"
  402. OWNER TO postgres;
  403. GRANT SELECT ON TABLE "mfc_verification_data_tenpoints" TO postgres;
  404. end if;
  405. ------------------------------------------------------------------------------------------------
  406. --
  407. if not exists(select * from information_schema.tables
  408. where
  409. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  410. and table_name = 'pj_data') then
  411. CREATE TABLE pj_data
  412. (
  413. "guid" text NOT NULL,
  414. "start_time" timestamp without time zone,
  415. "end_time" timestamp without time zone,
  416. "carrier_data_guid" text,
  417. "cj_data_guid" text,
  418. "name" text,
  419. "input_port" text,
  420. "output_port" text,
  421. "total_wafer_count" integer,
  422. "abort_wafer_count" integer,
  423. "unprocessed_wafer_count" integer,
  424. CONSTRAINT "pj_data_pkey" PRIMARY KEY ("guid" )
  425. )
  426. WITH (
  427. OIDS=FALSE
  428. );
  429. ALTER TABLE "pj_data"
  430. OWNER TO postgres;
  431. GRANT SELECT ON TABLE "pj_data" TO postgres;
  432. end if;
  433. ------------------------------------------------------------------------------------------------
  434. --
  435. if not exists(select * from information_schema.tables
  436. where
  437. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  438. and table_name = 'offset_data') then
  439. CREATE TABLE "offset_data"
  440. (
  441. "guid" text NOT NULL,
  442. "source_module" text NOT NULL,
  443. "source_slot" integer NOT NULL,
  444. "destination_module" text NOT NULL,
  445. "destination_slot" integer NOT NULL,
  446. "origin_module" text NOT NULL,
  447. "origin_slot" integer NOT NULL,
  448. "arm_position" text NOT NULL,
  449. "arm_pan" text NOT NULL,
  450. "offset_x" real NOT NULL,
  451. "offset_y" real NOT NULL,
  452. "offset_d" real NOT NULL,
  453. "start_time" timestamp without time zone,
  454. "end_time" timestamp without time zone,
  455. CONSTRAINT "offset_data_pkey" PRIMARY KEY ("guid","start_time","end_time")
  456. )
  457. WITH (
  458. OIDS=FALSE
  459. );
  460. ALTER TABLE "offset_data"
  461. OWNER TO postgres;
  462. GRANT SELECT ON TABLE "offset_data" TO postgres;
  463. end if;
  464. ------------------------------------------------------------------------------------------------
  465. --
  466. if not exists(select * from information_schema.tables
  467. where
  468. table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
  469. and table_name = 'stats_data_rf_pump') then
  470. CREATE TABLE "stats_data_rf_pump"
  471. (
  472. "name" text,
  473. "description" text,
  474. "last_pm_time" timestamp without time zone,
  475. "from_last_pm" real,
  476. "total" real,
  477. "pm_interval" real,
  478. "enable_alarm" boolean,
  479. CONSTRAINT "stats_data_rf_pump_pkey" PRIMARY KEY ("name" )
  480. )
  481. WITH (
  482. OIDS=FALSE
  483. );
  484. ALTER TABLE "stats_data_rf_pump"
  485. OWNER TO postgres;
  486. GRANT SELECT ON TABLE "stats_data_rf_pump" TO postgres;
  487. end if;
  488. ------------------------------------------------------------------------------------------------
  489. --
  490. end;
  491. $$
  492. language 'plpgsql';
  493. select update_db_model();
  494. CREATE OR REPLACE FUNCTION batch_delete_tables(text)
  495. RETURNS int AS
  496. $$
  497. DECLARE
  498. r RECORD;
  499. count int;
  500. BEGIN
  501. count := 0;
  502. FOR r IN SELECT tablename FROM pg_tables where tablename like $1 || '%' LOOP
  503. RAISE NOTICE 'tablename: %', r.tablename;
  504. EXECUTE 'DROP TABLE "' || r.tablename || '" CASCADE';
  505. count := count + 1;
  506. END LOOP;
  507. RETURN count;
  508. END;
  509. $$
  510. LANGUAGE 'plpgsql' VOLATILE;