sql stringlengths 6 1.05M |
|---|
PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE IF NOT EXISTS otgdata(bookid var(50), pageid var(50), text text, updatetime text default current_timestamp, primary key(bookid, pageid));
INSERT INTO otgdata(bookid, pageid, text) VALUES('测试1','287测试10','ddyyy好dd');
INSERT INTO otgdata(bookid, pageid, text) VALUES('测试2','287测试22','dcccc看wwd');
INSERT INTO otgdata(bookid, pageid, text) VALUES('测试3','ass测试1322','dc223cccwwd');
COMMIT;
|
-- phpMyAdmin SQL Dump
-- version 5.0.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jun 18, 2021 at 06:45 PM
-- Server version: 10.4.17-MariaDB
-- PHP Version: 8.0.1
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 */;
--
-- Database: `driver_app`
--
-- --------------------------------------------------------
--
-- Table structure for table `customers`
--
CREATE TABLE `customers` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`customer_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`mobile_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`cnic_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`date_of_birth` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`publication_status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `customers`
--
INSERT INTO `customers` (`id`, `user_id`, `customer_name`, `mobile_no`, `cnic_no`, `date_of_birth`, `address`, `publication_status`, `created_at`, `updated_at`) VALUES
(1, 3, 'Zahid333', '03081312527333', '12312333333', '2021-06-29', '33333', NULL, '2021-06-18 08:15:48', '2021-06-18 10:29:26');
-- --------------------------------------------------------
--
-- Table structure for table `drivers`
--
CREATE TABLE `drivers` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`mobile_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`whatsapp_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`cnic_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`date_of_birth` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`domicile` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`vehicle_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`vehicle_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`license_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`publication_status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `drivers`
--
INSERT INTO `drivers` (`id`, `user_id`, `name`, `mobile_no`, `whatsapp_no`, `cnic_no`, `date_of_birth`, `domicile`, `vehicle_no`, `vehicle_type`, `license_no`, `image`, `publication_status`, `created_at`, `updated_at`) VALUES
(1, 1, 'Zahid', '03081312527', '12312312', '3220331075889', '1999-12-03', 'layyah1', 'lyl-5000', 'bike', '12131313', '189971080_103381295295338_6498240180963945539_n.jpg', NULL, '2021-06-17 15:49:29', '2021-06-18 10:24:37'),
(3, 4, 'Amir', '03081312527', '42342342', '423423423423432', '2021-06-16', NULL, NULL, NULL, NULL, 'pOYS378.jpg', NULL, '2021-06-18 10:36:25', '2021-06-18 11:13:13');
-- --------------------------------------------------------
--
-- Table structure for table `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(9, '2014_10_12_000000_create_users_table', 1),
(10, '2014_10_12_100000_create_password_resets_table', 1),
(11, '2019_08_19_000000_create_failed_jobs_table', 1),
(12, '2021_06_17_153117_create_drivers_table', 1),
(13, '2021_06_17_170854_create_customers_table', 2);
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`role` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `role`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'Zahid', '<EMAIL>', NULL, '$2y$10$.72G7t42KAFbk7p2nwwPUuKfIXqpXAW0RKkkvoExM6hoJiLDIXY3u', 'driver', NULL, '2021-06-17 15:49:29', '2021-06-17 15:49:29'),
(2, 'customer', '<EMAIL>', NULL, '$2y$10$IYoq00hUXcQmzfMDREtweutXO2fq5XnTvaDuYrb0.sNjQYmxI2k2K', 'customer', NULL, '2021-06-17 15:51:44', '2021-06-17 15:51:44'),
(3, 'khan', '<EMAIL>', NULL, '$2y$10$0Foj6jV7B8tMjez.CGWeXO89pzXQdYhU0AV3mc2W8CVwP.z57SEaa', 'customer', NULL, '2021-06-18 08:15:47', '2021-06-18 08:15:47'),
(4, 'Zahid', '<EMAIL>', NULL, '$2y$10$A8dnNitak.hACLZCLB9R4ef3KoeUer4weuJBey8nlDL5QicNPK.62', 'driver', NULL, '2021-06-18 10:36:25', '2021-06-18 10:36:25');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `customers`
--
ALTER TABLE `customers`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `drivers`
--
ALTER TABLE `drivers`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `customers`
--
ALTER TABLE `customers`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `drivers`
--
ALTER TABLE `drivers`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
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 */;
|
<filename>php/CE_amf_zero.sql
-- Tempo de geração: 16/02/2018 às 15:37
-- Versão do servidor: 5.5.51-38.2
-- Versão do PHP: 5.6.30
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 */;
-- --------------------------------------------------------
--
-- Estrutura para tabela `sessao`
--
CREATE TABLE IF NOT EXISTS `sessao` (
`id_sessao` int(11) NOT NULL,
`id_usuario` int(11) NOT NULL,
`momento` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Estrutura para tabela `usuario`
--
CREATE TABLE IF NOT EXISTS `usuario` (
`id_usuario` int(11) NOT NULL,
`nome` varchar(50) NOT NULL,
`senha` varchar(20) NOT NULL,
`email` varchar(100) NOT NULL,
`id_sessao` int(11) NOT NULL,
`excluido` tinyint(1) NOT NULL DEFAULT '0',
`momento` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
INSERT INTO `usuario` (`id_usuario`, `nome`, `senha`, `email`, `id_sessao`, `excluido`) VALUES
(1, 'RADISKE', 'g(Ù}', '<EMAIL>', 0, 0),
(2, 'FÁBIO', 'JÙ¨', '<EMAIL>', 0, 0);
-- --------------------------------------------------------
--
-- Estrutura para tabela `curso`
--
CREATE TABLE IF NOT EXISTS `curso` (
`id_curso` int(11) NOT NULL,
`nome` varchar(100) NOT NULL,
`logo` longblob,
`id_sessao` int(11) NOT NULL,
`excluido` tinyint(1) NOT NULL DEFAULT '0',
`momento` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Estrutura para tabela `evento_tipo`
--
CREATE TABLE IF NOT EXISTS `evento_tipo` (
`id_evento_tipo` int(11) NOT NULL,
`nome` varchar(200) NOT NULL,
`cor` int(11) NOT NULL DEFAULT '0',
`id_sessao` int(11) NOT NULL,
`excluido` tinyint(1) NOT NULL DEFAULT '0',
`momento` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Estrutura para tabela `evento`
--
CREATE TABLE IF NOT EXISTS `evento` (
`id_evento` int(11) NOT NULL,
`nome` varchar(200) NOT NULL,
`descricao` text,
`localizacao` varchar(200) DEFAULT NULL,
`data_hora_inicio` datetime DEFAULT NULL,
`data_hora_termino` datetime DEFAULT NULL,
`data_hora_atualizacao` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`lembrete` smallint(6) NOT NULL DEFAULT '0',
`ativo` tinyint(1) NOT NULL,
`id_evento_tipo` int(11) NOT NULL,
`id_curso` int(11) NOT NULL,
`id_recorrencia` tinyint(4) DEFAULT NULL,
`id_evento_origem` int(11) DEFAULT NULL,
`id_sessao` int(11) NOT NULL,
`excluido` tinyint(1) DEFAULT '0',
`momento` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Índices de tabela `curso`
--
ALTER TABLE `curso`
ADD PRIMARY KEY (`id_curso`);
--
-- Índices de tabela `evento`
--
ALTER TABLE `evento`
ADD PRIMARY KEY (`id_evento`);
--
-- Índices de tabela `evento_tipo`
--
ALTER TABLE `evento_tipo`
ADD PRIMARY KEY (`id_evento_tipo`);
--
-- Índices de tabela `sessao`
--
ALTER TABLE `sessao`
ADD PRIMARY KEY (`id_sessao`);
--
-- Índices de tabela `usuario`
--
ALTER TABLE `usuario`
ADD PRIMARY KEY (`id_usuario`);
--
-- AUTO_INCREMENT de tabela `curso`
--
ALTER TABLE `curso`
MODIFY `id_curso` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=1;
--
-- AUTO_INCREMENT de tabela `evento`
--
ALTER TABLE `evento`
MODIFY `id_evento` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=1;
--
-- AUTO_INCREMENT de tabela `evento_tipo`
--
ALTER TABLE `evento_tipo`
MODIFY `id_evento_tipo` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=1;
--
-- AUTO_INCREMENT de tabela `sessao`
--
ALTER TABLE `sessao`
MODIFY `id_sessao` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=1;
--
-- AUTO_INCREMENT de tabela `usuario`
--
ALTER TABLE `usuario`
MODIFY `id_usuario` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
/*!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 */;
|
<filename>itms23022015.sql
/*
Navicat MySQL Data Transfer
Source Server : Mysql Server Development
Source Server Version : 50516
Source Host : 192.168.0.106:3306
Source Database : itms
Target Server Type : MYSQL
Target Server Version : 50516
File Encoding : 65001
Date: 2015-02-23 10:35:50
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `autoemail`
-- ----------------------------
DROP TABLE IF EXISTS `autoemail`;
CREATE TABLE `autoemail` (
`id` int(11) NOT NULL,
`id_job_daily_report` int(10) DEFAULT NULL,
`mailto` varchar(255) DEFAULT NULL,
`mailfrom` varchar(255) DEFAULT NULL,
`cc` varchar(255) DEFAULT NULL,
`judul` varchar(100) DEFAULT NULL,
`subject` varchar(100) DEFAULT NULL,
`message` varchar(1000) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`status_sent` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of autoemail
-- ----------------------------
-- ----------------------------
-- Table structure for `backup_db_daily`
-- ----------------------------
DROP TABLE IF EXISTS `backup_db_daily`;
CREATE TABLE `backup_db_daily` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`id_master_DB` int(10) DEFAULT NULL,
`period` varchar(255) DEFAULT NULL,
`user_backup` int(10) DEFAULT NULL,
`backup_date` date DEFAULT NULL,
`id_master_status` int(10) DEFAULT NULL,
`remark` text,
`approval_dba` int(10) DEFAULT NULL,
`approval_itd_dev` int(10) DEFAULT NULL,
`receiver_date` date DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`status_activated` int(10) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=124 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of backup_db_daily
-- ----------------------------
INSERT INTO `backup_db_daily` VALUES ('35', '2', '2014-02', '1', '2014-02-01', '20', 'cccccccccc', '1', '1', null, '2014-06-16 16:35:12', '1', '2015-01-14 02:47:17', '1', '0');
INSERT INTO `backup_db_daily` VALUES ('36', '2', '2014-02', '1', '2014-02-02', '19', 'dddddddddddd', '1', '1', null, '2014-06-16 16:35:12', '1', '2015-01-02 10:33:14', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('37', '2', '2014-02', '1', '2014-02-03', '20', 'aaaaaaaaa', '1', '1', null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('38', '2', '2014-02', '1', '2014-02-04', '20', 'bbbb', '1', null, null, '2014-06-16 16:35:12', '1', '2015-01-02 10:03:19', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('39', '2', '2014-02', '1', '2014-02-05', '19', 'cccc', '1', null, null, '2014-06-16 16:35:12', '1', '2015-01-02 10:45:11', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('40', '2', '2014-02', '1', '2014-02-06', '20', '', '1', null, null, '2014-06-16 16:35:12', '1', '2015-01-02 10:47:59', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('41', '2', '2014-02', '1', '2014-02-07', '20', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('42', '2', '2014-02', '1', '2014-02-08', '19', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('43', '2', '2014-02', '1', '2014-02-09', '19', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('44', '2', '2014-02', '1', '2014-02-10', '19', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('45', '2', '2014-02', '1', '2014-02-11', '20', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('46', '2', '2014-02', '1', '2014-02-12', '20', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('47', '2', '2014-02', '1', '2014-02-13', '20', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('48', '2', '2014-02', '1', '2014-02-14', '20', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('49', '2', '2014-02', '1', '2014-02-15', '2', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('50', '2', '2014-02', '1', '2014-02-16', '2', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('51', '2', '2014-02', '1', '2014-02-17', '2', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('52', '2', '2014-02', '1', '2014-02-18', '2', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('53', '2', '2014-02', '1', '2014-02-19', '2', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('54', '2', '2014-02', '1', '2014-02-20', '2', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('55', '2', '2014-02', '1', '2014-02-21', '2', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('56', '2', '2014-02', '1', '2014-02-22', '2', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('57', '2', '2014-02', '1', '2014-02-23', '2', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('58', '2', '2014-02', '1', '2014-02-24', '2', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('59', '2', '2014-02', '1', '2014-02-25', '2', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('60', '2', '2014-02', '1', '2014-02-26', '2', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('61', '2', '2014-02', '1', '2014-02-27', '2', '', null, null, null, '2014-06-16 16:35:12', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('90', '2', '2014-02', '1', '2014-02-28', '2', '', null, null, null, '2014-06-18 16:39:43', '1', '2014-06-18 16:39:43', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('91', '1', '2014-06', '1', '2014-06-01', '2', 'aaaa', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('92', '1', '2014-06', '1', '2014-06-02', '2', 'bbbb', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('93', '1', '2014-06', '1', '2014-06-03', '2', 'cccc', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('94', '1', '2014-06', '1', '2014-06-04', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('95', '1', '2014-06', '1', '2014-06-05', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('96', '1', '2014-06', '1', '2014-06-06', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('97', '1', '2014-06', '1', '2014-06-07', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('98', '1', '2014-06', '1', '2014-06-08', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('99', '1', '2014-06', '1', '2014-06-09', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('100', '1', '2014-06', '1', '2014-06-10', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('101', '1', '2014-06', '1', '2014-06-11', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('102', '1', '2014-06', '1', '2014-06-12', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('103', '1', '2014-06', '1', '2014-06-13', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('104', '1', '2014-06', '1', '2014-06-14', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('105', '1', '2014-06', '1', '2014-06-15', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('106', '1', '2014-06', '1', '2014-06-16', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('107', '1', '2014-06', '1', '2014-06-17', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('108', '1', '2014-06', '1', '2014-06-18', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('109', '1', '2014-06', '1', '2014-06-19', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('110', '1', '2014-06', '1', '2014-06-20', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('111', '1', '2014-06', '1', '2014-06-21', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('112', '1', '2014-06', '1', '2014-06-22', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('113', '1', '2014-06', '1', '2014-06-23', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('114', '1', '2014-06', '1', '2014-06-24', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('115', '1', '2014-06', '1', '2014-06-25', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('116', '1', '2014-06', '1', '2014-06-26', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('117', '1', '2014-06', '1', '2014-06-27', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('118', '1', '2014-06', '1', '2014-06-28', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('119', '1', '2014-06', '1', '2014-06-29', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('120', '1', '2014-06', '1', '2014-06-30', '2', '', null, null, null, '2014-06-19 15:16:16', '1', '2014-06-19 15:16:16', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('121', '3', '2014-11', '1', '2014-11-13', '19', 'tes lagi\r\n', null, null, null, '2014-12-29 07:16:08', '1', '2014-12-29 07:49:20', '1', '0');
INSERT INTO `backup_db_daily` VALUES ('122', '3', '2015-01', '1', '2015-01-14', '20', 'cacsacaca', null, null, null, '2015-01-14 08:15:43', '1', '2015-01-23 08:00:29', '1', '1');
INSERT INTO `backup_db_daily` VALUES ('123', '5', '2015-06', '4', '2015-01-08', '19', 'Remark Test Edit', '1', '1', null, '2015-02-21 05:20:38', '4', '2015-02-21 05:21:32', '4', '0');
-- ----------------------------
-- Table structure for `backup_db_monthly`
-- ----------------------------
DROP TABLE IF EXISTS `backup_db_monthly`;
CREATE TABLE `backup_db_monthly` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`id_master_DB` int(10) DEFAULT NULL,
`period` varchar(255) DEFAULT NULL,
`user_backup` int(10) DEFAULT NULL,
`backup_date` date DEFAULT NULL,
`id_master_status` int(10) DEFAULT NULL,
`remark` text,
`approval_dba` int(10) DEFAULT NULL,
`approval_itd_dev` int(10) DEFAULT NULL,
`approval_itd_head_dev` int(10) DEFAULT NULL,
`receiver_date` date DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`status_activated` int(10) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `id_master_DB1` (`id_master_DB`),
KEY `id_master_status1` (`id_master_status`),
KEY `status_activated1` (`status_activated`),
CONSTRAINT `id_master_DB1` FOREIGN KEY (`id_master_DB`) REFERENCES `master_db` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `id_master_status1` FOREIGN KEY (`id_master_status`) REFERENCES `master_status` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of backup_db_monthly
-- ----------------------------
INSERT INTO `backup_db_monthly` VALUES ('55', '1', '2014-01', '1', '2014-06-01', '20', 'aaaaccqq', '1', '1', '1', null, '2014-06-18 14:14:55', '1', '2015-01-02 10:53:17', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('56', '1', '2014-02', '1', '2014-06-02', '20', 'aaaabddqq', '1', null, null, null, '2014-06-18 14:14:55', '1', '2014-06-18 15:50:07', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('57', '1', '2014-03', '1', '2014-06-03', '19', 'aaaabeeqq', '1', '1', null, null, '2014-06-18 14:14:55', '1', '2014-06-18 15:50:07', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('58', '1', '2014-04', '1', null, '19', 'avsssqqqq', '1', '1', '1', null, '2014-06-18 14:14:55', '1', '2014-06-18 15:50:07', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('59', '1', '2014-05', '1', null, '19', '', null, null, null, null, '2014-06-18 14:14:55', '1', '2014-06-18 15:50:07', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('60', '1', '2014-06', '1', null, '20', '', null, null, null, null, '2014-06-18 14:14:55', '1', '2014-06-18 15:50:07', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('61', '1', '2014-07', '1', null, '19', '', null, null, null, null, '2014-06-18 14:14:55', '1', '2014-06-18 15:50:07', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('62', '1', '2014-08', '1', null, '19', '', null, null, null, null, '2014-06-18 14:14:55', '1', '2014-06-18 15:50:07', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('63', '1', '2014-09', '1', null, '20', '', null, null, null, null, '2014-06-18 14:14:55', '1', '2014-06-18 15:50:07', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('64', '1', '2014-10', '1', null, '20', '', null, null, null, null, '2014-06-18 14:14:55', '1', '2014-06-18 15:50:07', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('65', '1', '2014-11', '1', null, '2', '', null, null, null, null, '2014-06-18 14:14:55', '1', '2014-06-18 15:50:07', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('66', '1', '2014-12', '1', null, '2', '', null, null, null, null, '2014-06-18 14:14:55', '1', '2014-06-18 15:50:07', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('67', '2', '2014-01', '1', '2014-06-01', '2', 'aaabbb', null, null, null, null, '2014-06-18 15:19:21', '1', '2014-06-18 15:51:33', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('68', '2', '2014-02', '1', '2014-06-02', '2', 'bbbccc', null, null, null, null, '2014-06-18 15:19:21', '1', '2014-06-18 15:51:33', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('69', '2', '2014-03', '1', '2014-06-03', '2', 'cccddd', null, null, null, null, '2014-06-18 15:19:21', '1', '2014-06-18 15:51:33', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('70', '2', '2014-04', '1', '2014-06-04', '2', 'dddeee', null, null, null, null, '2014-06-18 15:19:21', '1', '2014-06-18 15:51:33', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('71', '2', '2014-05', '1', null, '2', '', null, null, null, null, '2014-06-18 15:19:21', '1', '2014-06-18 15:51:33', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('72', '2', '2014-06', '1', null, '2', '', null, null, null, null, '2014-06-18 15:19:21', '1', '2014-06-18 15:51:33', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('73', '2', '2014-07', '1', null, '2', '', null, null, null, null, '2014-06-18 15:19:21', '1', '2014-06-18 15:51:33', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('74', '2', '2014-08', '1', null, '2', '', null, null, null, null, '2014-06-18 15:19:21', '1', '2014-06-18 15:51:33', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('75', '2', '2014-09', '1', null, '2', '', null, null, null, null, '2014-06-18 15:19:21', '1', '2014-06-18 15:51:33', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('76', '2', '2014-10', '1', null, '2', '', null, null, null, null, '2014-06-18 15:19:21', '1', '2014-06-18 15:51:33', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('77', '2', '2014-11', '1', null, '2', '', null, null, null, null, '2014-06-18 15:19:21', '1', '2014-06-18 15:51:33', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('78', '2', '2014-12', '1', null, '2', '', null, null, null, null, '2014-06-18 15:19:21', '1', '2014-06-18 15:51:33', '1', '1');
INSERT INTO `backup_db_monthly` VALUES ('79', '1', '2014-11', '1', '2014-11-30', '20', 'tes lagi', '1', '1', '1', null, '2014-12-29 08:57:02', '1', '2015-02-21 05:27:28', '1', '0');
-- ----------------------------
-- Table structure for `chat_history`
-- ----------------------------
DROP TABLE IF EXISTS `chat_history`;
CREATE TABLE `chat_history` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`id_user` int(10) DEFAULT NULL,
`message_chat` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL,
`attach` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`log` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of chat_history
-- ----------------------------
-- ----------------------------
-- Table structure for `design_apps`
-- ----------------------------
DROP TABLE IF EXISTS `design_apps`;
CREATE TABLE `design_apps` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`project_id` int(10) DEFAULT NULL,
`design_table_file` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`desc_table_file` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`design_form_file` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`desc_form_file` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`rule` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`remark` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`requirement_testing` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`sit` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`sit_date` date DEFAULT NULL,
`status_sit` int(10) DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `project_id1` (`project_id`),
KEY `user_created7` (`user_created`),
KEY `user_updated7` (`user_updated`),
KEY `status_sit1` (`status_sit`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of design_apps
-- ----------------------------
INSERT INTO `design_apps` VALUES ('1', '1', null, 'Design table IT Management System - IT Development', null, 'Design Form IT Management System - IT Development Staff', 'Melakukan desain pada tabel dan form', 'IT Management System adalah sistem untuk memanajemen IT Development dalam pengerjaan sebuah proyek aplikasi', 'coba requirement', 'coba sit', '2014-12-16', '14', '1', '1', '2014-12-16 06:17:59', '2015-01-20 07:09:17');
INSERT INTO `design_apps` VALUES ('2', '4', '4.txt', 'coba donk', '4.pdf', 'lagi coba', 'tes lagi', 'tes lagi donk aahhh', 'Coba isi dulu aahhhh', 'Coba isi data testing', '2014-12-23', '13', '1', '1', '2014-12-22 01:57:42', '2014-12-22 09:38:02');
INSERT INTO `design_apps` VALUES ('3', '2', '2.pdf', 'veavavavaveavea', '2.pdf', 'evavavavavae', 'rule design', 'remark design', 'csacsaca', 'ceaeacacea', '2015-01-21', '13', '1', '1', '2015-01-19 06:44:42', '2015-01-23 10:40:33');
INSERT INTO `design_apps` VALUES ('4', '10', '10-designtable.jpg', 'Testing Design Table edit', '10-designform.jpg', 'Testing Design Form edit', 'Testing Rule edit', 'Testing Remark edit', 'Testing Requirement Testing', 'Testing SIT', '2015-01-08', '14', '4', '4', '2015-02-21 04:12:27', '2015-02-21 04:25:09');
-- ----------------------------
-- Table structure for `groups`
-- ----------------------------
DROP TABLE IF EXISTS `groups`;
CREATE TABLE `groups` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`permissions` text COLLATE utf8_unicode_ci,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `groups_name_unique` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of groups
-- ----------------------------
INSERT INTO `groups` VALUES ('1', 'Admin', '{\"superuser\":1}', '2014-12-08 02:04:50', '2014-12-08 02:04:50');
INSERT INTO `groups` VALUES ('2', 'HeadITDev', '{\"superuser\":1}', '2014-12-11 02:13:55', '2014-12-23 02:22:30');
INSERT INTO `groups` VALUES ('3', 'SupervisorITDev', '{\"update-user-info\":1,\"view-task-list\":1,\"view-dailyBackupDB-list\":1,\"view-monthlyBackupDB-list\":1,\"approveitdspv-dailyBackupDB\":1,\"approveitdspv-monthlyBackupDB\":1}', '2014-12-11 02:14:48', '2015-01-02 10:29:13');
INSERT INTO `groups` VALUES ('4', 'CoordinatorITDev', '{\"update-user-info\":1,\"view-design-list\":1,\"view-design-detail\":1,\"create-design\":1,\"update-design\":1,\"view-testing-list\":1,\"update-testing\":1,\"create-testing\":1,\"view-task-list\":1,\"create-task\":1,\"update-task\":1,\"view-dailyreport-list\":1,\"update-dailyreport\":1,\"view-updateapps-list\":1,\"create-updateapps\":1,\"update-updateapps\":1,\"create-project\":1,\"update-project\":1,\"view-masterapps-list\":1,\"view-mastermodul-list\":1,\"view-masterprojecttype-list\":1,\"view-mastertasktype-list\":1,\"view-assesment-list\":1,\"create-assestment\":1,\"update-assestment\":1,\"view-uat-list\":1,\"create-uat\":1,\"update-uat\":1,\"view-training-list\":1,\"create-training\":1,\"update-training\":1,\"view-weeklymeeting-list\":1,\"view-projectdetail-list\":1,\"view-requestupdate-list\":1,\"create-requestupdate\":1,\"update-requestupdate\":1,\"view-project-list\":1}', '2014-12-11 02:15:20', '2015-01-05 02:16:21');
INSERT INTO `groups` VALUES ('5', 'StaffITDev', '{\"update-user-info\":1,\"view-task-list\":1,\"view-users-list\":1,\"view-design-list\":1,\"view-testing-list\":1,\"view-dailyreport-list\":1,\"view-updateapps-list\":1,\"view-masterapps-list\":1,\"view-mastermodul-list\":1,\"view-masterprojecttype-list\":1,\"view-mastertasktype-list\":1,\"approvedba-dailyBackupDB\":1,\"approvedba-monthlyBackupDB\":1,\"view-project-list\":1}', '2014-12-11 02:15:52', '2015-01-02 10:29:46');
-- ----------------------------
-- Table structure for `job_daily_report`
-- ----------------------------
DROP TABLE IF EXISTS `job_daily_report`;
CREATE TABLE `job_daily_report` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`tasklist_id` int(10) DEFAULT NULL,
`reference` int(10) DEFAULT NULL,
`create_date` date DEFAULT NULL,
`job` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`target_finish` date DEFAULT NULL,
`actual_finish_date` date DEFAULT NULL,
`note` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`status_job_daily_report` int(10) DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `tasklist_id1` (`tasklist_id`),
KEY `user_created14` (`user_created`),
KEY `user_updated14` (`user_updated`),
KEY `status_job_daily_report1` (`status_job_daily_report`),
CONSTRAINT `status_job_daily_report1` FOREIGN KEY (`status_job_daily_report`) REFERENCES `master_status` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `tasklist_id1` FOREIGN KEY (`tasklist_id`) REFERENCES `tasklist` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of job_daily_report
-- ----------------------------
INSERT INTO `job_daily_report` VALUES ('1', '1', '1', '2014-12-23', 'Pengerjaan Modul Tasklist', 'Membuat modul tasklist', '2014-12-31', '2015-01-21', 'xacsacacacasacaca', '9', '1', '1', '2014-12-23 07:24:15', '2015-01-21 03:58:47');
INSERT INTO `job_daily_report` VALUES ('2', '2', '1', '2015-01-21', 'coba tasklist', 'csacacacaca', '2015-01-24', null, null, '6', '1', '1', '2015-01-21 03:23:56', '2015-01-21 03:23:56');
INSERT INTO `job_daily_report` VALUES ('3', '3', '6', '2015-01-23', 'coba lagi aahhh', 'cacaecacaca', '2015-01-23', '2015-01-20', 'Note Testing', '9', '1', '4', '2015-01-23 03:01:55', '2015-02-21 05:07:37');
-- ----------------------------
-- Table structure for `master_apps`
-- ----------------------------
DROP TABLE IF EXISTS `master_apps`;
CREATE TABLE `master_apps` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`name_apps` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`desc_apps` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`build_date` date DEFAULT NULL,
`development_by` int(10) DEFAULT NULL,
`version` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
`note` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`activated` int(3) DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `development_by1` (`development_by`),
KEY `user_created1` (`user_created`),
KEY `user_updated1` (`user_updated`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of master_apps
-- ----------------------------
INSERT INTO `master_apps` VALUES ('3', 'coba', 'coba lagi', '2014-12-24', '1', 'coba aahhh', 'coba lagi', '1', '1', '1', '2014-12-23 10:44:46', '2015-01-19 02:35:00');
INSERT INTO `master_apps` VALUES ('4', 'ERP-PDT', 'ini coba dulu', '2015-01-14', '1', '1.0', 'siapa tahu berhasil', '1', '1', '1', '2015-01-14 06:46:58', '2015-01-19 02:34:53');
INSERT INTO `master_apps` VALUES ('5', 'itms', 'coba lagi', '2015-01-15', '1', '1.0', 'sacacascac', '1', '1', null, '2015-01-14 06:56:54', '2015-01-14 06:56:54');
INSERT INTO `master_apps` VALUES ('6', 'tes', 'masih penasaran', '2015-01-10', '1', '2.0', 'cacacaca', '1', '1', null, '2015-01-14 06:58:15', '2015-01-14 06:58:15');
INSERT INTO `master_apps` VALUES ('7', 'nclsknalck', 'camkcmsaklc', '2015-01-02', '1', '2.0', 'csacaca', '1', '1', null, '2015-01-14 06:59:00', '2015-01-14 06:59:00');
INSERT INTO `master_apps` VALUES ('8', 'coba lagi', 'bismillah', '2015-01-03', '1', '2.0', 'cacasca', '1', '1', null, '2015-01-14 07:08:58', '2015-01-14 07:08:58');
INSERT INTO `master_apps` VALUES ('9', 'coba lagi', 'csakcnalk', '2015-01-10', '1', '2.0', 'csacsac', '1', '1', null, '2015-01-14 07:17:35', '2015-01-14 07:17:35');
INSERT INTO `master_apps` VALUES ('10', 'csaca', 'cascacac', '2015-01-17', '1', '2.0', 'cacaca', '1', '1', null, '2015-01-14 08:09:07', '2015-01-14 08:09:07');
INSERT INTO `master_apps` VALUES ('11', 'cacadca', 'cdacacacac', '2015-01-15', '1', '1.2', 'csacsacasc', '1', '1', null, '2015-01-15 06:35:19', '2015-01-15 06:35:19');
INSERT INTO `master_apps` VALUES ('12', 'scacacacac', 'csacacacaca', '2015-01-15', '1', '1.2', 'csacacaceaca', '1', '1', null, '2015-01-15 06:38:14', '2015-01-15 06:38:14');
INSERT INTO `master_apps` VALUES ('13', 'cacadca', 'cadcacaca', '2015-01-03', '1', '1.2', 'cacaecacea', '1', '1', null, '2015-01-17 04:26:14', '2015-01-17 04:26:14');
INSERT INTO `master_apps` VALUES ('14', 'Testing Aplication Name Edit', 'Testing Application Description Edit', '2015-02-21', '4', 'Testing ve', 'Testing Note Edit', '1', '4', '4', '2015-02-21 03:04:17', '2015-02-21 03:50:02');
-- ----------------------------
-- Table structure for `master_db`
-- ----------------------------
DROP TABLE IF EXISTS `master_db`;
CREATE TABLE `master_db` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`server_name` varchar(255) DEFAULT NULL,
`database_name` varchar(255) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`user_created` varchar(255) DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`user_updated` varchar(255) DEFAULT NULL,
`status` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of master_db
-- ----------------------------
INSERT INTO `master_db` VALUES ('1', 'Server01', 'PDT', '2014-06-09 10:44:04', '1', '2015-01-21 08:24:52', '1', '1');
INSERT INTO `master_db` VALUES ('2', 'Server 25', 'All db Mysql', '2014-06-09 10:55:26', '1', '2015-01-21 08:24:47', '1', '0');
INSERT INTO `master_db` VALUES ('3', 'Server 33', 'ITMS', '2014-12-29 03:24:16', '1', '2014-12-29 03:24:16', null, '1');
INSERT INTO `master_db` VALUES ('4', 'cacecaeae', 'ceacacea', '2015-01-19 08:08:09', '1', '2015-01-19 08:08:21', '1', '0');
INSERT INTO `master_db` VALUES ('5', 'Testing databases Name Edit', 'testing Database Name Edit', '2015-02-21 05:14:37', '4', '2015-02-21 05:20:05', '4', '1');
-- ----------------------------
-- Table structure for `master_modul`
-- ----------------------------
DROP TABLE IF EXISTS `master_modul`;
CREATE TABLE `master_modul` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`name_modul` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`desc_modul` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`master_apps_id` int(10) DEFAULT NULL,
`activated` int(3) DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `apps_id1` (`master_apps_id`),
KEY `user_created2` (`user_created`),
KEY `user_updated2` (`user_updated`),
CONSTRAINT `master_apps_id` FOREIGN KEY (`master_apps_id`) REFERENCES `master_apps` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of master_modul
-- ----------------------------
INSERT INTO `master_modul` VALUES ('2', 'coba modul', 'cawcaacawca', '5', '1', '1', '1', '2015-01-17 04:21:14', '2015-01-23 07:06:31');
INSERT INTO `master_modul` VALUES ('3', 'kucoba lagi', 'nlknkmjkmmkj', '5', '1', '1', '1', '2015-01-17 04:22:41', '2015-02-21 03:49:34');
INSERT INTO `master_modul` VALUES ('4', 'Modul Name Testing Edit', 'Testing Description Edit', '14', '1', '4', '4', '2015-02-21 03:09:07', '2015-02-21 03:54:16');
-- ----------------------------
-- Table structure for `master_status`
-- ----------------------------
DROP TABLE IF EXISTS `master_status`;
CREATE TABLE `master_status` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`group` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`status_name` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`status_desc` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`activated` tinyint(1) DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of master_status
-- ----------------------------
INSERT INTO `master_status` VALUES ('1', 'project', 'open', 'Status Proyek Dimulai', '1', null, '1', null, '2015-01-19 02:31:32');
INSERT INTO `master_status` VALUES ('2', 'project', 'design', 'Status Proyek Tahap Desain', '1', null, '1', null, '2014-12-12 09:49:46');
INSERT INTO `master_status` VALUES ('3', 'project', 'testing', 'Status Proyek Tahap Testing', '1', null, '1', null, '2014-12-12 09:50:03');
INSERT INTO `master_status` VALUES ('4', 'project', 'close', 'Status Proyek Selesai', '1', null, '1', null, '2015-02-21 03:48:15');
INSERT INTO `master_status` VALUES ('5', 'tasklist', 'open', 'Status Tasklist Dimulai', '1', null, '1', null, '2015-02-21 03:48:12');
INSERT INTO `master_status` VALUES ('6', 'tasklist', 'in progress', 'Status Tasklist Dalam Tahap Pengerjaan', '1', null, '1', null, '2014-12-12 09:55:33');
INSERT INTO `master_status` VALUES ('7', 'tasklist', 'test request', 'Status Tasklist Dalam Tahap Permintaan Testing', '1', null, '1', null, '2014-12-12 09:55:47');
INSERT INTO `master_status` VALUES ('8', 'tasklist', 'revision', 'Status Tasklist Dalam Tahap Revisi', '1', null, '1', null, '2014-12-12 09:56:06');
INSERT INTO `master_status` VALUES ('9', 'tasklist', 'close', 'Status Tasklist Selesai', '1', null, '1', null, '2014-12-12 09:56:27');
INSERT INTO `master_status` VALUES ('10', 'priority', 'low', 'Status Prioritas Lemah', '1', null, '1', null, '2014-12-12 09:59:04');
INSERT INTO `master_status` VALUES ('11', 'priority', 'medium', 'Status Prioritas Sedang', '1', null, '1', null, '2014-12-12 09:59:22');
INSERT INTO `master_status` VALUES ('12', 'priority', 'high', 'Status Prioritas Tinggi', '1', null, '1', null, '2014-12-12 10:00:15');
INSERT INTO `master_status` VALUES ('13', 'sit', 'open', 'Status SIT Dimulai', '1', null, '1', null, '2014-12-12 10:00:32');
INSERT INTO `master_status` VALUES ('14', 'sit', 'pending', 'Status SIT Pending', '1', null, '1', null, '2014-12-12 10:00:53');
INSERT INTO `master_status` VALUES ('15', 'sit', 'close', 'Status SIT Selesai', '1', null, '1', null, '2014-12-12 10:01:09');
INSERT INTO `master_status` VALUES ('16', 'approveUpdate', 'open', 'Status Approval Update Aplikasi Dimulai', '1', null, '1', null, '2014-12-12 10:01:36');
INSERT INTO `master_status` VALUES ('17', 'approveUpdate', 'approve', 'Status Approval Update Aplikasi Disetujui', '1', null, '1', null, '2014-12-12 10:01:52');
INSERT INTO `master_status` VALUES ('18', 'approveUpdate', 'reject', 'Status Approval Update Aplikasi Ditolak', '1', null, '1', null, '2014-12-12 10:02:09');
INSERT INTO `master_status` VALUES ('19', 'backupDB', 'Success', 'Status Backup Database Sukses', '1', '1', null, '2014-12-17 07:32:08', '2014-12-17 07:32:08');
INSERT INTO `master_status` VALUES ('20', 'backupDB', 'Failed', 'Status Backup Database Gagal', '1', '1', null, '2014-12-17 07:32:46', '2014-12-17 07:32:46');
INSERT INTO `master_status` VALUES ('21', 'Testing Group', 'Testing nama Status', 'TEsting Dekripsi Status', '1', '4', null, '2015-02-21 03:21:15', '2015-02-21 03:21:15');
INSERT INTO `master_status` VALUES ('22', 'Testing Group 2', 'Testing nama Status ', 'TEsting Dekripsi Status 2', '1', '4', '4', '2015-02-21 03:21:30', '2015-02-21 03:24:26');
-- ----------------------------
-- Table structure for `master_task_type`
-- ----------------------------
DROP TABLE IF EXISTS `master_task_type`;
CREATE TABLE `master_task_type` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`name_task_type` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`desc_task_type` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`activated` int(3) DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `user_created3` (`user_created`),
KEY `user_updated3` (`user_updated`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of master_task_type
-- ----------------------------
INSERT INTO `master_task_type` VALUES ('1', 'Coding Application', 'Melakukan pembuatan program pada aplikasi PDT', '1', '1', '1', null, '2014-12-12 09:35:04');
INSERT INTO `master_task_type` VALUES ('2', 'Setting Database', 'Melakukkan setting pada database', '1', '1', '1', null, '2015-01-19 02:43:12');
INSERT INTO `master_task_type` VALUES ('3', 'Managerial', 'Melakukan agenda diluar pemrograman', '1', '1', '1', null, '2015-01-19 02:43:18');
INSERT INTO `master_task_type` VALUES ('4', 'Other', 'melakukan kegiatan lain', '1', '1', '1', null, '2014-12-12 08:32:08');
INSERT INTO `master_task_type` VALUES ('5', 'Testing Nama Tipe Tugas ', 'Testing Deskripsi Tipe Tugas', '1', '4', null, '2015-02-21 03:16:49', '2015-02-21 03:16:49');
INSERT INTO `master_task_type` VALUES ('6', 'Testing Nama Tipe Tugas 2 Edit', 'Testing Deskripsi Tipe Tugas 2 Edit', '1', '4', '4', '2015-02-21 03:17:02', '2015-02-21 03:19:21');
-- ----------------------------
-- Table structure for `master_type_project`
-- ----------------------------
DROP TABLE IF EXISTS `master_type_project`;
CREATE TABLE `master_type_project` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`name_project_type` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`desc_project_type` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`activated` int(3) DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `user_created4` (`user_created`),
KEY `user_updated4` (`user_updated`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of master_type_project
-- ----------------------------
INSERT INTO `master_type_project` VALUES ('1', 'New Application', 'Membuat aplikasi baru', '1', null, '1', null, '2014-12-12 09:37:37');
INSERT INTO `master_type_project` VALUES ('2', 'New Modul', 'Membuat modul baru', '1', null, '1', null, '2015-01-19 02:42:50');
INSERT INTO `master_type_project` VALUES ('3', 'Change Request', 'melakukan perubahan pada aplikasi', '1', null, '1', null, '2015-01-19 02:41:07');
INSERT INTO `master_type_project` VALUES ('4', 'Bugs', 'Mengatasi bugs pada aplikasi', '1', null, '1', null, '2014-12-12 09:38:05');
INSERT INTO `master_type_project` VALUES ('5', 'coba', 'nlcksnalcalkcn', '1', '1', null, '2015-01-22 10:27:21', '2015-01-22 10:27:21');
INSERT INTO `master_type_project` VALUES ('6', 'lagi donk', 'nclkancanclka', '1', '1', null, '2015-01-22 10:30:27', '2015-01-22 10:30:27');
INSERT INTO `master_type_project` VALUES ('7', 'Testing Tipe Projek Baru Edit', 'Deskripsi tipe project baru Edit', '1', '4', '4', '2015-02-21 03:12:14', '2015-02-21 03:51:09');
-- ----------------------------
-- Table structure for `migrations`
-- ----------------------------
DROP TABLE IF EXISTS `migrations`;
CREATE TABLE `migrations` (
`migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of migrations
-- ----------------------------
INSERT INTO `migrations` VALUES ('2012_12_06_225921_migration_cartalyst_sentry_install_users', '1');
INSERT INTO `migrations` VALUES ('2012_12_06_225929_migration_cartalyst_sentry_install_groups', '1');
INSERT INTO `migrations` VALUES ('2012_12_06_225945_migration_cartalyst_sentry_install_users_groups_pivot', '1');
INSERT INTO `migrations` VALUES ('2012_12_06_225988_migration_cartalyst_sentry_install_throttle', '1');
INSERT INTO `migrations` VALUES ('2013_07_16_172358_alter_user_table', '2');
INSERT INTO `migrations` VALUES ('2013_09_02_072804_create_permission_table', '2');
INSERT INTO `migrations` VALUES ('2013_09_08_191339_update_admin_group_permission', '2');
INSERT INTO `migrations` VALUES ('2014_05_05_212549_create_notifications_table', '3');
INSERT INTO `migrations` VALUES ('2014_05_05_212609_create_notifications_categories_table', '3');
INSERT INTO `migrations` VALUES ('2014_08_01_210813_create_notification_groups_table', '3');
INSERT INTO `migrations` VALUES ('2014_08_01_211045_create_notification_category_notification_group_table', '3');
-- ----------------------------
-- Table structure for `notifications`
-- ----------------------------
DROP TABLE IF EXISTS `notifications`;
CREATE TABLE `notifications` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`from_id` bigint(20) NOT NULL,
`from_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`to_id` bigint(20) NOT NULL,
`to_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`category_id` smallint(6) NOT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`extra` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`read` tinyint(4) NOT NULL DEFAULT '0',
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `notifications_from_id_index` (`from_id`),
KEY `notifications_from_type_index` (`from_type`),
KEY `notifications_to_id_index` (`to_id`),
KEY `notifications_to_type_index` (`to_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of notifications
-- ----------------------------
-- ----------------------------
-- Table structure for `notifications_categories_in_groups`
-- ----------------------------
DROP TABLE IF EXISTS `notifications_categories_in_groups`;
CREATE TABLE `notifications_categories_in_groups` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned NOT NULL,
`group_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `notifications_categories_in_groups_category_id_index` (`category_id`),
KEY `notifications_categories_in_groups_group_id_index` (`group_id`),
CONSTRAINT `category_id1` FOREIGN KEY (`category_id`) REFERENCES `notification_categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `group_id1` FOREIGN KEY (`group_id`) REFERENCES `notification_groups` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of notifications_categories_in_groups
-- ----------------------------
INSERT INTO `notifications_categories_in_groups` VALUES ('1', '2', '7');
INSERT INTO `notifications_categories_in_groups` VALUES ('2', '2', '13');
INSERT INTO `notifications_categories_in_groups` VALUES ('3', '1', '1');
INSERT INTO `notifications_categories_in_groups` VALUES ('4', '1', '2');
INSERT INTO `notifications_categories_in_groups` VALUES ('5', '1', '3');
INSERT INTO `notifications_categories_in_groups` VALUES ('6', '1', '4');
INSERT INTO `notifications_categories_in_groups` VALUES ('7', '1', '5');
INSERT INTO `notifications_categories_in_groups` VALUES ('8', '1', '6');
INSERT INTO `notifications_categories_in_groups` VALUES ('9', '1', '8');
INSERT INTO `notifications_categories_in_groups` VALUES ('10', '1', '9');
INSERT INTO `notifications_categories_in_groups` VALUES ('11', '1', '10');
INSERT INTO `notifications_categories_in_groups` VALUES ('12', '1', '11');
INSERT INTO `notifications_categories_in_groups` VALUES ('13', '1', '12');
INSERT INTO `notifications_categories_in_groups` VALUES ('14', '1', '14');
INSERT INTO `notifications_categories_in_groups` VALUES ('15', '1', '15');
INSERT INTO `notifications_categories_in_groups` VALUES ('16', '1', '16');
INSERT INTO `notifications_categories_in_groups` VALUES ('17', '1', '17');
INSERT INTO `notifications_categories_in_groups` VALUES ('18', '1', '18');
INSERT INTO `notifications_categories_in_groups` VALUES ('19', '1', '19');
INSERT INTO `notifications_categories_in_groups` VALUES ('20', '1', '20');
INSERT INTO `notifications_categories_in_groups` VALUES ('21', '1', '21');
INSERT INTO `notifications_categories_in_groups` VALUES ('22', '1', '22');
INSERT INTO `notifications_categories_in_groups` VALUES ('23', '1', '23');
INSERT INTO `notifications_categories_in_groups` VALUES ('24', '1', '24');
INSERT INTO `notifications_categories_in_groups` VALUES ('25', '1', '25');
INSERT INTO `notifications_categories_in_groups` VALUES ('26', '1', '26');
INSERT INTO `notifications_categories_in_groups` VALUES ('27', '1', '27');
INSERT INTO `notifications_categories_in_groups` VALUES ('28', '1', '28');
INSERT INTO `notifications_categories_in_groups` VALUES ('29', '1', '29');
INSERT INTO `notifications_categories_in_groups` VALUES ('30', '1', '30');
-- ----------------------------
-- Table structure for `notification_categories`
-- ----------------------------
DROP TABLE IF EXISTS `notification_categories`;
CREATE TABLE `notification_categories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`text` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `notification_categories_name_index` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of notification_categories
-- ----------------------------
INSERT INTO `notification_categories` VALUES ('1', 'notification', 'Notify ITMS', '0000-00-00 00:00:00', '0000-00-00 00:00:00');
INSERT INTO `notification_categories` VALUES ('2', 'tasklist', 'Tasklist ITMS', '0000-00-00 00:00:00', '0000-00-00 00:00:00');
-- ----------------------------
-- Table structure for `notification_groups`
-- ----------------------------
DROP TABLE IF EXISTS `notification_groups`;
CREATE TABLE `notification_groups` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `notification_groups_name_unique` (`name`),
KEY `notification_groups_name_index` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of notification_groups
-- ----------------------------
INSERT INTO `notification_groups` VALUES ('23', 'apps.master');
INSERT INTO `notification_groups` VALUES ('2', 'assesment.apps');
INSERT INTO `notification_groups` VALUES ('15', 'assesment.report');
INSERT INTO `notification_groups` VALUES ('11', 'backupDaily.database');
INSERT INTO `notification_groups` VALUES ('12', 'backupMonthly.database');
INSERT INTO `notification_groups` VALUES ('18', 'dailyReport.report');
INSERT INTO `notification_groups` VALUES ('5', 'design.design');
INSERT INTO `notification_groups` VALUES ('16', 'design.report');
INSERT INTO `notification_groups` VALUES ('29', 'group.setting');
INSERT INTO `notification_groups` VALUES ('13', 'jobDaily.report');
INSERT INTO `notification_groups` VALUES ('10', 'master.database');
INSERT INTO `notification_groups` VALUES ('24', 'modul.master');
INSERT INTO `notification_groups` VALUES ('30', 'permission.setting');
INSERT INTO `notification_groups` VALUES ('1', 'project.apps');
INSERT INTO `notification_groups` VALUES ('14', 'project.report');
INSERT INTO `notification_groups` VALUES ('25', 'projectType.master');
INSERT INTO `notification_groups` VALUES ('27', 'status.master');
INSERT INTO `notification_groups` VALUES ('7', 'task.list');
INSERT INTO `notification_groups` VALUES ('17', 'tasklist.report');
INSERT INTO `notification_groups` VALUES ('26', 'taskType.master');
INSERT INTO `notification_groups` VALUES ('6', 'testing.design');
INSERT INTO `notification_groups` VALUES ('19', 'testing.report');
INSERT INTO `notification_groups` VALUES ('4', 'training.apps');
INSERT INTO `notification_groups` VALUES ('21', 'training.report');
INSERT INTO `notification_groups` VALUES ('3', 'uat.apps');
INSERT INTO `notification_groups` VALUES ('20', 'uat.report');
INSERT INTO `notification_groups` VALUES ('8', 'update.apps');
INSERT INTO `notification_groups` VALUES ('22', 'updateapps.report');
INSERT INTO `notification_groups` VALUES ('28', 'user.setting');
INSERT INTO `notification_groups` VALUES ('9', 'weekly.meeting');
-- ----------------------------
-- Table structure for `permissions`
-- ----------------------------
DROP TABLE IF EXISTS `permissions`;
CREATE TABLE `permissions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`value` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`description` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `permissions_value_unique` (`value`)
) ENGINE=InnoDB AUTO_INCREMENT=125 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of permissions
-- ----------------------------
INSERT INTO `permissions` VALUES ('1', 'Super User', 'superuser', 'All permissions', '2014-12-08 02:04:49', '2014-12-08 02:04:49');
INSERT INTO `permissions` VALUES ('2', 'List Users', 'view-users-list', 'View the list of users', '2014-12-08 02:04:49', '2014-12-08 02:04:49');
INSERT INTO `permissions` VALUES ('3', 'Create user', 'create-user', 'Create new user', '2014-12-08 02:04:49', '2014-12-08 02:04:49');
INSERT INTO `permissions` VALUES ('4', 'Delete user', 'delete-user', 'Delete a user', '2014-12-08 02:04:49', '2014-12-08 02:04:49');
INSERT INTO `permissions` VALUES ('5', 'Update user', 'update-user-info', 'Update a user profile', '2014-12-08 02:04:49', '2014-12-08 02:04:49');
INSERT INTO `permissions` VALUES ('6', 'Update user group', 'user-group-management', 'Add/Remove a user in a group', '2014-12-08 02:04:49', '2014-12-08 02:04:49');
INSERT INTO `permissions` VALUES ('7', 'Groups management', 'groups-management', 'Manage group (CRUD)', '2014-12-08 02:04:50', '2014-12-08 02:04:50');
INSERT INTO `permissions` VALUES ('8', 'Permissions management', 'permissions-management', 'Manage permissions (CRUD)', '2014-12-08 02:04:50', '2014-12-08 02:04:50');
INSERT INTO `permissions` VALUES ('9', 'List Design', 'view-design-list', 'Lihat Daftar Design', '2014-12-08 04:35:29', '2014-12-08 04:43:46');
INSERT INTO `permissions` VALUES ('10', 'Detail Design', 'view-design-detail', 'Lihat Detail Design', '2014-12-08 04:36:56', '2014-12-08 04:44:14');
INSERT INTO `permissions` VALUES ('11', 'Create Design', 'create-design', 'Input Data Design Baru', '2014-12-08 04:38:17', '2014-12-08 04:44:48');
INSERT INTO `permissions` VALUES ('12', 'Delete Design', 'delete-design', 'Hapus Data Design', '2014-12-08 04:39:10', '2014-12-08 04:45:21');
INSERT INTO `permissions` VALUES ('13', 'Update Design', 'update-design', 'Ubah Data Design', '2014-12-08 04:40:23', '2014-12-08 04:50:03');
INSERT INTO `permissions` VALUES ('14', 'List Testing', 'view-testing-list', 'Lihat Daftar Testing', '2014-12-08 04:46:01', '2014-12-08 04:46:01');
INSERT INTO `permissions` VALUES ('15', 'Create Testing', 'create-testing', 'Input Data Testing Baru', '2014-12-08 04:48:27', '2014-12-08 04:48:27');
INSERT INTO `permissions` VALUES ('16', 'Delete Testing', 'delete-testing', 'Hapus Data Testing', '2014-12-08 04:49:13', '2014-12-08 04:49:13');
INSERT INTO `permissions` VALUES ('17', 'Update Testing', 'update-testing', 'Ubah Data Testing', '2014-12-08 04:50:50', '2014-12-08 04:50:50');
INSERT INTO `permissions` VALUES ('18', 'List Tugas', 'view-task-list', 'Lihat Daftar Tugas', '2014-12-08 04:52:07', '2014-12-08 04:52:07');
INSERT INTO `permissions` VALUES ('19', 'Detail Tugas', 'view-task-detail', 'Lihat Detail Tugas', '2014-12-08 04:53:04', '2014-12-08 04:53:04');
INSERT INTO `permissions` VALUES ('20', 'Create Tugas', 'create-task', 'Input Data Tugas Baru', '2014-12-08 04:53:46', '2014-12-08 04:53:46');
INSERT INTO `permissions` VALUES ('21', 'Delete Tugas', 'delete-task', 'Hapus Data Tugas', '2014-12-08 04:54:25', '2014-12-08 04:54:25');
INSERT INTO `permissions` VALUES ('22', 'Update Tugas', 'update-task', 'Ubah Data Tugas', '2014-12-08 04:55:13', '2014-12-08 04:55:13');
INSERT INTO `permissions` VALUES ('23', 'List Daily Report', 'view-dailyreport-list', 'Lihat Daftar Laporan Kerja Harian', '2014-12-08 04:56:58', '2014-12-08 04:56:58');
INSERT INTO `permissions` VALUES ('24', 'Update Daily Report', 'update-dailyreport', 'Ubah Data Daily Report', '2014-12-08 04:57:54', '2014-12-08 04:57:54');
INSERT INTO `permissions` VALUES ('25', 'List Update Aplikasi', 'view-updateapps-list', 'Lihat Daftar Upgrade Aplikasi', '2014-12-08 04:59:38', '2014-12-15 06:54:34');
INSERT INTO `permissions` VALUES ('26', 'Create Update Aplikasi', 'create-updateapps', 'Input Data Upgrade Aplikasi Baru', '2014-12-08 05:00:32', '2014-12-15 06:55:03');
INSERT INTO `permissions` VALUES ('27', 'Update Update Aplikasi', 'update-updateapps', 'Ubah Data Upgrade Aplikasi', '2014-12-08 05:01:24', '2014-12-15 06:55:44');
INSERT INTO `permissions` VALUES ('28', 'Create Design Detail', 'create-design-detail', 'Input Data Design Detail Baru', '2014-12-09 04:26:58', '2014-12-09 04:26:58');
INSERT INTO `permissions` VALUES ('29', 'Delete Design Detail', 'delete-design-detail', 'Hapus Data Design Detail', '2014-12-09 04:28:01', '2014-12-09 04:28:01');
INSERT INTO `permissions` VALUES ('30', 'Update Design Detail', 'update-design-detail', 'Ubah Data Design Detail', '2014-12-09 04:29:10', '2014-12-09 04:29:10');
INSERT INTO `permissions` VALUES ('31', 'Create Tugas Detail', 'create-task-detail', 'Input Data Tugas Detail Baru', '2014-12-09 04:30:01', '2014-12-09 04:30:01');
INSERT INTO `permissions` VALUES ('32', 'Delete Tugas Detail', 'delete-task-detail', 'Hapus Data Tugas Detail', '2014-12-09 04:30:43', '2014-12-09 04:30:43');
INSERT INTO `permissions` VALUES ('33', 'Update Tugas Detail', 'update-task-detail', 'Ubah Data Tugas Detail', '2014-12-09 04:31:38', '2014-12-09 04:31:38');
INSERT INTO `permissions` VALUES ('34', 'List Master Application', 'view-masterapps-list', 'Lihat Daftar Master Aplikasi', '2014-12-10 06:05:44', '2014-12-10 06:05:44');
INSERT INTO `permissions` VALUES ('35', 'Create Master Application', 'create-masterapps', 'Input Data Master Aplikasi Baru', '2014-12-10 06:06:36', '2014-12-10 06:06:36');
INSERT INTO `permissions` VALUES ('36', 'Update Master Application', 'update-masterapps', 'Ubah Data Master Aplikasi', '2014-12-10 06:07:16', '2014-12-10 06:07:16');
INSERT INTO `permissions` VALUES ('37', 'Delete Master Application', 'delete-masterapps', 'Hapus Data Master Aplikasi', '2014-12-10 06:07:56', '2014-12-10 06:07:56');
INSERT INTO `permissions` VALUES ('38', 'List Master Modul', 'view-mastermodul-list', 'Lihat Daftar Master Modul', '2014-12-10 06:08:48', '2014-12-10 06:08:48');
INSERT INTO `permissions` VALUES ('39', 'Create Master Modul', 'create-mastermodul', 'Input Data Master Modul Baru', '2014-12-10 06:09:19', '2014-12-10 06:09:19');
INSERT INTO `permissions` VALUES ('40', 'Update Master Modul', 'update-mastermodul', 'Ubah Data Master Modul', '2014-12-10 06:09:46', '2014-12-10 06:09:46');
INSERT INTO `permissions` VALUES ('41', 'Delete Master Modul', 'delete-mastermodul', 'Hapus Data Master Modul', '2014-12-10 06:10:37', '2014-12-10 06:10:37');
INSERT INTO `permissions` VALUES ('42', 'List Master Project Type', 'view-masterprojecttype-list', 'Lihat Daftar Master Tipe Proyek', '2014-12-10 06:11:55', '2014-12-10 06:11:55');
INSERT INTO `permissions` VALUES ('43', 'Create Master Project Type', 'create-masterprojecttype', 'Input Data Master Tipe Proyek Baru', '2014-12-10 06:12:30', '2014-12-10 06:12:30');
INSERT INTO `permissions` VALUES ('44', 'Update Master Project Type', 'update-masterprojecttype', 'Ubah Data Master Tipe Proyek', '2014-12-10 06:13:03', '2014-12-10 06:13:03');
INSERT INTO `permissions` VALUES ('45', 'Delete Master Project Type', 'delete-masterprojecttype', 'Hapus Data Master Tipe Proyek', '2014-12-10 06:13:37', '2014-12-10 06:13:37');
INSERT INTO `permissions` VALUES ('46', 'List Master Task Type', 'view-mastertasktype-list', 'Lihat Daftar Master Tipe Tugas', '2014-12-10 06:14:34', '2014-12-10 06:14:34');
INSERT INTO `permissions` VALUES ('47', 'Create Master Task Type', 'create-mastertasktype', 'Input Data Master Tipe Tugas Baru', '2014-12-10 06:15:08', '2014-12-10 06:15:08');
INSERT INTO `permissions` VALUES ('48', 'Update Master Task Type', 'update-mastertasktype', 'Ubah Data Master Tipe Tugas', '2014-12-10 06:16:50', '2014-12-10 06:16:50');
INSERT INTO `permissions` VALUES ('49', 'Delete Master Task Type', 'delete-mastertasktype', 'Hapus Data Master Tipe Tugas', '2014-12-10 06:17:25', '2014-12-10 06:17:25');
INSERT INTO `permissions` VALUES ('50', 'List Project ', 'view-project-list', 'Lihat Daftar Proyek', '2014-12-10 06:18:32', '2014-12-10 06:18:32');
INSERT INTO `permissions` VALUES ('51', 'Create Project', 'create-project', 'Input Data Proyek Baru', '2014-12-10 06:19:19', '2014-12-10 06:19:19');
INSERT INTO `permissions` VALUES ('52', 'Update Project', 'update-project', 'Ubah Data Proyek', '2014-12-10 06:19:57', '2014-12-10 06:19:57');
INSERT INTO `permissions` VALUES ('53', 'List Assestment', 'view-assesment-list', 'Lihat Daftar Assesment', '2014-12-10 06:22:11', '2014-12-10 06:22:11');
INSERT INTO `permissions` VALUES ('54', 'Create Assestment', 'create-assestment', 'Input Data Assestment Baru', '2014-12-10 06:23:13', '2014-12-10 06:23:13');
INSERT INTO `permissions` VALUES ('55', 'Update Assestment', 'update-assestment', 'Ubah Data Assestment', '2014-12-10 06:23:54', '2014-12-10 06:23:54');
INSERT INTO `permissions` VALUES ('56', 'List UAT', 'view-uat-list', 'Lihat Daftar UAT', '2014-12-10 06:25:04', '2014-12-10 06:25:04');
INSERT INTO `permissions` VALUES ('57', 'Create UAT', 'create-uat', 'Input Data UAT Baru', '2014-12-10 06:25:34', '2014-12-10 06:25:34');
INSERT INTO `permissions` VALUES ('58', 'Update UAT', 'update-uat', 'Ubah Data UAT', '2014-12-10 06:26:04', '2014-12-10 06:26:04');
INSERT INTO `permissions` VALUES ('59', 'Delete UAT', 'delete-uat', 'Hapus Data UAT', '2014-12-10 06:26:43', '2014-12-10 06:26:43');
INSERT INTO `permissions` VALUES ('60', 'List Training', 'view-training-list', 'Lihat Daftar Training', '2014-12-10 06:27:39', '2014-12-10 06:27:39');
INSERT INTO `permissions` VALUES ('61', 'Create Training', 'create-training', 'Input Data Training Baru', '2014-12-10 06:28:17', '2014-12-10 06:28:17');
INSERT INTO `permissions` VALUES ('62', 'Update Training', 'update-training', 'Ubah Data Training', '2014-12-10 06:28:49', '2014-12-10 06:28:49');
INSERT INTO `permissions` VALUES ('63', 'Delete Training', 'delete-training', 'Hapus Data Training', '2014-12-10 06:29:23', '2014-12-10 06:29:23');
INSERT INTO `permissions` VALUES ('68', 'Approve Update Application', 'approve-updateapps', 'Approval Update Aplikasi', '2014-12-10 06:33:47', '2014-12-10 06:33:47');
INSERT INTO `permissions` VALUES ('69', 'List Master Status', 'view-masterstatus-list', 'Lihat Daftar Master Status', '2014-12-10 09:28:14', '2014-12-10 09:28:14');
INSERT INTO `permissions` VALUES ('70', 'Update Master Status', 'update-masterstatus', 'Ubah Data Master Status', '2014-12-10 09:28:44', '2014-12-10 09:28:44');
INSERT INTO `permissions` VALUES ('71', 'Create Master Status', 'create-masterstatus', 'Input Data Master Status Baru', '2014-12-10 09:29:12', '2014-12-10 09:29:12');
INSERT INTO `permissions` VALUES ('72', 'List Weekly Meeting', 'view-weeklymeeting-list', 'Lihat Daftar Weekly Meeting', '2014-12-15 07:41:50', '2014-12-15 07:41:50');
INSERT INTO `permissions` VALUES ('73', 'Create Weekly Meeting', 'create-weeklymeeting', 'Input Data Weekly Meeting Baru', '2014-12-15 07:42:50', '2014-12-15 07:42:50');
INSERT INTO `permissions` VALUES ('74', 'Update Weekly Meeting', 'update-weeklymeeting', 'Ubah Data Weekly Meeting', '2014-12-15 07:43:39', '2014-12-15 07:43:39');
INSERT INTO `permissions` VALUES ('75', 'Detail Project Application', 'view-projectdetail-list', 'Lihat Detail Project', '2014-12-15 10:24:12', '2014-12-15 10:24:12');
INSERT INTO `permissions` VALUES ('76', 'List Report Project', 'view-reportproject-list', 'Lihat Laporan Proyek', '2014-12-18 05:01:15', '2014-12-18 05:01:15');
INSERT INTO `permissions` VALUES ('77', 'List Report Assesment', 'view-reportassesment-list', 'Lihat Laporan Assesment', '2014-12-18 05:09:54', '2014-12-18 05:09:54');
INSERT INTO `permissions` VALUES ('78', 'List Report Design', 'view-reportdesign-list', 'Lihat Laporan Design', '2014-12-18 05:10:34', '2014-12-18 05:10:34');
INSERT INTO `permissions` VALUES ('79', 'List Report Tasklist', 'view-reporttasklist-list', 'Lihat Laporan Tasklist', '2014-12-18 05:11:23', '2014-12-18 05:11:23');
INSERT INTO `permissions` VALUES ('80', 'List Report Daily Report', 'view-reportdailyreport-list', 'Lihat Laporan Kerja Harian', '2014-12-18 05:12:20', '2014-12-18 05:12:20');
INSERT INTO `permissions` VALUES ('81', 'List Report SIT', 'view-reportsit-list', 'Lihat Laporan SIT', '2014-12-18 05:13:10', '2014-12-18 05:13:10');
INSERT INTO `permissions` VALUES ('82', 'List Report UAT', 'view-reportuat-list', 'Lihat Laporan User Accept Test', '2014-12-18 05:13:47', '2014-12-18 05:13:47');
INSERT INTO `permissions` VALUES ('83', 'List Report Training', 'view-reporttraining-list', 'Lihat Laporan Training', '2014-12-18 05:14:18', '2014-12-18 05:14:18');
INSERT INTO `permissions` VALUES ('84', 'List Report Update Application', 'view-reportupdateapps-list', 'Lihat Laporan Aplikasi Update', '2014-12-18 05:14:54', '2014-12-18 05:14:54');
INSERT INTO `permissions` VALUES ('85', 'Reject Update Application', 'reject-updateapps', 'Reject Update Aplikasi', '2014-12-20 03:19:58', '2014-12-20 03:19:58');
INSERT INTO `permissions` VALUES ('86', 'Closed Status Project', 'close-project', 'Closed The Project Status', '2014-12-22 08:17:48', '2014-12-22 08:17:48');
INSERT INTO `permissions` VALUES ('87', 'List Master Database', 'view-masterDB-list', 'Lihat Master Database', '2014-12-24 07:30:09', '2014-12-24 07:30:09');
INSERT INTO `permissions` VALUES ('88', 'Create Master Database', 'create-masterDB', 'Input Data Master Database Baru', '2014-12-24 07:31:08', '2014-12-24 07:31:08');
INSERT INTO `permissions` VALUES ('89', 'Update Master Database', 'update-masterDB', 'Ubah Data Master Database', '2014-12-24 07:31:47', '2014-12-24 07:31:47');
INSERT INTO `permissions` VALUES ('90', 'List Daily Backup Database', 'view-dailyBackupDB-list', 'Lihat Data Backup Harian Database', '2014-12-24 07:34:24', '2014-12-24 07:34:24');
INSERT INTO `permissions` VALUES ('92', 'Create Daily Backup Database', 'create-dailyBackupDB', 'Input Data Backup Harian Database Baru', '2014-12-24 07:35:41', '2014-12-24 07:35:41');
INSERT INTO `permissions` VALUES ('93', 'Update Daily Backup Database', 'update-dailyBackupDB', 'Ubah Data Backup Harian Database', '2014-12-24 07:36:42', '2014-12-24 07:36:42');
INSERT INTO `permissions` VALUES ('94', 'Approval DBA Daily Backup Database', 'approvedba-dailyBackupDB', 'Approval DBA Backup Harian Database', '2014-12-24 07:37:30', '2015-01-02 08:12:24');
INSERT INTO `permissions` VALUES ('95', 'List Monthly Backup Database', 'view-monthlyBackupDB-list', 'Lihat Data Backup Bulanan Database', '2014-12-24 07:38:37', '2014-12-24 07:38:37');
INSERT INTO `permissions` VALUES ('96', 'Create Monthly Backup Database', 'create-monthlyBackupDB', 'Input Data Backup Bulanan Database Baru', '2014-12-24 07:39:27', '2014-12-24 07:39:27');
INSERT INTO `permissions` VALUES ('97', 'Update Monthly Backup Database', 'update-monthlyBackupDB', 'Ubah Data Backup Bulanan Database', '2014-12-24 07:40:00', '2014-12-24 07:40:00');
INSERT INTO `permissions` VALUES ('98', 'Approval DBA Monthly Backup Database', 'approvedba-monthlyBackupDB', 'Approval DBA Backup Bulanan Database', '2014-12-24 07:43:22', '2015-01-02 08:17:00');
INSERT INTO `permissions` VALUES ('99', 'Approval ITD SPV Daily Backup Database', 'approveitdspv-dailyBackupDB', 'Approval ITD Supervisor Backup Harian Database', '2015-01-02 08:16:27', '2015-01-02 08:16:27');
INSERT INTO `permissions` VALUES ('100', 'Approval ITD SPV Monthly Backup Database', 'approveitdspv-monthlyBackupDB', 'Approval ITD Supervisor Backup Bulanan Database', '2015-01-02 08:18:06', '2015-01-02 08:18:06');
INSERT INTO `permissions` VALUES ('101', 'Approval ITD Head Monthly Backup Database', 'approveitdhead-monthlyBackupDB', 'Approval ITD Head Backup Bulanan Database', '2015-01-02 08:18:44', '2015-01-02 08:18:44');
INSERT INTO `permissions` VALUES ('102', 'Search Project Report', 'search-reportProjects', 'Searching Project Report', '2015-01-06 03:18:49', '2015-01-06 03:18:49');
INSERT INTO `permissions` VALUES ('103', 'Search Assesment Report', 'search-reportAssesments', 'Searching Assesment Report', '2015-01-06 03:19:42', '2015-01-06 03:19:42');
INSERT INTO `permissions` VALUES ('104', 'Search Design Report', 'search-reportDesigns', 'Searching Design Report', '2015-01-06 03:23:23', '2015-01-06 03:23:23');
INSERT INTO `permissions` VALUES ('105', 'Search Task Report', 'search-reportTasklists', 'Searching Task Report', '2015-01-06 03:24:31', '2015-01-06 03:24:31');
INSERT INTO `permissions` VALUES ('106', 'Search Daily-Report Report', 'search-reportDailyReports', 'Searching Daily-Report Report', '2015-01-06 03:25:46', '2015-01-06 03:25:46');
INSERT INTO `permissions` VALUES ('107', 'Search SIT Report', 'search-reportSITs', 'Searching SIT Report', '2015-01-06 03:27:55', '2015-01-06 03:27:55');
INSERT INTO `permissions` VALUES ('108', 'Search UAT Report', 'search-reportUATs', 'Searching UAT Report', '2015-01-06 03:28:34', '2015-01-06 03:28:34');
INSERT INTO `permissions` VALUES ('109', 'Search Training Report', 'search-reportTrainings', 'Searching Training Report', '2015-01-06 03:29:26', '2015-01-06 03:29:26');
INSERT INTO `permissions` VALUES ('110', 'Search Update Application Report', 'search-reportUpdateAppss', 'Searching Update Application Report', '2015-01-06 03:30:51', '2015-01-06 03:30:51');
INSERT INTO `permissions` VALUES ('111', 'Detail Tasklist Report', 'view-reporttasklist-detail', 'Lihat Detail Laporan Tasklist', '2015-01-09 10:02:00', '2015-01-09 10:02:00');
INSERT INTO `permissions` VALUES ('112', 'Detail Application Update Report', 'view-reportupdateapps-detail', 'Lihat Detail Laporan Update Aplikasi', '2015-01-09 10:02:54', '2015-01-09 10:02:54');
INSERT INTO `permissions` VALUES ('113', 'Activated', 'activated', 'Aktifasi', '2015-01-15 09:39:40', '2015-01-15 09:39:40');
INSERT INTO `permissions` VALUES ('114', 'Non Activated', 'non-activated', 'Non-Aktifasi', '2015-01-15 09:40:16', '2015-01-15 09:40:16');
INSERT INTO `permissions` VALUES ('115', 'Activated Application Master', 'activated-masterapps', 'Aktifasi Master Aplikasi', '2015-01-17 05:04:55', '2015-01-17 05:04:55');
INSERT INTO `permissions` VALUES ('116', 'Non Activated Application Master', 'non-activated-masterapps', 'Non-Aktifasi Master Aplikasi', '2015-01-17 05:05:31', '2015-01-17 05:05:31');
INSERT INTO `permissions` VALUES ('117', 'Activated Modul Master', 'activated-mastermodul', 'Aktifasi Master Modul', '2015-01-17 05:06:08', '2015-01-17 05:06:08');
INSERT INTO `permissions` VALUES ('118', 'Non Activated Modul Master', 'non-activated-mastermodul', 'Non-Aktifasi Master Modul', '2015-01-17 05:07:04', '2015-01-17 05:07:04');
INSERT INTO `permissions` VALUES ('119', 'Activated Project Type Master', 'activated-masterprojecttype', 'Aktifasi Master Tipe Proyek', '2015-01-17 05:07:57', '2015-01-17 05:07:57');
INSERT INTO `permissions` VALUES ('120', 'Activated Task Type Master', 'activated-mastertasktype', 'Aktifasi Master Tipe Tugas', '2015-01-17 05:08:49', '2015-01-17 05:08:49');
INSERT INTO `permissions` VALUES ('121', 'Non Activated Project Type Master', 'non-activated-masterprojecttype', 'Non-Aktifasi Master Tipe Proyek', '2015-01-17 05:09:26', '2015-01-17 05:09:26');
INSERT INTO `permissions` VALUES ('122', 'Non Activated Task Type Master', 'non-activated-mastertasktype', 'Non-Aktifasi Master Tipe Tugas', '2015-01-17 05:09:59', '2015-01-17 05:09:59');
INSERT INTO `permissions` VALUES ('123', 'Activated Database Master', 'activated-masterDB', 'Aktifasi Master Database', '2015-01-21 08:20:28', '2015-01-21 08:20:28');
INSERT INTO `permissions` VALUES ('124', 'Non Activated Database Master', 'non-activated-masterDB', 'Non-Aktifasi Master Database', '2015-01-21 08:20:59', '2015-01-21 08:20:59');
-- ----------------------------
-- Table structure for `project`
-- ----------------------------
DROP TABLE IF EXISTS `project`;
CREATE TABLE `project` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`name_project` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`reference` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`desc_project` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`master_apps_id` int(10) DEFAULT NULL,
`master_modul_id` int(10) DEFAULT NULL,
`master_type_project_id` int(10) DEFAULT NULL,
`user_request` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`project_request_date` date DEFAULT NULL,
`assesment_date` date DEFAULT NULL,
`assesment_user` int(10) DEFAULT NULL,
`assesment_note` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`training_target` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`training_actual_date` date DEFAULT NULL,
`trainer` int(10) DEFAULT NULL,
`update_apps_id` int(10) DEFAULT NULL,
`status_project_request` int(10) DEFAULT NULL,
`manual_book_file` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`doc_project_file` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT;
-- ----------------------------
-- Records of project
-- ----------------------------
INSERT INTO `project` VALUES ('1', 'IT Management System', 'yudhis123456', 'Aplikasi IT Manajement Sistem untuk departemen IT development', '5', '2', '1', '<NAME>', '2014-12-17', '2014-12-16', '1', 'Coba lagi', 'IT Development', '2014-12-18', '2', '1', '3', 'KMS.png', 'KMS.png', '1', '1', '2014-12-17 09:38:52', '2015-01-20 07:09:17');
INSERT INTO `project` VALUES ('2', 'KMS', 'riyan12345', 'Knowledge Management System', '5', '2', '1', 'Ndaru Ruseno', '2014-12-19', '2015-01-20', '2', 'csacacaca', null, null, '3', '2', '3', 'KMS.png', 'KMS.png', '1', '1', '2014-12-19 06:40:30', '2015-01-21 02:29:50');
INSERT INTO `project` VALUES ('3', 'DMS', 'Ndaru', 'Document Management System', '5', '2', '1', '<NAME>', '2014-12-19', null, '3', null, null, null, '3', '1', '4', 'DMS.pdf', 'DMS.pdf', '1', null, '2014-12-19 06:49:43', '2014-12-19 06:49:43');
INSERT INTO `project` VALUES ('4', 'KMS', 'riyan12345', 'Knowledge Management System', '5', '2', '2', '<NAME>', '2014-12-19', null, '4', null, null, null, '1', '1', '3', 'KMS.apiguide.pdf', 'KMS.apiguide.pdf', '1', null, '2014-12-19 06:52:44', '2014-12-22 09:38:02');
INSERT INTO `project` VALUES ('5', 'KMS', 'yudhis123456', 'Knowledge Management System', '5', '2', '1', '<NAME>', '2014-12-19', null, '5', null, null, null, '2', null, '4', 'KMS.png', 'KMS.png', '1', null, '2014-12-19 08:21:10', '2015-02-21 03:58:01');
INSERT INTO `project` VALUES ('6', 'yudhis', 'fathur123456', 'yudhis project', '7', '3', '1', '<NAME>', '2014-12-19', null, '1', null, 'cacaca', '2015-01-21', '3', '6', '1', 'yudhis.pdf', 'yudhis.pdf', '1', '1', '2014-12-19 08:31:07', '2015-01-21 02:34:23');
INSERT INTO `project` VALUES ('7', 'test', 'csacaca', 'cascacascac', '7', '3', '1', '<NAME>', '2015-01-16', '2015-01-20', '1', 'scacacaca', 'csacaacaa', '2015-01-20', '4', null, '1', 'dacaca.pdf', 'dacaca.pdf', '1', '1', '2015-01-16 07:06:59', '2015-01-19 03:42:13');
INSERT INTO `project` VALUES ('8', 'dacaca', 'cdacaca', 'cdacacacad', '7', '3', '1', 'riyan', '2015-01-16', '2015-01-13', null, 'ascacacaaeca', null, null, null, null, '1', 'dacaca.pdf', 'dacaca.js', '1', '1', '2015-01-16 07:35:41', '2015-01-19 03:30:30');
INSERT INTO `project` VALUES ('9', 'Project coba', 'caawcwacawca', 'cwacacacwacacwa', '5', '2', '1', 'riyan', '2015-01-17', '2015-01-13', null, 'cacacacwcaca', null, null, null, null, '1', 'ckenalcnalicnai.pdf', 'ckenalcnalicnai.pdf', '1', '1', '2015-01-17 04:32:16', '2015-01-23 10:33:11');
INSERT INTO `project` VALUES ('10', 'Project Name Testing Edit', 'Reference Number Testing Edit', 'Project Description Testing Edit', '14', '4', '7', 'User Request Testing Edit', '2015-02-21', '2015-01-22', '4', 'TEsting Note', 'Testing Training Target ', '2015-01-09', '3', '10', '3', 'Project Name Testing Edit-manualbook.jpg', 'Project Name Testing-docproject.jpg', '4', '4', '2015-02-21 03:55:01', '2015-02-21 04:40:24');
-- ----------------------------
-- Table structure for `tasklist`
-- ----------------------------
DROP TABLE IF EXISTS `tasklist`;
CREATE TABLE `tasklist` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`assignment_from` int(10) DEFAULT NULL,
`assignment_to` int(10) DEFAULT NULL,
`subject` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`desc_tasklist` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`assignment_date` date DEFAULT NULL,
`due_date` date DEFAULT NULL,
`status_tasklist` int(10) DEFAULT NULL,
`reference` int(10) DEFAULT NULL,
`master_task_type_id` int(10) DEFAULT NULL,
`actual_finish_date` date DEFAULT NULL,
`close_by` int(10) DEFAULT NULL,
`parameter_reminder` int(2) DEFAULT NULL,
`upload_file` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`priority` int(10) DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `assignment_from1` (`assignment_from`),
KEY `assignment_to` (`assignment_to`),
KEY `reference1` (`reference`),
KEY `task_type_id1` (`master_task_type_id`),
KEY `user_created8` (`user_created`),
KEY `user_updated8` (`user_updated`),
KEY `status_tasklist1` (`status_tasklist`),
KEY `priority1` (`priority`),
KEY `close_by1` (`close_by`),
CONSTRAINT `close_by1` FOREIGN KEY (`close_by`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of tasklist
-- ----------------------------
INSERT INTO `tasklist` VALUES ('1', '1', '3', 'Pengerjaan Modul Tasklist', 'Membuat modul tasklist', '2014-12-16', '2014-12-18', '7', '1', '1', '2015-01-21', '1', '1', null, '11', '1', '1', '2014-12-16 08:01:13', '2015-01-21 03:58:47');
INSERT INTO `tasklist` VALUES ('2', '1', '3', 'tasklist', 'coba lagi tasklist nya...', '2015-01-20', '2015-01-22', '6', '1', '2', null, null, '3', 'coba tasklist.pdf', '12', '1', '1', '2015-01-21 02:49:20', '2015-01-23 10:11:42');
INSERT INTO `tasklist` VALUES ('3', '1', '4', 'coba lagi aahhh', 'cacaecacaca', '2015-01-19', '2015-01-23', '5', '6', '2', '2015-01-20', '4', '2', 'coba lagi aahhh.pdf', '12', '1', null, '2015-01-21 02:54:08', '2015-02-21 05:07:37');
INSERT INTO `tasklist` VALUES ('4', '4', '3', 'Testing Subject edit', 'Tasklist Description Testing edit', '2015-01-21', '2015-01-18', '5', '10', '1', null, null, '5', 'Testing Subject.jpg', '12', '4', '4', '2015-02-21 04:50:51', '2015-02-21 04:52:35');
-- ----------------------------
-- Table structure for `throttle`
-- ----------------------------
DROP TABLE IF EXISTS `throttle`;
CREATE TABLE `throttle` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned DEFAULT NULL,
`ip_address` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`attempts` int(11) NOT NULL DEFAULT '0',
`suspended` tinyint(1) NOT NULL DEFAULT '0',
`banned` tinyint(1) NOT NULL DEFAULT '0',
`last_attempt_at` timestamp NULL DEFAULT NULL,
`suspended_at` timestamp NULL DEFAULT NULL,
`banned_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `throttle_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of throttle
-- ----------------------------
INSERT INTO `throttle` VALUES ('1', '1', '::1', '0', '0', '0', null, null, null);
INSERT INTO `throttle` VALUES ('2', '1', '127.0.0.1', '0', '0', '0', null, null, null);
INSERT INTO `throttle` VALUES ('3', '2', null, '0', '0', '0', '2015-01-02 10:14:21', null, null);
INSERT INTO `throttle` VALUES ('4', '3', null, '0', '0', '0', null, null, null);
INSERT INTO `throttle` VALUES ('5', '4', null, '0', '0', '0', '2015-02-14 02:44:03', null, null);
INSERT INTO `throttle` VALUES ('6', '5', null, '0', '0', '0', null, null, null);
INSERT INTO `throttle` VALUES ('7', '6', null, '0', '0', '0', null, null, null);
INSERT INTO `throttle` VALUES ('8', '7', null, '0', '0', '0', null, null, null);
INSERT INTO `throttle` VALUES ('9', '1', '192.168.0.150', '0', '0', '0', null, null, null);
-- ----------------------------
-- Table structure for `uat`
-- ----------------------------
DROP TABLE IF EXISTS `uat`;
CREATE TABLE `uat` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`sequence` int(10) DEFAULT NULL,
`project_apps_id` int(10) DEFAULT NULL,
`uat_target` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`uat_actual_date` date DEFAULT NULL,
`uat_user` int(10) DEFAULT NULL,
`uat_note` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`uat_revision` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `uat_user1` (`uat_user`),
KEY `user_created10` (`user_created`),
KEY `user_updated10` (`user_updated`),
KEY `project_apps_id4` (`project_apps_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of uat
-- ----------------------------
INSERT INTO `uat` VALUES ('1', '1', '1', 'Target untuk Departemen IT Development', '2014-12-18', '4', 'coba test', '1.0', '1', '1', '2014-12-17 06:28:43', '2015-01-19 06:40:01');
INSERT INTO `uat` VALUES ('2', '1', '2', 'All Department', '2014-12-23', '1', 'coba dulu', '2.0', '1', '1', '2014-12-22 04:59:45', '2015-01-12 03:22:26');
INSERT INTO `uat` VALUES ('3', '3', '1', 'scacsa', '2015-01-03', '2', 'acaca', '1.1', '1', null, '2015-01-13 07:17:10', '2015-01-13 07:17:10');
INSERT INTO `uat` VALUES ('4', '2', '1', 'acacdaca', '2015-01-02', '3', 'coba UAT', '2.0', '1', '1', '2015-01-19 06:38:30', '2015-01-23 07:28:55');
INSERT INTO `uat` VALUES ('5', '2', '10', 'Testing User Accept Test Target edit', '2015-01-07', '3', 'Note Testing edit', 'Testing Revision edit', '4', '4', '2015-02-21 04:25:09', '2015-02-21 04:29:04');
-- ----------------------------
-- Table structure for `update_app`
-- ----------------------------
DROP TABLE IF EXISTS `update_app`;
CREATE TABLE `update_app` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`project_id` int(10) DEFAULT NULL,
`filename_update` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`database_change` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`apps_change` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`remark` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
`apps_version` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
`user_request` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`request_date` date DEFAULT NULL,
`update_date` date DEFAULT NULL,
`status_update_apps` int(10) DEFAULT NULL,
`user_confirmation` int(10) DEFAULT NULL,
`confirmation_date` date DEFAULT NULL,
`pic` int(10) DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=COMPACT;
-- ----------------------------
-- Records of update_app
-- ----------------------------
INSERT INTO `update_app` VALUES ('1', '2', 'Modul Report', 'membuat table report', 'membuat modul report', 'coba remark', '1.0', 'Ndaru Ruseno', '2014-12-14', '2014-12-17', '17', '1', '2015-01-22', '2', '1', '1', '2014-12-18 02:01:21', '2015-01-22 08:18:19');
INSERT INTO `update_app` VALUES ('2', '2', 'cacacaca', 'csacacacaca', 'csacacacac', 'ceacaca', '2.0', 'Ndaru Ruseno', '2015-01-17', '2015-01-22', '18', '1', '2015-01-22', '3', '1', '1', '2015-01-21 02:29:50', '2015-01-22 08:18:27');
INSERT INTO `update_app` VALUES ('3', '1', 'ceacaaca', 'ganti database', 'ganti modul aplikasi', 'ceacaaca', '2.0', '<NAME>', '2015-01-22', '2015-01-20', '18', '4', '2015-02-21', '4', '1', '4', '2015-01-21 02:34:23', '2015-02-21 04:43:06');
INSERT INTO `update_app` VALUES ('4', '10', 'Filename Update TEsting Edit', 'Change in Database Testing Edit', 'Change in Application Testing Edit', 'Remark Testing Edit', 'Applicatio', 'User Request Testing', '2015-01-09', '2015-01-15', '17', '4', '2015-02-21', '4', '4', '4', '2015-02-21 04:40:24', '2015-02-21 04:43:03');
-- ----------------------------
-- Table structure for `users`
-- ----------------------------
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`username` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`image` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
`permissions` text COLLATE utf8_unicode_ci,
`activated` tinyint(1) NOT NULL DEFAULT '0',
`activation_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`activated_at` timestamp NULL DEFAULT NULL,
`last_login` timestamp NULL DEFAULT NULL,
`password_expired_date` date DEFAULT NULL,
`persist_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`reset_password_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`first_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`last_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`),
UNIQUE KEY `users_username_unique` (`username`),
KEY `users_activation_code_index` (`activation_code`),
KEY `users_reset_password_code_index` (`reset_password_code`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of users
-- ----------------------------
INSERT INTO `users` VALUES ('1', '<EMAIL>', 'Yudhistiro', '$2y$10$.noihK.NhVAkSkxFTVL6weVMxwxZSFedqbzbY2mLBHuvTmIoJAk3C', null, '', '1', null, '2014-12-08 02:05:40', '2015-01-29 02:06:25', null, '$2y$10$NtLdchGzygOKiHRPhtv06eJKcKMAuMQXUDhe6qu1Ee2nPVg0Iluhm', null, 'Yudhistiro', 'TriAronggo', '2014-12-08 02:05:40', '2015-01-29 02:06:25');
INSERT INTO `users` VALUES ('2', '<EMAIL>', 'fathur', '$2y$10$NDsOj0VXmV0ehoE0LX6R.ut0lRT7SUJ.ryE5JI6Mfa8OrGciKI5Hm', null, '{\"view-project-list\":1}', '1', null, '2014-12-16 03:44:46', '2015-01-05 10:37:45', null, '$2y$10$w0UYpXem.VVJOfETQkpnk.OeavqUmHwYWqzwGnTmlap2FJud.mnxC', null, 'Rohman', 'Fathur', '2014-12-16 03:44:46', '2015-01-05 10:37:45');
INSERT INTO `users` VALUES ('3', '<EMAIL>', 'riyan', '$2y$10$MOeVc9MwLC.a8pWp0jE1/O4ggjjc15w8YzlqyJrtRNv68BTAtTSpy', null, '', '1', null, '2014-12-16 03:45:21', '2015-01-02 10:43:04', null, '$2y$10$fFNuDqTHRqTzedXzOUE2K.dh1zPlsQhF2gnj1G9NDSBuhq8Uz.o6S', null, 'Aprianto', 'Riyan', '2014-12-16 03:45:21', '2015-01-02 10:43:04');
INSERT INTO `users` VALUES ('4', '<EMAIL>', 'ndaru', '$2y$10$sN31HQaYWYX8gl2hXl35oeR2i4ieh4.S4lyN7yVBLDQ5nXH/GlTK2', null, '', '1', null, '2014-12-23 02:21:46', '2015-02-21 02:06:34', null, '$2y$10$lFVANs9.Ook2mERA9bpB0ur3.vHBdVfT8qNQRiwLEHCNvaaOOBv0y', null, 'Ndaru', 'Ruseno', '2014-12-23 02:21:45', '2015-02-21 02:06:34');
INSERT INTO `users` VALUES ('5', '<EMAIL>', 'upi', '$2y$10$zUU4Mt9hTZJv687vEZ/n2uVViRu169T72.P4Y1Tv8NICgsFqPMzq6', null, '', '1', null, '2015-01-05 02:03:53', '2015-01-05 06:23:16', null, '$2y$10$DtSljf/3oiZ4jVybFssSE..X2ROrDO40z2nNf1n5TkHZFDU5jFv3O', null, 'StaffPDT', 'Upi', '2015-01-05 02:03:53', '2015-01-05 06:23:16');
INSERT INTO `users` VALUES ('6', '<EMAIL>', 'aji', '$2y$10$33B1LevaOOf4.7sNIGn3lug7UmSdEkUa50j1gZMQcC18BHG9wTqUi', null, '{\"view-project-list\":1}', '1', null, '2015-01-05 02:07:46', '2015-01-05 10:38:18', null, '$2y$10$EGe103qgJY9oMGTVtplCvu1r.7XTQ3hYtS4htO60ruzRFKzqy3qq2', null, 'Sangaji', 'Fadlil', '2015-01-05 02:07:45', '2015-01-05 10:38:18');
INSERT INTO `users` VALUES ('7', '<EMAIL>', 'djanu', '$2y$10$XJcu48NhlEliNa8PlQgTgO2ziLgfupC/JzOMLYQRSaB9B49iwtyp.', null, '', '1', null, '2015-01-05 02:08:19', null, null, null, null, '', 'Djanu', '2015-01-05 02:08:19', '2015-01-05 02:08:19');
-- ----------------------------
-- Table structure for `users_groups`
-- ----------------------------
DROP TABLE IF EXISTS `users_groups`;
CREATE TABLE `users_groups` (
`user_id` int(10) unsigned NOT NULL,
`group_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`user_id`,`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of users_groups
-- ----------------------------
INSERT INTO `users_groups` VALUES ('1', '1');
INSERT INTO `users_groups` VALUES ('2', '3');
INSERT INTO `users_groups` VALUES ('3', '5');
INSERT INTO `users_groups` VALUES ('4', '1');
INSERT INTO `users_groups` VALUES ('4', '2');
INSERT INTO `users_groups` VALUES ('5', '5');
INSERT INTO `users_groups` VALUES ('6', '4');
INSERT INTO `users_groups` VALUES ('7', '5');
-- ----------------------------
-- Table structure for `weekly_meeting`
-- ----------------------------
DROP TABLE IF EXISTS `weekly_meeting`;
CREATE TABLE `weekly_meeting` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`weekly_meeting_date` date DEFAULT NULL,
`weekly_meeting_user` int(10) DEFAULT NULL,
`weekly_meeting_note` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
`user_created` int(10) DEFAULT NULL,
`user_updated` int(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Records of weekly_meeting
-- ----------------------------
INSERT INTO `weekly_meeting` VALUES ('1', '2014-12-16', '15', 'Membahas tentang progress minggu lalu dan target minggu ini', '1', '1', '2014-12-18 03:41:24', '2015-01-19 07:59:46');
INSERT INTO `weekly_meeting` VALUES ('2', '2015-01-19', '5', 'membahas apa saja boleh', '1', null, '2015-01-19 08:00:17', '2015-01-19 08:00:17');
INSERT INTO `weekly_meeting` VALUES ('3', '2015-01-09', '5', 'Weekly Meeting Note Test Edit', '4', '4', '2015-02-21 05:10:56', '2015-02-21 05:11:57');
-- ----------------------------
-- Event structure for `daily_report_scheduler`
-- ----------------------------
DROP EVENT IF EXISTS `daily_report_scheduler`;
DELIMITER ;;
CREATE DEFINER=`root`@`localhost` EVENT `daily_report_scheduler` ON SCHEDULE EVERY 1 DAY STARTS '2014-12-30 13:54:49' ON COMPLETION NOT PRESERVE ENABLE DO INSERT INTO autoemail (id,id_job_daily_report,mailto,mailfrom,cc,judul,subject,message,created_at,user_created,updated_at,user_updated,status_sent)
VALUES (
(SELECT MAX(aem.id)+1
FROM autoemail aem
JOIN job_daily_report jdr ON jdr.id = aem.id_job_daily_report
WHERE jdr.target_finish = DATE(NOW())),
(SELECT id FROM job_daily_report WHERE target_finish = DATE(NOW())),
'<EMAIL>',
'<EMAIL>',
'<EMAIL>',
(SELECT job FROM job_daily_report),
(SELECT job FROM job_daily_report),
(SELECT description FROM job_daily_report),
(SELECT NOW() FROM job_daily_report WHERE target_finish = DATE(NOW())),
(SELECT 1 FROM job_daily_report WHERE target_finish = DATE(NOW())),
(SELECT NOW() FROM job_daily_report WHERE target_finish = DATE(NOW())),
(SELECT 1 FROM job_daily_report WHERE target_finish = DATE(NOW())),
(SELECT 0 FROM job_daily_report WHERE target_finish = DATE(NOW()))
)
;
;;
DELIMITER ;
|
SELECT `entity_recognition_entityrecognitionannotation`.`id`,
`entity_recognition_entityrecognitionannotation`.`type_idx`,
`entity_recognition_entityrecognitionannotation`.`text`,
`entity_recognition_entityrecognitionannotation`.`start`,
`document_annotation`.`created`,
`document_document`.`id` as `document_pk`,
`document_document`.`document_id` as `pmid`,
`document_view`.`section_id`,
`document_view`.`user_id`
FROM `entity_recognition_entityrecognitionannotation`
INNER JOIN `document_annotation`
ON `document_annotation`.`object_id` = `entity_recognition_entityrecognitionannotation`.`id`
AND `document_annotation`.`content_type_id` = {content_type_pk}
INNER JOIN `document_view`
ON `document_annotation`.`view_id` = `document_view`.`id`
INNER JOIN `document_section`
ON `document_view`.`section_id` = `document_section`.`id`
INNER JOIN `document_document`
ON `document_document`.`id` = `document_section`.`document_id`
{filter_doc_level}
{filter_user_level}
|
CREATE DATABASE IF NOT EXISTS `web_payment_tracker`;
USE `web_payment_tracker`;
DROP TABLE IF EXISTS `customer`;
CREATE TABLE `customer` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`first_name` nvarchar(150) DEFAULT NULL,
`last_name` nvarchar(150) DEFAULT NULL,
`email` nvarchar(150) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `payment`;
CREATE TABLE `payment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_customer` int(11),
`date` date default NULL,
`money` decimal(13, 2),
`coin` nvarchar(30) DEFAULT 'NIS',
KEY `FK_CUSTOMERS_idx` (`id_customer`),
CONSTRAINT `FK_CUSTOMER` FOREIGN KEY (`id_customer`)
REFERENCES `customer` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
|
-- MySQL plain solution
SELECT
a.pay_month
,a.department_id,
CASE
WHEN a.dept_avg_sal < b.corp_avg_sal THEN "lower"
WHEN a.dept_avg_sal = b.corp_avg_sal THEN "same"
ELSE "higher"
END AS comparison
FROM
(SELECT
date_format(pay_date, '%Y-%m') as pay_month
,e.department_id
,AVG(amount) AS dept_avg_sal
FROM salary AS s
JOIN employee AS e
ON s.employee_id = e.employee_id
GROUP BY pay_month, e.department_id
) AS a
JOIN
(SELECT
date_format(pay_date, '%Y-%m') as pay_month
,AVG(amount) AS corp_avg_sal
FROM salary GROUP BY pay_month
) AS b
ON a.pay_month = b.pay_month
ORDER BY pay_month, department_id;
/* MySQL Solution using CTE*/
WITH myCTE1 AS (
SELECT s.employee_id, s.amount, s.pay_date,e.department_id,
DATE_FORMAT(s.pay_date, "%Y-%m") as y_m,
ROUND(AVG(amount) OVER(PARTITION BY DATE_FORMAT(s.pay_date, "%Y-%m")),2) 'company_avg'
FROM salary s join employee e
ON s.employee_id = e.employee_id
),
myCTE2 as (
SELECT y_m as pay_period, department_id, company_avg, ROUND(AVG(amount),2) 'department_avg'
FROM myCTE1
GROUP BY department_id, y_m
)
SELECT *,
CASE
WHEN company_avg < department_avg THEN 'higher'
WHEN company_avg > department_avg THEN 'lower'
ELSE 'lower'
END as 'comparision'
FROM myCTE2
ORDER BY pay_period desc, department_id
|
<filename>src/test/resources/vtabA.test_9.sql<gh_stars>100-1000
-- vtabA.test
--
-- db eval { DROP TABLE IF EXISTS t1; }
DROP TABLE IF EXISTS t1; |
<gh_stars>0
CREATE TABLE IF NOT EXISTS anthrokit_sessions (
sessionid TEXT PRIMARY KEY,
data TEXT,
created TIMESTAMP DEFAULT NOW(),
updated TIMESTAMP
);
|
/*
* File name: ris_dat.sql
* Function: Inserts data into the Radiology Information System database
* Author: <NAME>
*/
/*
* Insert data into persons table
*/
INSERT INTO persons VALUES
(1, 'Administrator', 'Administrator', 'Administrator', '<EMAIL>', '555-1234');
/*
* Insert data into users table
*/
INSERT INTO users VALUES
('admin', 'admin', 'a', 1, TO_DATE('20150307', 'YYYYMMDD'));
commit;
|
-- It seems like arrays and optional params or not well supported in functions
-- So have 2 functions:
-- 1 SumariseRegBuild uses meta string to build summary
-- 2 SummariseCellType takes a varchar
-- Could also have SummariseExperiments which would take a FeatureType or a CellType
-- and summarise all the experiments for the given type.
-- This is a procedure not a function as we don't return a value
-- we simply perform a select
-- We can probably split this up, so we have a *private* procedure to populate
-- cell_type/feature_type records:
-- _UpdateFeatureTypeSummary
-- _UpdateCellTypeSummary
-- As these are private, we can force the use of passing NULL, to mean
-- use the meta entries
-- Or should these have function wrappers? So we don't have to use call?
-- we need separate procedures for Seg and Reg build
-- RegBuild, should have no limitations on feature types
-- Or can we add separate columns to support seg and non-seg ftypes?
-- This might be useful to find celltypes which have a wealth of histones/TFs
-- but a relative paucity of of seg ftypes
-- to do, turn this in to a func, so we don't have to use 'call'
DROP PROCEDURE IF EXISTS SummariseSegBuild;
DELIMITER //
CREATE PROCEDURE SummariseSegBuild()
SummariseSegBuild: BEGIN
DECLARE FT_IDS, CT_IDS VARCHAR(1000) DEFAULT NULL;
SET CT_IDS=GetRegBuildCellTypeIDs();
SET FT_IDS=GetSegBuildFeatureTypeIDs();
IF CT_IDS is NULL THEN
SELECT 'The regbuild_string regbuild.cell_type_ids is not defined' as '';
LEAVE SummariseSegBuild;
END IF;
IF FT_IDS is NULL THEN
SELECT 'The regbuild_string segbuild.feature_type_ids is not defined' as '';
LEAVE SummariseSegBuild;
END IF;
call _CreateSummaryTable(FT_IDS, CT_IDS);
END
//
DELIMITER ;
-- do we need to allow FT_IDS to be NULL here, in which case we all? For RegBuildSummary?
-- But we really want this to include mandatory segbuild ftypes too even if they are not there.
-- This is just a union, no?
DROP FUNCTION IF EXISTS GetSegBuildFeatureTypeIDs;
DELIMITER //
CREATE FUNCTION GetSegBuildFeatureTypeIDs() returns VARCHAR(1000)
BEGIN
-- apparently can't use select FT_IDS := string
-- unless we are using a @FT_IDS style variable (which is a user session var)
DECLARE FT_IDS VARCHAR(1000) DEFAULT NULL;
SELECT string into FT_IDS FROM regbuild_string WHERE name='segmentation.feature_type_ids';
RETURN FT_IDS;
END
//
DELIMITER ;
DROP FUNCTION IF EXISTS GetRegBuildCellTypeIDs;
DELIMITER //
CREATE FUNCTION GetRegBuildCellTypeIDs() returns VARCHAR(1000)
BEGIN
DECLARE CT_IDS VARCHAR(1000) DEFAULT NULL;
SELECT string into CT_IDS FROM regbuild_string WHERE name='regbuild.cell_type_ids';
RETURN CT_IDS;
END
//
DELIMITER ;
DROP table if exists progress_summary;
CREATE TABLE `progress_summary` (
`cell_type_id` int(10) unsigned NOT NULL,
`feature_type_id` int(10) unsigned NOT NULL,
`experiments` int(10) DEFAULT NULL,
`imported_feature_sets` int(10) DEFAULT NULL,
`imported_result_sets` int(10) DEFAULT NULL,
`aligned_result_sets` int(10) DEFAULT NULL,
PRIMARY KEY (`cell_type_id`, `feature_type_id`)
) ENGINE=MyISAM;
CREATE OR REPLACE VIEW progress_view AS
SELECT ct.name as CellType, ft.name as FeatureType, ps.experiments, (ps.experiments - ps.imported_result_sets) as unprocessed_experiments, ps.imported_feature_sets, ps.aligned_result_sets, ps.imported_result_sets
FROM feature_type ft
JOIN progress_summary ps USING(feature_type_id)
JOIN cell_type ct using (cell_type_id);
/* This requires a procedure using separate updates as the
* left join between multiple tables broke the query
* and MySQL does not support right joins
* i.e. we were losing the NULL rows
*/
DROP PROCEDURE IF EXISTS _CreateSummaryTable;
DELIMITER //
CREATE PROCEDURE _CreateSummaryTable(IN FT_IDS VARCHAR(1000), IN CT_IDS VARCHAR(1000))
_CreateSummaryTable: BEGIN
-- IF CT_IDS is NULL THEN
-- END IF;
-- FT_IDS Will never be NULL As this is always known by the caller
-- SELECT '_CreateSummaryTable FT_IDS', FT_IDS;
-- SELECT '_CreateSummaryTable CT_IDS', CT_IDS;
-- This will create enpty records for each ctype/ftype combination to prevent having
-- to do problematic nested left/right joins.
-- The IN will cast the scalar value of CT_IDS as an int and crop it at the first comma
-- If MySQL supported arrays, then this would be possible, and would even use and index
-- but we are limited to FIND_IN_SET here, which is just a string operation to return
-- the index in the string of comma separated values.
truncate progress_summary;
INSERT INTO progress_summary(cell_type_id, feature_type_id)
SELECT ct.cell_type_id, ft.feature_type_id from cell_type ct, feature_type ft
WHERE FIND_IN_SET(ct.cell_type_id, CT_IDS) and FIND_IN_SET(ft.feature_type_id, FT_IDS) order by ct.name, ft.name;
/* SELECT ps.cell_type_id, ps.feature_type_id, e.cnt from progress_summary ps, (select cell_type_id, feature_type_id, count(*) as cnt from experiment
WHERE FIND_IN_SET(cell_type_id, CT_IDS) AND FIND_IN_SET(feature_type_id, FT_IDS) group by cell_type_id, feature_type_id) e where e.cell_type_id=ps.cell_type_id
and ps.feature_type_id=e.feature_type_id; */
-- All Experiments
UPDATE progress_summary ps,
(select cell_type_id, feature_type_id, count(*) as cnt from experiment
WHERE FIND_IN_SET(cell_type_id, CT_IDS) AND FIND_IN_SET(feature_type_id, FT_IDS) group by cell_type_id, feature_type_id) e
SET ps.experiments=e.cnt WHERE ps.cell_type_id=e.cell_type_id and ps.feature_type_id=e.feature_type_id;
UPDATE progress_summary set experiments=0 where experiments is NULL;
-- All ResultSets
-- do we want to split this into all and aligned?
-- We have a join to experiment here to make handle the IDR replicates i.e. we only wnat to count the distinct experiment
-- we could do this by counting the distinct input_subset.experiment_id where is_control=0
UPDATE progress_summary ps,
(select rse.cell_type_id, rse.feature_type_id, (IFNULL( COUNT(distinct(rse.exp_id)) , 0 )) cnt from
(select iss.experiment_id as exp_id, rs.feature_type_id, rs.cell_type_id
from input_subset iss join result_set_input rsi on iss.input_subset_id=rsi.table_id
join result_set rs using(result_set_id) where rsi.table_name='input_subset' AND iss.is_control != 1 AND
FIND_IN_SET(rs.cell_type_id, CT_IDS) AND FIND_IN_SET(rs.feature_type_id, FT_IDS))
rse group by cell_type_id, feature_type_id) rs1
SET ps.imported_result_sets=rs1.cnt WHERE ps.cell_type_id=rs1.cell_type_id and ps.feature_type_id=rs1.feature_type_id;
UPDATE progress_summary set imported_result_sets=0 where imported_result_sets is NULL;
-- tricky to handle aligned sets here, as we need to handle replicate sets
-- For the feature_set counts, we still need to link back to the experiment table somehow
-- to ensure that we are not counting any data which is not associated with an experiment
-- Unlikely, but the schema/API do support it
-- How do we then dynamically create the output table query?
-- This is easy as we want to grep by ct ft, and then simply have the counts as the field headers
-- seemingly can do this just 'if not exists'
-- meaning this will be redefined ever time this prodecude is called
-- actually can I create it anyway first?
SELECT * from progress_view;
END
//
DELIMITER ;
-- we need a procedure to re-create this if the CT/FT_IDS ever change
-- or can we use functions in view to make them dynamic?
-- update these to show the relevant controls in a 3rd column?
-- would be nice to get 'with rollup' in here, but that needs a group by.
-- can we add that artificially?
-- This does not work select * from progress_view group by CellType, FeatureType with rollup;
-- we really need a view which shows whether subsets are downloaded or not
/* Show just the data required for the segmentation data
* Use this to kick off prioritised jobs based on a group_concat query:
* select group_concat('"', experiment, '"') from seg_exp_view
* where experiment like "CTYPE_%_EXP_GROUP_" and result_set is NULL;
* Or use this wildcard string directly in SeedPipeline. This may identify
* additional non-segmentation experiments, so it's a good idea to check
* the reg_exp_view, and use the group_concat approach if there are
* already some processed experiments.
*/
/* Append suggested control sets based on a self join using the experimental_group, cell_type and WCE feature type
* This needs to be subgroup!
* This will work once we have patched the experimental_group table
* To represent subgroups as groups, but we should preferentially use the project
* which will need changing from a boolean to a varchar
*/
DELIMITER //
CREATE OR REPLACE VIEW seg_exp_view AS
SELECT e.experiment_id, e.name as experiment, ft.class, rs.name as result_set, et.notes
FROM feature_type ft, experiment e LEFT JOIN result_set rs on rs.name like concat(e.name, '%')
LEFT JOIN experiment_tracking et on e.experiment_id=et.experiment_id
WHERE FIND_IN_SET(e.cell_type_id, GetRegBuildCellTypeIDs())
AND FIND_IN_SET(e.feature_type_id, GetSegBuildFeatureTypeIDs())
AND e.feature_type_id=ft.feature_type_id ORDER by e.name;
//
DELIMITER ;
/* Shows all the data viable for the regulatory build i.e. also including the
* histones and TFs not required for the segmentation
*/
/* TODO implement this without hardcoding for WCE, i.e. use is_control somehow
We really need to have is_control at the experiment or feature_type level too.
*/
/*
DELIMITER //
CREATE OR REPLACE VIEW reg_exp_view AS
SELECT e.experiment_id, e.name as experiment, ft.class, rs.name as result_set, et.notes, group_concat(e1.name) as controls
FROM feature_type ft, experiment e LEFT JOIN result_set rs on rs.name like concat(e.name, '%')
LEFT JOIN experiment_tracking et on e.experiment_id=et.experiment_id
LEFT JOIN experiment e1 on (e.experimental_group_id=e1.experimental_group_id
AND e.cell_type_id=e1.cell_type_id and e1.name like "%\_WCE\_%")
WHERE FIND_IN_SET(e.cell_type_id, GetRegBuildCellTypeIDs())
AND e.feature_type_id=ft.feature_type_id GROUP by e.experiment_id, rs.name ORDER by e.name;
//
DELIMITER ;
*/
DELIMITER //
CREATE OR REPLACE VIEW reg_exp_view AS
SELECT e.experiment_id, e.name as experiment, ft.class, rs.name as result_set, et.notes
FROM feature_type ft, experiment e LEFT JOIN result_set rs on rs.name like concat(e.name, '%')
LEFT JOIN experiment_tracking et on e.experiment_id=et.experiment_id
WHERE FIND_IN_SET(e.cell_type_id, GetRegBuildCellTypeIDs())
AND e.feature_type_id=ft.feature_type_id ORDER by e.name;
//
DELIMITER ;
DELIMITER //
CREATE OR REPLACE VIEW exp_subset_view AS
SELECT e.name as experiment, iss.input_subset_id, iss.name, iss.replicate, iss.is_control, isst.availability_date, isst.md5sum, group_concat(sn.name) as states, isst.notes, isst.download_url, isst.local_url
FROM experiment e
LEFT JOIN input_subset iss using(experiment_id)
LEFT JOIN input_subset_tracking isst using(input_subset_id)
LEFT JOIN status s on iss.input_subset_id=s.table_id
LEFT JOIN status_name sn on s.status_name_id=sn.status_name_id
WHERE s.table_name='input_subset'
GROUP BY iss.input_subset_id;
//
DELIMITER ;
DELIMITER //
CREATE OR REPLACE VIEW result_subset_view AS
SELECT rs.result_set_id, rs.name AS result_set, iss.input_subset_id, iss.name AS input_subset,
iss.replicate, iss.is_control
FROM result_set rs
JOIN result_set_input rsi ON rs.result_set_id = rsi.result_set_id
JOIN input_subset iss ON iss.input_subset_id = rsi.table_id
WHERE rsi.table_name = 'input_subset';
//
DELIMITER ;
DELIMITER //
CREATE OR REPLACE VIEW result_replicate_subset_view AS
SELECT rs.result_set_id, rs.name as result_set, iss.name as input_subset, iss.replicate,
iss.is_control, concat(replace(rs.name, 'TR', ''), '.bam') as align_file
FROM result_set rs
JOIN result_set_input rsi USING(result_set_id)
JOIN input_subset iss on iss.input_subset_id = rsi.table_id
WHERE rsi.table_name='input_subset' and rs.name rlike ".*_TR[0-9]+$";
//
DELIMITER ;
/* we don't really need result_merged_subset_view as the mapping between bams and input fastqs is
* only really needed for the segmentation i.e. individual replicates bams
* this would involved a replcace(group_concat(replicate), ',', '_') and an order on the
* replicate aswell as the necessary group keys. Would also need to group concat the input_subset names
* so not ideal.
*/
DELIMITER //
CREATE OR REPLACE VIEW exp_status_view AS
SELECT e.name as experiment, sn.name
FROM experiment e
LEFT JOIN status s on s.table_id=e.experiment_id
LEFT JOIN status_name sn using(status_name_id)
WHERE s.table_name='experiment' ORDER BY e.name;
//
DELIMITER ;
|
CREATE SCHEMA shard$1;
CREATE SEQUENCE shard$1.message_seq;
CREATE OR REPLACE FUNCTION shard$1.next_id(OUT result bigint) AS $$
DECLARE
our_epoch bigint := 1314220021721;
seq_id bigint;
now_millis bigint;
shard_id int := $1;
max_shard_id bigint := 1024;
BEGIN
SELECT nextval('shard$1.message_seq') % max_shard_id INTO seq_id;
SELECT FLOOR(EXTRACT(EPOCH FROM clock_timestamp()) * 1000) INTO now_millis;
result := (now_millis - our_epoch) << 23;
result := result | (shard_id << 10);
result := result | (seq_id);
END;
$$ LANGUAGE PLPGSQL;
CREATE TABLE shard$1.messages (
id bigint not null default shard$1.next_id(),
user_id int not null,
message text NOT NULL,
inserted_at timestamp with time zone default now() not null,
PRIMARY KEY(id)
);
|
<filename>azure-test/tests/azure_databox_edge_device/test-get-query.sql
select name, id,type
from azure.azure_databox_edge_device
where name = '{{ resourceName }}' and resource_group = '{{ resourceName }}';
|
view_beban_penyusutan_gb_2016_a2
view_beban_penyusutan_jij_2016_a2
view_beban_penyusutan_pm_2016_a2
view_penyusutan_gb_2015_a4
view_penyusutan_gb_2016_a4
view_penyusutan_gb_2015_a3
view_penyusutan_gb_2016_a3
view_penyusutan_jij_2015_a4
view_penyusutan_jij_2016_a4
view_penyusutan_jij_2015_a3
view_penyusutan_jij_2016_a3
view_penyusutan_pm_2015_a4
view_penyusutan_pm_2016_a4
view_penyusutan_pm_2015_a3
view_penyusutan_pm_2016_a3
|
create table $schema$.[SchemaVersions] (
[SchemaVersionID] int identity(1,1) not null constraint [PK_SchemaVersions_SchemaVersionID] primary key nonclustered,
[VersionNumber] int not null,
[SourceIdentifier] nvarchar(255) not null,
[ScriptName] nvarchar(255) not null,
[Applied] datetime not null
)
go
|
CL1-001 -5.187223885136332 0.4899492956395626
CL1-002 -5.1513437828998425 -0.8573947135927115
CL1-003 -5.839433466512188 -0.4067634710986671
CL1-004 -5.466765065009535 -0.7844538410494165
CL1-005 -4.580673785154037 0.59868861982939
CL1-006 -4.766587704769671 0.2449696913391465
CL1-007 -5.160815390814215 -0.365169287989554
CL1-008 -4.4329958117434725 -0.3980053842023734
CL1-009 -4.794961119864143 0.7458796141793971
CL1-010 -5.05688789659657 0.18702482325723327
CL1-011 -4.942293960711695 0.3330519062875988
CL1-012 -4.7271734903614 -0.17926934114129414
CL1-013 -4.731485201662896 -0.5123630012113679
CL1-014 -5.828105641611072 0.5324872454206412
CL1-015 -5.81480696562953 0.9471853532624104
CL1-016 -4.853175081505953 0.13067256470293853
CL1-017 -4.667655217562711 -0.7566523485242951
CL1-018 -4.833527111742652 0.4106645151227606
CL1-019 -5.529697723036247 0.33090217029399793
CL1-020 -5.546606932623922 0.2484766294794397
CL1-021 -4.267462233291614 -0.8492966415296394
CL1-022 -4.9434482945553135 0.09935166039864016
CL1-023 -4.996010653978222 -0.7688893725651005
CL1-024 -4.835656903646469 0.8331513113832143
CL1-025 -5.282034341024096 0.23175586923147906
CL1-026 -5.301819765477003 -0.6219802280979756
CL1-027 -5.368788176908011 0.12771650350536554
CL1-028 -4.754366468014188 0.5286307257621402
CL1-029 -4.343876955563159 0.20768607491300184
CL1-030 -5.738149011513268 0.4446970013138247
CL1-031 -5.184902700766441 1.0167025699714232
CL1-032 -5.234230390812399 0.7699336099833469
CL1-033 -4.915919613616677 0.09777012256227408
CL1-034 -4.982029356524759 0.2794343704296298
CL1-035 -5.191978489234428 0.31467728233954234
CL1-036 -4.608439759753115 0.5941547357660656
CL1-037 -3.73852074537288 0.4721758871154368
CL1-038 -5.015415517205052 -0.8037649894282191
CL1-039 -4.528792187996496 -0.7236990230356921
CL1-040 -4.830489352639878 -0.21631373988387065
CL1-041 -5.326092777361968 -1.0857821810724462
CL1-042 -5.333314716617201 -0.6962438842598219
CL1-043 -4.939717480664236 0.27908744342042224
CL1-044 -4.9132801031973825 -0.5954380946009907
CL1-045 -5.816577540311713 -0.1008040513437774
CL1-046 -4.845521975346478 0.35378179256624304
CL1-047 -4.045874096684654 0.5289786554376791
CL1-048 -4.187574965980573 0.9092670770664866
CL1-049 -5.638340363234444 -0.4890906667996981
CL1-050 -4.6533825918357685 -0.6680863177001559
CL1-051 -5.2044976488574815 -1.1743505391337947
CL1-052 -5.308832366522547 -0.025440469770454933
CL1-053 -4.863271855119139 0.5629730022896389
CL1-054 -4.466230474535151 0.02103394527472244
CL1-055 -4.12197402897782 -1.1668750267697559
CL1-056 -5.166244481501943 0.6306815140570045
CL1-057 -4.32296634029702 0.10327263032981936
CL1-058 -5.371688270247258 0.7737047600066632
CL1-059 -5.667637831478992 -0.34012249886347395
CL1-060 -4.582691173176811 -0.4117550448112816
CL1-061 -5.436131605602106 -0.36334722102867456
CL1-062 -5.193545052239534 0.018916922468604703
CL1-063 -4.774651794173582 0.4802312287133916
CL1-064 -3.965173648122837 -0.2558354230170634
CL1-065 -4.753384425847772 -0.09284510997781016
CL1-066 -4.579695075768002 0.3932503562880993
CL1-067 -4.998637759706615 0.1908366277924463
CL1-068 -4.472773885561124 -0.559826583090926
CL1-069 -5.586169132892366 -0.6235740138126001
CL1-070 -6.106919021717608 1.3080894401151628
CL1-071 -4.501040404210877 -1.0460313786464956
CL1-072 -4.978325643915877 -0.23237659309687386
CL1-073 -5.3752895151226765 -0.12342946032382178
CL1-074 -4.57659375025708 -0.4227577922839139
CL1-075 -5.129809663945782 -0.4307922616417766
CL1-076 -5.300478386011276 -0.4849344137041188
CL1-077 -5.1752211944951885 0.17616465267839942
CL1-078 -5.310146873447653 0.08779555004429357
CL1-079 -5.154216105319209 -0.10764865120349593
CL1-080 -5.318437681228128 0.3045030323677431
CL1-081 -4.792072417814794 0.6648299899518588
CL1-082 -5.126542314109101 0.04377336029542759
CL1-083 -4.053002363472658 -0.04306156171146906
CL1-084 -5.202426968946718 0.0614885457769483
CL1-085 -4.426044042796223 0.18986692225195365
CL1-086 -4.920556357395821 0.7565566570936266
CL1-087 -4.889292166479086 0.2854620472288121
CL1-088 -4.6442311008569614 -0.32530969372061297
CL1-089 -5.6627417254858425 0.4946248450062355
CL1-090 -5.626954004928333 0.28121038062166204
CL1-091 -4.8609809711601315 -0.4146830685894241
CL1-092 -5.317176844287051 0.9924496556965134
CL1-093 -4.704506072683933 0.20172186374072887
CL1-094 -5.32690049965292 0.16176015812711994
CL1-095 -5.31581130884418 -0.6609168123915575
CL1-096 -5.278837509186773 0.29317293702244274
CL1-097 -5.6617296698160935 0.9609385473565072
CL1-098 -5.284329885658226 0.2493983696765287
CL1-099 -4.399094579622794 0.2265369952840834
CL1-100 -5.116396358485623 0.11815180220576027
CL1-101 -5.0607929983319035 0.19665223968025847
CL1-102 -5.584746960482068 0.0978905701441611
CL1-103 -5.591671399246351 0.4099999769394653
CL1-104 -5.490814866825732 -0.062329129839026685
CL1-105 -5.576174894435544 -0.4977133938437525
CL1-106 -4.1384473363150285 0.74153986641351
CL1-107 -5.73224088093095 -0.16036508447493955
CL1-108 -4.762273315313693 -0.16356841404526776
CL1-109 -5.0005529916135965 0.30727211783323943
CL1-110 -4.210454984856155 -0.004374398715103421
CL1-111 -5.374046970631505 0.6728017100013854
CL1-112 -4.9848427359816085 -0.408883874444981
CL1-113 -5.394024000867628 0.4897316277079385
CL1-114 -5.2201891714013415 -0.03479553513552131
CL1-115 -5.384357131491264 0.266473594096078
CL1-116 -4.903806193576162 -0.4299050049179709
CL1-117 -5.010776987974791 -0.9150054672424834
CL1-118 -4.778097207354894 -0.2361974443277904
CL1-119 -5.595508614488436 -0.04774099667897655
CL1-120 -5.082389928822937 0.188578700627773
CL1-121 -5.306195597440329 -0.4671769768419364
CL1-122 -5.738566181608382 0.27519723838830656
CL1-123 -5.5964076090250385 -0.42302715960675336
CL1-124 -5.010604224000743 0.3647203934047961
CL1-125 -4.768441403038444 0.6143352416271506
CL1-126 -4.9926301808097335 -0.03205673297385785
CL1-127 -5.628043118019098 0.2957948768616929
CL1-128 -5.099975912491357 0.5552393368588071
CL1-129 -4.685835910997504 -0.3722143959526106
CL1-130 -5.114698900106059 -0.6048039985806515
CL1-131 -4.072866319253461 0.1839550200370676
CL1-132 -5.132931878596046 0.12393017714602933
CL1-133 -5.070899738647541 0.4871129622743411
CL1-134 -5.186636642145519 -0.5171122452628392
CL1-135 -4.473644971394312 -1.1634092121393604
CL1-136 -5.21878684949781 -0.6868867665715336
CL1-137 -5.689468753830121 0.7210632136350127
CL1-138 -5.13379880096598 -0.10240735909712134
CL1-139 -4.739386675800294 0.7134836559719597
CL1-140 -5.282202210675898 0.2899597913929547
CL1-141 -5.628528969571168 0.2189395521871773
CL1-142 -5.624153017883521 0.22842097773099265
CL1-143 -5.633649239144216 0.1843583550368513
CL1-144 -5.069000620920922 0.0620174747078774
CL1-145 -4.129670116898124 -0.3218110863969393
CL1-146 -4.803916633438909 0.73379594951877
CL1-147 -4.550895151529373 -0.04336498414462681
CL1-148 -5.522057145532824 -1.3692859547702452
CL1-149 -4.463376066827539 0.023617545596094882
CL1-150 -4.64554131903118 -0.372010527178548
CL1-151 -4.775814027546165 -0.5815510447881651
CL1-152 -4.220870472243869 0.04015019960625863
CL1-153 -4.513331744448002 -0.44936683512901626
CL1-154 -4.656180131861445 0.16081061728710122
CL1-155 -4.748925438724432 -0.2178189826847456
CL1-156 -4.667267317115226 -0.3400096000433068
CL1-157 -4.497454712386286 0.4617801553804414
CL1-158 -4.6241981171650535 0.6098391855450972
CL1-159 -5.099837492422118 0.3935775668630209
CL1-160 -6.1468406400110975 -0.5599776578749165
CL1-161 -4.9307451329203245 0.20150569468621046
CL1-162 -5.618443013848221 0.0005689356650002043
CL1-163 -4.248527694120126 -0.5456022324267781
CL1-164 -5.526189563177552 -0.2125170547016553
CL1-165 -4.7215108251022615 0.1406150127899009
CL1-166 -5.075525001015603 -0.5215658145351215
CL1-167 -5.1750377882805845 -0.2103807994129689
CL1-168 -4.676118377528159 -0.8003214793371352
CL1-169 -4.550188872602594 -0.4938684983979177
CL1-170 -4.64157789518375 -0.3282412637000392
CL1-171 -5.361552242985242 0.2717879448803119
CL1-172 -5.0921006627349765 0.3226631951452061
CL1-173 -5.046741788799673 0.4083940955368585
CL1-174 -5.566827560550793 0.07475006933476544
CL1-175 -4.803182900513333 -0.6248080745268905
CL1-176 -3.65535209024372 0.6259316320711509
CL1-177 -4.818056494379871 -0.7998427569034467
CL1-178 -5.080820560901112 0.31637249783373
CL1-179 -5.5672577242043735 -0.8333564218821792
CL1-180 -5.456663913656674 -0.4670313653581554
CL1-181 -4.696593155115785 0.7945384423576781
CL1-182 -5.318801046424436 0.015173179423271059
CL1-183 -4.632343223178276 0.4901920730529618
CL1-184 -4.23889529750583 -0.4346094625289613
CL1-185 -4.557309141745222 -0.2641251924808842
CL1-186 -5.386101886033167 0.16282375265114293
CL1-187 -5.10488379789795 -0.8680044093660114
CL1-188 -4.107843799557833 0.1058636973382566
CL1-189 -5.009886736469884 0.5050435890541106
CL1-190 -4.228151650824167 -0.020069126889880683
CL1-191 -5.1008164843774 0.7549321076096335
CL1-192 -4.9748032482555065 -0.016422779013833325
CL1-193 -5.718518877978282 0.3256896287663509
CL1-194 -5.2861666641619935 0.004595307649369328
CL1-195 -5.01952530093115 -0.32754179440584497
CL1-196 -5.349184283148492 0.164178095564932
CL1-197 -4.438993342895602 -0.3607103034430769
CL1-198 -4.951517676668372 0.6725867673782737
CL1-199 -4.843447243095482 -0.20474125971833504
CL1-200 -5.389283476873446 -0.8988662609653937
CL2-001 -0.1897420676423803 -0.32700031179440675
CL2-002 0.6394938974761657 0.4450857793307239
CL2-003 0.0028031536887599753 -0.03170091550356408
CL2-004 -0.6223116901620072 0.08695211898956187
CL2-005 -0.346812377129601 0.3259508489538068
CL2-006 -0.1881852643058888 -0.2389217193745945
CL2-007 0.5981219642026103 -0.004323348255604532
CL2-008 -0.1962297483005778 0.31823422307062554
CL2-009 0.3095789433466133 0.5653470803479202
CL2-010 -0.10012678526585116 -0.6955745339701936
CL2-011 0.3426334188200135 0.5071910465726851
CL2-012 0.4559502840685263 -0.306547005929708
CL2-013 0.15340204941563415 0.27786135853613625
CL2-014 0.4303721607172581 0.3481648894319006
CL2-015 -0.14757061763704155 -0.35028086455364554
CL2-016 0.18436298986358848 0.3761622678947304
CL2-017 -0.020792949882659752 -0.9421397961437182
CL2-018 0.32108624629630195 -0.3193657145980318
CL2-019 -0.5822131190154931 0.8047919667032757
CL2-020 -0.2193322244388014 -0.6364418645164387
CL2-021 0.09164105097081728 0.2629496667771272
CL2-022 -0.5066954656537068 0.7367021768179609
CL2-023 -0.14244967785425175 -0.018423887750644945
CL2-024 -0.16530760430511807 0.14349024363521126
CL2-025 0.7313704987499552 -0.4885835709094646
CL2-026 -0.4902556839035082 -0.09735706796524736
CL2-027 0.2486463044588009 -0.3290542109366044
CL2-028 -0.16312219418217502 -0.2412337901493647
CL2-029 0.35070550616058643 0.11162947619014686
CL2-030 -0.7141452560136947 -0.4687700900818527
CL2-031 -0.18117528960104345 -0.7855502422780178
CL2-032 -0.28267290911860793 -0.04705841562023097
CL2-033 0.6852820824963219 0.6264941256218983
CL2-034 -0.6019381853484725 -0.8180984789939563
CL2-035 -0.4338966743472299 -0.506091078049449
CL2-036 -0.06726573006220922 0.5159054149767452
CL2-037 0.014462676112485409 -0.38664539645557583
CL2-038 0.4870133792203911 0.4047636660351132
CL2-039 0.4750682952215136 -0.2194807006095648
CL2-040 -0.5494101629913203 -0.6002091409731494
CL2-041 -0.14454111602768824 -0.1377041493783112
CL2-042 -0.4800438315167749 -0.2266246878701388
CL2-043 -0.1549917361110097 0.18783370828660714
CL2-044 -0.2702206799258136 -0.7660975030642524
CL2-045 0.3627563350669016 0.11436008086525813
CL2-046 0.27993315586914697 0.2431501178825713
CL2-047 0.14221320077001426 -0.5902786110255468
CL2-048 -0.6679321842705837 0.12351500920347835
CL2-049 -0.1903106825402768 -0.2942482262178112
CL2-050 -0.8313803538768737 -0.5931948646196021
CL2-051 -0.5922597947059534 0.485674069459574
CL2-052 -0.9064499675529888 0.3724870408930309
CL2-053 0.32535970372445266 -0.06912605456317901
CL2-054 -0.6715819532946006 0.7185700049752505
CL2-055 0.2660156235195901 0.2775405353869606
CL2-056 0.9203138161194216 0.15158727722722282
CL2-057 0.4493533217463341 0.3798109041105043
CL2-058 0.1680664460670906 0.12008605906557253
CL2-059 -0.9102559861822264 0.057337652084836224
CL2-060 -0.4834727786180243 -0.20512325577045973
CL2-061 -0.5066507283759611 -0.020014969932846568
CL2-062 -0.03626375753267538 0.2748828393175064
CL2-063 -0.6765770228632887 -0.7235024131942698
CL2-064 -0.14490436194874246 0.7653469578521787
CL2-065 0.13755087049677708 -0.29063322911463424
CL2-066 0.3282944603876152 -0.5200130793424365
CL2-067 -0.07972577180527034 0.3864938526928069
CL2-068 -0.4843965530192698 -0.4626996787294328
CL2-069 0.7767021999009257 0.08761430946307447
CL2-070 -0.20421526354219435 -0.06681075238094954
CL2-071 0.5765779320074846 -0.13448751648011567
CL2-072 -0.2931100268626899 -0.27547338784331704
CL2-073 0.7634277826757786 0.16085833775764227
CL2-074 -0.9596857144485784 -0.5642541776633921
CL2-075 -0.324556056879159 0.11105198415934912
CL2-076 0.4243782829060031 -0.019844269892358508
CL2-077 0.3211158010564331 0.035647166983558326
CL2-078 -0.3388781225524875 -0.3774219773781645
CL2-079 0.5986428707134264 -0.4573189590211658
CL2-080 1.0132592262522386 0.3429583378109962
CL2-081 -0.2791429744774715 0.7697738279279029
CL2-082 0.7507353350456105 -0.118154296051261
CL2-083 -0.3258967460871362 -0.8943863593475408
CL2-084 0.6640422529021882 -0.5222100433030877
CL2-085 -0.8743987277419764 -0.0689656048290145
CL2-086 -1.1742272126493107 0.06363621452441905
CL2-087 0.3516406816006277 -0.03821340214897533
CL2-088 0.9000777981082183 -0.0341620022269442
CL2-089 -0.047989838802140736 -0.2630909160751677
CL2-090 -0.1465708245030935 -0.8671673537312661
CL2-091 0.05446288797193422 -0.4260965350243548
CL2-092 0.21194777633743914 0.4932254987710686
CL2-093 -0.15589571060536606 0.3224415790443225
CL2-094 0.28388516123650603 0.02025887766157816
CL2-095 -0.7520002618028994 0.3050143569543581
CL2-096 0.445929994989919 0.5030054000299559
CL2-097 -0.2306862107079989 -0.27544522173700403
CL2-098 0.3504252572841136 -0.6061959564640411
CL2-099 -0.4702614823271456 0.15113520131226804
CL2-100 -0.3105752926889366 0.014546447695856652
CL2-101 0.5839394700229824 0.8249128119993575
CL2-102 -0.002996466405205336 -0.1719214123909793
CL2-103 0.8153357119004441 -0.7336374876142591
CL2-104 0.3681472128361821 -0.5871559316961965
CL2-105 -0.9405421219996792 -0.7694751087656301
CL2-106 0.0645451056222251 -0.26321499542689475
CL2-107 -0.8709277077949128 1.6649919702091545
CL2-108 -0.10836522884124952 -0.41135407739323343
CL2-109 1.0554251922597595 0.9805422825389756
CL2-110 -0.8004278748339871 0.6241062138619563
CL2-111 -0.10545781678644886 0.6832803008022251
CL2-112 -1.0065748431183292 -0.5402413715866989
CL2-113 0.18589124596798007 0.15347336844040202
CL2-114 -0.4534355534921091 0.2227437341059676
CL2-115 -0.06738267152851111 -0.10147902534751127
CL2-116 -0.8432172117089188 -0.3139635201350092
CL2-117 -0.06680322960784489 -0.533953557987665
CL2-118 -0.1434670193420112 0.015298166183693982
CL2-119 -0.4130379703014079 0.10147566716244184
CL2-120 1.1556812739006963 -0.5697192585572802
CL2-121 0.7570271629311872 0.3954229332892448
CL2-122 0.6180356946321317 0.3321064393668219
CL2-123 0.15805156395745934 -0.5991322679081588
CL2-124 -0.13142042754831346 -0.2725925976834294
CL2-125 -0.38742472327827016 0.08991873535650924
CL2-126 0.15053538575511688 -0.5277997128876271
CL2-127 0.3759452319865325 0.9825937674092016
CL2-128 0.3937939019825097 -0.8202563717367907
CL2-129 -0.5543723078868965 0.2977764394716259
CL2-130 0.1277422732378069 0.5094890239195903
CL2-131 0.1238653241859272 -0.33459753089864863
CL2-132 0.35569739026082514 0.2685956517369573
CL2-133 -0.16737754617763442 0.03533450916410863
CL2-134 -0.1616947727826172 -0.2633413381400221
CL2-135 -0.07219178708111568 -0.6521154529033879
CL2-136 -0.4190549597308532 -0.2017421537327661
CL2-137 0.4387646337423281 -0.0832711564899811
CL2-138 -0.02334374505606162 -0.8392180920487983
CL2-139 -0.3344849067368704 1.4018672166802455
CL2-140 -0.3969732412973595 -1.0127559319168409
CL2-141 0.34642186153083965 0.4150534076633111
CL2-142 -0.18193091589718088 -0.03787519832342854
CL2-143 0.14375752113256016 -1.036449808879168
CL2-144 -0.33642195768244104 -0.5782588763563102
CL2-145 0.1356253970032716 0.6072136205193219
CL2-146 0.1703129248700216 0.22034701818611246
CL2-147 0.14576732042796708 0.07189169980069915
CL2-148 -0.09308510945180727 -0.2284770364953549
CL2-149 0.5795962907399348 0.07061595739488001
CL2-150 -0.18855289923191587 -0.3327082938533228
CL2-151 0.4276944023398329 -0.687270975396372
CL2-152 -0.4137635516692117 0.058626465711114926
CL2-153 0.4160170349202388 -0.9447130850852076
CL2-154 0.5620264552422735 -0.017158861883540225
CL2-155 1.0537547122711142 -0.5475425378528583
CL2-156 -0.1815712927779716 0.0923468168279754
CL2-157 -0.09352176082227466 0.6498340894290476
CL2-158 0.6166981719418658 0.3300903668241876
CL2-159 0.6429721000092697 -0.38895562479731705
CL2-160 -0.5573905680769691 -0.1740373485313075
CL2-161 -0.9157068641450684 1.013902663820341
CL2-162 0.37268806355523787 -0.6905956545191136
CL2-163 0.12629956394150932 -0.16574067070641788
CL2-164 0.2029983849683884 -0.14118496570808192
CL2-165 -0.2989595430171814 0.4402315293691771
CL2-166 -0.4554787762782842 0.3258041268772185
CL2-167 0.0548126354215771 0.06338605197135337
CL2-168 0.13342798040889506 0.3241109797904449
CL2-169 0.4782495359753675 0.16118308411521906
CL2-170 -0.6498497219863476 0.6533248602320345
CL2-171 0.5162227266994399 0.5022117738812382
CL2-172 0.3165774678635641 -0.8886101656733442
CL2-173 0.2586818466486833 0.0918587125973831
CL2-174 -0.5974181631324481 -0.8004734744561417
CL2-175 -0.09007350532242717 -0.6282281604805597
CL2-176 0.04135324707502677 0.5912121627564333
CL2-177 0.4231637723766116 0.5471993745328094
CL2-178 -0.5417507227067251 -0.1255247081103196
CL2-179 0.7954115888082007 0.2995827471986449
CL2-180 0.3586361867356065 -0.5772673119427427
CL2-181 -0.3953780324051192 -0.2742302734205241
CL2-182 0.3972872591320151 0.9912862813548332
CL2-183 -0.4288260387733898 -0.23367486421759154
CL2-184 -0.981742215707308 0.6942271488073044
CL2-185 -0.19343056199089287 0.4639756464966982
CL2-186 -0.14424690740955998 0.045058512130633235
CL2-187 -0.08634922719273776 -0.8059245707016188
CL2-188 -0.5904568742347746 -0.09280716266529128
CL2-189 -0.25425435412303266 -0.23388676759259555
CL2-190 0.04942688387464088 0.3054973810956016
CL2-191 0.6007838891104685 -0.0734988477313283
CL2-192 -0.7046412171627401 -0.5090263814063201
CL2-193 0.23760562461746035 -0.1850038671920141
CL2-194 -0.0480579162973807 -0.9258534438244592
CL2-195 0.4973779040401587 -0.6944330424111033
CL2-196 -1.2396169192356363 0.2201264353852609
CL2-197 -0.29549957728649223 0.3886202287965617
CL2-198 -0.3571718355191197 -0.6328806761278725
CL2-199 -0.23881007980830904 -0.6750839044490126
CL2-200 -0.05724036113171305 -0.6381531840587336
CL3-001 4.541454392061955 0.0740770132838338
CL3-002 4.940793312392056 0.1777343785161133
CL3-003 5.065950998470115 -0.6169105584857786
CL3-004 5.32955681551336 0.08302916074826848
CL3-005 5.460295600486505 -0.09644633935951803
CL3-006 4.895259985888097 0.5900392413574319
CL3-007 5.89333485073797 -0.23463718194694336
CL3-008 5.746459772911766 -0.3238461067579922
CL3-009 5.445021610453824 -0.4192742544236467
CL3-010 5.400490935127869 0.6162879976790958
CL3-011 4.545728209744075 0.7170077780380263
CL3-012 4.937670274499391 -0.8246174867094506
CL3-013 5.2930497415557145 -0.3901334877471493
CL3-014 4.898311045508915 -0.13265472180988075
CL3-015 4.8094149743557635 0.13831850848099705
CL3-016 5.5959560070766985 0.10133588796185043
CL3-017 4.6632497928314605 0.1926783309232348
CL3-018 5.128745664639243 0.1400132997762739
CL3-019 4.312784081634416 -0.3667353655040353
CL3-020 4.516343961711077 -0.2767417011292346
CL3-021 4.5424652871176185 0.5078224612699099
CL3-022 4.969571470446051 0.24020936578812
CL3-023 5.339280110759043 -0.4663902612850897
CL3-024 5.684920105355383 -0.5971990651620384
CL3-025 5.210817270687064 -0.11804260761470335
CL3-026 5.177788111769495 0.533900825790687
CL3-027 5.878388247955417 -0.517233171394474
CL3-028 4.544457965902387 0.3469053575093511
CL3-029 4.816729137650007 0.5858720982178358
CL3-030 4.5707573224731535 -0.39445084225352695
CL3-031 5.105161727859692 0.7441068848508169
CL3-032 5.091324394767444 0.16316778518686212
CL3-033 5.393495412268405 -0.15908000515807416
CL3-034 4.556636524917538 0.6023978605250859
CL3-035 5.242848819346231 0.2174313926806188
CL3-036 5.067292296709732 -0.6153995996841627
CL3-037 4.755174612656449 0.4597085652103582
CL3-038 4.640410738521424 -0.10112973682692004
CL3-039 4.491184169338259 0.689449930819511
CL3-040 5.157455427644889 -0.15839599764038045
CL3-041 3.962959381734892 0.4904779677568407
CL3-042 4.386443898273948 -0.2484218425119415
CL3-043 5.015039491419852 -0.19083062327762376
CL3-044 4.8072759185201015 0.2402366924825667
CL3-045 5.1294264024446266 0.3017435230223761
CL3-046 3.9666344660769415 0.3919613437889201
CL3-047 5.3540079466958295 0.12524288714155316
CL3-048 5.019435949766902 0.18245358438674827
CL3-049 4.696597368446187 0.14313045379689496
CL3-050 5.366940099189973 -0.3787989091431655
CL3-051 5.6982797440393185 0.2229994295831735
CL3-052 4.593421791943952 0.3129021083682784
CL3-053 5.556690121196295 0.540028395548615
CL3-054 6.028697332522548 0.10273350909515737
CL3-055 5.6631293974294685 0.4695881288893649
CL3-056 5.357301529914829 -0.4793449966585505
CL3-057 5.046670158259649 0.3597129537011284
CL3-058 4.864517194932535 -0.04643057692634972
CL3-059 4.830392732698074 -0.12972589483076755
CL3-060 4.632779011431254 -0.2792253576472552
CL3-061 4.885094929979512 0.21177128177174825
CL3-062 5.013113204350076 -1.1606112950121972
CL3-063 4.527312881979288 0.10695080451809257
CL3-064 4.899991688997159 0.8025703506320107
CL3-065 4.641241684624925 -0.769864938874113
CL3-066 5.519682319544492 0.7133761122384706
CL3-067 5.269154343359012 -0.0462837052894487
CL3-068 5.431138816385754 0.21506252865992875
CL3-069 5.837565400998068 -0.4773566261917752
CL3-070 5.149394369321526 0.2909372428753687
CL3-071 4.666384225865581 -0.132257896347081
CL3-072 4.403102479607958 0.4629912774601817
CL3-073 4.277955884202552 0.06216346869431625
CL3-074 4.606979814646581 -1.2221816428982628
CL3-075 5.123773683042017 0.0247027824310046
CL3-076 4.768505503502367 -0.08891303020533038
CL3-077 5.362664372392222 1.1969543481882032
CL3-078 4.83756069824354 -0.09615960660572692
CL3-079 4.872940623891034 0.23391205350019345
CL3-080 4.5611454481169735 0.4920323552452897
CL3-081 5.1802983371968265 0.4668420043812189
CL3-082 4.719596667532583 -0.2663998695797013
CL3-083 3.709961871447245 -0.4791935389283221
CL3-084 5.382409632015426 0.6170407901895092
CL3-085 4.894319239833378 -0.002173350762727453
CL3-086 5.596614674306989 -0.07505796232115469
CL3-087 4.778756135032652 -0.5522621035110934
CL3-088 5.338372288472319 -0.9844939601419502
CL3-089 4.7170411447047496 -0.4155949061504042
CL3-090 4.432482543981352 1.065061942302069
CL3-091 5.231488372340581 0.9320606750757158
CL3-092 4.981830445893081 -0.09703953217714116
CL3-093 4.8381654114357335 -0.040077481291150435
CL3-094 4.779099954620485 -0.24880221228789576
CL3-095 4.5120114449841005 -0.18472745154691475
CL3-096 3.406245151801788 -0.5460223453803775
CL3-097 4.887230543800382 0.2122336436924976
CL3-098 5.698498643863117 -0.7785385884161716
CL3-099 4.792276200041568 -0.07807558073805637
CL3-100 5.747592105191207 -0.8966803831176454
CL3-101 4.720471790108725 -0.7831835279226442
CL3-102 5.184400829747458 -1.302124741736857
CL3-103 5.544644433028263 0.12387926897897067
CL3-104 5.120120440688604 -0.3987575171439939
CL3-105 5.156190352306087 0.2609191641791161
CL3-106 4.762611980925583 -0.5111521516793948
CL3-107 4.2618938554394665 -0.9128152951769756
CL3-108 5.64499158560977 0.8213454120837681
CL3-109 4.879060115947572 0.4788770767984862
CL3-110 4.448756294711163 -0.3713904986357619
CL3-111 5.043962410587294 -0.3654702112143863
CL3-112 4.9586401679041305 -0.043638462499416567
CL3-113 5.614896871497512 -0.21644124390931568
CL3-114 5.3212298985742095 -0.6980760414620172
CL3-115 5.443287654017111 -0.13786396285593847
CL3-116 5.7624791188565485 -0.3329633688225232
CL3-117 4.780300894544788 0.14314296182924022
CL3-118 5.738809450309928 -0.05473221408842021
CL3-119 4.989968358363545 -0.09957629128258144
CL3-120 5.162898042485728 -0.2605536388584767
CL3-121 4.768841198378867 -0.9439187452090524
CL3-122 4.691979908446121 -0.5684992826790594
CL3-123 5.140393815662837 0.3846718446947933
CL3-124 5.125643481646334 -0.04442293198237121
CL3-125 5.077911841158465 0.5918671643337022
CL3-126 4.8709052829857695 -0.4571274859777912
CL3-127 4.663720187321311 0.4345123940174895
CL3-128 5.668616619059756 -0.011606509050783151
CL3-129 5.350092946101116 0.43604083730109705
CL3-130 4.807334907598577 0.4516970348316995
CL3-131 4.998747206224898 -0.2958045034080605
CL3-132 5.481050207060883 -0.4606998697795616
CL3-133 4.584204746300983 0.12346817439476836
CL3-134 4.393947836531882 0.19871582064376087
CL3-135 5.261189863264014 -0.05184794791846367
CL3-136 4.296250812256687 0.032779597533634505
CL3-137 4.9604164288045665 -0.020574445079099817
CL3-138 5.113479998133529 -0.14233753421811635
CL3-139 4.544646491794111 0.5526072759956061
CL3-140 4.895002408608537 0.7531818517971579
CL3-141 5.059917101234847 0.7518606952639816
CL3-142 5.203016139935446 0.02686226674840345
CL3-143 5.150512218806977 -0.9373453927926556
CL3-144 4.97920363722203 -0.0749604584188928
CL3-145 4.9992730870031235 -0.2469416781973131
CL3-146 5.120562434730371 -0.15076947497317175
CL3-147 5.3415283876728346 -0.03337115745817261
CL3-148 5.200805568596209 1.092992340853259
CL3-149 5.3520483245181865 -0.8334798913233598
CL3-150 6.004229485787557 -0.5323877528098147
CL3-151 5.0012872810865465 -0.8776286240383515
CL3-152 5.164695755110146 0.29815498048078554
CL3-153 4.352747134592343 -0.4793008874197756
CL3-154 5.020198077111519 -0.5481639325002422
CL3-155 4.5386811029234035 -0.23611563899323915
CL3-156 4.593887688066954 0.7724808866554491
CL3-157 4.785231868143416 -0.5727885408713166
CL3-158 5.441406597223902 0.6176030781542249
CL3-159 4.634788061357299 -0.3856952141787923
CL3-160 5.8942031910825285 -0.01914796161489934
CL3-161 5.342061170715168 -0.3441809577370241
CL3-162 5.198552162871066 0.7926909606098947
CL3-163 5.390888745714584 0.4074009266680049
CL3-164 5.265429983198231 -0.7968566990360183
CL3-165 4.29361649061793 0.3839803517340835
CL3-166 5.807116552337938 -0.6642395368214741
CL3-167 4.735549268405159 -0.07823330177093216
CL3-168 5.575668465973238 0.21934919787282106
CL3-169 4.974096136024336 0.12862092788460291
CL3-170 4.585413965180146 0.5610301149652897
CL3-171 4.539950091245414 0.44603776225597946
CL3-172 3.779935063785265 0.007116909433558133
CL3-173 4.336763509921604 -0.7659019112747102
CL3-174 5.213179643598384 0.3678266117004232
CL3-175 5.516714975093587 -1.1017693531223365
CL3-176 4.104538985159016 -0.12503129950414374
CL3-177 4.005483089503499 0.030394753330034545
CL3-178 4.638738242574061 0.6962003252477111
CL3-179 4.4802648353450545 -0.030790498514866992
CL3-180 5.007474082216527 -0.5750748331733267
CL3-181 4.5769296087979265 -0.4516824132713181
CL3-182 5.594111263495396 -0.06435819241185617
CL3-183 5.469933452864422 -0.2846066252497391
CL3-184 5.3097562747446565 0.2065517023308233
CL3-185 5.19191672169096 -0.09157193564473798
CL3-186 5.183419684064848 0.3355431731581825
CL3-187 4.821773357967774 -0.8621262278446995
CL3-188 5.847547644918881 0.17931378513414478
CL3-189 5.1551376458825935 -0.06525974217296808
CL3-190 4.28978748392038 -0.2080333577327062
CL3-191 4.666623121352014 -0.5255074522434894
CL3-192 5.37506880551555 0.17711478126649682
CL3-193 5.412675378276408 -0.4402201291194552
CL3-194 4.951684629283298 -0.14635385352735142
CL3-195 4.317527677915133 0.9278799341615198
CL3-196 4.521756499100438 -0.4813848529474722
CL3-197 5.586362355253102 0.8871496153259372
CL3-198 5.417251455011464 -0.3646209433556677
CL3-199 5.111493204554936 0.527895391997657
CL3-200 4.8860631429057495 -0.20076065693246067
|
-- @testpoint: 创建复合字段唯一约束
-- @modify at: 2020-11-23
--建表
drop table if exists test_unique_constraint011;
create table test_unique_constraint011 (id_p int not null, lastname varchar(255) not null unique, firstname varchar(255),
address varchar(255), city varchar(255),constraint uc_personid unique (id_p,lastname,firstname,address,city));
--插入数据,成功
insert into test_unique_constraint011 values(1,'mary','','','');
insert into test_unique_constraint011 values(2,'maryss','','','');
insert into test_unique_constraint011 values(1,'jhon','','','');
--查询表信息
select * from test_unique_constraint011;
--通过系统表查询约束信息
select conname,contype from pg_constraint where conrelid = (select oid from pg_class where relname = 'test_unique_constraint011') order by conname;
--删表
drop table if exists test_unique_constraint011; |
# --- !Ups
ALTER TABLE ENQUIRY ADD COLUMN SUBJECT varchar(200);
UPDATE ENQUIRY SET SUBJECT = 'Enquiry' WHERE SUBJECT IS NULL;
ALTER TABLE ENQUIRY ALTER COLUMN SUBJECT SET NOT NULL;
ALTER TABLE ENQUIRY_VERSION ADD COLUMN SUBJECT varchar(200);
UPDATE ENQUIRY_VERSION SET SUBJECT = 'Enquiry' WHERE SUBJECT IS NULL;
ALTER TABLE ENQUIRY_VERSION ALTER COLUMN SUBJECT SET NOT NULL;
# --- !Downs
ALTER TABLE ENQUIRY DROP COLUMN SUBJECT;
ALTER TABLE ENQUIRY_VERSION DROP COLUMN SUBJECT; |
CREATE PROC usp_GetEmployeesSalaryAbove35000
AS
SELECT FirstName, LastName
FROM Employees
WHERE Salary > 35000
GO
EXEC usp_GetEmployeesSalaryAbove35000 |
CREATE TABLE IF NOT EXISTS comment (
id INTEGER PRIMARY KEY AUTOINCREMENT,
post_id INTEGER NOT NULL,
comment TEXT NOT NULL,
FOREIGN KEY (post_id) REFERENCES post(id)
);
CREATE TABLE IF NOT EXISTS post (
id INTEGER PRIMARY KEY AUTOINCREMENT,
txt TEXT NOT NULL
);
INSERT INTO post (txt) VALUES ("post1");
INSERT INTO post (txt) VALUES ("post2");
INSERT INTO post (txt) VALUES ("post3");
INSERT INTO post (txt) VALUES ("post4");
INSERT INTO post (txt) VALUES ("post5");
INSERT INTO post (txt) VALUES ("post10000000000000000000000");
INSERT INTO comment (post_id, comment) VALUES (1, 'baz');
INSERT INTO comment (post_id, comment) VALUES (3, 'bazbaz');
INSERT INTO comment (post_id, comment) VALUES (5, 'bazbazbaz');
SELECT * FROM post JOIN comment ON post.id = comment.id;
SELECT * FROM post;
|
<reponame>septianawijayanto/e-learning-ujian
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Waktu pembuatan: 02 Bulan Mei 2021 pada 12.25
-- Versi server: 10.4.14-MariaDB
-- Versi PHP: 7.4.9
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 */;
--
-- Database: `new_learning`
--
-- --------------------------------------------------------
--
-- Struktur dari tabel `admin`
--
CREATE TABLE `admin` (
`id` bigint(20) UNSIGNED NOT NULL,
`username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`nama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `admin`
--
INSERT INTO `admin` (`id`, `username`, `password`, `nama`, `created_at`, `updated_at`) VALUES
(1, 'admin', <PASSWORD>', 'Admin', '2021-04-30 22:00:11', '2021-04-30 22:00:11');
-- --------------------------------------------------------
--
-- Struktur dari tabel `distribusi_soal`
--
CREATE TABLE `distribusi_soal` (
`id` bigint(20) UNSIGNED NOT NULL,
`ujian_id` int(11) NOT NULL,
`kelas_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `distribusi_soal`
--
INSERT INTO `distribusi_soal` (`id`, `ujian_id`, `kelas_id`, `created_at`, `updated_at`) VALUES
(1, 1, 1, '2021-04-30 23:39:54', '2021-04-30 23:39:54'),
(2, 2, 1, '2021-05-01 19:47:47', '2021-05-01 19:47:47'),
(3, 3, 1, '2021-05-01 20:07:26', '2021-05-01 20:07:26'),
(4, 4, 1, '2021-05-01 23:11:28', '2021-05-01 23:11:28'),
(5, 5, 2, '2021-05-01 23:32:08', '2021-05-01 23:32:08'),
(6, 6, 1, '2021-05-02 01:45:02', '2021-05-02 01:45:02'),
(7, 7, 1, '2021-05-02 02:29:43', '2021-05-02 02:29:43'),
(8, 8, 1, '2021-05-02 02:31:20', '2021-05-02 02:31:20');
-- --------------------------------------------------------
--
-- Struktur dari tabel `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `grup`
--
CREATE TABLE `grup` (
`id` bigint(20) UNSIGNED NOT NULL,
`kode` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL,
`guru_id` bigint(20) UNSIGNED NOT NULL,
`mapel_id` bigint(20) UNSIGNED NOT NULL,
`kelas_id` bigint(20) UNSIGNED NOT NULL,
`deskripsi` text COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `grup`
--
INSERT INTO `grup` (`id`, `kode`, `guru_id`, `mapel_id`, `kelas_id`, `deskripsi`, `status`, `created_at`, `updated_at`) VALUES
(1, 'fiNNq', 1, 1, 1, 'a', NULL, '2021-04-30 22:01:18', '2021-04-30 22:01:18'),
(2, 'oIWnc', 3, 1, 2, 'a', NULL, '2021-05-01 23:30:03', '2021-05-01 23:30:03');
-- --------------------------------------------------------
--
-- Struktur dari tabel `grup_aktivitas`
--
CREATE TABLE `grup_aktivitas` (
`id` bigint(20) UNSIGNED NOT NULL,
`grup_id` bigint(20) UNSIGNED NOT NULL,
`siswa_id` bigint(20) UNSIGNED NOT NULL,
`deskripsi` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `grup_aktivitas`
--
INSERT INTO `grup_aktivitas` (`id`, `grup_id`, `siswa_id`, `deskripsi`, `created_at`, `updated_at`) VALUES
(3, 1, 1, 'Melihat Daftar Materi Grup 7A', '2021-04-30 22:50:09', '2021-04-30 22:50:09'),
(4, 1, 1, 'Melihat Daftar Materi Grup 7A', '2021-04-30 22:50:33', '2021-04-30 22:50:33'),
(5, 1, 1, 'Melihat Daftar Materi Grup 7A', '2021-04-30 22:50:37', '2021-04-30 22:50:37'),
(6, 1, 1, 'Keluar dari grup', '2021-05-01 06:55:11', '2021-05-01 06:55:11'),
(7, 1, 1, 'Melihat Daftar Materi Grup 7A', '2021-05-02 02:49:50', '2021-05-02 02:49:50');
-- --------------------------------------------------------
--
-- Struktur dari tabel `grup_materi`
--
CREATE TABLE `grup_materi` (
`id` bigint(20) UNSIGNED NOT NULL,
`judul` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`grup_id` bigint(20) UNSIGNED NOT NULL,
`materi_id` bigint(20) UNSIGNED NOT NULL,
`guru_id` bigint(20) UNSIGNED NOT NULL,
`status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `grup_siswa`
--
CREATE TABLE `grup_siswa` (
`id` bigint(20) UNSIGNED NOT NULL,
`siswa_id` bigint(20) UNSIGNED NOT NULL,
`grup_id` bigint(20) UNSIGNED NOT NULL,
`status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`deskripsi` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `grup_siswa`
--
INSERT INTO `grup_siswa` (`id`, `siswa_id`, `grup_id`, `status`, `deskripsi`, `created_at`, `updated_at`) VALUES
(19, 3, 1, '1', 'Di Undang', '2021-05-01 00:24:04', '2021-05-01 00:24:04'),
(22, 1, 1, '1', 'Di Undang', '2021-05-01 06:56:01', '2021-05-01 06:56:01'),
(23, 2, 2, '1', 'Di Undang', '2021-05-01 23:30:16', '2021-05-01 23:30:16');
-- --------------------------------------------------------
--
-- Struktur dari tabel `guru`
--
CREATE TABLE `guru` (
`id` bigint(20) UNSIGNED NOT NULL,
`no_induk` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`nama` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`tempat_lahir` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`tgl_lahir` date NOT NULL,
`agama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`no_telp` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL,
`alamat` text COLLATE utf8mb4_unicode_ci NOT NULL,
`jenkel` enum('L','P') COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`deskripsi` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `guru`
--
INSERT INTO `guru` (`id`, `no_induk`, `password`, `username`, `nama`, `tempat_lahir`, `tgl_lahir`, `agama`, `no_telp`, `alamat`, `jenkel`, `status`, `deskripsi`, `created_at`, `updated_at`) VALUES
(1, '1', '$2y$10$ODTlw/A89K0mO.BrmXy/ieLg9gd/0ZP3wdcUdnqKWBXnXoU4ITAQu', 'guru', 'Guru', 'Jambi', '2021-05-01', 'Islam', '089998', 'Jambi', 'L', '1', 'guru1', '2021-04-30 22:00:11', '2021-04-30 22:00:11'),
(2, '2', '$2y$10$BKFzn8K6QTr09NIwNgNA0.wnZZXp1oYVaxDJWHL3VPZZdhKPaLsiO', 'guru2', 'Guru2', 'Jambi', '2021-05-01', 'Islam', '089998', 'Jambi', 'L', '1', 'guru1', '2021-04-30 22:00:11', '2021-04-30 22:00:11'),
(3, '3', '$2y$10$m1ZPXwiWmSDxLMwbv0oRn.qXJUkb1Sx00bpQoJJR6FGc1W39DyXUC', 'wedus', 'wedus', 'Jambi', '2021-01-01', 'Islam', 'wedus', 'a', 'L', '1', 'a', '2021-05-01 17:00:00', '2021-05-01 17:00:00');
-- --------------------------------------------------------
--
-- Struktur dari tabel `kelas`
--
CREATE TABLE `kelas` (
`id` bigint(20) UNSIGNED NOT NULL,
`guru_id` bigint(20) UNSIGNED NOT NULL,
`kelas` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `kelas`
--
INSERT INTO `kelas` (`id`, `guru_id`, `kelas`, `created_at`, `updated_at`) VALUES
(1, 1, '7A', '2021-04-30 22:00:11', '2021-04-30 22:00:11'),
(2, 2, '7B', '2021-04-30 22:00:11', '2021-04-30 22:00:11');
-- --------------------------------------------------------
--
-- Struktur dari tabel `kelola_nilai`
--
CREATE TABLE `kelola_nilai` (
`id` bigint(20) UNSIGNED NOT NULL,
`siswa_id` bigint(20) UNSIGNED NOT NULL,
`kelas_id` bigint(20) UNSIGNED NOT NULL,
`mapel_id` bigint(20) UNSIGNED NOT NULL,
`guru_id` int(11) NOT NULL,
`nilai` int(11) NOT NULL,
`jenis` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `kelola_nilai`
--
INSERT INTO `kelola_nilai` (`id`, `siswa_id`, `kelas_id`, `mapel_id`, `guru_id`, `nilai`, `jenis`, `created_at`, `updated_at`) VALUES
(1, 1, 1, 1, 1, 100, 'Latihan', NULL, NULL),
(2, 1, 1, 1, 1, 100, 'tugas', NULL, NULL);
-- --------------------------------------------------------
--
-- Struktur dari tabel `mapel`
--
CREATE TABLE `mapel` (
`id` bigint(20) UNSIGNED NOT NULL,
`kode_mapel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`mapel` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `mapel`
--
INSERT INTO `mapel` (`id`, `kode_mapel`, `mapel`, `created_at`, `updated_at`) VALUES
(1, '1', 'Ba<NAME>', '2021-04-30 22:00:11', '2021-04-30 22:00:11'),
(2, '2', 'Bahasa Inggris', '2021-04-30 22:03:41', '2021-04-30 22:03:41');
-- --------------------------------------------------------
--
-- Struktur dari tabel `materi`
--
CREATE TABLE `materi` (
`id` bigint(20) UNSIGNED NOT NULL,
`judul` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`guru_id` bigint(20) UNSIGNED NOT NULL,
`jenis` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`isi` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `materi`
--
INSERT INTO `materi` (`id`, `judul`, `guru_id`, `jenis`, `isi`, `created_at`, `updated_at`) VALUES
(8, 'Materi 1', 1, 'file', 'public/materi/PVZU8JM6zR2edaYxDJTm9FdedQhtbNH6iDHoF6uu.docx', '2021-05-01 23:09:40', '2021-05-01 23:09:40');
-- --------------------------------------------------------
--
-- Struktur dari tabel `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2019_08_19_000000_create_failed_jobs_table', 1),
(4, '2021_03_23_152954__create_admin_table', 1),
(5, '2021_04_21_062506_create_gurus_table', 1),
(6, '2021_04_21_062524_create_mapels_table', 1),
(7, '2021_04_22_081458__create_kelas_table', 1),
(8, '2021_04_22_084802__create_siswa_table', 1),
(9, '2021_04_23_051934_create_ujians_table', 1),
(10, '2021_04_23_052120_create_soal_essays_table', 1),
(11, '2021_04_23_052212_create_soal_pilgans_table', 1),
(12, '2021_04_28_075327__create_nilai_pilgan_table', 1),
(13, '2021_04_28_075350__create_nilai_essay_table', 1),
(14, '2021_04_28_075416_create_kelola_nilais_table', 1),
(15, '2021_04_28_103328__create_distribusi_soal_table', 1),
(16, '2021_04_30_041736_create_grups_table', 1),
(17, '2021_04_30_041843_create_materis_table', 1),
(18, '2021_04_30_041919_create_grup_materis_table', 1),
(19, '2021_04_30_041955_create_grup_siswas_table', 1),
(20, '2021_04_30_042030_create_grup_aktivitas_table', 1),
(21, '2021_04_30_042056_create_tugas_table', 1),
(22, '2021_04_30_042120_create_tugas_jawabans_table', 1),
(23, '2021_05_01_061712__create_tugas_jawaban_table', 2);
-- --------------------------------------------------------
--
-- Struktur dari tabel `nilai_essay`
--
CREATE TABLE `nilai_essay` (
`id` bigint(20) UNSIGNED NOT NULL,
`id_detail_soal_essay` int(11) NOT NULL,
`ujian_id` bigint(20) UNSIGNED NOT NULL,
`siswa_id` bigint(20) UNSIGNED NOT NULL,
`jawab` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`score` decimal(8,2) NOT NULL,
`status` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `nilai_essay`
--
INSERT INTO `nilai_essay` (`id`, `id_detail_soal_essay`, `ujian_id`, `siswa_id`, `jawab`, `score`, `status`, `created_at`, `updated_at`) VALUES
(1, 3, 6, 1, 'Doa indonesia aman', '0.00', 1, '2021-05-02 02:14:15', '2021-05-02 02:22:11'),
(2, 4, 8, 1, 'Iya', '0.00', 1, '2021-05-02 02:32:29', '2021-05-02 02:32:43'),
(3, 5, 8, 1, 'Pasti Lah', '0.00', 1, '2021-05-02 02:32:39', '2021-05-02 02:32:43'),
(4, 2, 4, 1, 'Mboh', '0.00', 1, '2021-05-02 03:22:02', '2021-05-02 03:22:05');
-- --------------------------------------------------------
--
-- Struktur dari tabel `nilai_pilgan`
--
CREATE TABLE `nilai_pilgan` (
`id` bigint(20) UNSIGNED NOT NULL,
`no_soal_id` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL,
`ujian_id` bigint(20) UNSIGNED NOT NULL,
`siswa_id` bigint(20) UNSIGNED NOT NULL,
`kelas_id` bigint(20) UNSIGNED NOT NULL,
`nama` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`pilihan` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL,
`benar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`salah` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`score` decimal(8,2) NOT NULL,
`status` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL,
`revisi` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `nilai_pilgan`
--
INSERT INTO `nilai_pilgan` (`id`, `no_soal_id`, `ujian_id`, `siswa_id`, `kelas_id`, `nama`, `pilihan`, `benar`, `salah`, `score`, `status`, `revisi`, `created_at`, `updated_at`) VALUES
(1, '20', 7, 1, 1, 'Siswa', 'A', '1', '0', '50.00', '1', 0, '2021-05-02 03:20:20', '2021-05-02 03:20:33'),
(2, '21', 7, 1, 1, 'Siswa', 'D', '1', '0', '50.00', '1', 0, '2021-05-02 03:20:29', '2021-05-02 03:20:33');
-- --------------------------------------------------------
--
-- Struktur dari tabel `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Struktur dari tabel `siswa`
--
CREATE TABLE `siswa` (
`id` bigint(20) UNSIGNED NOT NULL,
`kelas_id` bigint(20) UNSIGNED NOT NULL,
`no_induk` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`nama` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`tempat_lahir` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`tgl_lahir` date NOT NULL,
`agama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`no_telp` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL,
`alamat` text COLLATE utf8mb4_unicode_ci NOT NULL,
`jenkel` enum('L','P') COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`deskripsi` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `siswa`
--
INSERT INTO `siswa` (`id`, `kelas_id`, `no_induk`, `password`, `username`, `nama`, `tempat_lahir`, `tgl_lahir`, `agama`, `no_telp`, `alamat`, `jenkel`, `status`, `deskripsi`, `created_at`, `updated_at`) VALUES
(1, 1, '1', '$2y$10$4Xbdju4zY1kIVf/hX6NP.uavUG9atsHeLhOGJNjXvLSI8f15hD7V.', 'siswa', 'Siswa', 'Jambi', '2021-05-01', 'Islam', '0899898', 'Jambi', 'L', '1', 'siswa1', '2021-04-30 22:00:11', '2021-04-30 22:00:11'),
(2, 2, '2', '$2y$10$RJEELP6V6.Pbo4mOHTQxUeRxGQ5krqXjAPfR2tpwl3.SdfiML1V1i', 'siswa2', 'Siswa2', 'Jambi', '2021-05-01', 'Islam', '0899898', 'Jambi', 'L', '1', 'siswa1', '2021-04-30 22:00:11', '2021-04-30 22:00:11'),
(3, 1, '1234', '$2y$10$roERBSZyKbFxbMSplMgzSOnG6D3KbD44rVwy9vA0Dp9KM8uKT6jIC', 'yessi', 'Yessi', 'Jambi', '2021-05-19', 'Islam', '08765435578', 'a', 'P', '1', 'a', '2021-04-30 17:00:00', '2021-04-30 17:00:00');
-- --------------------------------------------------------
--
-- Struktur dari tabel `soal_essay`
--
CREATE TABLE `soal_essay` (
`id` bigint(20) UNSIGNED NOT NULL,
`ujian_id` bigint(20) UNSIGNED NOT NULL,
`guru_id` bigint(20) UNSIGNED NOT NULL,
`soal` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`jenis` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `soal_essay`
--
INSERT INTO `soal_essay` (`id`, `ujian_id`, `guru_id`, `soal`, `jenis`, `created_at`, `updated_at`) VALUES
(2, 4, 1, '<p>Siapa Dia?</p>', 'Ujian', '2021-05-02 01:42:46', '2021-05-02 01:42:46'),
(3, 6, 1, '<p>Apa Kepanjangan DIA?</p>', 'Ujian', '2021-05-02 01:44:57', '2021-05-02 01:44:57'),
(4, 8, 1, 'Suka Main Pubg?', 'Latihan', '2021-05-02 02:30:29', '2021-05-02 02:30:29'),
(5, 8, 1, 'FF Burik?', 'Latihan', '2021-05-02 02:30:37', '2021-05-02 02:30:37');
-- --------------------------------------------------------
--
-- Struktur dari tabel `soal_pilgan`
--
CREATE TABLE `soal_pilgan` (
`id` bigint(20) UNSIGNED NOT NULL,
`soal` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`ujian_id` bigint(20) UNSIGNED NOT NULL,
`guru_id` bigint(20) UNSIGNED NOT NULL,
`pil_a` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`pil_b` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`pil_c` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`pil_d` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`kunci` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`jenis` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`skor` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `soal_pilgan`
--
INSERT INTO `soal_pilgan` (`id`, `soal`, `ujian_id`, `guru_id`, `pil_a`, `pil_b`, `pil_c`, `pil_d`, `kunci`, `jenis`, `skor`, `created_at`, `updated_at`) VALUES
(16, '<p><img src=\"data:image/png;base64,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\" data-filename=\"pngwing.com.png\" style=\"width: 25%;\"> Gambar Apakah Itu?<br></p>', 4, 1, '<p>Buku</p>', '<p>Gambar Mobil</p>', '<p>Motor</p>', '<p>Rumah</p>', 'A', 'Ujian', 100, '2021-05-01 23:11:23', '2021-05-01 23:11:23'),
(17, '<p>A</p>', 5, 3, '<p>A</p>', '<p>A</p>', '<p>A</p>', '<p>A</p>', 'A', 'Ujian', 100, '2021-05-01 23:32:20', '2021-05-01 23:32:20'),
(18, '<p>Siapa Dia?</p>', 6, 1, '<p>Orang</p>', '<p>Manusia</p>', '<p>Hewan</p>', '<p>Kubu</p>', 'A', 'Ujian', 50, '2021-05-02 01:43:39', '2021-05-02 01:43:39');
INSERT INTO `soal_pilgan` (`id`, `soal`, `ujian_id`, `guru_id`, `pil_a`, `pil_b`, `pil_c`, `pil_d`, `kunci`, `jenis`, `skor`, `created_at`, `updated_at`) VALUES
(19, '<p><img src=\"data:image/jpeg;base64,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\" data-filename=\"WhatsApp Image 2021-02-13 at 12.50.02 PM (1).jpeg\" style=\"width: 25%;\">Gambar di samping adalaha gambar?</p>', 6, 1, 'Kertas', 'Soal', 'Ujian', 'Dokumen', 'A', 'Ujian', 50, '2021-05-02 01:44:37', '2021-05-02 01:44:37');
INSERT INTO `soal_pilgan` (`id`, `soal`, `ujian_id`, `guru_id`, `pil_a`, `pil_b`, `pil_c`, `pil_d`, `kunci`, `jenis`, `skor`, `created_at`, `updated_at`) VALUES
(20, '<p>Wedus</p>', 7, 1, '<p>gembel</p>', '<p>elit</p>', '<p>pas</p>', '<p>ff burik</p>', 'A', 'Latihan', 50, '2021-05-02 02:29:14', '2021-05-02 02:29:14'),
(21, 'PUBG', 7, 1, 'bagis', 'mantap', 'gak burik', 'ok', 'D', 'Latihan', 50, '2021-05-02 02:29:38', '2021-05-02 02:29:38');
-- --------------------------------------------------------
--
-- Struktur dari tabel `tugas`
--
CREATE TABLE `tugas` (
`id` bigint(20) UNSIGNED NOT NULL,
`judul` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`guru_id` bigint(20) UNSIGNED NOT NULL,
`grup_id` bigint(20) UNSIGNED NOT NULL,
`kelas_id` bigint(20) UNSIGNED NOT NULL,
`jenis` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`isi` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`batas_waktu` date NOT NULL,
`deskripsi` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `tugas`
--
INSERT INTO `tugas` (`id`, `judul`, `guru_id`, `grup_id`, `kelas_id`, `jenis`, `isi`, `batas_waktu`, `deskripsi`, `created_at`, `updated_at`) VALUES
(1, 'Tugas 1', 1, 1, 1, 'file', 'public/tugas/UmSVTp1bPIlhT3kaFr9tdXglpuulltTGKKfIGdq2.pdf', '2021-05-08', 'a', '2021-04-30 17:00:00', '2021-04-30 17:00:00'),
(2, 'Tugas 1', 3, 2, 2, 'teks', 'A', '2021-05-03', 'A', '2021-05-01 17:00:00', '2021-05-01 17:00:00'),
(3, 'Tugas 2', 3, 2, 2, 'file', 'public/tugas/EBcZM0OcZNbt4B8myF4iSclR1i5SHLAAIXN7SaHg.docx', '2021-05-08', 'Kejrakan sendiri', '2021-05-01 17:00:00', '2021-05-01 17:00:00');
-- --------------------------------------------------------
--
-- Struktur dari tabel `tugas_jawaban`
--
CREATE TABLE `tugas_jawaban` (
`id` bigint(20) UNSIGNED NOT NULL,
`tugas_id` bigint(20) UNSIGNED NOT NULL,
`siswa_id` bigint(20) UNSIGNED NOT NULL,
`jenis` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`isi` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`score` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL,
`deskripsi` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `tugas_jawaban`
--
INSERT INTO `tugas_jawaban` (`id`, `tugas_id`, `siswa_id`, `jenis`, `isi`, `score`, `status`, `deskripsi`, `created_at`, `updated_at`) VALUES
(1, 1, 1, 'file', 'public/tugas/LLceTZqtR8y2K1uZLTOwoHJSjIa7IJTlDy4ndjQf.pdf', '100', '3', 'a', '2021-04-30 17:00:00', '2021-05-02 03:23:30'),
(2, 2, 2, 'teks', 'Iya', '80', '3', 'Iya', '2021-05-01 17:00:00', '2021-05-01 23:39:57'),
(3, 3, 2, 'file', 'public/tugas/C0eYFLIlKD3HgfZjdHt5DyxzBcQoBhATq8axWhNr.pdf', NULL, '1', 'a', '2021-05-01 17:00:00', '2021-05-01 23:46:01');
-- --------------------------------------------------------
--
-- Struktur dari tabel `ujian`
--
CREATE TABLE `ujian` (
`id` bigint(20) UNSIGNED NOT NULL,
`mapel_id` bigint(20) UNSIGNED NOT NULL,
`guru_id` bigint(20) UNSIGNED NOT NULL,
`jenis` enum('Ujian','Latihan') COLLATE utf8mb4_unicode_ci NOT NULL,
`paket` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`deskripsi` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`waktu` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data untuk tabel `ujian`
--
INSERT INTO `ujian` (`id`, `mapel_id`, `guru_id`, `jenis`, `paket`, `deskripsi`, `waktu`, `created_at`, `updated_at`) VALUES
(4, 1, 1, 'Ujian', 'Ujian Semester', 'J', '15', '2021-05-01 17:00:00', '2021-05-01 17:00:00'),
(5, 1, 3, 'Ujian', 'Ujian Semester', 'A', '15', '2021-05-01 17:00:00', '2021-05-01 17:00:00'),
(6, 1, 1, 'Ujian', 'Ujian Semester', 'Kerjakan Sendiri', '15', '2021-05-01 17:00:00', '2021-05-01 17:00:00'),
(7, 1, 1, 'Latihan', 'Latihan 1', 'Kerjakan Soal Ini', '15', '2021-05-01 17:00:00', '2021-05-01 17:00:00'),
(8, 1, 1, 'Latihan', 'Latihan 2 Essay', 'Kerjakan dengan teliti', '15', '2021-05-01 17:00:00', '2021-05-01 17:00:00');
--
-- Indexes for dumped tables
--
--
-- Indeks untuk tabel `admin`
--
ALTER TABLE `admin`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `admin_username_unique` (`username`);
--
-- Indeks untuk tabel `distribusi_soal`
--
ALTER TABLE `distribusi_soal`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);
--
-- Indeks untuk tabel `grup`
--
ALTER TABLE `grup`
ADD PRIMARY KEY (`id`),
ADD KEY `grup_guru_id_foreign` (`guru_id`),
ADD KEY `grup_mapel_id_foreign` (`mapel_id`),
ADD KEY `grup_kelas_id_foreign` (`kelas_id`);
--
-- Indeks untuk tabel `grup_aktivitas`
--
ALTER TABLE `grup_aktivitas`
ADD PRIMARY KEY (`id`),
ADD KEY `grup_aktivitas_grup_id_foreign` (`grup_id`),
ADD KEY `grup_aktivitas_siswa_id_foreign` (`siswa_id`);
--
-- Indeks untuk tabel `grup_materi`
--
ALTER TABLE `grup_materi`
ADD PRIMARY KEY (`id`),
ADD KEY `grup_materi_grup_id_foreign` (`grup_id`),
ADD KEY `grup_materi_materi_id_foreign` (`materi_id`),
ADD KEY `grup_materi_guru_id_foreign` (`guru_id`);
--
-- Indeks untuk tabel `grup_siswa`
--
ALTER TABLE `grup_siswa`
ADD PRIMARY KEY (`id`),
ADD KEY `grup_siswa_siswa_id_foreign` (`siswa_id`),
ADD KEY `grup_siswa_grup_id_foreign` (`grup_id`);
--
-- Indeks untuk tabel `guru`
--
ALTER TABLE `guru`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `guru_no_induk_unique` (`no_induk`),
ADD UNIQUE KEY `guru_username_unique` (`username`);
--
-- Indeks untuk tabel `kelas`
--
ALTER TABLE `kelas`
ADD PRIMARY KEY (`id`),
ADD KEY `kelas_guru_id_foreign` (`guru_id`);
--
-- Indeks untuk tabel `kelola_nilai`
--
ALTER TABLE `kelola_nilai`
ADD PRIMARY KEY (`id`),
ADD KEY `kelola_nilai_siswa_id_foreign` (`siswa_id`),
ADD KEY `kelola_nilai_kelas_id_foreign` (`kelas_id`),
ADD KEY `kelola_nilai_mapel_id_foreign` (`mapel_id`);
--
-- Indeks untuk tabel `mapel`
--
ALTER TABLE `mapel`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `materi`
--
ALTER TABLE `materi`
ADD PRIMARY KEY (`id`),
ADD KEY `materi_guru_id_foreign` (`guru_id`);
--
-- Indeks untuk tabel `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `nilai_essay`
--
ALTER TABLE `nilai_essay`
ADD PRIMARY KEY (`id`),
ADD KEY `nilai_essay_ujian_id_foreign` (`ujian_id`),
ADD KEY `nilai_essay_siswa_id_foreign` (`siswa_id`);
--
-- Indeks untuk tabel `nilai_pilgan`
--
ALTER TABLE `nilai_pilgan`
ADD PRIMARY KEY (`id`),
ADD KEY `nilai_pilgan_ujian_id_foreign` (`ujian_id`),
ADD KEY `nilai_pilgan_siswa_id_foreign` (`siswa_id`),
ADD KEY `nilai_pilgan_kelas_id_foreign` (`kelas_id`);
--
-- Indeks untuk tabel `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indeks untuk tabel `siswa`
--
ALTER TABLE `siswa`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `siswa_username_unique` (`username`),
ADD KEY `siswa_kelas_id_foreign` (`kelas_id`);
--
-- Indeks untuk tabel `soal_essay`
--
ALTER TABLE `soal_essay`
ADD PRIMARY KEY (`id`),
ADD KEY `soal_essay_ujian_id_foreign` (`ujian_id`),
ADD KEY `soal_essay_guru_id_foreign` (`guru_id`);
--
-- Indeks untuk tabel `soal_pilgan`
--
ALTER TABLE `soal_pilgan`
ADD PRIMARY KEY (`id`),
ADD KEY `soal_pilgan_ujian_id_foreign` (`ujian_id`),
ADD KEY `soal_pilgan_guru_id_foreign` (`guru_id`);
--
-- Indeks untuk tabel `tugas`
--
ALTER TABLE `tugas`
ADD PRIMARY KEY (`id`),
ADD KEY `tugas_guru_id_foreign` (`guru_id`),
ADD KEY `tugas_grup_id_foreign` (`grup_id`),
ADD KEY `tugas_kelas_id_foreign` (`kelas_id`);
--
-- Indeks untuk tabel `tugas_jawaban`
--
ALTER TABLE `tugas_jawaban`
ADD PRIMARY KEY (`id`),
ADD KEY `tugas_jawaban_tugas_id_foreign` (`tugas_id`),
ADD KEY `tugas_jawaban_siswa_id_foreign` (`siswa_id`);
--
-- Indeks untuk tabel `ujian`
--
ALTER TABLE `ujian`
ADD PRIMARY KEY (`id`),
ADD KEY `ujian_mapel_id_foreign` (`mapel_id`),
ADD KEY `ujian_guru_id_foreign` (`guru_id`);
--
-- AUTO_INCREMENT untuk tabel yang dibuang
--
--
-- AUTO_INCREMENT untuk tabel `admin`
--
ALTER TABLE `admin`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT untuk tabel `distribusi_soal`
--
ALTER TABLE `distribusi_soal`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT untuk tabel `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT untuk tabel `grup`
--
ALTER TABLE `grup`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT untuk tabel `grup_aktivitas`
--
ALTER TABLE `grup_aktivitas`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT untuk tabel `grup_materi`
--
ALTER TABLE `grup_materi`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT untuk tabel `grup_siswa`
--
ALTER TABLE `grup_siswa`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
--
-- AUTO_INCREMENT untuk tabel `guru`
--
ALTER TABLE `guru`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT untuk tabel `kelas`
--
ALTER TABLE `kelas`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT untuk tabel `kelola_nilai`
--
ALTER TABLE `kelola_nilai`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT untuk tabel `mapel`
--
ALTER TABLE `mapel`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT untuk tabel `materi`
--
ALTER TABLE `materi`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT untuk tabel `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
--
-- AUTO_INCREMENT untuk tabel `nilai_essay`
--
ALTER TABLE `nilai_essay`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT untuk tabel `nilai_pilgan`
--
ALTER TABLE `nilai_pilgan`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT untuk tabel `siswa`
--
ALTER TABLE `siswa`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT untuk tabel `soal_essay`
--
ALTER TABLE `soal_essay`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT untuk tabel `soal_pilgan`
--
ALTER TABLE `soal_pilgan`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;
--
-- AUTO_INCREMENT untuk tabel `tugas`
--
ALTER TABLE `tugas`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT untuk tabel `tugas_jawaban`
--
ALTER TABLE `tugas_jawaban`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT untuk tabel `ujian`
--
ALTER TABLE `ujian`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)
--
--
-- Ketidakleluasaan untuk tabel `grup`
--
ALTER TABLE `grup`
ADD CONSTRAINT `grup_guru_id_foreign` FOREIGN KEY (`guru_id`) REFERENCES `guru` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `grup_kelas_id_foreign` FOREIGN KEY (`kelas_id`) REFERENCES `kelas` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `grup_mapel_id_foreign` FOREIGN KEY (`mapel_id`) REFERENCES `mapel` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `grup_aktivitas`
--
ALTER TABLE `grup_aktivitas`
ADD CONSTRAINT `grup_aktivitas_grup_id_foreign` FOREIGN KEY (`grup_id`) REFERENCES `grup` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `grup_aktivitas_siswa_id_foreign` FOREIGN KEY (`siswa_id`) REFERENCES `siswa` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `grup_materi`
--
ALTER TABLE `grup_materi`
ADD CONSTRAINT `grup_materi_grup_id_foreign` FOREIGN KEY (`grup_id`) REFERENCES `grup` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `grup_materi_guru_id_foreign` FOREIGN KEY (`guru_id`) REFERENCES `guru` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `grup_materi_materi_id_foreign` FOREIGN KEY (`materi_id`) REFERENCES `materi` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `grup_siswa`
--
ALTER TABLE `grup_siswa`
ADD CONSTRAINT `grup_siswa_grup_id_foreign` FOREIGN KEY (`grup_id`) REFERENCES `grup` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `grup_siswa_siswa_id_foreign` FOREIGN KEY (`siswa_id`) REFERENCES `siswa` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `kelas`
--
ALTER TABLE `kelas`
ADD CONSTRAINT `kelas_guru_id_foreign` FOREIGN KEY (`guru_id`) REFERENCES `guru` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `kelola_nilai`
--
ALTER TABLE `kelola_nilai`
ADD CONSTRAINT `kelola_nilai_kelas_id_foreign` FOREIGN KEY (`kelas_id`) REFERENCES `kelas` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `kelola_nilai_mapel_id_foreign` FOREIGN KEY (`mapel_id`) REFERENCES `mapel` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `kelola_nilai_siswa_id_foreign` FOREIGN KEY (`siswa_id`) REFERENCES `siswa` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `materi`
--
ALTER TABLE `materi`
ADD CONSTRAINT `materi_guru_id_foreign` FOREIGN KEY (`guru_id`) REFERENCES `guru` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `nilai_essay`
--
ALTER TABLE `nilai_essay`
ADD CONSTRAINT `nilai_essay_siswa_id_foreign` FOREIGN KEY (`siswa_id`) REFERENCES `siswa` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `nilai_essay_ujian_id_foreign` FOREIGN KEY (`ujian_id`) REFERENCES `ujian` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `nilai_pilgan`
--
ALTER TABLE `nilai_pilgan`
ADD CONSTRAINT `nilai_pilgan_kelas_id_foreign` FOREIGN KEY (`kelas_id`) REFERENCES `kelas` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `nilai_pilgan_siswa_id_foreign` FOREIGN KEY (`siswa_id`) REFERENCES `siswa` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `nilai_pilgan_ujian_id_foreign` FOREIGN KEY (`ujian_id`) REFERENCES `ujian` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `siswa`
--
ALTER TABLE `siswa`
ADD CONSTRAINT `siswa_kelas_id_foreign` FOREIGN KEY (`kelas_id`) REFERENCES `kelas` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `soal_essay`
--
ALTER TABLE `soal_essay`
ADD CONSTRAINT `soal_essay_guru_id_foreign` FOREIGN KEY (`guru_id`) REFERENCES `guru` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `soal_essay_ujian_id_foreign` FOREIGN KEY (`ujian_id`) REFERENCES `ujian` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `soal_pilgan`
--
ALTER TABLE `soal_pilgan`
ADD CONSTRAINT `soal_pilgan_guru_id_foreign` FOREIGN KEY (`guru_id`) REFERENCES `guru` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `soal_pilgan_ujian_id_foreign` FOREIGN KEY (`ujian_id`) REFERENCES `ujian` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `tugas`
--
ALTER TABLE `tugas`
ADD CONSTRAINT `tugas_grup_id_foreign` FOREIGN KEY (`grup_id`) REFERENCES `grup` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `tugas_guru_id_foreign` FOREIGN KEY (`guru_id`) REFERENCES `guru` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `tugas_kelas_id_foreign` FOREIGN KEY (`kelas_id`) REFERENCES `kelas` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `tugas_jawaban`
--
ALTER TABLE `tugas_jawaban`
ADD CONSTRAINT `tugas_jawaban_siswa_id_foreign` FOREIGN KEY (`siswa_id`) REFERENCES `siswa` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `tugas_jawaban_tugas_id_foreign` FOREIGN KEY (`tugas_id`) REFERENCES `tugas` (`id`) ON DELETE CASCADE;
--
-- Ketidakleluasaan untuk tabel `ujian`
--
ALTER TABLE `ujian`
ADD CONSTRAINT `ujian_guru_id_foreign` FOREIGN KEY (`guru_id`) REFERENCES `guru` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `ujian_mapel_id_foreign` FOREIGN KEY (`mapel_id`) REFERENCES `mapel` (`id`) ON DELETE CASCADE;
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 */;
|
-- phpMyAdmin SQL Dump
-- version 4.9.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jul 27, 2020 at 04:50 PM
-- Server version: 10.3.16-MariaDB
-- PHP Version: 7.1.30
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: `gameadmin`
--
-- --------------------------------------------------------
--
-- Table structure for table `game_users`
--
CREATE TABLE `game_users` (
`id` int(11) NOT NULL,
`role_id` int(11) DEFAULT NULL,
`is_default` tinyint(1) NOT NULL DEFAULT 0,
`password` varchar(100) NOT NULL,
`temp_password` varchar(255) DEFAULT NULL,
`email` varchar(50) DEFAULT NULL,
`reset_key` varchar(100) DEFAULT NULL,
`mobile_no` varchar(50) DEFAULT NULL,
`g_id` varchar(50) DEFAULT NULL,
`last_logged_in` datetime DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`modified_at` datetime DEFAULT NULL,
`created_by` int(11) NOT NULL DEFAULT 0,
`modified_by` int(11) NOT NULL DEFAULT 0,
`activation_key` varchar(255) DEFAULT NULL,
`email_active_status` int(1) NOT NULL DEFAULT 1,
`notification_status` int(1) NOT NULL DEFAULT 1,
`name` varchar(100) DEFAULT NULL,
`last_name` varchar(100) DEFAULT NULL,
`permanent_address` varchar(255) DEFAULT NULL,
`city` varchar(50) DEFAULT NULL,
`state` varchar(50) DEFAULT NULL,
`country` varchar(50) DEFAULT NULL,
`gender` varchar(10) DEFAULT NULL,
`dob` varchar(250) DEFAULT NULL,
`image` varchar(500) DEFAULT NULL,
`latitude` varchar(250) DEFAULT NULL,
`longitude` varchar(250) DEFAULT NULL,
`payment_status` varchar(10) NOT NULL DEFAULT 'UNPAID' COMMENT 'UNPAID ,PAID',
`subscription_from` datetime DEFAULT NULL,
`subscription_to` datetime DEFAULT NULL,
`login_status` int(2) DEFAULT 0,
`location` varchar(50) DEFAULT NULL,
`level` varchar(11) DEFAULT NULL,
`distance` float(50,3) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `game_users`
--
INSERT INTO `game_users` (`id`, `role_id`, `is_default`, `password`, `<PASSWORD>`, `email`, `reset_key`, `mobile_no`, `g_id`, `last_logged_in`, `created_at`, `modified_at`, `created_by`, `modified_by`, `activation_key`, `email_active_status`, `notification_status`, `name`, `last_name`, `permanent_address`, `city`, `state`, `country`, `gender`, `dob`, `image`, `latitude`, `longitude`, `payment_status`, `subscription_from`, `subscription_to`, `login_status`, `location`, `level`, `distance`) VALUES
(1, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '9560858005', '', '2020-07-26 17:19:48', '2019-08-18 06:03:47', '2019-12-14 17:20:01', 0, 1, '4724ab5edd3a8fa1f772fa12be84763d', 1, 1, 'viaks', 'Singh', 'kfdkfdmkfmvf', 'Kanpur', 'up', 'India', 'MALE', '14 August 1984', 'profile_image-1576344001.jpg', '28.8201584', '77.4659134', 'UNPAID', '2020-04-22 20:37:03', '2020-07-22 20:37:03', 1, 'ggsds', NULL, NULL),
(2, NULL, 0, 'e10adc3949ba59abbe56e057f20f883e', 'MTIzNDU2', '<EMAIL>', NULL, '5633688555', '', '2019-08-17 10:57:57', '2019-08-17 10:54:52', '2019-08-17 10:54:52', 0, 0, '05d0dfebfdc8772942401e27f3363375', 1, 1, 'Arun', 'sharma', 'MDR93E, Mahson, Uttar Pradesh 272124, India Mahson Uttar Pradesh India 272124', 'Delhi', 'Bihar', 'India', 'MALE', '14 August 1994', '', '27.7432289', '72.7807219', 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(3, NULL, 0, 'e10adc3949ba59abbe56e057f20f883e', 'MTIzNDU2', '<EMAIL>', NULL, '1780963507', '', '2019-08-26 19:22:04', '2019-08-19 18:23:30', '2019-08-19 18:23:30', 0, 0, 'ef0cfd5766f524cb1672d1d9dbd45e16', 1, 1, 'hlo', 'nice', '1, Rasoolpur Nawada, Industrial Area, Sector 62, Noida, Uttar Pradesh 201309, India', 'Daporijo', 'Annabah', 'Algeria', 'FEMALE', '14 August 1993', 'image-1566239010.jpg', '28.6201584', '77.3659134', 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(5, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '99196944479', '', NULL, '2019-08-18 05:54:42', '2019-08-18 05:54:42', 0, 0, 'a019812045c9f062397616fca4d144b2', 1, 1, 'Vikas', 'sahu', 'kfdkfdmkfmvf', 'fatepur', 'up', 'India', 'MALE', '14 August 1990', 'image-1566107682.jpg', '28.6201584', '77.3659134', 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(81, NULL, 0, 'e10adc3949ba59abbe56e057f20f883e', 'MTIzNDU2', '<EMAIL>', NULL, '0891258634', '', '2019-08-25 21:07:56', '2019-08-19 18:24:11', '2019-08-19 18:24:11', 0, 0, 'dadf26feeeafcb56d47f49d568e1ee04', 1, 1, 'hlo', 'nice', '1, Rasoolpur Nawada, Industrial Area, Sector 62, Noida, Uttar Pradesh 201309, India', 'Daporijo', 'Annabah', 'Algeria', 'FEMALE', '14 August 1996', 'image-1566239051.jpg', '28.5355', '77.3659134', 'UNPAID', '2020-04-22 20:37:52', '2020-07-22 20:37:52', 0, '', NULL, NULL),
(82, NULL, 0, 'e10adc3949ba59abbe56e057f20f883e', 'MTIzNDU2', '<EMAIL>', NULL, '0796418096', '', '2019-10-04 19:38:53', '2019-08-19 18:33:39', '2019-08-19 18:33:39', 0, 0, '94eb3bc39fb695b3f48cfb627ff65fbd', 1, 1, 'hlo ', 'love', '1, Rasoolpur Nawada, Industrial Area, Sector 62, Noida, Uttar Pradesh 201309, India', 'Bagaha', 'La Massana', 'Andorra', 'MALE', '02 August 2000', 'image-1566239619.jpg', '33.28375', '77.3910', 'UNPAID', '2020-04-22 20:38:05', '2020-07-22 20:38:05', 0, '', NULL, NULL),
(83, NULL, 0, 'e807f1fcf82d132f9bb018ca6738a19f', 'MTIzNDU2Nzg5MA==', '<EMAIL>', NULL, '7894561238', '', NULL, '2019-08-25 17:48:51', '2019-08-25 17:48:51', 0, 0, '<EMAIL>', 1, 1, 'Raghav', 'singh', '1, Rasoolpur Nawada, Industrial Area, Sector 62, Noida, Uttar Pradesh 201309, India', 'Pogradec', 'Uttar Pradesh', 'India', 'MALE', '23 August 1990', 'image-1566755331.jpg', '28.7197812', '77.3667171', 'UNPAID', '2020-04-22 20:38:15', '2020-07-22 20:38:15', 0, '', NULL, NULL),
(84, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '991969479', '', NULL, '2019-11-24 18:24:17', '2019-11-24 18:24:17', 0, 0, '<EMAIL>', 1, 1, 'vikas', 'SDMVDSVFDMSVFFRGRB', 'kfdkfdmkfmvf', 'fatepur', 'up', 'india', 'MALE', 'fdfdfgdgf', NULL, 'fdfdfdf', 'sfdsfdf', 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(85, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '991969471', '', NULL, '2019-11-24 18:25:31', '2019-11-24 18:25:31', 0, 0, '<EMAIL>', 1, 1, 'vikas', 'SDMVDSVFDMSVFFRGRB', 'kfdkfdmkfmvf', 'fatepur', 'up', 'india', 'MALE', 'fdfdfgdgf', 'image-1574619931.jpg', 'fdfdfdf', 'sfdsfdf', 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(86, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '7485784587', '', NULL, '2019-11-24 18:28:41', '2019-11-24 18:28:41', 0, 0, '<EMAIL>', 1, 1, 'vikas', 'SDMVDSVFDMSVFFRGRB', 'kfdkfdmkfmvf', 'fatepur', 'up', 'india', 'MALE', 'fdfdfgdgf', 'image-1574620121.jpg', 'fdfdfdf', 'sfdsfdf', 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(87, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '7485784580', '', NULL, '2019-11-24 18:44:41', '2019-11-24 18:44:41', 0, 0, '<EMAIL>', 1, 1, 'vikas', 'SDMVDSVFDMSVFFRGRB', 'kfdkfdmkfmvf', 'fatepur', 'up', 'india', 'MALE', 'fdfdfgdgf', 'image-1574621081.jpg', 'fdfdfdf', 'sfdsfdf', 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(88, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '991969479', '', NULL, '2019-11-25 17:49:48', '2019-11-25 17:49:48', 0, 0, '<EMAIL>', 1, 1, 'vikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(89, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '991969479', '', '2020-01-19 11:13:38', '2019-11-25 17:54:40', '2020-02-23 07:38:40', 0, 2, '<EMAIL>', 1, 1, 'vikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', '2020-04-22 20:54:19', '2020-07-22 20:54:19', 0, '', NULL, NULL),
(90, NULL, 0, 'e10adc3949ba59abbe56e057f20f883e', 'MTIzNDU2', '<EMAIL>', '5ddc3d0481342', '9807407363', '', '2020-02-27 19:12:56', '2019-11-25 19:32:06', '2019-12-19 17:54:52', 0, 90, '<EMAIL>', 1, 1, 'anand', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'profile_image-1576778092.jpg', NULL, NULL, 'UNPAID', '2020-04-22 21:01:56', '2021-04-22 21:01:56', 0, '', NULL, NULL),
(91, NULL, 0, 'e10adc3949ba59abbe56e057f20f883e', 'MTIzNDU2', '<EMAIL>', NULL, '9807727567', '', NULL, '2019-11-25 19:36:29', '2019-11-25 19:36:29', 0, 0, '<EMAIL>', 1, 1, 'anu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(92, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '991969479', '', NULL, '2019-11-25 19:38:16', '2019-11-25 19:38:16', 0, 0, '<EMAIL>', 1, 1, 'vikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(93, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '991969479', '', NULL, '2019-11-25 19:38:54', '2019-11-25 19:38:54', 0, 0, '<EMAIL>', 1, 1, 'vikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(94, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '991969479', '', NULL, '2019-11-25 19:40:14', '2019-11-25 19:40:14', 0, 0, '<EMAIL>', 1, 1, 'vikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(95, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '9919691479', '', '2020-04-22 00:00:00', '2019-11-25 19:40:38', '2019-11-25 19:40:38', 0, 0, '<EMAIL>', 1, 1, 'vikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(96, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '9919691479', '', NULL, '2019-11-25 19:42:34', '2019-11-25 19:42:34', 0, 0, '<EMAIL>', 1, 1, 'vikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(97, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', 'tes<EMAIL>', NULL, '991969479', '', '2019-11-25 19:43:57', '2019-11-25 19:42:59', '2019-11-25 19:42:59', 0, 0, '<EMAIL>', 1, 1, 'vikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(98, NULL, 0, 'e10adc3949ba59abbe56e057f20f883e', 'MTIzNDU2', '<EMAIL>', NULL, '9256687528', '', '2019-11-25 19:52:16', '2019-11-25 19:50:37', '2019-11-25 19:50:37', 0, 0, '<EMAIL>', 1, 1, 'abc', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(99, NULL, 0, 'e10adc3949ba59abbe56e057f20f883e', 'MTIzNDU2', '<EMAIL>', NULL, '9807407363', '', '2019-11-25 20:54:14', '2019-11-25 20:49:44', '2019-11-25 20:49:44', 0, 0, '<EMAIL>112019', 1, 1, 'anand22', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(100, NULL, 0, 'a461e3bccc867b82181ff63624de2708', 'YmV0YXBw', '<EMAIL>', '5e5561ac897c0', '9871244996', '', '2019-12-15 17:34:39', '2019-11-26 01:14:35', '2019-12-16 01:29:07', 0, 100, '<EMAIL>', 1, 1, 'Shivaan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'profile_image-1576459747.jpg', NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(101, NULL, 0, 'e10adc3949ba59abbe56e057f20f883e', 'MTIzNDU2', '<EMAIL>', NULL, '9555829300', '', '2019-12-15 16:25:50', '2019-12-15 16:25:26', '2019-12-15 16:25:26', 0, 0, '<EMAIL>', 1, 1, 'anu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(102, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '9354839844', '', '2019-12-15 19:17:17', '2019-12-15 18:59:01', '2019-12-15 19:08:09', 0, 102, '<EMAIL>', 1, 1, 'vikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'profile_image-1576436889.jpg', NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(103, NULL, 0, '215211849e1daec4b31943025cadd8c1', 'VHJhY3lqNzA=', '<EMAIL>', '5e1773c66d158', '2485876242', '', NULL, '2019-12-16 06:58:31', '2019-12-16 06:58:31', 0, 0, '<EMAIL>', 1, 1, 'Park80', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(104, NULL, 0, 'abffe1d5cf633c397b718fd4c1e29fdf', 'VHJhY3k3MA==', '<EMAIL>', '5e0b8394aa8bf', '2485876242', '', '2019-12-16 07:00:11', '2019-12-16 06:59:43', '2019-12-16 06:59:43', 0, 0, '<EMAIL>', 1, 1, 'Park80', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(105, NULL, 0, '3cbe121ef85fef21ae62bb7a45094243', 'cnhwbHVzQDIwMTg=', '<EMAIL>', NULL, '9108509581', '', '2019-12-29 23:15:02', '2019-12-29 23:14:28', '2019-12-29 23:14:28', 0, 0, '<EMAIL>', 1, 1, 'Google', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(106, NULL, 0, 'f2e577e023d8dd5b1f2a1d82ca30c7c6', 'TGVlamFjazQw', '<EMAIL>', NULL, '2488976864', '', NULL, '2019-12-31 17:25:01', '2019-12-31 17:25:01', 0, 0, '<EMAIL>', 1, 1, 'lee40', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(107, NULL, 0, 'e2d63baaa689878ac0c3f7125ca820c6', 'RGlvbmcxOTkw', '<EMAIL>', NULL, '2488976864', '', '2020-01-22 17:21:15', '2019-12-31 17:31:25', '2019-12-31 17:31:25', 0, 0, '<EMAIL>', 1, 1, 'pmoney1980', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(108, NULL, 0, '75be46bbbe7037ba49546f87a3a2aef1', 'VHJpbkdhYmUxMTA2', '<EMAIL>', NULL, '3134135102', '', '2020-01-01 04:08:13', '2020-01-01 04:07:48', '2020-01-01 04:07:48', 0, 0, '<EMAIL>', 1, 1, 'tlee06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(109, NULL, 0, 'a461e3bccc867b82181ff63624de2708', 'YmV0YXBw', '<EMAIL>', NULL, '11111111', '', '2020-01-06 17:36:27', '2020-01-06 17:36:08', '2020-01-06 17:36:08', 0, 0, '<EMAIL>', 1, 1, 'shivaan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(110, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', '5e58d75957e7d', '9354839844', '', '2020-02-24 08:24:48', '2020-01-06 18:09:13', '2020-02-25 08:18:44', 0, 2, '<EMAIL>', 1, 1, 'vikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(111, NULL, 0, '4a9e9742384c313962767f179627c6a9', 'OTM1NDgzOTg0NA==', '<EMAIL>', NULL, '9354839844', '', NULL, '2020-01-06 18:52:10', '2020-01-06 18:52:10', 0, 0, '<EMAIL>', 1, 1, 'vikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(112, NULL, 0, 'a461e3bccc867b82181ff63624de2708', 'YmV0YXBw', '<EMAIL>', NULL, '111111111', '', '2020-01-07 17:27:55', '2020-01-07 17:27:38', '2020-01-07 17:27:38', 0, 0, '<EMAIL>', 1, 1, 'mibetapp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(113, NULL, 0, '74eb75e4f2913b79575d2789c25a1527', 'TGVldmFkaWUxOTQw', '<EMAIL>', NULL, '2485876242', '', NULL, '2020-01-09 18:31:58', '2020-01-09 18:31:58', 0, 0, '<EMAIL>', 1, 1, 'park1980', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(114, NULL, 0, '74eb75e4f2913b79575d2789c25a1527', 'TGVldmFkaWUxOTQw', '<EMAIL>', NULL, '2485876242', '', NULL, '2020-01-09 18:33:02', '2020-01-09 18:33:02', 0, 0, '<EMAIL>', 1, 1, 'park19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(115, NULL, 0, '74eb75e4f2913b79575d2789c25a1527', 'TGVldmFkaWUxOTQw', '<EMAIL>', NULL, '3133682175', '', NULL, '2020-01-09 18:36:33', '2020-01-09 18:36:33', 0, 0, '<EMAIL>', 1, 1, 'park4', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(116, NULL, 0, 'a461e3bccc867b82181ff63624de2708', 'YmV0YXBw', '<EMAIL>', NULL, '000000000', NULL, NULL, '2020-01-14 02:04:32', '2020-01-14 02:04:32', 0, 0, 'sh<EMAIL>', 1, 1, 'shilsha', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(117, NULL, 0, 'a461e3bccc867b82181ff63624de2708', 'YmV0YXBw', '<EMAIL>', NULL, '000000000', NULL, '2020-01-14 02:05:40', '2020-01-14 02:04:54', '2020-01-14 02:04:54', 0, 0, '<EMAIL>', 1, 1, 'shilsha', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(118, NULL, 0, 'db9f90adbf9845d8c9466024bf167807', 'a2lsdG9tMTIz', '<EMAIL>', NULL, '+140849976', NULL, NULL, '2020-01-18 00:04:57', '2020-01-18 00:04:57', 0, 0, '<EMAIL> <EMAIL>', 1, 1, '<EMAIL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(119, NULL, 0, '87a7a9ea54e6473425be7613f6162bf9', 'dmlrYXMxMjM0NTY3ODk=', '<EMAIL>', NULL, NULL, '123456789', '2020-01-19 11:17:06', '2020-01-19 11:14:57', '2020-01-19 11:14:57', 0, 0, '<EMAIL>', 1, 1, 'vikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(120, NULL, 0, '87a7a9ea54e6473425be7613f6162bf9', 'dmlrYXMxMjM0NTY3ODk=', '<EMAIL>', NULL, NULL, '123456789', '2020-01-26 17:37:07', '2020-01-19 11:22:55', '2020-01-19 11:22:55', 0, 0, NULL, 1, 1, 'vikas', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(121, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', NULL, '1234567890', NULL, NULL, '2020-01-26 07:47:44', '2020-01-26 07:47:44', 0, 0, '<EMAIL>', 1, 1, 'fgg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(122, NULL, 0, '2ffeda94a72fbba2f7f504cd461e594f', 'TGFtYXIgQmV0MTE0MDQ5MzQ2NzY5OTMy', '<EMAIL>', NULL, NULL, '114049346769932', '2020-01-26 17:38:41', '2020-01-26 17:38:22', '2020-01-26 17:38:22', 0, 0, NULL, 1, 1, '<NAME>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(123, NULL, 0, '336f3a36df3e87414fa8e5af0a1ca45a', 'QW5hbmQgR2F1cjEwMTUzOTYzNjEzODk4OTIxNjAxMA==', '<EMAIL>', NULL, NULL, '101539636138989216010', '2020-01-26 17:38:53', '2020-01-26 17:38:53', '2020-01-26 17:38:53', 0, 0, NULL, 1, 1, '<NAME>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(124, NULL, 0, 'a461e3bccc867b82181ff63624de2708', 'YmV0YXBw', '<EMAIL>', NULL, '08520852', NULL, NULL, '2020-01-31 19:32:03', '2020-01-31 19:32:03', 0, 0, '<EMAIL>', 1, 1, 'shiv', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(125, NULL, 0, 'e10adc3949ba59abbe56e057f20f883e', 'MTIzNDU2', '<EMAIL>', NULL, '9242355555', NULL, '2020-02-02 05:49:59', '2020-02-02 05:46:48', '2020-02-02 05:46:48', 0, 0, '<EMAIL>', 1, 1, 'anan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(126, NULL, 0, 'e10adc3949ba59abbe56e057f20f883e', 'MTIzNDU2', '<EMAIL>', NULL, '9242355555', NULL, NULL, '2020-02-02 05:48:47', '2020-02-02 05:48:47', 0, 0, '<EMAIL>', 1, 1, 'anan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(127, NULL, 0, '83bc59a2d88179354d13e1219127d4d8', 'U2hpbHVsaTU=', '<EMAIL>', NULL, '0745499127', NULL, NULL, '2020-02-16 12:12:18', '2020-02-16 12:12:18', 0, 0, '<EMAIL>', 1, 1, 'hast', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(128, NULL, 0, '83bc59a2d88179354d13e1219127d4d8', 'U2hpbHVsaTU=', '<EMAIL>', NULL, '0745499127', NULL, NULL, '2020-02-16 12:12:47', '2020-02-16 12:12:47', 0, 0, '<EMAIL>', 1, 1, 'hast', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(129, NULL, 0, '68eacb97d86f0c4621fa2b0e17cabd8c', 'VGVzdDEyMw==', '<EMAIL>', NULL, '8095099200', NULL, NULL, '2020-02-21 15:29:31', '2020-02-21 15:29:31', 0, 0, 'Oceanus <EMAIL>', 1, 1, 'Oceanus Ashish', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(130, NULL, 0, '68eacb97d86f0c4621fa2b0e17cabd8c', 'VGVzdDEyMw==', '<EMAIL>', NULL, '8095099200', NULL, NULL, '2020-02-21 15:29:53', '2020-02-21 15:29:53', 0, 0, 'Oceanus Ash<EMAIL>', 1, 1, 'Oceanus Ashish', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(131, NULL, 0, '25f9e794323b453885f5181f1b624d0b', 'MTIzNDU2Nzg5', '<EMAIL>', '5e58d7ee9fc3c', '9919694722', NULL, '2020-02-28 09:10:21', '2020-02-28 09:05:30', '2020-02-28 09:10:55', 0, 131, '<EMAIL>022020', 1, 1, 'ggghhhhhh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'profile_image-1582881055.jpg', NULL, NULL, 'UNPAID', NULL, NULL, 0, '', NULL, NULL),
(133, NULL, 0, '', NULL, 'dsdsadasdsadasdasdasda', NULL, NULL, NULL, NULL, '2020-07-26 17:25:07', '2020-07-26 20:55:07', 0, 0, NULL, 1, 1, 'viaks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 0, NULL, NULL, NULL),
(134, NULL, 0, '', NULL, 'dsdsdsa', NULL, NULL, NULL, '2020-07-26 17:34:57', '2020-07-26 17:29:49', '2020-07-26 20:59:49', 0, 0, NULL, 1, 1, 'viaks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 1, 'ggsds', NULL, NULL),
(135, NULL, 0, '', NULL, '1233353536', NULL, NULL, NULL, '2020-07-26 17:50:13', '2020-07-26 17:44:19', '2020-07-27 16:40:22', 0, 0, NULL, 1, 1, 'viaks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'UNPAID', NULL, NULL, 1, 'ggsds', '5', 1425336.000);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `game_users`
--
ALTER TABLE `game_users`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `game_users`
--
ALTER TABLE `game_users`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=136;
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 */;
|
CREATE TABLE users
(
id serial PRIMARY KEY,
name varchar(255) NOT NULL,
password varchar(255) NOT NULL,
UNIQUE (name)
);
|
<reponame>kozakai-ayaya/ATRI-BOT<filename>atribot.sql
/*
Navicat Premium Data Transfer
Source Server : localhost
Source Server Type : MySQL
Source Server Version : 80028
Source Host : localhost:3306
Source Schema : atribot
Target Server Type : MySQL
Target Server Version : 80028
File Encoding : 65001
Date: 11/05/2022 00:37:20
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for message
-- ----------------------------
DROP TABLE IF EXISTS `message`;
CREATE TABLE `message` (
`tid` bigint NOT NULL,
`uid` bigint DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`username` varchar(255) DEFAULT NULL,
`text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci,
`time` datetime DEFAULT NULL,
`twi_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`tag` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci,
`media_url` varchar(255) DEFAULT NULL,
`media_key` varchar(255) DEFAULT NULL,
`media_type` varchar(255) DEFAULT NULL,
`media_path` varchar(255) DEFAULT NULL,
`status` tinyint DEFAULT NULL,
`send_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
`enter_time` datetime DEFAULT NULL,
`error_message` text,
PRIMARY KEY (`tid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of message
-- ----------------------------
BEGIN;
COMMIT;
-- ----------------------------
-- Table structure for spider_user
-- ----------------------------
DROP TABLE IF EXISTS `spider_user`;
CREATE TABLE `spider_user` (
`uid` bigint NOT NULL,
`username` varchar(255) DEFAULT NULL,
`add_time` datetime DEFAULT NULL,
`last_check_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`uid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of spider_user
-- ----------------------------
BEGIN;
COMMIT;
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`uid` bigint NOT NULL,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`profile_image_url` varchar(255) DEFAULT NULL,
`profile_image_path` varchar(255) DEFAULT NULL,
`add_time` datetime DEFAULT NULL,
`update_time` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
`last_check_time` datetime DEFAULT NULL,
PRIMARY KEY (`uid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of user
-- ----------------------------
BEGIN;
COMMIT;
SET FOREIGN_KEY_CHECKS = 1;
|
<filename>Functions/Line.CoordinateCount.sql
function LINE__COORDINATE_COUNT(p_line sdo_geometry)
return number
is
func_geometry_error exception;
pragma exception_init(func_geometry_error, -20001);
t_count number;
begin
-- Validate Line
if p_line.sdo_gtype != '2002' then
raise_application_error(-20001, 'The Line must have an SDO_GTYPE of 2002');
end if;
if mod(p_line.sdo_ordinates.count(), 2) != 0 then
raise_application_error(-20001, 'Invalid number of vertices');
end if;
t_count := p_line.sdo_ordinates.count() / 2;
return t_count;
end; |
-- ---
-- Globals
-- ---
-- SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
-- SET FOREIGN_KEY_CHECKS=0;
-- ---
-- Table 'movies'
--
-- ---
DROP TABLE IF EXISTS `movies`;
CREATE TABLE `movies` (
`id` INTEGER NULL AUTO_INCREMENT DEFAULT NULL,
`keywords` VARCHAR NULL DEFAULT NULL,
`title` VARCHAR NULL DEFAULT NULL,
`revenue` INT NULL DEFAULT NULL,
`overview` VARCHAR NULL DEFAULT NULL,
`new field` VARCHAR NULL DEFAULT NULL,
`homepage` VARCHAR NULL DEFAULT NULL,
`original_language` VARCHAR NULL DEFAULT NULL,
`original_title` VARCHAR NULL DEFAULT NULL,
`original_title` VARCHAR NULL DEFAULT NULL,
`overview` VARCHAR NULL DEFAULT NULL,
`popularity` VARCHAR NULL DEFAULT NULL,
`production_countries` VARCHAR NULL DEFAULT NULL,
`release_date` DATE NULL DEFAULT NULL,
`runtime` INTEGER NULL DEFAULT NULL,
`spoken_languages` VARCHAR NULL DEFAULT NULL,
`statue` INTEGER NULL DEFAULT NULL,
`tagline` VARCHAR NULL DEFAULT NULL,
`title` VARCHAR NULL DEFAULT NULL,
`title` VARCHAR NULL DEFAULT NULL,
`vote_average` INTEGER NULL DEFAULT NULL,
`vote_count` INTEGER NULL DEFAULT NULL,
PRIMARY KEY (`id`)
);
-- ---
-- Table 'user_table'
--
-- ---
DROP TABLE IF EXISTS `user_table`;
CREATE TABLE `user_table` (
`id` INTEGER NULL AUTO_INCREMENT DEFAULT NULL,
`name` VARCHAR NULL DEFAULT NULL,
`username` VARCHAR NULL DEFAULT NULL,
`password` VARCHAR NULL DEFAULT NULL,
PRIMARY KEY (`id`)
);
-- ---
-- Table 'join_table'
--
-- ---
DROP TABLE IF EXISTS `join_table`;
CREATE TABLE `join_table` (
`id` INTEGER NULL AUTO_INCREMENT DEFAULT NULL,
`user_id` INTEGER NULL DEFAULT NULL,
`movie_id` INTEGER NULL DEFAULT NULL,
`review` VARCHAR NULL DEFAULT NULL,
PRIMARY KEY (`id`)
);
-- ---
-- Foreign Keys
-- ---
ALTER TABLE `join_table` ADD FOREIGN KEY (user_id) REFERENCES `user_table` (`id`);
ALTER TABLE `join_table` ADD FOREIGN KEY (movie_id) REFERENCES `movies` (`id`);
-- ---
-- Table Properties
-- ---
-- ALTER TABLE `movies` ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ALTER TABLE `user_table` ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ALTER TABLE `join_table` ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- ---
-- Test Data
-- ---
-- INSERT INTO `movies` (`id`,`keywords`,`title`,`revenue`,`overview`,`new field`,`homepage`,`original_language`,`original_title`,`original_title`,`overview`,`popularity`,`production_countries`,`release_date`,`runtime`,`spoken_languages`,`statue`,`tagline`,`title`,`title`,`vote_average`,`vote_count`) VALUES
-- ('','','','','','','','','','','','','','','','','','','','','','');
-- INSERT INTO `user_table` (`id`,`name`,`username`,`password`) VALUES
-- ('','','','');
-- INSERT INTO `join_table` (`id`,`user_id`,`movie_id`,`review`) VALUES
-- ('','','','');
|
<gh_stars>0
insert into public.encounter(id,adventure__id,enemy_cards,result) values(DEFAULT,?,?,?) returning id; |
<reponame>olgarozhdestvina/Applied-Databases<filename>PostgreSQL-Queries/creating_and_querying_non_materialized_view_to_get_current_salaries.sql<gh_stars>0
-- create or replace view last_salary_change AS
-- select emp_no, MAX(s.from_date)
-- from salaries s
--
-- join employees using(emp_no)
-- join dept_emp using(emp_no)
-- join departments using(dept_no)
--
-- group by emp_no
-- order by emp_no;
SELECT emp_no, concat(first_name, ' ', last_name) "full_name",
dept_name, salary, s.from_date
FROM salaries s
JOIN last_salary_change USING(emp_no)
JOIN employees USING(emp_no)
JOIN dept_emp USING(emp_no)
JOIN departments USING(dept_no)
WHERE s.from_date = max
ORDER BY emp_no; |
<gh_stars>0
insert into user (username, password)
values ('egonraamat', <PASSWORD>');
insert into user (username, password)
values ('jooseptruu', <PASSWORD>');
insert into user (username, password)
values ('avalah', <PASSWORD>');
insert into country (country_name)
values ('Estonia');
insert into country (country_name)
values ('Latvia');
insert into country (country_name)
values ('Lithuania');
insert into client (client_username, username, first_name, last_name, email, address, country_id)
values ('mustafatufan', 'avalah', 'Mustafa', 'Tufan', '<EMAIL>', 'Dede Efendi 15, Balcova, Izmir', 1);
insert into client (client_username, username, first_name, last_name, email, address, country_id)
values ('amyacker', 'avalah', 'Amy', 'Acker', null, 'Bla bla 22, Tallinn', 1);
insert into client (client_username, username, first_name, last_name, email, address, country_id)
values ('michaelfassbender', 'avalah', 'Michael', 'Fassbender', '<EMAIL>', 'Easy Peasy 45, Tallinn', 1); |
--
-- 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;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: param_precision; Type: TABLE; Schema: public; Owner: radon_admin
--
CREATE TABLE public.param_precision (
id integer NOT NULL,
param_id integer NOT NULL,
"precision" integer NOT NULL,
last_updater text,
last_updated timestamp with time zone
);
ALTER TABLE public.param_precision OWNER TO radon_admin;
--
-- Name: param_precision_id_seq; Type: SEQUENCE; Schema: public; Owner: radon_admin
--
CREATE SEQUENCE public.param_precision_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.param_precision_id_seq OWNER TO radon_admin;
--
-- Name: param_precision_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: radon_admin
--
ALTER SEQUENCE public.param_precision_id_seq OWNED BY public.param_precision.id;
--
-- Name: param_precision id; Type: DEFAULT; Schema: public; Owner: radon_admin
--
ALTER TABLE ONLY public.param_precision ALTER COLUMN id SET DEFAULT nextval('public.param_precision_id_seq'::regclass);
--
-- Name: param_precision param_precision_param_id_key; Type: CONSTRAINT; Schema: public; Owner: radon_admin
--
ALTER TABLE ONLY public.param_precision
ADD CONSTRAINT param_precision_param_id_key UNIQUE (param_id);
--
-- Name: param_precision param_precision_pkey; Type: CONSTRAINT; Schema: public; Owner: radon_admin
--
ALTER TABLE ONLY public.param_precision
ADD CONSTRAINT param_precision_pkey PRIMARY KEY (id);
--
-- Name: param_precision audit_trigger_row; Type: TRIGGER; Schema: public; Owner: radon_admin
--
CREATE TRIGGER audit_trigger_row AFTER UPDATE ON public.param_precision FOR EACH ROW EXECUTE FUNCTION audit.if_modified_func('true');
--
-- Name: param_precision param_precision_store_last_updated_trg; Type: TRIGGER; Schema: public; Owner: radon_admin
--
CREATE TRIGGER param_precision_store_last_updated_trg AFTER UPDATE ON public.param_precision FOR EACH ROW EXECUTE FUNCTION public.store_last_updated_f();
--
-- Name: param_precision param_precision_param_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: radon_admin
--
ALTER TABLE ONLY public.param_precision
ADD CONSTRAINT param_precision_param_id_fkey FOREIGN KEY (param_id) REFERENCES public.param(id);
--
-- Name: TABLE param_precision; Type: ACL; Schema: public; Owner: radon_admin
--
GRANT SELECT,INSERT,DELETE,UPDATE ON TABLE public.param_precision TO radon_rw;
GRANT SELECT ON TABLE public.param_precision TO radon_ro;
--
-- Name: SEQUENCE param_precision_id_seq; Type: ACL; Schema: public; Owner: radon_admin
--
GRANT SELECT,UPDATE ON SEQUENCE public.param_precision_id_seq TO radon_rw;
--
-- PostgreSQL database dump complete
--
|
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS10010001',2,8,10,'http://someserver.com/QS10010001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS10013002',1,NULL,13,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS10018003',3,1,18,'http://someserver.com/QS10018003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS10013004',4,3,13,'http://someserver.com/QS10013004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS10006005',5,4,6,'http://someserver.com/QS10006005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS10012006',1,NULL,12,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS10011007',1,NULL,11,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS10006008',1,NULL,6,'http://someserver.com/QS10006008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS10008009',1,NULL,8,'http://someserver.com/QS10008009');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS10010010',1,NULL,10,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS20023001',1,NULL,23,'http://someserver.com/QS20023001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS20023002',1,NULL,23,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS20027003',2,11,27,'http://someserver.com/QS20027003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS20029004',1,NULL,29,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS20030005',1,NULL,30,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS20029006',1,NULL,29,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS20027007',1,NULL,27,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS20027008',4,20,27,'http://someserver.com/QS20027008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS20030009',1,NULL,30,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS20026010',3,13,26,'http://someserver.com/QS20026010');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS30033001',3,27,33,'http://someserver.com/QS30033001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS30040002',1,NULL,40,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS30032003',4,21,32,'http://someserver.com/QS30032003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS30041004',1,NULL,41,'http://someserver.com/QS30041004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS30031005',1,NULL,31,'http://someserver.com/QS30031005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS30035006',5,23,35,'http://someserver.com/QS30035006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS30033007',2,25,33,'http://someserver.com/QS30033007');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS40044001',1,NULL,44,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS40051002',3,33,51,'http://someserver.com/QS40051002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS40055003',4,29,55,'http://someserver.com/QS40055003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS40057004',1,NULL,57,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS40044005',1,NULL,44,'http://someserver.com/QS40044005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS40045006',2,32,45,'http://someserver.com/QS40045006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS40055007',1,NULL,55,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS40052008',1,NULL,52,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS40049009',1,NULL,49,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS40045010',1,NULL,45,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS50062001',1,NULL,62,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS50063002',1,NULL,63,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS50060003',1,NULL,60,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS50059004',1,NULL,59,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS50070005',1,NULL,70,'http://someserver.com/QS50070005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS50058006',1,NULL,58,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS50069007',1,NULL,69,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS50060008',2,42,60,'http://someserver.com/QS50060008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS50070009',1,NULL,70,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS50065010',1,NULL,65,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS60076001',2,50,76,'http://someserver.com/QS60076001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS60079002',4,51,79,'http://someserver.com/QS60079002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS60075003',1,NULL,75,'http://someserver.com/QS60075003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS60081004',3,48,81,'http://someserver.com/QS60081004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS60077005',1,NULL,77,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS60074006',1,NULL,74,'http://someserver.com/QS60074006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS60078007',1,NULL,78,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS60076008',1,NULL,76,'http://someserver.com/QS60076008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS60073009',5,49,73,'http://someserver.com/QS60073009');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS70091001',1,NULL,91,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS70090002',1,NULL,90,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS70089003',3,63,89,'http://someserver.com/QS70089003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS70088004',1,NULL,88,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS70089005',1,NULL,89,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS70092006',1,NULL,92,'http://someserver.com/QS70092006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS70088007',2,62,88,'http://someserver.com/QS70088007');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS80107001',1,NULL,107,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS80101002',3,67,101,'http://someserver.com/QS80101002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS80104003',4,65,104,'http://someserver.com/QS80104003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS80102004',2,73,102,'http://someserver.com/QS80102004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS80105005',1,NULL,105,'http://someserver.com/QS80105005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS80094006',5,66,94,'http://someserver.com/QS80094006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS80099007',1,NULL,99,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS80103008',1,NULL,103,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS80093009',1,NULL,93,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS80094010',1,NULL,94,'http://someserver.com/QS80094010');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS90118001',4,75,118,'http://someserver.com/QS90118001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS90121002',3,81,121,'http://someserver.com/QS90121002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS90109003',1,NULL,109,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS90118004',5,74,118,'http://someserver.com/QS90118004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS90119005',1,NULL,119,'http://someserver.com/QS90119005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS90109006',1,NULL,109,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS90114007',1,NULL,114,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS90121008',2,82,121,'http://someserver.com/QS90121008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS90114009',1,NULL,114,'http://someserver.com/QS90114009');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS90108010',1,NULL,108,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS90110011',1,NULL,110,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS100135001',2,88,135,'http://someserver.com/QS100135001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS100132002',4,90,132,'http://someserver.com/QS100132002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS100127003',1,NULL,127,'http://someserver.com/QS100127003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS100135004',1,NULL,135,'http://someserver.com/QS100135004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS100131005',5,86,131,'http://someserver.com/QS100131005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS100126006',3,85,126,'http://someserver.com/QS100126006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS100123007',1,NULL,123,'http://someserver.com/QS100123007');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS100129008',1,NULL,129,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS100133009',1,NULL,133,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS100129010',1,NULL,129,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS100126011',2,88,126,'http://someserver.com/QS100126011');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS100137012',1,NULL,137,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS100134013',1,NULL,134,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS110142001',5,109,142,'http://someserver.com/QS110142001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS110149002',3,107,149,'http://someserver.com/QS110149002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS110149003',1,NULL,149,'http://someserver.com/QS110149003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS110145004',1,NULL,145,'http://someserver.com/QS110145004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS110144005',1,NULL,144,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS110142006',1,NULL,142,'http://someserver.com/QS110142006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS110144007',1,NULL,144,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS110144008',2,110,144,'http://someserver.com/QS110144008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS110140009',1,NULL,140,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS110142010',2,110,142,'http://someserver.com/QS110142010');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS110148011',3,107,148,'http://someserver.com/QS110148011');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS110145012',4,108,145,'http://someserver.com/QS110145012');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS110146013',1,NULL,146,'http://someserver.com/QS110146013');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS120159001',1,NULL,159,'http://someserver.com/QS120159001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS120153002',1,NULL,153,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS120152003',1,NULL,152,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS120156004',4,117,156,'http://someserver.com/QS120156004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS120155005',1,NULL,155,'http://someserver.com/QS120155005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS120160006',5,114,160,'http://someserver.com/QS120160006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS120162007',3,119,162,'http://someserver.com/QS120162007');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS120156008',1,NULL,156,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS120154009',2,120,154,'http://someserver.com/QS120154009');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS120155010',1,NULL,155,'http://someserver.com/QS120155010');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS130166001',1,NULL,166,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS130164002',4,125,164,'http://someserver.com/QS130164002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS130173003',1,NULL,173,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS130171004',1,NULL,171,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS130171005',3,126,171,'http://someserver.com/QS130171005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS130167006',2,132,167,'http://someserver.com/QS130167006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS130170007',1,NULL,170,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS130170008',1,NULL,170,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS130173009',1,NULL,173,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS130173010',1,NULL,173,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS130177011',1,NULL,177,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS130174012',1,NULL,174,'http://someserver.com/QS130174012');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS140189001',1,NULL,189,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS140187002',3,138,187,'http://someserver.com/QS140187002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS140180003',4,134,180,'http://someserver.com/QS140180003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS140182004',5,135,182,'http://someserver.com/QS140182004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS140192005',1,NULL,192,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS140185006',2,141,185,'http://someserver.com/QS140185006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS140193007',1,NULL,193,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS140184008',1,NULL,184,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS140180009',1,NULL,180,'http://someserver.com/QS140180009');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS140182010',1,NULL,182,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS140190011',1,NULL,190,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS150206001',2,150,206,'http://someserver.com/QS150206001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS150199002',5,149,199,'http://someserver.com/QS150199002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS150203003',1,NULL,203,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS150205004',3,144,205,'http://someserver.com/QS150205004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS150203005',1,NULL,203,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS150205006',4,147,205,'http://someserver.com/QS150205006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS150205007',1,NULL,205,'http://someserver.com/QS150205007');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS150197008',1,NULL,197,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS150202009',1,NULL,202,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS150197010',1,NULL,197,'http://someserver.com/QS150197010');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS160213001',1,NULL,213,'http://someserver.com/QS160213001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS160212002',1,NULL,212,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS160221003',2,158,221,'http://someserver.com/QS160221003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS160215004',3,163,215,'http://someserver.com/QS160215004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS160216005',1,NULL,216,'http://someserver.com/QS160216005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS160218006',5,161,218,'http://someserver.com/QS160218006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS160211007',1,NULL,211,'http://someserver.com/QS160211007');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS160215008',4,157,215,'http://someserver.com/QS160215008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS160216009',3,163,216,'http://someserver.com/QS160216009');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS160211010',2,158,211,'http://someserver.com/QS160211010');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS160219011',1,NULL,219,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS170232001',1,NULL,232,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS170233002',1,NULL,233,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS170225003',2,170,225,'http://someserver.com/QS170225003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS170230004',1,NULL,230,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS170230005',1,NULL,230,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS170235006',1,NULL,235,'http://someserver.com/QS170235006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS170226007',1,NULL,226,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS170223008',1,NULL,223,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS170235009',3,167,235,'http://someserver.com/QS170235009');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS180247001',2,176,247,'http://someserver.com/QS180247001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS180239002',1,NULL,239,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS180241003',1,NULL,241,'http://someserver.com/QS180241003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS180244004',1,NULL,244,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS180236005',1,NULL,236,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS180245006',1,NULL,245,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS180248007',1,NULL,248,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS180252008',3,174,252,'http://someserver.com/QS180252008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS180236009',1,NULL,236,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS180238010',1,NULL,238,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS180236011',1,NULL,236,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS190261001',3,189,261,'http://someserver.com/QS190261001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS190266002',4,185,266,'http://someserver.com/QS190266002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS190265003',1,NULL,265,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS190260004',1,NULL,260,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS190257005',2,192,257,'http://someserver.com/QS190257005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS190254006',1,NULL,254,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS190255007',1,NULL,255,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS190260008',1,NULL,260,'http://someserver.com/QS190260008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS190253009',1,NULL,253,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS190255010',1,NULL,255,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS190260011',1,NULL,260,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS200278001',4,202,278,'http://someserver.com/QS200278001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS200276002',1,NULL,276,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS200270003',1,NULL,270,'http://someserver.com/QS200270003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS200274004',1,NULL,274,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS200273005',1,NULL,273,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS200277006',2,198,277,'http://someserver.com/QS200277006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS200271007',3,201,271,'http://someserver.com/QS200271007');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS200270008',5,196,270,'http://someserver.com/QS200270008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS210287001',1,NULL,287,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS210292002',5,208,292,'http://someserver.com/QS210292002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS210290003',1,NULL,290,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS210288004',3,209,288,'http://someserver.com/QS210288004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS210281005',4,207,281,'http://someserver.com/QS210281005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS210287006',2,213,287,'http://someserver.com/QS210287006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS210281007',1,NULL,281,'http://someserver.com/QS210281007');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS210282008',1,NULL,282,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS210283009',1,NULL,283,'http://someserver.com/QS210283009');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS210280010',1,NULL,280,'http://someserver.com/QS210280010');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS220302001',2,217,302,'http://someserver.com/QS220302001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS220300002',4,218,300,'http://someserver.com/QS220300002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS220295003',1,NULL,295,'http://someserver.com/QS220295003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS220304004',1,NULL,304,'http://someserver.com/QS220304004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS220302005',3,214,302,'http://someserver.com/QS220302005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS220302006',1,NULL,302,'http://someserver.com/QS220302006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS220298007',1,NULL,298,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS220304008',1,NULL,304,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS220304009',5,215,304,'http://someserver.com/QS220304009');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS220296010',1,NULL,296,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS230309001',1,NULL,309,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS230310002',1,NULL,310,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS230311003',1,NULL,311,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS230311004',1,NULL,311,'http://someserver.com/QS230311004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS230308005',1,NULL,308,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS230317006',2,227,317,'http://someserver.com/QS230317006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS230313007',3,229,313,'http://someserver.com/QS230313007');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS230316008',4,230,316,'http://someserver.com/QS230316008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS230311009',1,NULL,311,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS230315010',1,NULL,315,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS240330001',1,NULL,330,'http://someserver.com/QS240330001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS240321002',1,NULL,321,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS240330003',1,NULL,330,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS240327004',2,241,327,'http://someserver.com/QS240327004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS240324005',1,NULL,324,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS240324006',1,NULL,324,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS240320007',5,244,320,'http://someserver.com/QS240320007');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS240320008',1,NULL,320,'http://someserver.com/QS240320008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS240331009',1,NULL,331,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS240322010',3,237,322,'http://someserver.com/QS240322010');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS240320011',4,243,320,'http://someserver.com/QS240320011');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS250344001',1,NULL,344,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS250340002',1,NULL,340,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS250342003',1,NULL,342,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS250346004',1,NULL,346,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS250343005',1,NULL,343,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS250347006',4,254,347,'http://someserver.com/QS250347006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS250343007',1,NULL,343,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS250344008',2,253,344,'http://someserver.com/QS250344008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS250345009',1,NULL,345,'http://someserver.com/QS250345009');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS250337010',3,252,337,'http://someserver.com/QS250337010');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS250346011',5,250,346,'http://someserver.com/QS250346011');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS260351001',5,264,351,'http://someserver.com/QS260351001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS260357002',1,NULL,357,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS260350003',1,NULL,350,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS260353004',3,265,353,'http://someserver.com/QS260353004');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS260356005',1,NULL,356,'http://someserver.com/QS260356005');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS260354006',1,NULL,354,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS260349007',1,NULL,349,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS260353008',1,NULL,353,'http://someserver.com/QS260353008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS260358009',4,259,358,'http://someserver.com/QS260358009');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS260350010',2,263,350,'http://someserver.com/QS260350010');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS270373001',2,271,373,'http://someserver.com/QS270373001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS270373002',1,NULL,373,'http://someserver.com/QS270373002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS270364003',4,272,364,'http://someserver.com/QS270364003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS270365004',1,NULL,365,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS270369005',1,NULL,369,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS270372006',1,NULL,372,'http://someserver.com/QS270372006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS270363007',3,266,363,'http://someserver.com/QS270363007');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS270363008',1,NULL,363,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS270373009',1,NULL,373,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS270372010',5,268,372,'http://someserver.com/QS270372010');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS280382001',1,NULL,382,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS280382002',3,281,382,'http://someserver.com/QS280382002');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS280378003',1,NULL,378,'http://someserver.com/QS280378003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS280374004',1,NULL,374,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS280376005',1,NULL,376,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS280382006',2,278,382,'http://someserver.com/QS280382006');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS280381007',4,277,381,'http://someserver.com/QS280381007');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS280383008',1,NULL,383,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS280376009',1,NULL,376,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS290386001',3,292,386,'http://someserver.com/QS290386001');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS290390002',1,NULL,390,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS290393003',1,NULL,393,'http://someserver.com/QS290393003');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS290391004',1,NULL,391,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS290391005',1,NULL,391,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS290390006',1,NULL,390,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS290390007',4,285,390,'http://someserver.com/QS290390007');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS290386008',2,287,386,'http://someserver.com/QS290386008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS300404001',1,NULL,404,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS300395002',1,NULL,395,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS300404003',1,NULL,404,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS300404004',1,NULL,404,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS300403005',1,NULL,403,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS300401006',1,NULL,401,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS300398007',1,NULL,398,NULL);
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS300394008',1,NULL,394,'http://someserver.com/QS300394008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS300397009',2,300,397,'http://someserver.com/QS300397009');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS30038008',3,27,38,'http://someserver.com/QS30038008');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS30039009',5,23,39,'http://someserver.com/QS30039009');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS30032010',3,27,32,'http://someserver.com/QS30032010');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS30042011',4,302,42,'http://someserver.com/QS30042011');
INSERT INTO [T1-Questionnaire]([Title],[Version],[Parent ID],[Creator ID],[URL]) VALUES ('QS30031012',5,23,31,'http://someserver.com/QS30031012');
|
<reponame>daviddyess/api<gh_stars>1-10
insert into permission_subject (name) values ('flavorNote');
insert into roles_permissions
select r.id, ps.id, pa.id
from
"role" r
join permission_subject ps on ps.name in ('flavorNote')
join permission_action pa on pa.name = 'read'
where r.name = 'Guest';
insert into roles_permissions
select r.id, ps.id, pa.id
from
"role" r
join permission_subject ps on ps.name in ('flavorNote')
join permission_action pa on pa.name in ('read', 'create', 'update', 'delete')
where r.name = 'User';
insert into roles_permissions
select r.id, ps.id, pa.id
from
"role" r
join permission_subject ps on ps.name in ('flavorNote')
join permission_action pa on pa.name in ('read', 'create', 'update', 'delete', 'manage')
where r.name = 'Administrator';
|
<filename>data/test/sql/170b6f61507e2ea0b205851843c2ed19264d14d1Netezza_Tool.sql
--Netezza external table
CREATE EXTERNAL TABLE YZ_EX_CHURN_SAMPLE_FLAGS_20140423 (
ID VARCHAR(100),
DISCLOSURE VARCHAR(100),
SVC_IDNTY VARCHAR(100)
)
USING (
DATAOBJECT('C:\RSC\churn sample flags to append\Optus Churn Jan-Mar 2014 Service Numbers.csv')
DELIMITER ','
REMOTESOURCE 'ODBC'
SKIPROWS 1
MAXERRORS 1
);
CREATE TABLE YZ_CHURN_SAMPLE_FLAGS_20140423
AS ( SELECT * FROM YZ_EX_CHURN_SAMPLE_FLAGS_20140423)
DISTRIBUTE ON (SVC_IDNTY);
-- SEARCH TABLE
SELECT *
FROM
_V_OBJ_RELATION_XDB
WHERE
OBJNAME LIKE 'FPC_INDIVIDUAL%'
;
|
<gh_stars>1-10
update items set sDuration = NULL where sDuration = '00:00:00'; |
-- randexpr1.test
--
-- db eval {SELECT coalesce((select max(a) from t1 where a>a*(((t1.d)) | a)-+case t1.a-t1.d-19+coalesce((select max(t1.c) from t1 where ~(select -cast(avg(a+d) AS integer) from t1) not in (~((17)),t1.a,(t1.e))),b)+a*(c) when t1.f then a else t1.f end-17+c),13)*t1.a FROM t1 WHERE NOT (t1.b*t1.d*11*case 13 | t1.a when (case when not exists(select 1 from t1 where t1.a not between coalesce((select f-a from t1 where a not in (11,d,(a)) or e<=d and 11=t1.e),d)+e and t1.c) and (t1.a>=t1.f or (t1.a)>=t1.a) then (c)+t1.d else a end)* -t1.a then e else t1.f end | 13>=b)}
SELECT coalesce((select max(a) from t1 where a>a*(((t1.d)) | a)-+case t1.a-t1.d-19+coalesce((select max(t1.c) from t1 where ~(select -cast(avg(a+d) AS integer) from t1) not in (~((17)),t1.a,(t1.e))),b)+a*(c) when t1.f then a else t1.f end-17+c),13)*t1.a FROM t1 WHERE NOT (t1.b*t1.d*11*case 13 | t1.a when (case when not exists(select 1 from t1 where t1.a not between coalesce((select f-a from t1 where a not in (11,d,(a)) or e<=d and 11=t1.e),d)+e and t1.c) and (t1.a>=t1.f or (t1.a)>=t1.a) then (c)+t1.d else a end)* -t1.a then e else t1.f end | 13>=b) |
------------------------------------------------------------
-- English configuration
--
CREATE TEXT SEARCH DICTIONARY addresses_ths_en (
TEMPLATE = pg_catalog.thesaurus,
DictFile = addressing_en,
Dictionary = simple
);
ALTER TEXT SEARCH CONFIGURATION addressing_en
ALTER MAPPING FOR asciiword, word
WITH addresses_ths_en, addressing_syn_en, addressing_stop_en;
------------------------------------------------------------
-- French configuration
--
CREATE TEXT SEARCH DICTIONARY addresses_ths_fr (
TEMPLATE = pg_catalog.thesaurus,
DictFile = addressing_fr,
Dictionary = simple
);
ALTER TEXT SEARCH CONFIGURATION addressing_fr
ALTER MAPPING FOR asciiword, word
WITH addresses_ths_fr, addressing_syn_fr, addressing_stop_fr;
|
<reponame>HNochev/SoftUni-CSharp-Software-Engineering
--Problem 7
CREATE TABLE People
(
Id INT PRIMARY KEY IDENTITY(1,1),
[Name] NVARCHAR(200) NOT NULL,
Picture BIT,
Height DECIMAL(10,2),
[Weight] DECIMAL(10,2),
Gender CHAR(1) NOT NULL,
Birthdate DATE NOT NULL,
Biography NVARCHAR(max)
)
INSERT INTO People([Name], Picture, Height, [Weight], Gender, Birthdate, Biography) VALUES
('Ivan', 1, 1.80, 85.50, 'm', '2000-02-25', 'Hello'),
('Georgi', 1, 1.82, 65.50, 'm', '2000-02-01', NULL),
('Hristo', 2, 1.74, NULL, 'm', '2000-02-04', 'Hello its me'),
('Yasen', 2, NULL, 95.50, 'm', '2000-09-30', 'adaffsfas'),
('Angela', 1, 1.65, 55.50, 'f', '1999-02-21', 'asfasfaswrrw') |
<filename>integration-tests/models/biquery/model_references_model_with_reserved_column_name_bq.sql<gh_stars>10-100
select * from {{ dbt_unit_testing.ref('model_with_reserved_column_name_bq') }} |
<gh_stars>10-100
-- =============================================================================
-- Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC
-- (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the U.S.
-- Government retains certain rights in this software.
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to deal
-- in the Software without restriction, including without limitation the rights
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-- copies of the Software, and to permit persons to whom the Software is
-- furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-- SOFTWARE.
-- =============================================================================
-- Maintained by Sandia National Laboratories <<EMAIL>>
-- =============================================================================
BEGIN TRANSACTION;
-- ----------------------------------------------------------------------
CREATE VIEW devices AS
SELECT DISTINCT
device_id AS device_id
FROM raw_devices
;
-- ----------------------------------------------------------------------
CREATE VIEW device_hardware_information AS
SELECT DISTINCT
device_id,
string_agg(distinct device_type, ',') AS device_type,
string_agg(distinct vendor, ',') AS vendor,
string_agg(distinct model, ',') AS model,
string_agg(distinct hardware_revision, ',') AS hardware_revision,
string_agg(distinct serial_number, ',') AS serial_number,
string_agg(distinct description, ',') AS description
FROM raw_device_hardware_information
GROUP BY device_id
;
-- ----------------------------------------------------------------------
CREATE VIEW device_virtualizations AS
SELECT DISTINCT
host_device_id AS host_device_id,
guest_device_id AS guest_device_id
FROM raw_device_virtualizations
;
-- ----------------------------------------------------------------------
CREATE VIEW device_interfaces AS
SELECT DISTINCT
device_id AS device_id,
interface_name AS interface_name,
media_type AS media_type,
is_up AS is_up
FROM raw_device_interfaces
;
-- ----------------------------------------------------------------------
CREATE VIEW device_mac_addrs AS
SELECT DISTINCT
device_id AS device_id,
interface_name AS interface_name,
mac_addr AS mac_addr
FROM raw_device_mac_addrs
;
-- ----------------------------------------------------------------------
CREATE VIEW device_ip_addrs AS
SELECT DISTINCT
device_id AS device_id,
interface_name AS interface_name,
ip_addr AS ip_addr
FROM raw_device_ip_addrs
;
-- ----------------------------------------------------------------------
CREATE VIEW device_mac_addrs_ip_addrs AS
SELECT DISTINCT
dma.device_id AS device_id,
dma.interface_name AS interface_name,
dma.mac_addr AS mac_addr,
dia.ip_addr AS ip_addr
FROM device_mac_addrs AS dma
JOIN device_ip_addrs AS dia
ON (dma.device_id = dia.device_id) AND
(dma.interface_name = dia.interface_name)
UNION
SELECT DISTINCT
dma.device_id AS device_id,
dma.interface_name AS interface_name,
maia.mac_addr AS mac_addr,
maia.ip_addr AS ip_addr
FROM device_mac_addrs AS dma
JOIN mac_addrs_ip_addrs AS maia
ON (dma.mac_addr = maia.mac_addr)
UNION
SELECT DISTINCT
dia.device_id AS device_id,
dia.interface_name AS interface_name,
maia.mac_addr AS mac_addr,
maia.ip_addr AS ip_addr
FROM device_ip_addrs AS dia
JOIN mac_addrs_ip_addrs AS maia
ON (dia.ip_addr = maia.ip_addr)
;
-- ----------------------------------------------------------------------
CREATE VIEW device_ip_routes AS
SELECT DISTINCT
device_id AS device_id,
interface_name AS interface_name,
dst_ip_net AS dst_ip_net,
rtr_ip_addr AS rtr_ip_addr
FROM raw_device_ip_routes
;
-- ----------------------------------------------------------------------
CREATE VIEW device_ip_servers AS
SELECT DISTINCT
device_id AS device_id,
interface_name AS interface_name,
service_name AS service_name,
server_ip_addr AS server_ip_addr,
port AS port,
local_service AS local_service,
description AS description
FROM raw_device_ip_servers
;
-- ----------------------------------------------------------------------
CREATE VIEW device_phys_connections AS
SELECT DISTINCT
self_device_id AS self_device_id,
self_interface_name AS self_interface_name,
peer_device_id AS peer_device_id,
peer_interface_name AS peer_interface_name
FROM raw_device_phys_connections
;
-- ----------------------------------------------------------------------
CREATE VIEW device_link_connections AS
SELECT DISTINCT
self_device_id AS self_device_id,
self_interface_name AS self_interface_name,
peer_mac_addr AS peer_mac_addr
FROM raw_device_link_connections
;
-- ----------------------------------------------------------------------
CREATE VIEW device_connections AS
SELECT
self_device_id AS self_device_id,
self_interface_name AS self_interface_name,
peer_device_id AS peer_device_id,
peer_interface_name AS peer_interface_name
FROM device_phys_connections
UNION
SELECT
dlc.self_device_id AS self_device_id,
dlc.self_interface_name AS self_interface_name,
dma.device_id AS peer_device_id,
dma.interface_name AS peer_interface_name
FROM device_link_connections AS dlc
JOIN device_mac_addrs AS dma
ON (dlc.peer_mac_addr = dma.mac_addr)
UNION
SELECT
dlc.self_device_id AS self_device_id,
dlc.self_interface_name AS self_interface_name,
dia.device_id AS peer_device_id,
dia.interface_name AS peer_interface_name
FROM device_link_connections AS dlc
JOIN mac_addrs_ip_addrs AS maia
ON (dlc.peer_mac_addr = maia.mac_addr)
JOIN device_ip_addrs AS dia
ON (maia.ip_addr = dia.ip_addr)
UNION
SELECT *
FROM (
SELECT
dlc.self_device_id AS self_device_id,
dlc.self_interface_name AS self_interface_name,
dlc.peer_mac_addr::text AS peer_device_id,
'UNKNOWN' AS peer_interface_name
FROM device_link_connections AS dlc
LEFT OUTER JOIN device_mac_addrs AS dma
ON (dlc.peer_mac_addr = dma.mac_addr)
WHERE (dma.mac_addr IS NULL) AND (dlc.self_interface_name != 'CPU')
) dlcdma
WHERE NOT EXISTS (
SELECT 1
FROM device_mac_addrs_ip_addrs dmaia
WHERE (dlcdma.peer_device_id = dmaia.mac_addr::text)
)
;
-- ----------------------------------------------------------------------
-- Cisco and Cisco-like device and interface information
-- ----------------------------------------------------------------------
CREATE VIEW devices_aaa AS
SELECT DISTINCT
device_id AS device_id,
aaa_command AS aaa_command
FROM raw_devices_aaa
;
-- ----------------------------------------------------------------------
CREATE VIEW device_interfaces_mode AS
SELECT DISTINCT
device_id AS device_id,
interface_name AS interface_name,
interface_mode AS interface_mode
FROM raw_device_interfaces_mode
;
-- ----------------------------------------------------------------------
CREATE VIEW device_interfaces_bpdu AS
SELECT DISTINCT
device_id AS device_id,
interface_name AS interface_name,
is_bpduguard_enabled AS is_bpduguard_enabled,
is_bpdufilter_enabled AS is_bpdufilter_enabled
FROM raw_device_interfaces_bpdu
;
-- ----------------------------------------------------------------------
CREATE VIEW device_interfaces_cdp AS
SELECT DISTINCT
device_id AS device_id,
interface_name AS interface_name,
is_cdp_enabled AS is_cdp_enabled
FROM raw_device_interfaces_cdp
;
-- ----------------------------------------------------------------------
CREATE VIEW device_interfaces_portfast AS
SELECT DISTINCT
device_id AS device_id,
interface_name AS interface_name,
is_portfast_enabled AS is_portfast_enabled
FROM raw_device_interfaces_portfast
;
-- ----------------------------------------------------------------------
CREATE VIEW device_interfaces_port_security AS
SELECT DISTINCT
device_id AS device_id,
interface_name AS interface_name,
is_port_security_enabled AS is_port_security_enabled,
is_mac_addr_sticky AS is_mac_addr_sticky,
max_mac_addrs AS max_mac_addrs,
violation_action AS violation_action
FROM raw_device_interfaces_port_security
;
-- ----------------------------------------------------------------------
CREATE VIEW device_interfaces_port_security_mac_addrs AS
SELECT DISTINCT
device_id AS device_id,
interface_name AS interface_name,
mac_addr AS mac_addr
FROM raw_device_interfaces_port_security_mac_addrs
;
-- ----------------------------------------------------------------------
CREATE VIEW raw_device_interfaces_summaries AS
SELECT
di.tool_run_id AS tool_run_id,
di.device_id AS device_id,
di.interface_name AS interface_name,
di.is_up AS is_up,
di_mode.interface_mode AS interface_mode,
di_pf.is_portfast_enabled AS is_portfast_enabled,
di_cdp.is_cdp_enabled AS is_cdp_enabled,
(di_bpdu.is_bpduguard_enabled OR di_pf.is_portfast_enabled)
AS is_bpduguard_enabled,
(di_bpdu.is_bpdufilter_enabled OR di_pf.is_portfast_enabled)
AS is_bpdufilter_enabled,
di_ps.is_port_security_enabled AS is_port_security_enabled,
di_ps.is_mac_addr_sticky AS is_mac_addr_sticky,
di_ps.max_mac_addrs AS max_mac_addrs,
count(di_ps_ma.mac_addr) AS learned_mac_addrs,
di_ps.violation_action AS violation_action
FROM raw_device_interfaces AS di
LEFT OUTER JOIN raw_device_interfaces_mode AS di_mode
ON (di.tool_run_id = di_mode.tool_run_id) AND
(di.device_id = di_mode.device_id) AND
(di.interface_name = di_mode.interface_name)
LEFT OUTER JOIN raw_device_interfaces_portfast AS di_pf
ON (di.tool_run_id = di_pf.tool_run_id) AND
(di.device_id = di_pf.device_id) AND
(di.interface_name = di_pf.interface_name)
LEFT OUTER JOIN raw_device_interfaces_cdp AS di_cdp
ON (di.tool_run_id = di_cdp.tool_run_id) AND
(di.device_id = di_cdp.device_id) AND
(di.interface_name = di_cdp.interface_name)
LEFT OUTER JOIN raw_device_interfaces_bpdu AS di_bpdu
ON (di.tool_run_id = di_bpdu.tool_run_id) AND
(di.device_id = di_bpdu.device_id) AND
(di.interface_name = di_bpdu.interface_name)
LEFT OUTER JOIN raw_device_interfaces_port_security AS di_ps
ON (di.tool_run_id = di_ps.tool_run_id) AND
(di.device_id = di_ps.device_id) AND
(di.interface_name = di_ps.interface_name)
LEFT OUTER JOIN raw_device_interfaces_port_security_mac_addrs AS di_ps_ma
ON (di.tool_run_id = di_ps_ma.tool_run_id) AND
(di.device_id = di_ps_ma.device_id) AND
(di.interface_name = di_ps_ma.interface_name)
GROUP BY
di.tool_run_id,
di.device_id,
di.interface_name,
di.is_up,
di_mode.interface_mode,
di_pf.is_portfast_enabled,
di_cdp.is_cdp_enabled,
(di_bpdu.is_bpduguard_enabled OR di_pf.is_portfast_enabled),
(di_bpdu.is_bpdufilter_enabled OR di_pf.is_portfast_enabled),
di_ps.is_port_security_enabled,
di_ps.is_mac_addr_sticky,
di_ps.max_mac_addrs,
di_ps.violation_action
;
-- ----------------------------------------------------------------------
CREATE VIEW device_interfaces_summaries AS
SELECT DISTINCT
device_id AS device_id,
interface_name AS interface_name,
is_up AS is_up,
interface_mode AS interface_mode,
is_portfast_enabled AS is_portfast_enabled,
is_cdp_enabled AS is_cdp_enabled,
is_bpduguard_enabled AS is_bpduguard_enabled,
is_bpdufilter_enabled AS is_bpdufilter_enabled,
is_port_security_enabled AS is_port_security_enabled,
is_mac_addr_sticky AS is_mac_addr_sticky,
max_mac_addrs AS max_mac_addrs,
learned_mac_addrs AS learned_mac_addrs,
violation_action AS violation_action
FROM raw_device_interfaces_summaries
;
-- ----------------------------------------------------------------------
-- Device Access Control views
-- ----------------------------------------------------------------------
CREATE VIEW device_ac_nets AS
SELECT DISTINCT
device_id AS device_id,
net_set_id AS net_set_id,
net_set AS net_set,
net_set_data AS net_set_data
FROM raw_device_ac_nets
;
CREATE VIEW device_ac_services AS
SELECT DISTINCT
device_id AS device_id,
service_set AS service_set,
service_set_data AS service_set_data
FROM raw_device_ac_services
;
CREATE VIEW device_ac_rules AS
SELECT DISTINCT
device_id AS device_id,
enabled AS enabled,
ac_id AS ac_id,
src_net_set_id AS src_net_set_id,
src_net_set AS src_net_set,
src_iface AS src_iface,
dst_net_set_id AS dst_net_set_id,
dst_net_set AS dst_net_set,
dst_iface AS dst_iface,
service_set AS service_set,
action AS action,
description AS description
FROM raw_device_ac_rules
ORDER BY device_id, src_iface, dst_iface,
description, ac_id,
src_net_set, dst_net_set
;
CREATE VIEW device_ac_rules_known_applied AS
SELECT DISTINCT
device_id AS device_id,
enabled AS enabled,
ac_id AS ac_id,
src_net_set_id AS src_net_set_id,
src_net_set AS src_net_set,
src_iface AS src_iface,
dst_net_set_id AS dst_net_set_id,
dst_net_set AS dst_net_set,
dst_iface AS dst_iface,
service_set AS service_set,
action AS action,
description AS description
FROM raw_device_ac_rules
WHERE src_iface IS NOT NULL AND dst_iface IS NOT NULL
ORDER BY device_id, src_iface, dst_iface, description, ac_id
;
CREATE VIEW device_ac_rules_unknown_applied AS
SELECT DISTINCT
device_id AS device_id,
enabled AS enabled,
ac_id AS ac_id,
src_net_set_id AS src_net_set_id,
src_net_set AS src_net_set,
src_iface AS src_iface,
dst_net_set_id AS dst_net_set_id,
dst_net_set AS dst_net_set,
dst_iface AS dst_iface,
service_set AS service_set,
action AS action,
description AS description
FROM raw_device_ac_rules
WHERE src_iface IS NULL OR dst_iface IS NULL
ORDER BY device_id, description, ac_id, src_net_set, dst_net_set
;
-- ----------------------------------------------------------------------
-- Device VLAN views
-- ----------------------------------------------------------------------
CREATE VIEW device_vlans AS
SELECT DISTINCT
device_id AS device_id,
vlan AS vlan,
description AS description
FROM raw_device_vlans
ORDER BY device_id, vlan
;
CREATE VIEW device_vlans_ip_nets AS
SELECT DISTINCT
device_id AS device_id,
vlan AS vlan,
ip_net AS ip_net
FROM raw_device_vlans_ip_nets
ORDER BY device_id, vlan
;
CREATE VIEW device_vlans_ip_nets_conflicting AS
SELECT DISTINCT
dvin0.vlan AS vlan,
dvin0.device_id AS device0_id,
dvin0.ip_net AS device0_ip_net,
dvin1.device_id AS device1_id,
dvin1.ip_net AS device1_ip_net
FROM device_vlans_ip_nets AS dvin0
INNER JOIN device_vlans_ip_nets AS dvin1
ON (dvin0.vlan = dvin1.vlan)
AND (dvin0.device_id < dvin1.device_id) -- ensures only one copy of entry
AND (inet_same_family(dvin0.ip_net, dvin1.ip_net))
AND (dvin0.ip_net != dvin1.ip_net)
ORDER BY device0_id, device1_id, vlan
;
CREATE VIEW device_interfaces_vlans AS
SELECT DISTINCT
device_id AS device_id,
interface_name AS interface_name,
vlan AS vlan
FROM raw_device_interfaces_vlans
ORDER BY device_id, interface_name, vlan
;
CREATE VIEW raw_device_vlans_summaries AS
SELECT DISTINCT
rdvin.tool_run_id AS tool_run_id,
rdvin.device_id AS device_id,
rdvin.vlan AS vlan,
rdvin.ip_net AS ip_net,
rdv.description AS description
FROM raw_device_vlans_ip_nets AS rdvin
JOIN raw_device_vlans AS rdv
ON (rdvin.tool_run_id = rdv.tool_run_id)
AND (rdvin.device_id = rdv.device_id)
AND (rdvin.vlan = rdv.vlan)
;
CREATE VIEW device_vlans_summaries AS
SELECT DISTINCT
device_id AS device_id,
vlan AS vlan,
ip_net AS ip_net,
description AS description
FROM raw_device_vlans_summaries
ORDER BY device_id, vlan, ip_net
;
-- ----------------------------------------------------------------------
COMMIT TRANSACTION;
|
<reponame>DBatOWL/tutorials
insert into users (login, password, role, language) values ('user', '{noop}pass', 'ROLE_USER', 'english'); |
DELIMITER /
INSERT INTO S2S_PROVIDERS (CODE, DESCRIPTION, CONNECTOR_SERVICE_NAME, ACTIVE, UPDATE_USER, UPDATE_TIMESTAMP, VER_NBR, OBJ_ID)
VALUES ('1', 'Grants.Gov', 'grantsGovConnectorService', 'Y', 'admin', NOW(), '1', UUID())
/
INSERT INTO S2S_PROVIDERS (CODE, DESCRIPTION, CONNECTOR_SERVICE_NAME, ACTIVE, UPDATE_USER, UPDATE_TIMESTAMP, VER_NBR, OBJ_ID)
VALUES ('2', 'Research.Gov', 'researchGovConnectorService', 'Y', 'admin', NOW(), '1', UUID())
/
DELIMITER ;
|
create database if not exists tpch01_orc;
create external table if not exists tpch01_orc.nation (
n_nationkey int,
n_name string,
n_regionkey int,
n_comment string
)
STORED AS orc
LOCATION '/drill/testdata/Tpch0.01/orc/nation';
create external table if not exists tpch01_orc.region (
r_regionkey int,
r_name string,
r_comment string
)
STORED AS orc
LOCATION '/drill/testdata/Tpch0.01/orc/region';
create external table if not exists tpch01_orc.part (
p_partkey int,
p_name string,
p_mfgr string,
p_brand string,
p_type string,
p_size int,
p_container string,
p_retailprice double,
p_comment string
)
STORED AS orc
LOCATION '/drill/testdata/Tpch0.01/orc/part';
create external table if not exists tpch01_orc.supplier (
s_suppkey int,
s_name string,
s_address string,
s_nationkey int,
s_phone string,
s_acctbal double,
s_comment string
)
STORED AS orc
LOCATION '/drill/testdata/Tpch0.01/orc/supplier';
create external table if not exists tpch01_orc.partsupp (
ps_partkey int,
ps_suppkey int,
ps_availqty int,
ps_supplycost double,
ps_comment string
)
STORED AS orc
LOCATION '/drill/testdata/Tpch0.01/orc/partsupp';
create external table if not exists tpch01_orc.customer (
c_custkey int,
c_name string,
c_address string,
c_nationkey int,
c_phone string,
c_acctbal double,
c_mktsegment string,
c_comment string
)
STORED AS orc
LOCATION '/drill/testdata/Tpch0.01/orc/customer';
create external table if not exists tpch01_orc.lineitem (
l_orderkey int,
l_partkey int,
l_suppkey int,
l_linenumber int,
l_quantity double,
l_extendedprice double,
l_discount double,
l_tax double,
l_returnflag string,
l_linestatus string,
l_shipdate date,
l_commitdate date,
l_receiptdate date,
l_shipinstruct string,
l_shipmode string,
l_comment string
)
STORED AS orc
LOCATION '/drill/testdata/Tpch0.01/orc/lineitem';
create external table if not exists tpch01_orc.orders (
o_orderkey int,
o_custkey int,
o_orderstatus string,
o_totalprice double,
o_orderdate date,
o_orderpriority string,
o_clerk string,
o_shippriority int,
o_comment string
)
STORED AS orc
LOCATION '/drill/testdata/Tpch0.01/orc/orders';
|
<gh_stars>0
set `planner.enable_nljoin_for_scalar_only` = false;
select * from customer cross join orders limit 10;
reset `planner.enable_nljoin_for_scalar_only`;
|
<reponame>ABMI/etlKoreanNSC
/**************************************
--encoding : UTF-8
--Author: <NAME>
--Date: 2018.09.20
@NHISNSC_rawdata : DB containing NHIS National Sample cohort DB
@NHISNSC_database : DB for NHIS-NSC in CDM format
@NHIS_JK: JK table in NHIS NSC
@NHIS_20T: 20 table in NHIS NSC
@NHIS_30T: 30 table in NHIS NSC
@NHIS_40T: 40 table in NHIS NSC
@NHIS_60T: 60 table in NHIS NSC
@NHIS_GJ: GJ table in NHIS NSC
@GJ_vertical : GJ table from NHIS NSC, which was vertically transformatted
@CONDITION_MAPPINGTABLE : mapping table between KCD and OMOP vocabulary
@DRUG_MAPPINGTABLE : mapping table between EDI and OMOP vocabulary
@PROCEDURE_MAPPINGTABLE : mapping table between Korean procedure and OMOP vocabulary
@DEVICE_MAPPINGTABLE : mapping table between EDI and OMOP vocabulary
--Description: Create OBSERVATION table
--Generating Table: OBSERVATION
***************************************/
/**************************************
1. Create table
***************************************/
--drop table @ResultDatabaseSchema.OBSERVATION
--drop table #observation_mapping
--drop table #observation_mapping09
--IF OBJECT_ID(@ResultDatabaseSchema.OBSERVATION', 'U') IS NULL
/*
CREATE TABLE @NHISNSC_database.OBSERVATION
(
observation_id BIGINT NOT NULL ,
person_id INTEGER NOT NULL ,
observation_concept_id INTEGER NOT NULL ,
observation_date DATE NOT NULL ,
observation_time TIME NULL,
observation_type_concept_id integer NULL,
value_as_number float NULL,
value_as_string VARCHAR(50) NULL,
value_as_concept_id integer NULL,
qualifier_concept_id integer NULL,
unit_concept_id integer NULL,
provider_id integer NULL,
visit_occurrence_id bigint NULL,
observation_source_value VARCHAR(50) NULL,
observation_source_concept_id integer NULL,
unit_source_value VARCHAR(50) NULL,
qualifier_source_value VARCHAR(50) NULL
)
;
*/
/*
-- Creating Vertical tables
select hchk_year, person_id, ykiho_gubun_cd, meas_type, meas_value
into @NHISNSC_rawdata.GJ_VERTICAL
from @NHISNSC_rawdata.@NHIS_GJ
unpivot (meas_value for meas_type in ( -- 47 GJ items
height, weight, waist, bp_high, bp_lwst,
blds, tot_chole, triglyceride, hdl_chole, ldl_chole,
hmg, gly_cd, olig_occu_cd, olig_ph, olig_prote_cd,
creatinine, sgot_ast, sgpt_alt, gamma_gtp, hchk_pmh_cd1,
hchk_pmh_cd2, hchk_pmh_cd3, hchk_apop_pmh_yn, hchk_hdise_pmh_yn, hchk_hprts_pmh_yn,
hchk_diabml_pmh_yn, hchk_hplpdm_pmh_yn, hchk_etcdse_pmh_yn, hchk_phss_pmh_yn, fmly_liver_dise_patien_yn,
fmly_hprts_patien_yn, fmly_apop_patien_yn, fmly_hdise_patien_yn, fmly_diabml_patien_yn, fmly_cancer_patien_yn,
smk_stat_type_rsps_cd, smk_term_rsps_cd, cur_smk_term_rsps_cd, cur_dsqty_rsps_cd, past_smk_term_rsps_cd,
past_dsqty_rsps_cd, dsqty_rsps_cd, drnk_habit_rsps_Cd, tm1_drkqty_rsps_cd, exerci_freq_rsps_cd,
mov20_wek_freq_id, mov30_wek_freq_id, wlk30_wek_freq_id
)) as unpivortn
;
select STND_Y as hchk_year, person_id, jk_type, jk_value into @NHISNSC_rawdata.JK_VERTICAL
from @NHISNSC_rawdata.@NHIS_JK
unpivot (jk_value for jk_type in ( -- 2 JK items
CTRB_PT_TYPE_CD, DFAB_GRD_CD
)) as unpivortn
;
*/
-- observation mapping table(temp)
CREATE TABLE #observation_mapping
(
meas_type varchar(50) NULL ,
id_value varchar(50) NULL ,
answer bigint NULL ,
observation_concept_id bigint NULL ,
observation_type_concept_id bigint NULL ,
observation_unit_concept_id bigint NULL ,
value_as_concept_id bigint NULL ,
value_as_number float NULL
)
;
-- insert mapping data
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD1', '20', 1, 4058267, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD1', '20', 2, 43021368, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD1', '20', 3, 4058725, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD1', '20', 4, 4058286, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD1', '20', 5, 4077352, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD1', '20', 6, 4077982, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD1', '20', 7, 4058709, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD1', '20', 8, 4144289, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD1', '20', 9, 4195979, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD2', '21', 1, 4058267, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD2', '21', 2, 43021368, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD2', '21', 3, 4058725, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD2', '21', 4, 4058286, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD2', '21', 5, 4077352, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD2', '21', 6, 4077982, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD2', '21', 7, 4058709, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD2', '21', 8, 4144289, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD2', '21', 9, 4195979, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD3', '22', 1, 4058267, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD3', '22', 2, 43021368, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD3', '22', 3, 4058725, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD3', '22', 4, 4058286, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD3', '22', 5, 4077352, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD3', '22', 6, 4077982, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD3', '22', 7, 4058709, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD3', '22', 8, 4144289, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PMH_CD3', '22', 9, 4195979, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_APOP_PMH_YN', '23', 1, 4077982, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_HDISE_PMH_YN', '24', 1, 4077352, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_HPRTS_PMH_YN', '25', 1, 4058286, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_DIABML_PMH_YN', '26', 1, 4058709, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_HPLPDM_PMH_YN', '27', 1, 4058275, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_ETCDSE_PMH_YN', '28', 1, 44834226, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('HCHK_PHSS_PMH_YN', '29', 1, 4058267, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('FMLY_LIVER_DISE_PATIEN_YN', '30', 1, 4144266, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('FMLY_HPRTS_PATIEN_YN', '31', 0, 4053372, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('FMLY_HPRTS_PATIEN_YN', '31', 1, 4050816, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('FMLY_APOP_PATIEN_YN', '32', 0, 4175587, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('FMLY_APOP_PATIEN_YN', '32', 1, 4169009, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('FMLY_HDISE_PATIEN_YN', '33', 0, 4050792, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('FMLY_HDISE_PATIEN_YN', '33', 1, 4173498, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('FMLY_DIABML_PATIEN_YN', '34', 0, 4051106, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('FMLY_DIABML_PATIEN_YN', '34', 1, 4051114, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('FMLY_CANCER_PATIEN_YN', '35', 0, 4051100, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('FMLY_CANCER_PATIEN_YN', '35', 1, 4171594, 44814721, null, null, null);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('SMK_STAT_TYPE_RSPS_CD', '36', 1, 4222303, 44814721, NULL, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('SMK_STAT_TYPE_RSPS_CD', '36', 2, 4310250, 44814721, NULL, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('SMK_STAT_TYPE_RSPS_CD', '36', 3, 4276526, 44814721, NULL, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('SMK_TERM_RSPS_CD', '37', 1, 40766364, 44818704, NULL, NULL, 2.5) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('SMK_TERM_RSPS_CD', '37', 2, 40766364, 44818704, NULL, NULL, 7.5) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('SMK_TERM_RSPS_CD', '37', 3, 40766364, 44818704, NULL, NULL, 15) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('SMK_TERM_RSPS_CD', '37', 4, 40766364, 44818704, NULL, NULL, 25) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('SMK_TERM_RSPS_CD', '37', 5, 40766364, 44818704, NULL, NULL, 30) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('CUR_SMK_TERM_RSPS_CD', '38', 0, 40766364, 44818704, 9448, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('CUR_DSQTY_RSPS_CD', '39', 0, 40766929, 44818704, 45756923, NULL, NULL) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('PAST_SMK_TERM_RSPS_CD', '40', 0, 40766364, 44818704, 9448, NULL, NULL) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('PAST_DSQTY_RSPS_CD', '41', 0, 40766930, 44818704, 45756923, NULL, NULL) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DSQTY_RSPS_CD', '42', 1, 40766929, 44818704, 45756954, NULL, 0.25) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DSQTY_RSPS_CD', '42', 2, 40766929, 44818704, 45756954, NULL, 0.75) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DSQTY_RSPS_CD', '42', 3, 40766929, 44818704, 45756954, NULL, 1.5) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DSQTY_RSPS_CD', '42', 4, 40766929, 44818704, 45756954, NULL, 2) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DRNK_HABIT_RSPS_CD', '43', 1, 40771103, 44818704, NULL, 45882527, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DRNK_HABIT_RSPS_CD', '43', 2, 40771103, 44818704, NULL, 45885249, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DRNK_HABIT_RSPS_CD', '43', 3, 40771103, 44818704, NULL, 45881653, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DRNK_HABIT_RSPS_CD', '43', 4, 40771103, 44818704, NULL, 45885248, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DRNK_HABIT_RSPS_CD', '43', 5, 40771103, 44818704, NULL, 45879676, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('TM1_DRKQTY_RSPS_CD', '44', 1, 3037705, 44818704, 4045131, NULL, 3.5) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('TM1_DRKQTY_RSPS_CD', '44', 2, 3037705, 44818704, 4045131, NULL, 7) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('TM1_DRKQTY_RSPS_CD', '44', 3, 3037705, 44818704, 4045131, NULL, 10.5);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('TM1_DRKQTY_RSPS_CD', '44', 4, 3037705, 44818704, 4045131, NULL, 14) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('EXERCI_FREQ_RSPS_CD', '45', 1, 4036426, 44818704, NULL, 45882527, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('EXERCI_FREQ_RSPS_CD', '45', 2, 4036426, 44818704, NULL, 45881653, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('EXERCI_FREQ_RSPS_CD', '45', 3, 4036426, 44818704, NULL, 45885248, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('EXERCI_FREQ_RSPS_CD', '45', 4, 4036426, 44818704, NULL, 45883166, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('EXERCI_FREQ_RSPS_CD', '45', 5, 4036426, 44818704, NULL, 45879676, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('MOV20_WEK_FREQ_ID', '46', 0, 82020119, 44818704, NULL, NULL, NULL) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('MOV30_WEK_FREQ_ID', '47', 0, 82020120, 44818704, NULL, NULL, NULL) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('WLK30_WEK_FREQ_ID', '48', 0, 82020121, 44818704, NULL, NULL, NULL) ;
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('CTRB_PT_TYPE_CD', '49', 0, 3004572, 44814721, 4155146, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('CTRB_PT_TYPE_CD', '49', 1, 3004572, 44814721, 4155146, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('CTRB_PT_TYPE_CD', '49', 2, 3004572, 44814721, 4155146, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('CTRB_PT_TYPE_CD', '49', 3, 3004572, 44814721, 4155146, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('CTRB_PT_TYPE_CD', '49', 4, 3004572, 44814721, 4155146, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('CTRB_PT_TYPE_CD', '49', 5, 3004572, 44814721, 4155146, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('CTRB_PT_TYPE_CD', '49', 6, 3004572, 44814721, 4155146, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('CTRB_PT_TYPE_CD', '49', 7, 3004572, 44814721, 4155146, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('CTRB_PT_TYPE_CD', '49', 8, 3004572, 44814721, 4155146, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('CTRB_PT_TYPE_CD', '49', 9, 3004572, 44814721, 4155146, NULL, NULL);
insert into #observation_mapping (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('CTRB_PT_TYPE_CD', '49', 10, 3004572, 44814721, 4155146, NULL, NULL);
/**************************************
2. Insert categorical data
***************************************/
INSERT INTO @NHISNSC_database.OBSERVATION (observation_id, person_id, observation_concept_id, observation_date, observation_datetime, observation_type_concept_id, value_as_number, value_As_string, value_as_concept_id,
qualifier_concept_id, unit_concept_id, provider_id, visit_occurrence_id, observation_source_value, observation_source_concept_id, unit_source_value, qualifier_source_value)
select cast(concat(c.master_seq, b.id_value) as bigint) as observation_id,
a.person_id as person_id,
b.observation_concept_id as observation_concept_id,
cast(CONVERT(VARCHAR, a.hchk_year+'0101', 23)as date) as observation_date,
oservation_datetime = null,
b.observation_type_concept_id as observation_type_concept_id,
CASE WHEN b.answer is not null and b.value_as_number is not null
then b.value_as_number
else a.meas_value
END as value_as_number,
value_as_string = null,
b.value_as_concept_id as value_as_concept_id,
qualifier_source_value = null,
unit_concept_id = null,
provider_id = null,
visit_occurrence_id = c.master_seq,
a.meas_value as observation_source_value,
observation_source_concept_id = null,
unit_source_value = null,
qualifier_source_Value = null
from (select hchk_year, person_id, ykiho_gubun_cd, meas_type,
--Family history (Starting with FMLY_) existence, recored as 1 or 2 until 2008 and 0 or 1 until 2009
case when substring(meas_type, 1, 30) in('FMLY_LIVER_DISE_PATIEN_YN', 'FMLY_HPRTS_PATIEN_YN', 'FMLY_APOP_PATIEN_YN', 'FMLY_HDISE_PATIEN_YN', 'FMLY_DIABML_PATIEN_YN', 'FMLY_CANCER_PATIEN_YN')
and substring(hchk_year, 1, 4) in ('2002', '2003', '2004', '2005', '2006', '2007', '2008') then cast(cast(meas_value as int)-1 as varchar(50))
else meas_value
end as meas_value
from @NHISNSC_rawdata.GJ_VERTICAL) a
JOIN #observation_mapping b
on isnull(a.meas_type,'') = isnull(b.meas_type,'')
and isnull(a.meas_value,'0') = isnull(cast(b.answer as char),'0')
JOIN @NHISNSC_database.SEQ_MASTER c
on a.person_id = cast(c.person_id as char)
and a.hchk_year = c.hchk_year
where (a.meas_value != '' and substring(a.meas_type, 1, 30) in ('HCHK_PMH_CD1', 'HCHK_PMH_CD2', 'HCHK_PMH_CD3','HCHK_APOP_PMH_YN', 'HCHK_HDISE_PMH_YN', 'HCHK_HPRTS_PMH_YN',
'HCHK_DIABML_PMH_YN', 'HCHK_HPLPDM_PMH_YN', 'HCHK_ETCDSE_PMH_YN', 'HCHK_PHSS_PMH_YN', 'FMLY_LIVER_DISE_PATIEN_YN', 'FMLY_HPRTS_PATIEN_YN',
'FMLY_APOP_PATIEN_YN', 'FMLY_HDISE_PATIEN_YN', 'FMLY_DIABML_PATIEN_YN', 'FMLY_CANCER_PATIEN_YN', 'SMK_STAT_TYPE_RSPS_CD', 'SMK_TERM_RSPS_CD',
'DSQTY_RSPS_CD', 'EXERCI_FREQ_RSPS_CD')
or(a.meas_value != '' and substring(a.meas_type, 1, 30) in ('DRNK_HABIT_RSPS_CD', 'TM1_DRKQTY_RSPS_CD') and substring(a.hchk_year, 1, 4) in ('2002', '2003', '2004', '2005', '2006', '2007', '2008')))
and c.source_table like 'GJT'
;
/**************************************
2. Insert continuous data
***************************************/
INSERT INTO @NHISNSC_database.OBSERVATION (observation_id, person_id, observation_concept_id, observation_date, observation_datetime, observation_type_concept_id, value_as_number, value_As_string, value_as_concept_id,
qualifier_concept_id, unit_concept_id, provider_id, visit_occurrence_id, observation_source_value, observation_source_concept_id, unit_source_value, qualifier_source_value)
select cast(concat(c.master_seq, b.id_value) as bigint) as observation_id,
a.person_id as person_id,
b.observation_concept_id as observation_concept_id,
cast(CONVERT(VARCHAR, a.hchk_year+'0101', 23)as date) as observation_date,
oservation_time = null,
b.observation_type_concept_id as observation_type_concept_id,
CASE WHEN b.answer is not null and b.value_as_number is not null
then b.value_as_number
else a.meas_value
END as value_as_number,
value_as_string = null,
b.value_as_concept_id as value_as_concept_id,
qualifier_source_value = null,
b.observation_unit_concept_id as unit_concept_id ,
provider_id = null,
visit_occurrence_id = c.master_seq,
a.meas_value as observation_source_value,
observation_source_concept_id = null,
unit_source_value = null,
qualifier_source_Value = null
from (select hchk_year, person_id, ykiho_gubun_cd, meas_type, meas_value
from @NHISNSC_rawdata.GJ_VERTICAL) a
JOIN #observation_mapping b
on isnull(a.meas_type,'') = isnull(b.meas_type,'')
and isnull(a.meas_value,'0') >= isnull(cast(b.answer as char),'0')
JOIN @NHISNSC_database.SEQ_MASTER c
on a.person_id = cast(c.person_id as char)
and a.hchk_year = c.hchk_year
where (a.meas_value != '' and substring(a.meas_type, 1, 30) in ('CUR_SMK_TERM_RSPS_CD', 'CUR_DSQTY_RSPS_CD', 'PAST_SMK_TERM_RSPS_CD', 'PAST_DSQTY_RSPS_CD',
'MOV20_WEK_FREQ_ID', 'MOV30_WEK_FREQ_ID', 'WLK30_WEK_FREQ_ID'))
and c.source_table like 'GJT'
;
/**************************************
2. Insert continuous drinking data changing from 2009
***************************************/
--temp mapping table
CREATE TABLE #observation_mapping09
(
meas_type varchar(50) NULL ,
id_value varchar(50) NULL ,
answer bigint NULL ,
observation_concept_id bigint NULL ,
observation_type_concept_id bigint NULL ,
observation_unit_concept_id bigint NULL ,
value_as_concept_id bigint NULL ,
value_as_number float NULL
)
;
insert into #observation_mapping09 (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DRNK_HABIT_RSPS_CD', '43', 1, 40771103, 44818704, 45881908, NULL, 0);
insert into #observation_mapping09 (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DRNK_HABIT_RSPS_CD', '43', 2, 40771103, 44818704, 45881908, NULL, 1);
insert into #observation_mapping09 (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DRNK_HABIT_RSPS_CD', '43', 3, 40771103, 44818704, 45881908, NULL, 2);
insert into #observation_mapping09 (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DRNK_HABIT_RSPS_CD', '43', 4, 40771103, 44818704, 45881908, NULL, 3);
insert into #observation_mapping09 (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DRNK_HABIT_RSPS_CD', '43', 5, 40771103, 44818704, 45881908, NULL, 4);
insert into #observation_mapping09 (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DRNK_HABIT_RSPS_CD', '43', 6, 40771103, 44818704, 45881908, NULL, 5);
insert into #observation_mapping09 (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DRNK_HABIT_RSPS_CD', '43', 7, 40771103, 44818704, 45881908, NULL, 6);
insert into #observation_mapping09 (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('DRNK_HABIT_RSPS_CD', '43', 8, 40771103, 44818704, 45881908, NULL, 7);
insert into #observation_mapping09 (meas_type, id_value, answer, observation_concept_id, observation_type_concept_id, observation_unit_concept_id, value_as_concept_id, value_as_number) values ('TM1_DRKQTY_RSPS_CD', '44', 0, 3037705, 44818704, 4045131, NULL, NULL) ;
INSERT INTO @NHISNSC_database.OBSERVATION (observation_id, person_id, observation_concept_id, observation_date, observation_datetime, observation_type_concept_id, value_as_number, value_As_string, value_as_concept_id,
qualifier_concept_id, unit_concept_id, provider_id, visit_occurrence_id, observation_source_value, observation_source_concept_id, unit_source_value, qualifier_source_value)
select cast(concat(c.master_seq, b.id_value) as bigint) as observation_id,
a.person_id as person_id,
b.observation_concept_id as observation_concept_id,
cast(CONVERT(VARCHAR, a.hchk_year+'0101', 23)as date) as observation_date,
oservation_time = null,
b.observation_type_concept_id as observation_type_concept_id,
CASE WHEN b.answer is not null and b.value_as_number is not null
then b.value_as_number
else a.meas_value
END as value_as_number,
value_as_string = null,
b.value_as_concept_id as value_as_concept_id,
qualifier_source_value = null,
b.observation_unit_concept_id as unit_concept_id ,
provider_id = null,
visit_occurrence_id = c.master_seq,
a.meas_value as observation_source_value,
observation_source_concept_id = null,
unit_source_value = null,
qualifier_source_Value = null
from (select hchk_year, person_id, ykiho_gubun_cd, meas_type, meas_value
from @NHISNSC_rawdata.GJ_VERTICAL) a
JOIN #observation_mapping09 b
on isnull(a.meas_type,'') = isnull(b.meas_type,'')
and isnull(a.meas_value,'0') >= isnull(cast(b.answer as char),'0')
JOIN @NHISNSC_database.SEQ_MASTER c
on a.person_id = cast(c.person_id as char)
and a.hchk_year = c.hchk_year
where (a.meas_value != '' and substring(a.meas_type, 1, 30) in ('TM1_DRKQTY_RSPS_CD') and substring(a.hchk_year, 1, 4) in ('2009', '2010', '2011', '2012', '2013'))
and c.source_table like 'GJT'
;
/**************************************
2. Insert categorical drinking data changing from 2009
***************************************/
INSERT INTO @NHISNSC_database.OBSERVATION (observation_id, person_id, observation_concept_id, observation_date, observation_datetime, observation_type_concept_id, value_as_number, value_As_string, value_as_concept_id,
qualifier_concept_id, unit_concept_id, provider_id, visit_occurrence_id, observation_source_value, observation_source_concept_id, unit_source_value, qualifier_source_value)
select cast(concat(c.master_seq, b.id_value) as bigint) as observation_id,
a.person_id as person_id,
b.observation_concept_id as observation_concept_id,
cast(CONVERT(VARCHAR, a.hchk_year+'0101', 23)as date) as observation_date,
oservation_time = null,
b.observation_type_concept_id as observation_type_concept_id,
CASE WHEN b.answer is not null and b.value_as_number is not null
then b.value_as_number
else a.meas_value
END as value_as_number,
value_as_string = null,
b.value_as_concept_id as value_as_concept_id,
qualifier_source_value = null,
b.observation_unit_concept_id as unit_concept_id ,
provider_id = null,
visit_occurrence_id = c.master_seq,
a.meas_value as observation_source_value,
observation_source_concept_id = null,
unit_source_value = null,
qualifier_source_Value = null
from (select hchk_year, person_id, ykiho_gubun_cd, meas_type, meas_value
from @NHISNSC_rawdata.GJ_VERTICAL) a
JOIN #observation_mapping09 b
on isnull(a.meas_type,'') = isnull(b.meas_type,'')
and isnull(a.meas_value,'0') = isnull(cast(b.answer as char),'0')
JOIN @NHISNSC_database.SEQ_MASTER c
on a.person_id = cast(c.person_id as char)
and a.hchk_year = c.hchk_year
where (a.meas_value != '' and substring(a.meas_type, 1, 30) in ('DRNK_HABIT_RSPS_CD') and substring(a.hchk_year, 1, 4) in ('2009', '2010', '2011', '2012', '2013'))
and c.source_table like 'GJT'
;
/*************************************
2. Pivot rows to columns of JK table
*************************************/
/*
select STND_Y as hchk_year, person_id, jk_type, jk_value into @NHISNSC_rawdata.JK_VERTICAL
from @NHISNSC_rawdata.@NHIS_JK
unpivot (jk_value for jk_type in ( -- 2 JK variable
CTRB_PT_TYPE_CD, DFAB_GRD_CD
)) as unpivortn
*/
/**************************************
2. Insert data of income quantiles
***************************************/
INSERT INTO @NHISNSC_database.OBSERVATION (observation_id, person_id, observation_concept_id, observation_date, observation_datetime, observation_type_concept_id, value_as_number, value_As_string, value_as_concept_id,
qualifier_concept_id, unit_concept_id, provider_id, visit_occurrence_id, observation_source_value, observation_source_concept_id, unit_source_value, qualifier_source_value)
select cast(concat(c.master_seq, b.id_value) as bigint) as observation_id,
a.person_id as person_id,
b.observation_concept_id as observation_concept_id,
cast(CONVERT(VARCHAR, a.hchk_year+'0101', 23)as date) as observation_date,
observation_datetime = null,
b.observation_type_concept_id as observation_type_concept_id,
CASE WHEN b.answer is not null and b.value_as_number is not null then b.value_as_number
else a.jk_value
END as value_as_number,
value_as_string = null,
b.value_as_concept_id as value_as_concept_id,
qualifier_source_value = null,
b.observation_unit_concept_id as unit_concept_id,
provider_id = null,
visit_occurrence_id = null ,
a.jk_value as observation_source_value,
observation_source_concept_id = null,
unit_source_value = null,
qualifier_source_Value = null
from (select * from @NHISNSC_rawdata.JK_VERTICAL where jk_type='CTRB_PT_TYPE_CD') a
JOIN #observation_mapping b
on isnull(a.jk_value,'') = isnull(b.answer,'')
JOIN @NHISNSC_database.SEQ_MASTER c
on a.person_id = cast(c.person_id as char)
and a.hchk_year = c.stnd_y
where a.jk_value != '' and b.meas_type = 'CTRB_PT_TYPE_CD'
and c.source_table='JKT'
;
drop table #observation_mapping;
drop table #observation_mapping09;
/*****************************************************
Check the table
*****************************************************/
/*
--------------Before pivot, 29
select distinct meas_type, count(meas_type)
from @NHISNSC_rawdata.@GJ_VERTICAL
where meas_value != '' and substring(meas_type, 1, 30) in ('HCHK_PMH_CD1', 'HCHK_PMH_CD2', 'HCHK_PMH_CD3','HCHK_APOP_PMH_YN', 'HCHK_HDISE_PMH_YN', 'HCHK_HPRTS_PMH_YN',
'HCHK_DIABML_PMH_YN', 'HCHK_HPLPDM_PMH_YN', 'HCHK_ETCDSE_PMH_YN', 'HCHK_PHSS_PMH_YN', 'FMLY_LIVER_DISE_PATIEN_YN', 'FMLY_HPRTS_PATIEN_YN',
'FMLY_APOP_PATIEN_YN', 'FMLY_HDISE_PATIEN_YN', 'FMLY_DIABML_PATIEN_YN', 'FMLY_CANCER_PATIEN_YN', 'SMK_STAT_TYPE_RSPS_CD', 'SMK_TERM_RSPS_CD',
'DSQTY_RSPS_CD', 'DRNK_HABIT_RSPS_CD', 'TM1_DRKQTY_RSPS_CD', 'EXERCI_FREQ_RSPS_CD', 'CUR_SMK_TERM_RSPS_CD', 'CUR_DSQTY_RSPS_CD', 'PAST_SMK_TERM_RSPS_CD', 'PAST_DSQTY_RSPS_CD',
'MOV20_WEK_FREQ_ID', 'MOV30_WEK_FREQ_ID', 'WLK30_WEK_FREQ_ID')
group by meas_type
order by meas_type
*/ |
/****** Object: UserDefinedFunction [dbo].[GetOSMItemChooserList] ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE FUNCTION [dbo].[GetOSMItemChooserList]
/****************************************************
**
** Desc:
** Builds delimited list of item IDs
** for adding to OSM package
**
** Return value: delimited list
**
** Auth: grk
** Date:
** 10/26/2012 grk - initial release
** 11/01/2012 grk - eliminated mode 'campaign_from_exp_group_parent'
** 11/03/2012 grk - added mode 'datasets_from_completed_requested_runs'
**
*****************************************************/
(
@OSMPackageID int,
@mode varchar(128) = ''
)
RETURNS varchar(8000)
AS
BEGIN
---------------------------------------------------
-- temp table to accumulate items to be made into list
---------------------------------------------------
DECLARE @tx TABLE (
Item varchar(512)
)
declare @list varchar(8000) = ''
---------------------------------------------------
-- get items for list
---------------------------------------------------
IF @mode = 'campaign_from_exp_group_members'
BEGIN
INSERT INTO @tx
( Item )
SELECT DISTINCT
TCPN.Campaign_Num AS Item
FROM S_V_OSM_Package_Items_Export AS TOPI
INNER JOIN T_Experiment_Group_Members AS TEGM ON TEGM.Group_ID = TOPI.Item_ID
INNER JOIN T_Experiments AS TEXP ON TEXP.Exp_ID = TEGM.Exp_ID
INNER JOIN T_Campaign AS TCPN ON TEXP.EX_campaign_ID = TCPN.Campaign_ID
WHERE ( TOPI.Item_Type = 'Experiment_Groups' )
AND TOPI.OSM_Package_ID = @OSMPackageID
AND NOT TCPN.Campaign_Num = 'Placeholder'
END
---------------------------------------------------
-- get items for list
---------------------------------------------------
IF @mode = 'datasets_from_completed_requested_runs'
BEGIN
INSERT INTO @tx
( Item )
SELECT
TDS.Dataset_Num AS Item
FROM S_V_OSM_Package_Items_Export AS TOPI
INNER JOIN T_Requested_Run TRR ON TRR.ID = TOPI.Item_ID
INNER JOIN dbo.T_Dataset TDS ON TDS.Dataset_ID = TRR.DatasetID
WHERE ( TOPI.Item_Type = 'Requested_Runs' )
AND TOPI.OSM_Package_ID = @OSMPackageID
AND NOT TDS.Dataset_Num IN
(
SELECT
TDSX.Dataset_Num
FROM S_V_OSM_Package_Items_Export AS TOPIX
INNER JOIN dbo.T_Dataset TDSX ON TDSX.Dataset_ID = TOPIX.Item_ID
WHERE ( TOPIX.Item_Type = 'Datasets' )
AND TOPIX.OSM_Package_ID = @OSMPackageID
)
END
---------------------------------------------------
-- roll up items into delimited list
---------------------------------------------------
SELECT
@list = @list + CASE WHEN @list = '' THEN Item ELSE ', ' + Item END
FROM @tx
RETURN ISNULL(@list,'')
END
GO
GRANT VIEW DEFINITION ON [dbo].[GetOSMItemChooserList] TO [DDL_Viewer] AS [dbo]
GO
GRANT EXECUTE ON [dbo].[GetOSMItemChooserList] TO [DMS2_SP_User] AS [dbo]
GO
|
<filename>07-SQL-JDBS/03-outer-join/src/test/resources/create.sql<gh_stars>1-10
-- create new database for car
CREATE DATABASE base_car;
-- create table body
CREATE TABLE body (
id SERIAL PRIMARY KEY,
name VARCHAR(200) NOT NULL UNIQUE
);
-- create table transmission, table don`t has duplicate name
CREATE TABLE transmission (
id SERIAL PRIMARY KEY,
name VARCHAR(200) NOT NULL UNIQUE
);
-- create table engine, table don`t has duplicate name
CREATE TABLE engine (
id SERIAL PRIMARY KEY,
name VARCHAR(200) NOT NULL UNIQUE
);
-- create table car, table don`t has duplicate name
CREATE TABLE car (
id SERIAL PRIMARY KEY,
name VARCHAR(200) NOT NULL UNIQUE,
body_id INT REFERENCES body(id) ON DELETE SET NULL,
transmission_id INT REFERENCES transmission(id) ON DELETE SET NULL,
engine_id INT REFERENCES engine(id) ON DELETE SET NULL
); |
BEGIN;
CREATE TABLE recent_searches (
id serial PRIMARY KEY,
query text NOT NULL,
created_at timestamp NOT NULL DEFAULT NOW()
);
COMMIT;
|
CREATE PROCEDURE SP375(OUT MYCOUNT INTEGER) SPECIFIC SP375_114380 LANGUAGE SQL NOT DETERMINISTIC READS SQL DATA NEW SAVEPOINT LEVEL BEGIN ATOMIC DECLARE MYVAR INT;SELECT COUNT(*)INTO MYCOUNT FROM TABLE258;SELECT COUNT(*)INTO MYCOUNT FROM TABLE146;SELECT COUNT(*)INTO MYCOUNT FROM TABLE395;SELECT COUNT(*)INTO MYCOUNT FROM VIEW18;SELECT COUNT(*)INTO MYCOUNT FROM VIEW94;SELECT COUNT(*)INTO MYCOUNT FROM VIEW24;CALL SP997(MYVAR);CALL SP16(MYVAR);CALL SP369(MYVAR);CALL SP272(MYVAR);END
GO |
DROP PROCEDURE IF EXISTS `porc_gradebook_total_list_practiceTimetable`;
DELIMITER ;;
CREATE PROCEDURE `porc_gradebook_total_list_practiceTimetable`(IN `courseNumber` varchar(255),IN `product` varchar(255),IN `currPage` varchar(11),IN `pageSize` varchar(11))
BEGIN
DECLARE query_sql LONGTEXT;
SET query_sql= CONCAT("
(select null as a1,null as a2,GROUP_CONCAT(tws.id) from t_gradebook tg
inner join t_weight_setting tws on tws.course_number=tg.course_number
where tg.course_number='",courseNumber,"' and tg.product='",product,"')
union
(select d.student,d.cname,GROUP_CONCAT(d.points order by d.weight_id) from(
select a.student,a.cname,CONVERT(SUM(IFNULL(b.points,0)*IFNULL(c.final_weight,0)),decimal(10,2)) as points,a.weight_id,c.final_weight from
(select ttg.student,ttg.cname,tgo.id,ttg.course_number,tws.id as weight_id from t_test_grading ttg
inner join t_gradebook tg on tg.course_number = ttg.course_number
left join t_grade_object tgo on tgo.grade_id = tg.id
left join t_weight_setting tws on tws.course_number = ttg.course_number
where ttg.course_number='",courseNumber,"' and tgo.module='",product,"' ) a
left join
(select tgo.id,tgr.student_number,tgr.points,tgr.weight_id from t_grade_object tgo
inner join t_grade_record tgr on tgo.id = tgr.object_id
inner join t_gradebook tg on tg.id = tgo.grade_id
where tg.course_number = '",courseNumber,"'
) b on a.student = b.student_number and a.weight_id = b.weight_id and a.id=b.id
left join
(select ow.object_id,ow.weight_id, ow.final_weight from object_weight ow) c on c.object_id = a.id and c.weight_id = a.weight_id
group by a.student,a.weight_id
order by a.student,a.id,a.weight_id asc) d
group by d.student");
IF currPage <> '' AND pageSize <> '' THEN
SET query_sql = CONCAT(query_sql,' limit ',currPage ,',',pageSize);
END IF;
SET query_sql = CONCAT(query_sql,')');
SET @sql1=query_sql;
PREPARE stmt1 FROM @sql1;
EXECUTE stmt1;
END
;;
DELIMITER ; |
<reponame>NCIP/national-biomedical-image-archive<gh_stars>10-100
/*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*/
create table patient_temp as select patient_pk_id from patient where trial_dp_pk_id = 1300725760;
create table study_temp as select study_pk_id from study where patient_pk_id in (select * from patient_temp);
create table series_temp as select general_series_pk_id from general_series where study_pk_id in (select * from study_temp);
create table image_temp as select image_pk_id from general_image where general_series_pk_id in (select * from series_temp);
delete from ct_image
where image_pk_id in (select image_pk_id from image_temp);
delete from qa_status_history
where general_image_pk_id in (select image_pk_id from image_temp);
delete from group9_dicom_tags
where image_pk_id in (select image_pk_id from image_temp);
delete from general_image
where general_series_pk_id in (select general_series_pk_id from series_temp);
delete from annotation
where general_series_pk_id in (select general_series_pk_id from series_temp);
delete from general_series
where study_pk_id in (select study_pk_id from study_temp);
delete from study
where study_pk_id in (select study_pk_id from study_temp);
delete from patient
where patient_pk_id in (select patient_pk_id from patient_temp);
delete from trial_data_provenance where trial_dp_pk_id = 1300725760;
drop table study_temp;
drop table series_temp;
drop table image_temp;
drop table patient_temp; |
SELECT `title`, `summary` FROM `film`
WHERE LOWER(`summary`) LIKE "%Vincent%"
ORDER BY `id_film`; |
<reponame>PedroHPAlmeida/problemas-uri-SQL
select pdct.name, pro.name, ctg.name
from products pdct
inner join providers pro on pdct.id_providers = pro.id
inner join categories ctg on pdct.id_categories = ctg.id
where pro.name = 'Sansul SA' and ctg.name = 'Imported'; |
<gh_stars>0
SELECT count(1) FROM repis.kirjed;
|
set head on
set echo on
set feed on
set lines 10000
set pages 10000
set long 20000
set colsep ';'
spool C:\Sig_det_1.SPL
select * from svtms_acc_sig_det where branch = '043' and acc_no = '0433830204399630'
/
spool off
|
<reponame>imajaydwivedi/Problem-Task---SQL-Server-Slowness
SET NOCOUNT ON;
DECLARE @LogSpaceUsedThreshold_GB DECIMAL(20,2);
SET @LogSpaceUsedThreshold_GB = 50;
IF OBJECT_ID('tempdb..#LogSpaceTable') IS NOT NULL
TRUNCATE TABLE #LogSpaceTable;
ELSE
BEGIN
CREATE TABLE #LogSpaceTable
( DbName varchar(200),LogSizeMB decimal(20,8), LogSpaceUsedPercent decimal(10,7), Status int
,LogSizeGB as cast(LogSizeMB / 1024 as decimal(20,2))
,LogSpaceUsedGB as cast((LogSizeMB * (LogSpaceUsedPercent / 100)) / 1024 as decimal(20,2))
)
END
-- Get Log Space Usage Metrics
INSERT #LogSpaceTable
EXEC('dbcc sqlperf(logspace)');
-- Stop the IndexOptimize Jobs if @LogSpaceUsedThreshold_GB is crossed
IF EXISTS (SELECT * FROM #LogSpaceTable as s WHERE s.DbName = 'Babel' AND s.LogSpaceUsedGB >= @LogSpaceUsedThreshold_GB) AND DBA.dbo.fn_IsJobRunning('DBA - IndexOptimize_Modified - Babel') = 1
EXEC msdb..sp_stop_job @job_name = 'DBA - IndexOptimize_Modified - Babel';
-- Stop the IndexOptimize Jobs if @LogSpaceUsedThreshold_GB is crossed
IF EXISTS (SELECT * FROM #LogSpaceTable as s WHERE s.DbName = 'StagingFiltered' AND s.LogSpaceUsedGB >= @LogSpaceUsedThreshold_GB) AND DBA.dbo.fn_IsJobRunning('DBA - IndexOptimize_Modified - StagingFiltered') = 1
EXEC msdb..sp_stop_job @job_name = 'DBA - IndexOptimize_Modified - StagingFiltered';
-- Stop the IndexOptimize Jobs if @LogSpaceUsedThreshold_GB is crossed
IF EXISTS (SELECT * FROM #LogSpaceTable as s WHERE s.DbName = 'MosaicFiltered' AND s.LogSpaceUsedGB >= @LogSpaceUsedThreshold_GB) AND DBA.dbo.fn_IsJobRunning('DBA - IndexOptimize_Modified - MosaicFiltered') = 1
EXEC msdb..sp_stop_job @job_name = 'DBA - IndexOptimize_Modified - MosaicFiltered';
/*
DbName LogSizeMB LogSpaceUsedPercent Status LogSizeGB LogSpaceUsedGB
StagingFiltered 79999.99218750 0.2588184 0 78.12 0.20
MosaicFiltered 41999.99218750 0.2737445 0 41.02 0.11
Babel 65962.42968750 2.1931520 0 64.42 1.41
*/
|
<gh_stars>0
SELECT account.username, account.name, account.user_id as id, account.profile_picture_url
FROM account,
(SELECT followee
FROM follows
WHERE follower = $1) AS followers
WHERE account.user_id = followers.followee;
|
<filename>backends/play-scala-slick/conf/evolutions/default/2.sql
# --- !Ups
create table "AUTHOR" (
"ID" VARCHAR NOT NULL PRIMARY KEY,
"NAME" VARCHAR NOT NULL,
"DESCRIPTION" VARCHAR
);
# --- !Downs
drop table "AUTHOR";
|
<filename>src/Broadcaster.DB/Broadcaster.DB/dbo/Tables/TrafficScheduleBlocks.sql
CREATE TABLE [dbo].[TrafficScheduleBlocks] (
[BlockID] INT NULL,
[Sun] INT NULL,
[Mon] INT NULL,
[Tue] INT NULL,
[Wed] INT NULL,
[Thu] INT NULL,
[Fri] INT NULL,
[Sat] INT NULL,
[Position] INT NULL,
[Value] MONEY NULL,
[ScheduleID] INT NULL,
[StationID] INT NULL,
[StartingDate] DATETIME NULL,
[EndingDate] DATETIME NULL,
[keyID] INT IDENTITY (1, 1) NOT FOR REPLICATION NOT NULL,
[rowguid] UNIQUEIDENTIFIER DEFAULT (newid()) ROWGUIDCOL NOT NULL,
CONSTRAINT [PK_TrafficScheduleBlocks] PRIMARY KEY CLUSTERED ([keyID] ASC) WITH (FILLFACTOR = 90)
);
GO
CREATE UNIQUE NONCLUSTERED INDEX [index_229575856]
ON [dbo].[TrafficScheduleBlocks]([rowguid] ASC) WITH (FILLFACTOR = 90);
|
<filename>quotes-site/sql/20140121_Gustavo_PlanType.sql
ALTER TABLE dd_user ADD COLUMN `PlanType` enum('free','medium','premium') DEFAULT 'free';
|
<reponame>eyrdworkspace/digit-bpa<filename>egov/egov-bpa/src/main/resources/db/migration/main/V20190308102137__bpa_permit_document_scrutiny_ddl.sql
DROP TABLE IF EXISTS EGBPA_DOCUMENTSCRUTINY CASCADE;
DROP SEQUENCE IF EXISTS SEQ_EGBPA_DOCUMENTSCRUTINY;
DROP SEQUENCE IF EXISTS seq_egbpa_plan_scrutiny_checklist;
ALTER TABLE EGBPA_DOCUMENT_SCRUTINY_COMMON RENAME TO EGBPA_DOCUMENT_SCRUTINY;
ALTER SEQUENCE SEQ_EGBPA_DOCUMENT_SCRUTINY_COMMON RENAME TO SEQ_EGBPA_DOCUMENT_SCRUTINY;
CREATE SEQUENCE SEQ_EGBPA_PERMIT_DOCUMENT_SCRUTINY;
CREATE TABLE EGBPA_PERMIT_DOCUMENT_SCRUTINY
(
id bigint NOT NULL,
documentScrutiny bigint NOT NULL,
application bigint NOT NULL,
createdby bigint NOT NULL,
createddate timestamp without time zone NOT NULL,
lastmodifiedby bigint,
lastmodifieddate timestamp without time zone,
version numeric DEFAULT 0,
CONSTRAINT pk_egbpa_permit_doc_scrutiny PRIMARY KEY (id),
CONSTRAINT fk_egbpa_permit_doc_scrutiny FOREIGN KEY (documentScrutiny)
REFERENCES EGBPA_DOCUMENT_SCRUTINY (id),
CONSTRAINT fk_egbpa_permit_doc_scrutiny_appln FOREIGN KEY (application)
REFERENCES egbpa_application (id),
CONSTRAINT fk_egbpa_permit_doc_scrutiny_crtby FOREIGN KEY (createdby)
REFERENCES eg_user (id),
CONSTRAINT fk_egbpa_permit_doc_scrutiny_mdfdby FOREIGN KEY (lastmodifiedby)
REFERENCES eg_user (id)
); |
<gh_stars>10-100
--
-- Data for Name: articles; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY articles (id, title, body) FROM stdin;
39357158 <NAME> {{Multiple issues|{{BLP sources|date=August 2013}}{{Orphan|date=June 2013}}{{notability|Sports|date=May 2013}}}}\n{{Infobox NFL player\n| name = <NAME>\n| image = \n| image_size = \n| alt = \n| caption = \n| currentteam = Atlanta Falcons\n| currentnumber = 26\n| position = [[Cornerback]]\n| birth_date = {{birth date and age|1990|4|14}}\n| birth_place = [[Kissimmee, Florida]]\n| height_ft = 5\n| height_in = 9\n| weight_lbs = 185\n| highschool = [[Osceola High School (Kissimmee, Florida)|Kissimmee (FL) Osceola]]\n| college = [[Colorado State Rams football|Colorado State]]\n| undraftedyear = 2013\n| debutyear = \n| debutteam = \n| finalyear = \n| finalteam = \n| pastteams = \n* [[Atlanta Falcons]] ({{NFL Year|2013}}–present)\n| status = Active\n| highlights =\n| nflnew = momothomas/2541528\n}}\n\n'''Gerard "Momo" <NAME>''' (born April 14, 1990) is an [[American football]] [[cornerback]] for the [[Atlanta Falcons]] of the [[National Football League]] (NFL). After playing [[college football]] for [[Colorado State Rams football|Colorado State University]], he was signed by the Falcons as an [[undrafted free agent]] in 2013.<ref>{{cite web|author=<NAME> |url=http://www.collegian.com/2013/04/29/csu-footballs-thomas-caprioglio-and-kontodiakos-get-shots-at-nfl/ |title=Three graduating CSU football players get shots at NFL | Rocky Mountain Collegian |publisher=Collegian.com |date=2013-04-29 |accessdate=2013-08-12}}</ref>\n\n==Early years==\n"Momo" was born in [[Kissimmee, Florida]], to <NAME> and <NAME>. He has 11 siblings. His brothers are Greg, Javon, Richard, Tyuan and Santae. His sisters are Sophia, Shala, Theila, Kayla and Chardae. His family friend <NAME> joined him at Osceola High. [[<NAME>]], his cousin, played football as a wide receiver for [[Western Kentucky Hilltoppers football|Western Kentucky University]] in college, and now plays in the [[National Football League]] (NFL) for the [[Kansas City Chiefs]] . [[Amar'e Stoudemire]] has been a close family friend of his.\n\n==College career==\n\n===2008 season===\nOut of the 13 games that [[Colorado State Rams|Colorado State University]] played in 2008, Thomas got playing time in all of them as a Freshman, starting 10 times, with the inclusion of the New Mexico Bowl. He was 1/5 of the CSU true Freashmen that year. He finished the year off with 54 tackles, 38 of them being solo tackles. Three of these 54 tackles had also been for a loss. He broke up three passes and had an interception, which would have been a touchdown, if it weren't for a penalty that was called against them.\n\n===2009 season===\nHis playing time had been cut short two games from the previous year, only playing in 11 games. His starts had also dropped by two, starting in 8 games. Because of this, of course, his stats had dropped from the 2008 season as well, but not drastically. He still managed to earn 43 tackles, with one being for a loss of yards. He had made 31 of these tackles solo. He snatched an interception in addition.\n\n===2010 season===\nAs a Junior, he had to undergo surgery for his right shoulder. This forced Gerard to miss the majority of the season. He had only managed to get 13 tackles, 8 solo. Although he got another interception, too.\n\n===2011 season===\nBack after shoulder surgery in 2010, he played in 11 games, starting in every one. His interception stat had increased by one, catching two of them. He recorded 31 tackles, one for a loss, 15 solo. With one of those tackles, he had forced the ballcarrier to fumble. He forced one, and recovered a fumble, too. To top it all off, he had 7 pass breakups.\n\n===2012 season===\nIt was a disappointing season in 2012, as "Momo" started in the first three games for the Rams before hurting his shoulder and ending his season. However he got drafted by the Eagles, and participated in several Rookie Camps.\n\n===2013 Season===\nMomo is now a free agent, and is working out for the Alouettes in Montreal Canada.\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Thomas, Momo}}\n[[Category:1990 births]]\n[[Category:Living people]]\n[[Category:American football cornerbacks]]\n[[Category:Colorado State Rams football players]]\n[[Category:Players of American football from Florida]]\n[[Category:People from Kissimmee, Florida]]
39364954 White Noise (Linkin Park song) {{Infobox song\n| Name = White Noise\n| Cover = White Noise Linkin Park.png\n| Caption =\n| Border = yes\n| Artist = [[Linkin Park]]\n| Album = [[Mall (soundtrack)|Mall: Music from the Motion Picture]]\n| Type = [[Promotional single]]\n| Format = [[Promotional recording#Distribution|Exclusive release]] <small>([[Music download|Digital download]])</small>\n| Released = October 17, 2014\n| Recorded = 2011-2014\n| Genre = [[Alternative metal]], [[nu metal]]\n| Length = 3:05\n| Label = {{flat list|\n*[[Warner Bros. Records|Warner Bros.]]\n*[[Machine Shop Records|Machine Shop.]]\n}}\n| Writer = {{flat list|\n*[[<NAME>]]\n*<NAME>\n*[[<NAME>]]\n*[[<NAME>]]\n}}\n| Producer = {{flat list|\n*<NAME>\n*[[<NAME>]]\n*[[<NAME>]] <small>([[Executive Producer|exec.]])</small>\n*<NAME> <small>([[Executive Producer|exec.]])</small>\n}}\n| Misc = \n}}\n\n'''White Noise''' is a song by American [[rock music|rock]] band [[Linkin Park]], which was released on October 17, 2014 through [[Warner Bros. Records]] and [[Machine Shop Records]]. The song was released in the promotion of a 2014 American [[drama]] film based on a [[novel]] written by [[<NAME>ian]] named as ''[[Mall (film)|Mall]]''.<ref>[https://twitter.com/linkinpark/status/523119271816081409 Free download of WHITE NOISE from Mall Soundtrack] ''[[Twitter]]''</ref><ref>[http://linkinpark.com/news/229003 Listen to "WHITE NOISE" from the MALL Soundtrack featuring music by <NAME>, <NAME>, <NAME>, and <NAME> of LINKIN PARK.] ''[[Linkin Park]]''</ref><ref>''Emily'' [http://www.kerrang.com/24199/free-download-new-song-white-noise-featuring-members-linkin-park/ Free download of new song, WHITE NOISE, featuring members of LINKIN PARK] ''[[Kerrang!]]'' October 21, 2014. Retrieved December 19, 2014.</ref> The song is one of the four unreleased demos by the band included in the [[Mall (soundtrack)|original motion picture soundtrack to the same name of the film]].<ref>[http://www.rocksound.tv/news/read/you-can-download-a-new-linkin-park-song-for-free-called-white-noise You can download a NEW LINKIN PARK SONG for free called ‘WHITE NOISE’] October 21, 2014. Retrieved December 19, 2014.</ref>\n\n==Background==\nThe song actually was an unreleased demo written while the recording sessions of the band's sixth studio album, ''[[The Hunting Party (album)|The Hunting Party]]''. On October 15, 2014, the band confirmed the song to be featured during the opening credits of ''Mall''. On October 17, the song was available for free download in its entire length through the official ''Mall'' website as the first promotional single for the first time.<ref>[http://www.ultimate-guitar.com/news/general_music_news/linkin_park_presented_new_song_white_noise_off_mall_soundtrack.html Linkin Park Presented New Song 'White Noise' off 'Mall' Soundtrack] October 17, 2014. Retrieved December 19, 2014.</ref> The song was finished after the release of the studio album, whereas in an interview <NAME> said that the score was already finished before the recording of the album started.<ref>{{cite web|url=http://www.youtube.com/watch?v=VmliSzh2DpI&hd=1|title=Linkin Park's Joe Hahn answers questions in #TweetOut [A few details about their movie "Mall"]}}</ref>\n\nDue to the early release of the movie in [[DVD]] in France, only half part of the song was available as an illegal download from various websites, along with the four unreleased demos, entitled "It Goes Through", "Devil's Drop", and "The Last Line" under their working titles "Luna", "Warm Spell", and "Ammosick" respectively. The song was released under the same title that it had during recording sessions. Though the song was released as a promotional single in promotion of the film, the background score of the film revolved more around other three songs comparatively. "The Last Line" was available on [[YouTube]] and in digital download format, under the name of "''Mall'': Theme Song".<ref>''[[<NAME>]]'' [https://www.youtube.com/watch?v=msI6CF3tnOk Mall: Theme Song] September 22, 2014. Retrieved December 19, 2014.</ref>\n\n==Composition==\nIn an article by ''[[Loudwire]]'' the song is described as featuring a very distinctive toy piano sound in certain parts, and acquainted by Linkin Park lead singer <NAME>'s heavy vocals and a fast-paced beat.<ref>''<NAME>'' [http://loudwire.com/linkin-park-white-noise-free-download/ Linkin Park Release ‘Mall’ Soundtrack Song ‘White Noise’ for Free Download] ''[[Loudwire]]'' October 21, 2014. Retrieved December 19, 2014.</ref> Shinoda at the premiere screening of the film described the music as, Hahn had recently handpicked ten demos throughout Linkin Park's career as their starting for the music in the film. From there the band members started to work on the music. He recalls Hahn's selections of unreleased demos that they're more like 'raw' and 'stream of consciousness' pieces of music, which will fit well in construction for ''Mall''.<ref>''<NAME>'' [http://loudwire.com/linkin-park-joe-hahn-hosts-premiere-screening-mall-los-angeles/ Linkin Park’s Joe Hahn Hosts Premiere Screening of ‘Mall’ in Los Angeles] ''[[Loudwire]]'' October 15, 2014. Retrieved December 19, 2014.</ref>\n\nIn an article by ''101 WRIF'', <NAME> comments on the song as "Linkin Park has released a new song that wasn't featured on ''The Hunting Party'', their sixth studio that was released in June 2014, as they offer a free digital download of 'White Noise' that is featured on the soundtrack to Mall, Hahn's newest film that is confined as his first directing debut, after his first short film ''[[The Seed]]''. Hahn was able to go through some of the unreleased demos from Linkin Park's previous studio albums from their throughout career for the soundtrack to Mall, and using Linkin Park's music became a natural fit for the project." Joe Hahn commented on the fitting of the song in film as: \n{{cquote|There's three songs on the score that fit really well with what's going on and actually brought those particular themes to life as it pertains to those characters, and they resonated so much that they became themes throughout the film. So if you notice there's...a little piano that reoccurs that sounds like a kid's piano each time you see him. With different characters there's melodies or sound designs that correspond each time those things happen.<ref><NAME> [http://www.wrif.com/gmi/rocknews/2014/10/22/new-linkin-park-song-white-noise-available-as-free-download New Linkin Park Song “White Noise” Available As Free Download] ''101 WRIF'' October 22, 2014. Retrieved December 19, 2014.</ref>|author=[[<NAME>]]}}\n\n==Track listing==\n{{Track listing\n| headline = Digital download\n| writing_credits = yes\n| extra_column = Producer(s)\n\n| title1 = White Noise\n| writer1 ={{flat list|\n*[[<NAME>]]\n*<NAME>\n*[[<NAME>]]\n*[[<NAME>]]\n}}\n| extra1 = {{flat list|\n*[[<NAME>]]\n*[[<NAME>]]\n*[[<NAME>]] <small>([[Executive Producer|exec.]])</small>\n*<NAME> <small>([[Executive Producer|exec.]])</small>\n}}\n| length1 = 3:05}}\n\n==Release history==\n{|class="wikitable"\n! Region\n! Date\n! Format\n! Label\n|-\n| Worldwide\n| October 17, 2014\n| [[Promotional single|Digital download]]\n| {{flat list|\n*[[Warner Bros. Records|Warner Bros.]]\n*[[Machine Shop Records|Machine Shop.]]\n}}\n|}\n\n==References==\n{{Reflist}}\n\n==External links==\n* [http://www.mallthemovie.com/ Official website of movie]\n* [http://www.facebook.com/mallmovie Mall on Facebook]\n* [http://www.twitter.com/mallmovie Mall on Twitter]\n\n{{Linkin Park songs}}\n\n\n\n[[Category:Linkin Park songs]]
39354690 Tolombeh-ye Mehdiabad, Rafsanjan {{Infobox settlement\n|official_name =Tolombeh-ye Mehdiabad\n|native_name =تلمبه مهدي اباد\n|settlement_type = village\n|coordinates_region = IR\n|subdivision_type = [[List of countries|Country]]\n|subdivision_name = {{flag|Iran}}\n|subdivision_type1 =[[Provinces of Iran|Province]]\n|subdivision_name1 =[[Kerman Province|Kerman]]\n|subdivision_type2 =[[Counties of Iran|County]]\n|subdivision_name2 = [[Rafsanjan County|Rafsanjan]]\n|subdivision_type3 =[[Bakhsh]]\n|subdivision_name3 =[[Koshkuiyeh District|Koshkuiyeh]]\n|subdivision_type4 =[[Rural Districts of Iran|Rural District]]\n|subdivision_name4 =[[Koshkuiyeh Rural District|Koshkuiyeh]]\n|leader_title = \n|leader_name = \n|established_title =\n|established_date = \n|area_total_km2 = \n|area_footnotes = \n|population_as_of = 2006\n|population_total =\n|population_density_km2 =auto\n|timezone = [[Iran Standard Time|IRST]]\n|utc_offset = +3:30\n|timezone_DST = [[Iran Daylight Time|IRDT]]\n|utc_offset_DST = +4:30\n|coordinates_display = %\n|latd=|latm=|lats=|latNS=N\n|longd=|longm=|longs=|longEW=E\n|elevation_m = \n|area_code = \n|website = \n|footnotes =\n}}\n'''Tolombeh-ye Mehdiabad''' ({{lang-fa|تلمبه مهدي اباد}}, also [[Romanize]]d as '''Tolombeh-ye Mehdīābād''') is a village in [[Koshkuiyeh Rural District]], [[Koshkuiyeh District]], [[Rafsanjan County]], [[Kerman Province]], [[Iran]]. At the 2006 census, its existence was noted, but its population was not reported.<ref>{{IranCensus2006|08}}</ref> \n\n== References ==\n{{reflist}}\n\n{{Rafsanjan County}}\n\n{{coord missing|Iran}}\n\n[[Category:Populated places in Rafsanjan County]]\n\n{{Rafsanjan-geo-stub}}
39371890 Rangiya Junction railway station {{Use dmy dates|date=March 2015}}\n{{Use Indian English|date=March 2015}}\n{{Infobox station\n| name = Rangiya Junction\n| native_name =\n| native_name_lang=\n| type = [[Indian Railways|Indian Railway]] [[Junction Station]]\n| style = Indian Railways\n| image = ৰঙিয়া জংচন.jpg\n| image_size = \n| image_caption = Rangia Junction\n| address = Rangia, Assam\n| country = India \n| coordinates = {{Coord|26.4472|N|91.6056|E|type:railwaystation_region:IN|format=dms|display=inline,title}}\n| elevation = {{convert|53|m|ft}}\n| line = [[New Bongaigaon-Guwahati section]]<br/>[[Rangia-Murkongselek section]]<br/>[[Barauni-Guwahati line]]\n| other = \n| structure = Standard on ground\n| platform = 5\n| tracks = \n| entrances = \n| parking = No\n| bicycle = No\n| baggage_check = No\n| opened = {{start date and age|1909}}\n| closed = \n| rebuilt = \n| electrified = \n| ADA = {{Access icon|20px}}\n| code = {{Indian railway code\n | code = RNY\n | zone = \n | division = [[Rangiya railway division]]\n }}\n| owned = [[Indian Railways]]\n| operator = [[Northeast Frontier Railway Zone (India)|Northeast Frontier Railway]]\n| status = Functioning\n| former = \n| passengers = \n| pass_year = \n| pass_percent = \n| pass_system = \n| map_locator = {{Location map|India Assam|lat=26.4472|long=91.6056|width=300|caption= Location in Assam|label= '''Rangia railway station'''}}\n}}\n'''Rangiya Junction railway station''' is a [[junction station]] on the [[New Bongaigaon-Guwahati section]] of [[Barauni-Guwahati line]], and Rangia-Tezpur line of [[Rangia-Murkongselek section]]. It is located in [[Kamrup district]] in the [[India]]n [[States and territories of India|state]] of [[Assam]]. It serves [[Rangia]] and the surrounding areas.\n\n==History==\nIn 1883–84 the {{RailGauge|1000mm}} wide [[metre gauge]] line of Assam Behar State Railway met the [[Eastern Bengal Railway]]’s {{RailGauge|1676mm}} wide [[Indian gauge|broad gauge]] line at [[Parbatipur railway station|Parbatipur]]. It reached [[Katihar railway station|Katihar]] in 1888-89 and in 1909 it reached Amingaon on the banks of the [[Brahmaputra River|Brahmaputra]], which could be crossed by ferry to reach Guwahati.<ref>{{cite web| url = https://books.google.com/books?id=TPB5RTODBJAC&pg=PA175&lpg=PA175&dq=Amingaon+railway+opened&source=bl&ots=6e9-7fUKvA&sig=dmGjMZQg2rY4HMAOSQeU-DqpW_Y&hl=en&sa=X&ei=xHmPUeP_O4T9rAeEioDoAw&ved=0CDIQ6AEwATgU#v=onepage&q=Amingaon%20railway%20opened&f=false |title = India’s Railway History: A Research Handbook |work= page 175, table 6-3|last= <NAME> and <NAME>|publisher= Koninklijke Brill NV, Leien, The Netherlands|ISBN = 978-90-04-23003-3 |accessdate = 12 May 2013}}</ref>\n\nThe new broad gauge track from New Bongaigaon to Guwahati was commissioned in 1984.<ref>{{cite web| url = http://www.irfca.org/faq/faq-history5.html |title =IR History: Part V (1970-19950|publisher= IRFCA|accessdate = 12 May 2013}}</ref>\n\n[[Saraighat Bridge]] opened in 1962, initially carried metre gauge tracks, which was later replaced by broad gauge tracks.<ref>{{cite web| url = http://articles.timesofindia.indiatimes.com/2012-11-07/guwahati/34971728_1_bridge-stretches-assam-governor-brahmaputra |title = 50 yers of Saraighat bridge|publisher= The Times of India, 7 November 2012|accessdate = 12 May 2013}}</ref>\n\nThe {{convert|450|km|mi|0|abbr=on}} long Rangia-Murkongselek line is being converted from {{RailGauge|1000mm}} wide [[metre gauge]] to {{RailGauge|1676mm}} wide [[Indian gauge|broad gauge]]. As of 2013, the work is expected to be completed soon.<ref>{{cite web| url = http://www.thehindubusinessline.com/industry-and-economy/logistics/arunachal-pradesh-soon-on-rail-map/article2945661.ece?css=print |title =Arunachal Pradesh soon on railway map |publisher= The Hindu Business Line, 29 February 2012|accessdate = 12 May 2013}}</ref>\n\n==Electrification==\nElectrification of the Barauni-Katihar-Guwahati line was sanctioned in 2008.<ref>{{cite web| url = http://www.projectstoday.com/News/CCEA-approves-Rs506-crore-for-Barauni-Katihar-Guwahati-section|title = CCEA approves Rs. 506 crores for Barauni-Katihar-Guwahati section |publisher= Projects Today|accessdate = 12 May 2013}}</ref> In the document on Vision 2020 – A Blue Print for Railway Electrification Programme, in the list of ongoing projects the entire route km (836) is shown as balance work as on 1 April 2010.<ref>{{cite web| url = http://www.indianrailways.gov.in/railwayboard/uploads/directorate/planning/downloads/vision_2020_blue_050411.pdf |title = Vision 2020 – A Blue Print for Railway Electrification Programme |publisher= Ministry of Railways, Government of India|accessdate = 12 May 2013}}</ref>\n\n==Track doubling==\nDoubling of the track between New Bongaigaon and Kamakhya via Rangia has been approved in the railway budget for 2013-14.<ref>{{cite web| url = http://www.firstpost.com/economy/rail-budget-2013-wait-for-electric-trains-in-indias-north-east-gets-longer-640672.html |title =Rail budget 2013: Wait for electric trains in India’s North-East gets longer |publisher=First post economy |accessdate = 12 May 2013}}</ref>\n\n==References ==\n{{Reflist}}\n\n==External links==\n* [http://indiarailinfo.com/arrivals/rangiya-junction-rny/548 Trains at Rangiya]\n{{Wikivoyage-inline|Rangia}}\n\n{{s-rail-start|noclear=yes}}\n{{s-rail|title=Indian Railway}}\n{{s-line|system=Indian Railways|previous=Ghoghrapar |next= Kendukana |line= Northeast Frontier Railway zone|branch=[[New Bongaigaon-Guwahati section]] }}\n{{s-line|system=Indian Railways|previous=|next= Goreswar|line= Northeast Frontier Railway zone|branch= Rangia-Murkongselek line}}\n{{end}}\n\n{{Railway stations in Northeast India}}\n\n[[Category:Railway junction stations in India]]\n[[Category:Railway stations in Kamrup Metropolitan district]]\n[[Category:Rangiya railway division]]
39360770 2013 BS45 {{DISPLAYTITLE:{{mp|2013 BS|45}}}}\n{{Infobox planet\n| minorplanet = yes\n| background = #FFFFC0\n| name = {{mp|2013 BS|45}}\n| image = \n| caption = \n| discoverer = [[<NAME>]]([[Spacewatch]])\n| discovered = January 20, 2013\n| mp_name = {{mp|2013 BS|45}}\n| alt_names = \n| mp_category = [[Aten asteroid|Aten]] [[Near-Earth Object|NEO]],<ref name=MPCapollolist /><ref name=jpldata /><br>[[List of Earth-crossing minor planets|Earth crosser]]\n| orbit_ref = <ref name=jpldata /><ref name=AstDys /><ref name=NEODyS />\n| epoch = 13 January 2016 ([[Julian day|JD]] 2457400.5)\n| aphelion = {{Convert|1.0758430|AU|Gm|abbr=on|lk=on}}\n| perihelion = {{Convert|0.9093608|AU|Gm|abbr=on}}\n| semimajor = {{Convert|0.9926019|AU|Gm|abbr=on}}\n| eccentricity = 0.0838615\n| period = 0.99 [[Julian year (astronomy)|yr]] (361.2 [[Julian year (astronomy)|d]])\n| inclination = 0.7726189°\n| asc_node = 83.40080°\n| arg_peri = 150.3038°\n| mean_anomaly = 257.52229[[Degree (angle)|°]]\n| dimensions = 20–40 m{{ref label|A|a|none}}<ref name="H-to-D" />\n| mass = \n| density = \n| rotation = \n| albedo = \n| single_temperature = \n| spectral_type = \n| abs_magnitude = 25.9<ref name=jpldata />\n| mean_motion = {{Deg2DMS|0.9966471|sup=ms}} /day\n| observation_arc = 375 days (1.03 yr)\n| uncertainty = 0\n| moid = {{Convert|0.0114221|AU|Gm|abbr=on}}\n| jupiter_moid = {{Convert|3.89526|AU|Gm|abbr=on}}\n}}\n\n'''{{mp|2013 BS|45}}''' (also written [[Astronomical naming conventions#Minor planets|2013 BS45]]) is a [[Horseshoe orbit|horseshoe]] companion to the [[Earth]] like [[3753 Cruithne]].<ref name=dynamics>{{Cite journal | title=A resonant family of dynamically cold small bodies in the near-Earth asteroid belt |first=Carlos |last=de la Fuente Marcos |last2=de la Fuente Marcos |first2=Raúl |date=July 2013 |journal=[[Monthly Notices of the Royal Astronomical Society: Letters]]|volume=434|issue=1|pages=L1-L5|doi=10.1093/mnrasl/slt062|url=http://adsabs.harvard.edu/doi/10.1093/mnrasl/slt062|arxiv=1305.2825|bibcode= 2013MNRAS.434L...1D}}</ref> Like Cruithne, it does not orbit the Earth and at times it is on the other side of the Sun.\n\n== Discovery, orbit and physical properties ==\n\n{{mp|2013 BS|45}} was discovered by [[<NAME>]] on January 20, 2013 observing for the [[Spacewatch]] project from [[Kitt Peak]] ([[Kitt Peak National Observatory|KPNO]]).<ref name=discovery>[http://www.minorplanetcenter.net/mpec/K13/K13B72.html Discovery MPEC]</ref><ref name=mpc /> Its orbit is characterized by low eccentricity (0.084), low inclination (0.77º) and a semi-major axis of 0.993 AU;<ref name=mpc /> it is the most Earth-like among those of asteroids moving in Earth-like orbits.<ref name=dynamics /> Upon discovery, it was classified as an [[Aten asteroid|Aten]] [[asteroid]] but also an [[List of Earth-crossing minor planets|Earth crosser]] by the [[Minor Planet Center]]. Its orbit is well determined; as of August 26, 2015 its orbit is based on 96 observations spanning a data-arc of 375 days.<ref name=jpldata /> {{mp|2013 BS|45}} has an absolute magnitude of 25.9 which gives a characteristic diameter of 30 m.<ref name="H-to-D" /> Radar observations indicate that it may be a very rapid rotator with a period of just a few minutes.\n\n== Horseshoe companion to the Earth and orbital evolution ==\n\nRecent calculations indicate that it follows a horseshoe orbit with respect to the Earth.<ref name=dynamics/> Its orbital evolution is highly [[Chaos Theory|chaotic]] and its orbit is difficult to predict beyond a few thousand years.<ref name=dynamics/> As for the available data, it had its closest encounter ever with Earth on February 12, 2013 at 0.013 [[Astronomical Unit|AU]], closer than in 1934, the previously closest approach at 0.014 AU. The next approach closer than 0.020 will take place on September 2, 2090, at 0.016 AU.<ref name=jpldata />\nIts orbit matches the expected properties of that of an object in the [[Arjuna asteroid|Arjuna]]-class.<ref name=geo>{{Cite journal |title=Geometric characterization of the Arjuna orbital domain |first=Carlos |last=de la Fuente Marcos |last2=de la Fuente Marcos |first2=Raúl |date=February 12, 2015 |journal=[[Astronomische Nachrichten]] |volume=336 |issue=1 |pages=5–22 |doi=10.1002/asna.201412133 |url=http://adsabs.harvard.edu/abs/2015AN....336....5D |arxiv=1410.4104 |bibcode=2015AN....336....5D }}</ref>\n\n== Origin ==\n\nIt may have been originated within the [[Venus]]-Earth-[[Mars]] region or in the main asteroid belt like other [[Near-Earth Object]]s, then transition to [[Amor asteroids|Amor]]-class asteroid before entering Earth's co-orbital region.<ref name=dynamics />\n\n== See also ==\n* [[3753 Cruithne]] (1986 TO)\n* {{mpl|2001 GO|2}}\n* {{mpl|2002 AA|29}}\n* {{mpl|2003 YN|107}}\n* {{mpl|2006 JY|26}}\n* {{mpl|2009 SH|2}}\n* {{mpl|2010 SO|16}}\n* {{mpl|2012 FC|71}}\n\n== Notes ==\n{{refbegin}}\n* {{note label|A|a|none}} This is assuming an albedo of 0.20–0.04.\n{{refend}}\n\n== References ==\n{{reflist|refs=\n\n<ref name=mpc>\n{{cite web\n |url=http://www.minorplanetcenter.net/db_search/show_object?object_id=2013+BS45&commit=Show\n |work=MPC\n |title=2013 BS45\n |type=last obs: 2014-01-30.0\n |access-date=26 August 2015\n}}</ref>\n\n<ref name=jpldata>\n{{Cite SBDB|title=2013 BS45|id=3625129|access-date=3 April 2016\n}}(last obs: 2014-01-30)</ref>\n\n<ref name="H-to-D">\n{{cite web\n |url=http://neo.jpl.nasa.gov/glossary/h.html\n |title= Absolute-magnitude conversion table (H)\n |work=NASA\n |date=27 August 2015\n}}</ref>\n\n<ref name=NEODyS>\n{{cite web\n |url=http://newton.dm.unipi.it/neodys2/index.php?pc=1.1.0&n=2013+BS45\n |work=NEODyS-2, Near Earth Objects – Dynamic Site\n |title=2013 BS45 – Summary\n |access-date=11 May 2013\n}}</ref>\n\n<ref name=AstDys>\n{{cite web\n |url=http://hamilton.dm.unipi.it/astdys/index.php?pc=1.1.0&n=2013+BS45\n |work=AstDys-2, Asteroids – Dynamic Site\n |title=2013 BS45 – Summary\n |access-date=11 May 2013\n}}</ref>\n\n<ref name=MPCapollolist>\n{{cite web\n |url=http://www.minorplanetcenter.org/iau/lists/Atens.html \n |title=List Of Aten Minor Planets \n |work=[[Minor Planet Center]] \n |access-date=27 August 2015 \n}}{{dead link|date=September 2016 |bot=InternetArchiveBot |fix-attempted=yes }}</ref>\n\n}} <!-- end of refs -->\n\n;Further reading\n* [http://mnrasl.oxfordjournals.org/content/434/1/L1.abstract A resonant family of dynamically cold small bodies in the near-Earth asteroid belt] de la Fuente Marcos, Carlos; de la Fuente Marcos, Raúl (2013), ''Monthly Notices of the Royal Astronomical Society: Letters'', Vol. 434, Issue 1, pp. L1-L5.\n* [http://arxiv.org/abs/1410.4104 Geometric characterization of the Arjuna orbital domain] de la Fuente Marcos, Carlos; de la Fuente Marcos, Raúl (2015), ''Astronomische Nachrichten'', Vol. 336, Issue 1, pp. 5–22.\n\n== External links ==\n* [http://www.minorplanetcenter.net/db_search/show_object?object_id=2013+BS45 {{mp|2013 BS|45}}] data at MPC\n* [http://www.minorplanetcenter.net/mpec/K13/K13B72.html MPEC 2013-B72 : 2013 BS45] (Discovery MPEC)\n* [http://echo.jpl.nasa.gov/asteroids/2013BS45/2013BS45_planning.html {{mp|2013 BS|45}} Goldstone Radar Observations Planning]\n* [http://www.gps.caltech.edu/uploads/File/People/awaszcza/03.png {{mp|2013 BS|45}} imaged by the Palomar Transient Factory survey]\n* [http://www.aiaahouston.org/wp-content/uploads/2012/07/Horizons_2013_03_and_04_page_20_to_26_Adamo_2_of_3.pdf The “Horseshoe” Orbit of Near-Earth Object {{mp|2013 BS|45}}] by <NAME>\n* {{JPL small body}}\n\n{{Small Solar System bodies}}\n{{Earth}}\n\n{{DEFAULTSORT:2013 BS45}}\n[[Category:Aten asteroids]]\n[[Category:Earth-crosser asteroids]]\n[[Category:Earth co-orbital asteroids]]\n[[Category:Astronomical objects discovered in 2013|20130120]]\n[[Category:Unnumbered minor planets]]
39368328 Mad Conductor {{orphan|date=August 2013}}\n\n'''Mad Conductor''' is an [[experimental hip hop]] band fronted by MC Devlin (<NAME>) and with production by MC Kinney (<NAME>).<ref>{{cite web\n | title = Music: The Mad Conductor - "MC Rises" and "The Devlin Manner Of Speech"\n | url = http://iheardin.com/2012/07/05/music-the-mad-conductor-mc-rises-and-the-devlin-manner-of-speech/\n | date = 5 July 2012 \n | publisher = Iheardin}}</ref> Their sound mixes abstract rap verses with [[reggae]] to create a sound that is "dark and laid-back, but there is a certain nervous energy".<ref>{{cite web\n | title = Renegade Space Rock Album Review\n | url = http://www.punknews.org/review/6567/the-mad-conductor-renegade-space-rock\n | date = 10 August 2007 \n | publisher = [[Punknews]]}}</ref>\n\nThe band formed in 2005 after Devlin's former band, hardcore outfit [[No Cash]], broke up.<ref>{{cite web\n | title = New Music Roundup: Minotaur Explode, SuperSmashers, The Mad Conductor (ex-No Cash)\n | url = http://www.punknews.org/article/23977/newmusicroundup-minotaur-explode-supersmashers-the-mad-conductor-ex-no-cash \n | date = 3 June 2007\n| publisher = [[Punknews]]}}</ref><ref name=sputnik>{{cite web\n | title = The Mad Conductor\n | url = http://www.sputnikmusic.com/bands/The-Mad-Conductor/8077/ \n | publisher = [[Sputnikmusic]]}}</ref> The name was selected because, Devlin says, "I wanted [[MC]] to stand for something".<ref>http://tweakingtrays.blogspot.com/2010/09/interview-with-mad-conductor.html</ref> Originally from [[Center Valley, Pennsylvania]], the band relocated to [[New Orleans]] in 2008.<ref name=sputnik />\n\nIn 2012 the band successfully raised funds on [[Kickstarter]] to record a full-length album titled [[MC Rises]].<ref>http://www.kickstarter.com/projects/748512700/mc-rises-lp</ref>\n\n==Discography==\n\n* Mechanical Claw (2006)\n* Renegade Space Rock (2007)\n* Members Only (2008)\n* Central America (2010)\n* MC Rises (2013)\n* Space Rock Steady EP (2015)\n\n==References==\n{{reflist}}\n\n[[Category:American hip hop groups]]\n[[category:Musical groups established in 2005]]\n\n\n{{band-stub}}
39358773 The Anvil (magazine) '''''The Anvil '''''was an American literary and political activist magazine edited by [[<NAME>]] in the 1930s. The magazine had a leftist stance<ref>{{cite news|title=<NAME>|url=http://www.britannica.com/biography/Jack-Conroy/images-videos|accessdate=19 February 2016|work=Encyclopedia Britannica}}</ref> and was subtitled "Stories for Workers." According to <NAME>, its story "would make an important chapter in the history of American literature if the 1930s were properly recognized in standard textbooks." <ref>"Introduction, '''The Weed King & Other Stories''', pp. xi-xxxi; quoted material on p. xiii</ref>\n\n==History and profile==\n''The Anvil'' was first published out of [[Moberly, Missouri]] in May 1933 (''ib''.).<ref>{{cite news|title=Anvil Description|url=http://sites.davidson.edu/littlemagazines/anvil-description/|accessdate=19 February 2016|work=Index of Modernist Magazines}}</ref> Among the authors whose works appeared in the magazine were <NAME>, <NAME>, <NAME>, <NAME> and <NAME>. In 1935, ''The Anvil'' was folded into the ''[[Partisan Review]]'' (''ib''.,p. xIv).\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Anvil, The}}\n[[Category:American political magazines]]\n[[Category:Defunct American literary magazines]]\n[[Category:Defunct political magazines]]\n[[Category:Magazines established in 1933]]\n[[Category:Magazines established in 1935]]\n[[Category:Magazines published in Missouri]]\n[[Category:Socialist magazines]]\n\n{{poli-mag-stub}}\n{{US-lit-mag-stub}}\n{{italic title}}
393555 <NAME> {{Use mdy dates|date=October 2011}}\n{{Infobox President|name= <NAME>\n|order =6th [[President of the Federated States of Micronesia]]\n|image = Joseph Urusemal.jpg \n|term_start =May 11, 2003\n|term_end =May 11, 2007\n|predecessor=[[<NAME>]]\n|successor =[[<NAME>]]\n|birth_date ={{Birth date and age|1952|03|19}}\n|birth_place =[[Woleai]], [[Yap]], [[Trust Territory of the Pacific Islands]]\n|spouse =Olania Latileilam\n|party=\n}}\n\n'''<NAME> "Joe" Urusemal''' (born March 19, 1952) is a [[Federated States of Micronesia|Micronesian]] [[political figure]] who served as the sixth [[President of the Federated States of Micronesia]] from 2003 until 2007.\n\nUrusemal is married to former [[First Lady]] <NAME>, who is from [[Satawal]]. The couple have four children: B.J., Tarsis, Craig and Elenita.\n\n==Early life==\n\nUrusemal was born on the island of [[Woleai]] in the [[Yap|State of Yap]]. He attended secondary school on the island of [[Chuuk State|Chuuk]] (then called Truk) at [[Xavier High School (Micronesia)|Xavier High School]], a [[Jesuit]] institution. He would graduate from Xavier in 1976.\n\nUrusemal went on to attend and graduate from [[Rockhurst University]] (then called Rockhurst College) in [[Kansas City, Missouri|Kansas City]], Missouri, United States. He holds a Bachelor of Arts degree in [[Administration of Justice]] from Rockhurst, a Roman Catholic [[Association of Jesuit Colleges and Universities|Jesuit university]]. Upon graduation, Urusemal accepted a position with the [[Jackson County, Missouri]], government, including the county Department of Corrections until he returned to Micronesia in 1982.\n\nFollowing his return to Micronesia, Urusemal became a teacher and guidance counselor for the [[Outer Islands High School]] on his native Yap.\n\n==Political career==\nUrusemal was elected to four-year term in the Fifth [[Congress of the Federated States of Micronesia]] in 1987. He was elected as Yap's at-large representative. Urusemal rose to leadership positions during his parliamentary career. He served as [[Floor Leader]] for twelve years during the Seventh until the Twelfth FSM congresses.\n\nDuring his political career representing Yap, Urusemal served on several congressional committees including Health, Education and Social Affairs and the Judiciary and Governmental Operations committees.\n\nThe president and vice president of the Federated States of Micronesia are elected directly by Congress and must be a duly elected member at the time of election. Due to the defeat of the then-incumbent president, <NAME>, in the previous elections, Falcam was unable to stand for re-election. On May 11, 2003, Congress elected Urusemal as President and he took office immediately.\n\nOn May 11, 2007, the 15th Congress convened. A new [[Micronesian presidential election, 2007|presidential election]] was held and [[Manny Mori]] was elected president. He likewise took office immediately.\n<!-- Deleted image removed: [[Image:Joseph J Ursemal.jpg|right|thumb|Urusemal]] -->\n\n==External links==\n*[http://www.fsmgov.org/bio/urusemal.html Official Biography of Joseph J. Urusemal]\n*[http://www.pacificmagazine.net/issue/2003/07/01/yap-gets-fsm-presidency Pacific Magazine: Yap Gets FSM Presidency:Urusemal Was A Surprise To Some]\n*[http://www.pacificmagazine.net/news/2003/04/11/fsm-yap-leader-is-new-fsm-president Pacific Magazine: FSM: Yap leader is new FSM president]\n*[http://www.pacificmagazine.net/news/2007/05/11/chuuks-manny-mori-new-fsm-president Chuuk's Manny Mori New FSM President]\n\n{{s-start}}\n{{s-off}}\n{{succession box|title=[[President of the Federated States of Micronesia]]|before=[[<NAME>]]|after=[[<NAME>]]|years=May 11, 2003 – May 11, 2007}}\n{{s-end}}\n\n{{MicronesiaPresidents}}\n\n{{Authority control}}\n\n{{DEFAULTSORT:Urusemal, Joseph}}\n[[Category:1952 births]]\n[[Category:Living people]]\n[[Category:People from Yap State]]\n[[Category:Presidents of the Federated States of Micronesia]]\n[[Category:Members of the Congress of the Federated States of Micronesia]]\n[[Category:Rockhurst University alumni]]\n[[Category:Federated States of Micronesia Roman Catholics]]\n[[Category:Federated States of Micronesia expatriates in the United States]]
39367915 Rasputin (2015 film) {{Use dmy dates|date=November 2015}}\n{{Use Indian English|date=November 2015}}\n{{multiple issues|\n{{refimprove|date=May 2015}}\n{{notability|Films|date=May 2015}}\n}}\n{{Infobox film\n| name = Rasputin\n| image = Rasputin (Film 2014).jpg\n| caption = \n| director = <NAME> \n| producer = <NAME>\n| writer = <NAME>\n| starring = [[Vinay Forrt]]<br/>[[Sreenath Bhasi]]<br/>[[Aju Varghese]]<br/>[[Joy Mathew]]<br/>[[Vandana Menon]]<br/>[[Archana Gupta]]\n| music = Rob<NAME>braham \n| cinematography = Hari Nair\n| editing = Sriram raja \n| studio = Blue Moon Pictures\n| distributor = \n| released = {{Film date|df=yes|2015|08|07}}\n| runtime = \n| country = India\n| language = Malayalam\n| budget = 2.60 crores\n| gross = \n}}\n'''''Rasputin''''' is a coming of age romantic comedy, Malayalam film directed by <NAME>, released on 7 August 2015 . The film stars [[Vinay Forrt]] as the central character,<ref>{{cite web|url=http://articles.timesofindia.indiatimes.com/2012-12-30/news-and-interviews/36051332_1_vinay-forrt-rasputin-film |title=Vinay Forrt in 'Rasputin' |publisher=The Times Of India |date=2012-12-30 |accessdate=2013-05-22}}</ref> with [[Sreenath Bhasi]], [[Aju Varghese]], director [[<NAME>]], [[<NAME>]] and [[Archana Gupta]].<ref>{{cite web|url=http://articles.timesofindia.indiatimes.com/2013-03-28/news-and-interviews/38099004_1_vandana-vinay-forrt-rasputin |title=Vandana's next is Rasputin |publisher=The Times Of India |date=2013-03-28 |accessdate=2013-05-22}}</ref> ''Rasputin'' is being produced by E.P. Varghese under the banner of Blue Moon Pictures, Executive Producer <NAME>. Cinematography is handled by Hari Nair from Mumbai.<ref>{{cite web|author=<NAME> |url=http://www.thehindu.com/features/cinema/story-of-transformation/article4580584.ece |title=Story of transformation |publisher=The Hindu |date=2013-04-04 |accessdate=2013-05-22}}</ref>\n\n==Cast==\n* [[Vinay Forrt]] as Susheelan/Susheel\n* [[Sreenath Bhasi]] as Radhenathan/Radhs\n* [[Aju Varghese]] as Gopalan/Gops\n* [[Joy Mathew]] as Vayalil Satheesan\n* [[Nandhu]]\n* [[Sunil Sukhada]]\n* [[Vandana Menon]] as Dr. Smitha\n* [[Archana Gupta]] as Ambili\n* [[Srinda Ashab]]\n* [[Shritha Sivadas]]\n* Prasanth Prado\n\n==Soundtrack==\n<NAME> is the music director for the movie. Background score was by [[Vimal T.K.]]. The lyrics for the songs have been penned by <NAME>, <NAME> and <NAME>.\n\n==References==\n{{Reflist}}\n\n[[Category:2015 films]]\n[[Category:Indian films]]\n[[Category:Directorial debut films]]\n[[Category:2010s Malayalam-language films]]\n\n\n{{2010s-Malayalam-film-stub}}
39355892 Bridget (horse) {{Infobox thoroughbred racehorse\n| horsename = Bridget\n| image = \n| caption = \n| sire = [[Herod (horse)|Herod]]\n| grandsire = [[Tartar (horse, foaled 1743)|Tartar]]\n| dam = Jemima\n| damsire = [[Snap (horse)|Snap]]\n| sex = [[Mare]]\n| foaled = 1776\n| country = [[Kingdom of Great Britain]]\n| colour = [[Bay (horse)|Bay]]\n| breeder = [[<NAME>, 12th Earl of Derby|12th Earl of Derby]]\n| owner = [[<NAME>, 12th Earl of Derby|12th Earl of Derby]]\n| record = \n| race = [[Epsom Oaks|Oaks Stakes]] (1779)<br>Sweepstakes of 50[[Guinea (British coin)|gs]] at [[Newmarket Racecourse|Newmarket]] (1779)<br>Sweepstakes of 100gs at Newmarket (1779)<br>Post Stakes (1780)<br>Grosvenor's Stakes (1780)<br>[[Match race|Match]] against Postboy (1780)<br>Match against Girandola (1781)\n| awards = \n| honours = \n| updated = \n}}\n[[Image:12thEarlOfDerby.jpg|thumb|200px|Bridget's owner the [[<NAME>-Stanley, 12th Earl of Derby|12th Earl of Derby]]]]\n'''Bridget''' (1776–1798) was a British [[Thoroughbred]] racehorse who won the inaugural running of the [[Epsom Oaks|Oaks Stakes]] in 1779. She was bred and owned by [[<NAME>, 12th Earl of Derby]], for whom she produced five foals as a broodmare.\n\n==Background==\nBridget was a [[Bay (horse)|bay]] [[filly]] bred by [[<NAME>-Stanley, 12th Earl of Derby]], and foaled in 1776.<ref name="stud"/> She was sired by [[Herod (horse)|Herod]], who was a successful racehorse and important sire. He was [[Leading sire in Great Britain and Ireland|champion sire]] eight times and his progeny included the undefeated [[Highflyer (horse)|Highflyer]], [[Epsom Oaks|Oaks]] winners [[Faith (horse)|Faith]] and [[Maid of the Oaks]], [[St. Leger Stakes|St. Leger]] winner [[Phoenomenon]] and the triple [[Craven Stakes]] winner [[Woodpecker (horse)|Woodpecker]].<ref>{{cite web|url=http://www.bloodlines.net/TB/Bios/Herod.htm |title=King Herod |publisher=Bloodlines.net |date= |accessdate=2013-05-10}}</ref> Bridget was the first foal of Jemima, a daughter of [[Snap (horse)|Snap]].<ref name="stud"/>\n\n==Racing career==\nBridget made her first racecourse appearance on 14 May 1779 in the first running of the [[Epsom Oaks|Oaks Stakes]] at [[Epsom Downs Racecourse|Epsom Downs]]. After starting as the [[Fixed-odds betting|5/2]] favourite, she won the race, beating Fame, Lavinia and nine others. At [[Newmarket Racecourse|Newmarket]] in July she won a Sweepstakes of 50 [[Guinea (British coin)|guineas]] each over the Rowley Mile, beating Fame, Torrent and one other. At Newmarket's First October meeting she started as the 1/2 favourite for a Sweepstakes of 100 guineas each over the two-mile Ditch In course. She won the race, beating four rivals, including Torrent and Transfer. At the Newmarket Craven meeting in 1780 Bridget beat Thunder to win the Post Stakes. In July she beat Whipcord to win half of the Grosvenor's Stakes, after the other half had been given to Imperator to withdraw from the race. Her only other race of 1780 was in October, when she beat Postboy in a match over the two middle miles of the Beacon Course at Newmarket. Bridget started once in 1781, winning a match against General Smith's Girandola.<ref name="turf">{{cite book |url=http://books.google.co.uk/books?id=IcGbuQHx8x0C |last1=Johnson |first2=1. |title=The Turf Register (Volume III) |publisher=<NAME>, High-Ousegate |year=1822}}</ref>\n\n==Stud career==\nBridget became a broodmare at the Earl of Derby's stud and produced five foals. They were:\n\n* '''<NAME>''' – a [[Chestnut (coat)|chestnut]] [[Colt (horse)|colt]] foaled in 1787.<ref name="stud"/>\n* '''Hotspur''' – a chestnut colt sired by Volunteer and foaled in 1789.<ref name="stud"/> In 1792 he finished third in the Great Produce Stakes at Newmarket.<ref>{{cite web|url=http://babel.hathitrust.org/cgi/pt?id=nyp.33433066590971 |title=Racing calendar. 1792 |publisher=Babel.hathitrust.org |date= |accessdate=2013-05-10}}</ref>\n* '''<NAME>''' – a bay filly sired by [[<NAME>]] and foaled in 1792.<ref name="stud"/> She ran unplaced in the Oaks as a three-year-old.<ref>{{cite web|url=http://babel.hathitrust.org/cgi/pt?id=nyp.33433066590955 |title=Racing calendar. 1795 |publisher=Babel.hathitrust.org |date= |accessdate=2013-05-10}}</ref> In March 1796 she won a three-mile Annual Plate at Farndon, before [[Walkover|walking over]] for another the following day.<ref>{{cite web|url=http://babel.hathitrust.org/cgi/pt?id=nyp.33433066590948 |title=Racing calendar. 1796 |publisher=Babel.hathitrust.org |date= |accessdate=2013-05-10}}</ref>\n* '''Millamant''' – a chestnut filly sired by Volunteer and foaled in 1793.<ref name="stud"/>\n* '''<NAME>''' – a bay colt sired by [[<NAME>]] and foaled in 1795.<ref name="stud"/>\n\nBridget died in 1798.<ref name="turf"/>\n\n==Pedigree==\n{{Pedigree\n|name = Bridget, <NAME>, 1776<ref name="stud">{{cite book|url=http://books.google.co.uk/books?id=qCMCAAAAYAAJ |title=The General Stud Book |author= |publisher=<NAME>, Baltimore |year=1834 |accessdate=2012-12-28}}</ref> \n|f = [[Herod (horse)|Herod]] (GB)<br>b. 1758\n|m = Jemima (GB)<br>b. 1769\n|ff = [[Tartar (horse, foaled 1743)|Tartar]] (GB)<br>1743\n|fm = Cypron (GB)<br>b. 1750\n|mf = [[Snap (horse)|Snap]] (GB)<br>br. 1750\n|mm = Matchem Middleton (GB)\n|fff = [[Partner (horse)|Partner]]<br>1718\n|ffm = Melinora<br>1729\n|fmf = [[Blaze (horse)|Blaze]]<br>b. 1733\n|fmm = Selima<br>1733\n|mff = [[Snip (horse)|Snip]]<br>br. 1736\n|mfm = ''Fox mare''\n|mmf = [[Matchem]]<br>b. 1748\n|mmm = Miss Middleton\n|ffff = Jigg\n|fffm = Sister to Mixbury\n|ffmf = [[Fox (horse)|Fox]]*\n|ffmm = Milkmaid\n|fmff = [[Flying Childers]]*\n|fmfm = Confederate Filly\n|fmmf = Bethell's Arabian\n|fmmm = ''Graham's Champion mare''\n|mfff = [[Flying Childers]]*\n|mffm = ''Basto mare''\n|mfmf = [[Fox (horse)|Fox]]*\n|mfmm = Gipsey\n|mmff = [[Cade (horse)|Cade]]\n|mmfm = ''Partner mare''\n|mmmf = [[Regulus (horse)|Regulus]]\n|mmmm = Camilla\n}}\n<span style="font-size:85%">''Note: b. = [[Bay (horse)|Bay]], br. = [[Equine coat color#Basic coat|Brown]]''</span>\n\n<nowiki>*</nowiki> Bridget was [[inbreeding|inbred]] 4x4 to both Fox and Flying Childers. This means that the stallions appear twice in the fourth generation of her pedigree.\n\n==References==\n{{reflist}}\n\n{{Epsom Oaks Winners}}\n\n[[Category:1776 racehorse births]]\n[[Category:1798 racehorse deaths]]\n[[Category:British Classic Race winners]]\n[[Category:Individual mares]]\n[[Category:Racehorses bred in the Kingdom of Great Britain]]\n[[Category:Racehorses trained in the Kingdom of Great Britain]]\n[[Category:Thoroughbred racehorses]]\n[[Category:Thoroughbred family 3]]\n[[Category:Byerley Turk sire line]]
29030024 <NAME> (Royal Navy officer) {{Infobox military person\n|name=Sir <NAME>\n|image=\n|caption=\n|birth_date=1 November 1801\n|death_date={{death-date and age|8 August 1876|1 November 1801}}\n|birth_place=\n|death_place=\n|nickname=\n|allegiance={{flagicon|United Kingdom}} United Kingdom\n|branch= [[Image:Naval Ensign of the United Kingdom.svg|23px]] [[Royal Navy]]\n|serviceyears=\n|rank=[[Admiral (Royal Navy)|Admiral]]\n|unit=\n|commands=[[HMS Warspite (1807)|HMS ''Warspite'']]<br>[[HMS Vestal (1833)|HMS ''Vestal'']]<br>[[HMS Maeander (1840)|HMS ''Maeander]]<br>[[HMS Algiers (1854)|HMS ''Algiers'']]<br>[[Coast of Ireland Station|Queenstown]]<br>[[Commander-in-Chief, The Nore|Nore Command]]\n|battles=\n|awards=[[Knight Commander of the Order of the Bath]]\n|relations=\n|laterwork=\n}}\n[[Admiral (Royal Navy)|Admiral]] '''Sir <NAME> ''' [[Order of the Bath|KCB]] (1 November 1801 – 8 August 1876) was a [[Royal Navy]] officer who went on to be [[Commander-in-Chief, The Nore]].\n\n==Naval career==\nTalbot was the second son of the Rev. [[<NAME> (priest)|<NAME>]].<ref>{{cite book|author=<NAME>|title=The Peerage of the British Empire as at Present Existing: Arranged and Printed from the Personal Communications of the Nobility|url=https://books.google.com/books?id=LaIKAAAAYAAJ&pg=PA514|year=1843|publisher=Saunders and Otley|page=514}}</ref> He joined the [[Royal Navy]] as a cadet in 1815.<ref name=loney>[http://www.pdavis.nl/ShowBiog.php?id=685 <NAME> RN]</ref> Promoted to [[Captain (naval)|Captain]] in 1830, he commanded [[HMS Warspite (1807)|HMS ''Warspite'']], [[HMS Vestal (1833)|HMS ''Vestal'']], [[HMS Maeander (1840)|HMS ''Maeander]] and then [[HMS Algiers (1854)|HMS ''Algiers'']].<ref name=loney/> He was appointed Commander-in-chief, [[Coast of Ireland Station|Queenstown]] in 1858 and [[Commander-in-Chief, The Nore]] in 1864.<ref name=loney/>\n\nThere is a memorial window to him and his wife in the church of St. John the Baptist in [[Biggleswade]].<ref>{{Genuki|county=BDF|Biggleswade}}</ref>\n\n==Family==\nIn 1838 he married Hon. <NAME>; they had three sons and four daughters.<ref name=peerage>{{cite web |url=http://thepeerage.com/p1536.htm#i15356 |title=Rear-Admiral Sir Charles Talbot |work=The Peerage |date=31 January 2005 }}</ref>\n\n==See also==\n* {{cite wikisource | class = dictionary | first = <NAME> | last = O'Byrne | chapter = Talbot, Charles | wslink = A Naval Biographical Dictionary | title = A Naval Biographical Dictionary | year = 1849 | publisher = [[<NAME> (publisher)|<NAME>urray]] }}\n\n==References==\n{{reflist}}\n\n{{s-start}}\n{{s-mil}}\n{{s-bef|before=[[Henry Ducie Chads|Henry Chads]]}}\n{{s-ttl|title=[[Coast of Ireland Station|Commander-in-Chief, Queenstown]]|years=1858–1862}}\n{{s-aft|after=[[Lewis Jones (Royal Navy officer)|Sir Lewis Jones]]}}\n|-\n{{succession box | title=[[Commander-in-Chief, The Nore]] | years=1864–1866 | before=[[George Lambert (Royal Navy officer)|Sir George Lambert]]| after=[[Baldwin Wake Walker|Sir Baldwin Walker]]}}\n{{end}}\n\n{{DEFAULTSORT:Talbot, Charles}}\n[[Category:1801 births]]\n[[Category:1876 deaths]]\n[[Category:Royal Navy admirals]]\n[[Category:Knights Commander of the Order of the Bath]]
39360956 <NAME> {{Infobox person\n| name = <NAME>\n| image =\n| caption = \n| birth_date = {{Birth date and age|df=yes|1980|10|24}}\n| birth_place = [[Colombo]], [[Sri Lanka]]\n| years_active = 2005 - Present\n| partner = \n| occupation = Actress\n}}\n\n'''<NAME>''' (born 24 October 1980) is a [[Sri Lanka]]n actress who primarily appears in films and television series,\n\n== Life and career==\nShe studied at St. Paul's Girls School in the [[Milagiriya]] district of [[Colombo]] and began her career as a news presenter for [[Derana TV]]. Her first appearance as an actress was in the television drama ''Katu Imbula'', directed by <NAME>. She went to appear in many Sri Lankan television series, including ''Sundarai Premaya'' and ''<NAME>''.<ref><NAME> (7 March 2010) a. [http://www.nation.lk/2010/03/07/enter.htm "News presenter turned actress"]. ''[[The Nation (Sri Lanka)|The Nation]]''. Retrieved 13 May 2013.</ref> In 2010, she won the Most Popular Tele Drama Actress award at the Sumathi award ceremony.<ref>Sumathi Awards [http://www.sumathiawards.lk/achive/2010.html 2010 winners]. Retrieved 13 May 2013.</ref>\n\n==References==\n\n{{Reflist}}\n\n== External links ==\n*[http://www.nfc.gov.lk/artist/umayangana-wickramasinghe-235/ Umayangana Wickramasinghe] at the Sri Lanka National Film Corporation\n*[http://www.films.lk/ArtistDetails.php?id=3554 Umayangana Wickramasinghe] at the Sinhala Cinema Database\n\n\n{{DEFAULTSORT:Wickramasinghe, Umayangana}}\n[[Category:Sri Lankan film actresses]]\n[[Category:1980 births]]\n[[Category:Living people]]
29030099 Meade LX200 [[File:YorkUniversityObservatory5.jpg|right|thumb|A 16" (406.4 mm) aperture Meade LX200 in the [[York University Observatory]]]]\n[[File:Robodome.jpg|thumb|righ|[[Project Galileo]] Meade LX200 10 inch SCT (25.4 cm aperture)]]\n[[File:Barnard33.jpg|thumb|right|[[Horsehead Nebula]] (Barnard 33) from a 16" LX200 (40.64 cm)]]\n[[File:Jupiter-moons.jpg|thumb|250px|right|Jupiter and the [[Galilean moons]] through a 10" Meade LX200 telescope (25.4 cm)]]\nThe '''Meade LX200''' is a family of commercial telescopes produced by [[Meade Instruments]] launched in 1992 with 8" (20.32 cm) and a 10" (25.4 cm) [[Schmidt–Cassegrain telescope|Schmidt–Cassegrain]] models on computerized [[Altazimuth mount|altazimuth mounts]].<ref><NAME> - '''The Past, Present and Future of the Schmidt Cassegrain Telescope''' (ALCON 2003/Nashville), [http://www.celestron-nexstar.de/download/history_of_sc.ppt Power Point (.ppt)]</ref><ref name=martin34>[https://books.google.com/books?id=woJKq6o1zAMC&pg=PT45&dq=lX200+1992&hl=en&ei=OYOnTMjGB8P6lwfazeynDA&sa=X&oi=book_result&ct=result&resnum=4&ved=0CEEQ6AEwAw#v=onepage&q=lX200%201992&f=false <NAME> - '''The new amateur astronomer''' - Page 34, Google Books 2010]</ref> Two larger models, a 12" (30.48 cm) and a 16" (40.64 cm), quickly followed. It became the best-selling serious amateur telescope.<ref name=martin34/> The original version was later informally named the "classic" LX200 as newer upgraded versions replaced it.<ref name=harris17>[https://books.google.com/books?id=HggxlRV5lQEC&pg=PA17&dq=lX200+1992&hl=en&ei=OYOnTMjGB8P6lwfazeynDA&sa=X&oi=book_result&ct=result&resnum=2&ved=0CDcQ6AEwAQ#v=onepage&q=lX200%201992&f=false <NAME> - '''So You Want a Meade LX Telescope!''' (2010) - Page 17, Google Books 2010]</ref> The first of these was the LX200GPS, which featured [[global positioning system]] electronics.<ref name=harris17/> A {{convert|14|in|mm|order=flip|sigfig=2|abbr=on}} LX200GPS was later added to the line.\n\nThe advantage of the LX200 was price for its performance, which was accomplished by using electronics and software to equal the pointing performance of more expensive systems.<ref name=martin34/> Software and optical encoders corrected for errors, and the telescope also came with auto-guiding [[Charge-coupled device|CCD]] and [[planetarium]] software.<ref name=martin34/> \n\nA related series starting about 2008 was the even higher end RCX400 (later renamed LX400-ACF), with new optics and a motorized focus/collimation system, and with upgraded fork mount electronics. These were available in the same 8" (20.32 cm) to 16" (40.64) size range on the new fork mount, and the 16" (40.64 cm) optical tube assembly (OTA), along with a new 20" (50.8 cm) OTA, were available on a new [[German equatorial mount]]. These were all f/8 optical systems, costing up to $50,000 for the 20" on the German equatorial mount.<ref>[http://www.durangoskies.com/lx400acf-wuhtc-mount-wtripod-p-2084.html Durango Skies - LX400-ACF 20" (f/8) w/UHTC on MAX Mount w/Tripod ]</ref>\n\nAn f/10 version of the new optics later replaced the optics of the existing LX200GPS fork mount models, with the new product line now called the LX200R (later renamed LX200-ACF).<ref name=harris17/> The revised optics are called [[advanced coma free]] (ACF) after a lawsuit by Star Instruments and RC Optical Systems disallowed implying that they were based on [[Ritchey–Chrétien telescope|Ritchey–Chrétien]] optics.\nhttp://www.narrowbandimaging.com/images/RC_vs_Meade.pdf\n\n\nIn September 2012, an amateur astronomer used an LX200GPS to record an impact on the planet Jupiter.<Ref>[http://www.astrobio.net/pressrelease/5016/a-fresh-impact-on-jupiter A Fresh Impact on Jupiter]</reF>\n\n==Installations==\nSelected observatories with LX200 telescopes.\n\n*[[Mount Wilson Observatory]] (prototype version)\n*[[Ball State University Observatory]]\n*Barus & Holley Observatory\n*[[Bayfordbury Observatory]]\n*[[Bradstreet Observatory]]\n* [[UWS_Rotary_Observatory|Campbelltown Rotary Observatory]]\n*[[Clavius Observatory, Universidad IberoAmericana, Mexico City, Mexico, www.clavius.astro.org.mx]]\n*[http://nsaac.org/about-the-club/salem-state-university-collins-observatory/ Collins Observatory] at [[Salem State University]]\n*[[Dodge City Community College]]\n*[[David Cole Observatory]]\n*[[Frosty Drew Observatory]]\n*[[Givatayim Observatory]]\n*[[Junk Bond Observatory]]\n*[[Letchworth#Astronomy|Letchworth & District Astronomical Society]]\n*[[Mead Observatory]]\n*[http://www.ece.mtu.edu/amjoch/ AMJOCH Observatory] at [[Michigan Technological University]]\n*[[Mount Albert Grammar School]] Observatory\n*[[Northumberland Astronomical Society]]\n*[[Nyrölä Observatory]]\n*[[Observatoire des Sciences de l'Univers de Grenoble]]\n*[[Observatorio Astronómico de Mallorca]]\n*Observatório Astronômico da UESC\n*[http://www.perthobservatory.wa.gov.au/ Perth Observatory]\n*[[Project Galileo]]\n*[[Red Barn Observatory]]\n*[[Science Education Observatory, Seoul National University, Seoul, South Korea]]\n*[[Shattuck Observatory]]\n*[[La Société Vaudoise des Sciences Naturelles - Lausanne, Switzerland]]\n*[[Starkenburg Observatory]]\n*[[Telus World of Science (Edmonton)]]\n*[[TUBITAK National Observatory]]\n*[[Van Vleck Observatory]]\n*[[West Yorkshire Astronomical Society]]\n*[[Widener University Observatory]]\n*[[Yale Student Observatory]]\n*[[York University Observatory]]\n*Astronomical centre Rijeka\n*[[Saint Joseph Catholic School Student Observatory, Madison, Mississippi, USA]]\n* Harold E. Taylor Observatory at the [http://www.stockton.edu/ Richard Stockton State College of New Jersey]\n*[[:fr:Observatoire du Mont Cosmos|Observatoire du mont cosmos]]\n\n==References==\n{{reflist}}\n\n==Further reading==\n*[https://books.google.com/books?id=HggxlRV5lQEC&printsec=frontcover&dq=Meade+LX200&hl=en&ei=VY6nTMeVFIW0lQemxrGSDg&sa=X&oi=book_result&ct=result&resnum=1&ved=0CDcQ6AEwAA#v=onepage&q&f=false '''So You Want a Meade LX Telescope!''' by <NAME> (Google Books)]\n\n==External links==\n*[http://www.meade.com/product_pages/lx200_series/lx200.php Meade LX200-ACF Product page]\n\n[[Category:Meade Instruments]]\n[[Category:Telescopes]]
39357859 Paxilla (ossicle) A '''paxilla''' (plural. '''paxillae''') is a small umbrella-shaped structure sometimes found on [[Echinoderm]]s, particularly in starfish (class [[Asteroidea]]) such as ''[[Luidia]]'', ''[[Astropecten]]'' and ''[[Goniasteridae|Goniaster]]'' that immerse themselves in sediment. They are [[Ossicle (echinoderm)|ossicles]] composed of [[calcite]] microcrystals found on the [[aboral]] (upper) surface of the animal. Their stalks emerge from the body wall and their umbrella-like crowns, each fringed with short spines, meet edge-to-edge forming a protective external false skin. The water-filled cavity beneath contains the [[madreporite]] and delicate gill structures known as papullae.<ref>{{cite book |title=Invertebrate Zoology, 7th edition |last1=Ruppert |first1=<NAME>. |last2=Fox |first2=<NAME>. |last3=Barnes |first3=<NAME>. |year=2004 |publisher=Cengage Learning |isbn=81-315-0104-3 |pages=877 }}</ref> \n\n==References==\n{{reflist}}\n\n\n[[Category:Echinoderm anatomy]]\n\n{{Echinoderm-stub}}\n{{animal-anatomy-stub}}
39363243 Park Avenue Bridge (Clifton, Arizona) {{distinguish|Park Avenue Viaduct}}\n{{Infobox NRHP\n | name = Park Avenue Bridge\n | nrhp_type = \n | image = Park Avenue Bridge at Clifton.jpg\n | caption = \n | location= Park Ave. over the San Francisco River, [[Clifton, Arizona]]\n | lat_degrees = 33\n | lat_minutes = 3\n | lat_seconds = 22\n | lat_direction = N\n | long_degrees = 109\n | long_minutes = 17\n | long_seconds = 55\n | long_direction = W\n | coord_display = inline,title\n | locmapin = Arizona#USA\n | built = 1917-18\n | builder = [[Midland Bridge Co.]]; [[Illinois Steel Co.]]\n | architecture = Through Truss Bridge \n | added = September 30, 1988\n | area = {{convert|0.1|acre}}\n | governing_body = Local \n | mpsub = {{NRHP url|id=64500050|title=Vehicular Bridges in Arizona MPS}}\n | refnum = 88001661<ref name="nris">{{NRISref|version=2010a}}</ref>\n}}\nThe '''Park Avenue Bridge''' in [[Clifton, Arizona]] brings Park Avenue over the [[San Francisco River]] and was long the one link between east and west sides of the town.<ref name=nrhpdoc/> It is a historic through truss bridge, built during 1917-18, and is listed on the U.S. [[National Register of Historic Places]]. It has also been known as '''Clifton Bridge''' and as '''Riley Bridge'''.<ref name=nris/>\n\nIt is significant historically as the only pinned Parker vehicular truss in the state of Arizona. At the time of its NRHP listing, in 1988, it was in original condition including having a creosoted timber deck.<ref name=nrhpdoc>{{cite web|url={{NRHP url|id=88001661}} |title=HABS/HAER Inventory: Park Avenue Bridge (Clifton Bridge, Riley Bridge) |author=<NAME> |date=April 1, 1987 |publisher=National Park Service}} and {{NRHP url|id=88001661|title=accompanying photo|photos=y}}</ref>\n\nIt was individually listed on the [[National Register of Historic Places]] (NRHP) in 1988. It was also included as a [[contributing structure]] within the [[Clifton Townsite Historic District]], a historic district listed on the NRHP in 1990.<ref name=nris/>\n\n== References ==\n\n{{reflist}}\n\n{{National Register of Historic Places}}\n\n[[Category:Road bridges on the National Register of Historic Places in Arizona]]\n[[Category:Bridges completed in 1918]]\n[[Category:Buildings and structures in Greenlee County, Arizona]]\n[[Category:History of Greenlee County, Arizona]]\n[[Category:Visitor attractions in Greenlee County, Arizona]]\n[[Category:1918 establishments in Arizona]]\n[[Category:National Register of Historic Places in Greenlee County, Arizona]]\n[[Category:Individually listed contributing properties to historic districts on the National Register in Arizona]]\n[[Category:Historic district contributing properties in Arizona]] \n[[Category:Road bridges in Arizona]]\n\n{{Arizona-NRHP-stub}}\n{{Arizona-bridge-struct-stub}}
39369613 Kitlope Heritage Conservancy {{Infobox protected area\n| name = Kitlope Heritage Conservancy\n| alt_name = Huchsduwachsdu Nuyem Jees\n| iucn_category = \n| photo = Kitlope Lake.jpg\n| photo_alt = \n| photo_caption = Kitlope Lake, near the centre of the park\n| photo_width = \n| map = Canada British Columbia (no subdivisions)\n| map_alt = \n| map_caption = Map of British Columbia\n| map_width = \n| relief =\n| location = [[British Columbia]], [[Canada]]\n| nearest_city = \n| lat_d = 53.05\n| long_d = -127.62\n| coords_ref = \n| region = CA-BC\n| area = {{convert|322020|ha|abbr=on}}\n| established = \n| visitation_num = \n| visitation_year = \n| governing_body = \n| url = \n| child = \n| embedded = \n}}\nThe '''Kitlope Heritage Conservancy''' or '''Huchsduwachsdu N<NAME>''' ("source of milky blue waters") in the [[Haisla language]], is a [[provincial park]] located on the Pacific coast of the province of [[British Columbia]], [[Canada]].<ref name="BC Parks">{{cite web|title=Huchsduwachsdu Nuyem Jees / Kitlope Heritage Conservancy|url=http://www.env.gov.bc.ca/bcparks/explore/cnsrvncy/kitlope/|work=BC Parks|publisher=Province of British Columbia}}</ref> It preserves the largest continuous tract of coastal temperate rainforest in the world. Beginning at the head of Gardner Canal, the park stretches inland along the [[Kitlope River]] to the border of [[Tweedsmuir Provincial Park]].\n\n==History==\nThe Kitlope River area is within the ancestral homeland of the [[Haisla people]]. The Haisla used the area for hunting and fishing, especially the production of [[oolichan]] grease, for which the tribe was famous along the Pacific coast. By the early 1990s, the [[West Fraser Timber]] logging company had acquired logging leases for large tracts of forest in the drainage. The Haisla, along with Portland, Oregon-based advocacy group [[Ecotrust]], lobbied the company and the provincial government to place a moratorium on logging in the watershed.<ref name=Palmer>{{cite book|last=Palmer|first=Tim|title=Pacific high : adventures in the coast ranges from Baja to Alaska|year=2002|publisher=Island Press|location=Washington|isbn=9781559636506|page=335| url=http://books.google.ca/books?id=Qzgw8SDQKCsC&pg=PA335}}</ref> \n\nIn 1994, West Fraser agreed to relinquish its lease without compensation. In consultation with the [[Haisla Nation]], the provincial government established a Protected Area around the Kitlope on February 20, 1996. In 2008, it was renamed a Conservancy, reflecting the co-management of the park by BC Parks and the Haisla. Conservancies in the park system are a lower level of protection than full Provincial Parks, allowing "low-impact" economic activities such as eco-tourism, but prohibiting heavy industries such as logging, mining, power generation and road construction.<ref name=Connelly>{{cite news|last=Connelly|first=Joel|title=B.C.'s 'Great Bear Rainforest' gets protection|url=http://www.seattlepi.com/default/article/B-C-s-Great-Bear-Rainforest-gets-protection-1302954.php|accessdate=12 May 2013|newspaper=Seattle Post-Intelligencer|date=March 30, 2009}}</ref>\n\nThe push for a park in the Kitlope valley was part of a larger effort to protect more of the coastal temperate rainforest in B.C., an ecological zone that has been heavily logged in the south of the province. The Kitlope region is considered part of the [[Great Bear Rainforest]] (GBR), a term coined by environmental groups. The Conservancy was the first major portion of the GBR to receive protection.<ref name=Connelly />\n\n==Geography==\nThe Conservancy covers {{convert|322,020|ha}} of [[Pacific temperate rain forest (WWF ecoregion)|coastal temperate rainforest]], making it the largest such preserve in the world.<ref name="BC Parks" /> It lies at the head of the Whidbey Reach of the [[Gardner Canal]], and encompasses the drainages of the Kitlope, Kalitan, Gamsby, Tsaytis, Kapella, and Tezwa rivers. During the spring melt, these rivers are subject to heavy flooding and carry large amounts of debris. Much of the park is mountainous; south of the Kitlope River the granite domes and ridges are part of the [[Kitlope Range]], a sub-range of the [[Kitimat Ranges]]. In the north, they form part of the [[Tochquonyalla Range]], a sub-range of the [[Tahtsa Ranges]]. Icefields and glaciers occupy the higher elevations.<ref name=Managementplan>{{cite web|title=Huchsduwachsdu Nuyem Jees/ Kitlope Heritage Conservancy Management Plan|url=http://www.env.gov.bc.ca/bcparks/explore/cnsrvncy/kitlope/kitlope-mp.pdf|publisher=BC Parks|accessdate=18 May 2013|author=Haisla Nation/Province of British Columbia|pages=1-4|date=May 2012}}</ref> \n\nThe valley floors of the park are narrow, most being between one and two kilometres wide. Many, such as the Gamsby valley, are covered by braided channels of gravel deposited by the rivers. The park has one major lake, Kitlope, which is fed by the Tezwa River and enters the Kitlope River near its [[estuary]].<ref name=Managementplan /> \n\nThe park is part of a large continuous area of protected wilderness. [[Tweedsmuir Provincial Park]], which abuts Kitlope in the northeast, is the largest protected area in the province. The [[Fiordland Conservancy]] protects over 80,000 hectares of coastal [[fjords]] on the KHC's western boundary. Together the major parks and several smaller reserves represent over 2.3 million hectares of undeveloped land in a variety of ecological zones.<ref name=Managementplan />\n\n==References==\n{{reflist}}\n\n==External links==\n*[http://www.env.gov.bc.ca/bcparks/explore/cnsrvncy/kitlope/kitlope_map.pdf Map of the Conservancy, BC Parks]\n\n\n[[Category:Provincial Parks of British Columbia]]\n[[Category:North Coast of British Columbia]]\n[[Category:1996 establishments in British Columbia]]\n[[Category:Protected areas established in 1996]]
39366564 Synergy University {{multiple issues|\n{{advert|date=May 2013}}\n{{refimprove|date=September 2013}}\n{{unreliable sources|date=May 2015}}\n}}\n{{Use dmy dates|date=June 2012}}\n\n{{Infobox university\n|name = Synergy University\n|image_name = \n|caption = Synergy University\n|logo = Synergy Dubai.png\n|type = [[Private university|Private University]]\nPublic, Autonomous\n|established = {{start date|1995}}\n|chancellor = <NAME>\n|president = <NAME> \n|city = Moscow, Dubai, Singapore, London\n|country = [[Russia]], [[UAE]], [[Singapore]], [[UK]]\n|colors = Red, Blue and White {{color box|#FF0000}}{{color box|#0000FF}}{{color box|#FFFFFF}}\n|website = {{URL|synergy.university}}\n}}\n\n'''Synergy University''' ([[Russian language|Russian]]: [[:ru:Московский финансово-промышленный университет «Синергия»|Университет Синергия]]) or '''Moscow University for Industry and Finance “Synergy”''' ([[Russian language|Russian]]: [[Московский финансово-промышленный университет «Синергия»]]) is one of the largest universities in Russia with 35000+ students, 40 regional units & wide international representation in London, Singapore and now in Dubai.\nSynergy University is an institution for higher education aimed at combining traditional academic teaching with fundamental knowledge & practical orientation.<ref>http://synergydubai.ae/</ref>\n\nThe University is licensed by [[The Federal Education and Science Supervision Agency]] (Ministry of Education and Science of the Russian Federation), Its MA & MBA Programs are internationally accredited by the Association of MBA’s (AMBA, UK).<ref>http://synergydubai.ae/en/accreditation</ref>\n\nThe university has offices in London, Beijing, Singapore and Dubai. The University sponsors a proprietary Business Incubator as well as manages a dedicated Venture Capital Fund “Synergy Innovations” promoting young entrepreneurial minds and technologies.{{citation needed|date=May 2013}}\n\nIt runs a in-house TV channel “[[Synergy TV]]” while maintaining an internal publishing house “Synergy Press”.\n\n== History ==\n[[File:SYNERGY UNEVERSITY LOGO.GIF|thumb|243x243px|Logo of '''Synergy University '''(in Russian)]]\nThe history of Synergy University goes back to 1995 when “Moscow International Institute of Econometrics, Informatics, Finance and Law” was established in Moscow.\n\nShortly thereafter, the Institute was renamed into “Moscow Academy of Industry and Finance”.\n\nIn 2009 and under the leadership of Dr. <NAME> and Prof. <NAME>, a strategic merger between the Academy and “Synergy Business School”, (an institute offering academic and training programs targeting skilled mid to top-level managers since 1988), took place to form Russia’s largest private education provider. The newly formed institution is run under the brand name “Synergy University”\n\nToday Synergy University is Russia’s largest private university with more than 35000 students and over 40 regional and international branches and rep-offices across the globe.\n\n== degrees ==\n"Bachelor" degree is recognized by not only Russian employers. This degree is included in the international classification and understood abroad. Training of Bachelors in Synergy University is delivered through the distance learning programmes.\n \n* BBA in Design\n* BA in Advertising and PR\n* BSc in Finance and Credit\n* BBA in Banks and Banking\n* BBA in Commerce\n* BBA in Sport Management\n* Bachelor of Civil Law\n* BSc IT Infrastructure Engineering\n* BBA in E-commerce\n* BBA in Human Resource Management\n* BSc in International Economics\n* BSc in International Finance\n* BBA in IT Projects Management\n* BBA in Hotel and Restaurant Management\n* BBA in Project Management\n* BBA Sports Marketing\n* BA in Journalism and Public Relations\n* BSc in IT and Systems\n\n=== List of MA degrees ===\n* Master of Science in Strategic Management\n* Master of Science in Hotel and Restaurant Management\n* Master of Science in Organizational Psychology\n* Master of Science in Sports Management\n* Master of Science in Banking\n* Master of Science in Finance\n* Master of Science in IT Management\n* Master of Civil Law\n* Master of Criminal Law\n* Master of Arts in Design\n* Master of Arts in Advertising and PR\n\n== Modes of Delivery ==\nSynergy University offers a wide range of educational provision.\n\n=== Traditional (full-time) mode of delivery ===\n\nin-class learning is delivered 5 times a week in the form of lectures, seminars and colloquiums; there is an opportunity to get the final mark in subject on the basis of the ongoing monitoring of progress without sitting for any exam (test). Advanced learning of foreign languages offers an opportunity of practical training organization;, \ninterning in partner companies of Synergy University as early as in the third year of study. \n \n=== Evening and week-end mode of delivery ===\n\nin-class learning is delivered twice a week in the evening on weekdays or once a week on week-ends in the form of lectures and seminars;\nthe opportunity of combining study with work in chosen area;\nself study of subjects with the use of modern electronic educational technologies on the basis of MegaCampus web-portal, participation in virtual seminars and practical studies;\npractical training and internships in partner companies of the University.\n\n== Dubai Campus ==\nSynergy University is offering programs through its newly established Dubai branch.\n\nThe Dubai branch of Synergy University is located in [[Jumeirah Lake Towers|Jumeirah Lakes Towers]] (JLT) – one of the business and residential areas of Dubai in Platinum Tower, Cluster I.<ref>http://www.synergydubai.ae</ref>\n \nFor its 2014 intake Synergy University Dubai is offering several programs such as bachelor's degree in Global Economy, Hotel and Restaurant Management, Information Technologies and Systems and Masters in Hotel and Restaurant Management, Masters in Global Economy, Masters in Retail Management, MBA Women's Leadership and Executive MBA Leadership and Strategy. Programs are licensed by local authority of Dubai - KHDA <ref>http://www.khda.gov.ae/en/search/UniversityDetails.aspx?uid=1230</ref>\n\n{{coord missing|Russia}}\n\n==References==\n {{Reflist}}\n[http://www.khda.gov.ae/en/search/UniversityDetails.aspx?uid=1230 KHDA website]\n[http://www.synergymoscow.com Official University's website in English]\n[http://www.synergydubai.ae Official University's Dubai Campus website in English]\n[http://www.s-university.ru Official University's website in Russian]\n[http://www.mbaworld.com/Business-Schools/Business-School-Search/Business-school-detail.aspx?s=29hB2dLaUFP5i7iJyMYvtj9PwQtsbylRAUmMTsKnDg9nNqO5lsJUSg%3d%3d aMBA accreditation]\n\n[[Category:Universities and colleges in Moscow]]\n[[Category:Universities and colleges in Dubai]]\n[[Category:1995 establishments in Russia]]\n[[Category:Educational institutions established in 1995]]
39363483 Wikipedia:Articles for deletion/Gammu (software) <div class="boilerplate metadata afd vfd xfd-closed" style="background-color: #F3F9FF; margin: 2em 0 0 0; padding: 0 10px 0 10px; border: 1px solid #AAAAAA;">\n:''The following discussion is an archived debate of the proposed deletion of the article below. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's [[Help:Using talk pages|talk page]] or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page.''\n<!--Template:Afd top\n\nNote: If you are seeing this page as a result of an attempt to re-nominate an article for deletion, you must manually edit the AfD nomination links to create a new discussion page using the name format of [[Wikipedia:Articles for deletion/PAGENAME (2nd nomination)]]. When you create the new discussion page, please provide a link to this old discussion in your nomination. -->\n\nThe result was '''delete'''. [[User:Mkdw|<span style="font-size: 13px arial; color: #3366FF;">Mkdw</span>]][[User talk:Mkdw|<sup>''talk''</sup>]] 02:08, 25 May 2013 (UTC)\n===[[Gammu (software)]]===\n\n:{{la|Gammu (software)}} – (<includeonly>[[Wikipedia:Articles for deletion/Gammu (software)|View AfD]]</includeonly><noinclude>[[Wikipedia:Articles for deletion/Log/2013 May 11#{{anchorencode:Gammu (software)}}|View log]]</noinclude>{{int:dot-separator}} <span class="plainlinks">[http://toolserver.org/~snottywong/cgi-bin/votecounter.cgi?page=Wikipedia:Articles_for_deletion/Gammu_(software) Stats]</span>)\n:({{Find sources|Gammu (software)}})\nUnsourced, nothing to indicate notability [[User:Jac16888|<font color="Blue">Jac</font><font color="Green">16888</font>]] [[User talk:Jac16888|<sup><font color="red">Talk</font></sup>]] 22:10, 11 May 2013 (UTC)\n:<small class="delsort-notice">Note: This debate has been included in the [[Wikipedia:WikiProject Deletion sorting/Software|list of Software-related deletion discussions]]. <span style='font:1em"Avenir";background:#CCF;padding:2px 4px'>[[User:Czar|<font color="#B048B5">''czar''</font>]] [[User_talk:Czar|<font color="#888">·</font>]] [[Special:Contribs/Czar|<font color="#888">·</font>]]</span> 23:27, 11 May 2013 (UTC)</small>\n<hr style="width:55%;" />\n:<span style="color:#FF4F00;">'''[[WP:RELIST|Relisted]] to generate a more thorough discussion so a clearer consensus may be reached.'''</span><br />\n:<small>Please add new comments below this notice. Thanks, [[User:Mediran|<span style="color:blue; font-family:'Segoe UI', verdana, sans-serif, arial;">'''Mediran'''</span>]] ([[User talk:Mediran|<span style="color:#464646">'''t'''</span>]] • [[Special:Contributions/Mediran|<span style="color:#464646">c</span>]]) 00:35, 18 May 2013 (UTC)</small><!-- from Template:Relist -->\n<hr style="width:55%;" />\n*'''delete''' blatant advert. [[User:LibStar|LibStar]] ([[User talk:LibStar|talk]]) 02:58, 18 May 2013 (UTC)\n*'''Delete'''. A largely promotional article with no indication of notability. <span style="background-color:yellow;color:;">[[User:069952497a|'''069952497a''']]<sup>[[User talk:069952497a|''Comments and complaints'']]</sup><sub>[[Special:Contribs/069952497a|Stuff I've done]]</sub></span> 19:38, 18 May 2013 (UTC)\n*'''Delete.''' If this were fresh off of NP, I would probably A7. However, as it stands a deletion via AfD is an appropriate outcome. <span style="border:3px solid #000;background:#000">[[User:Deadbeef|<span style="color:#0f0;">Dea</span>]][[User Talk:Deadbeef|<span style="color:#fff">db</span>]][[Special:Contributions/Deadbeef|<span style="color:#0f0">eef</span>]]</span> 20:41, 18 May 2013 (UTC)\n:''The above discussion is preserved as an archive of the debate. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's [[Help:Using talk pages|talk page]] or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page. <!--Template:Afd bottom--></div>
3935362 Wikipedia:Articles for deletion/Deathproj <div class="boilerplate metadata vfd" style="background-color: #F3F9FF; margin: 2em 0 0 0; padding: 0 10px 0 10px; border: 1px solid #AAAAAA;">\n:''The following discussion is an archived debate of the proposed deletion of the article below. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's talk page or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page. ''\n<!--\nNote: If you are seeing this page as a result of an attempt to re-nominate an article for deletion, you must manually edit the AfD nomination links in order to create a new discussion page using the name format of [[Wikipedia:Articles for deletion/PAGENAME (2nd nomination)]]. When you create the new discussion page, please provide a link to this old discussion in your nomination. -->\n\nThe result of the debate was '''delete'''. [[User:Babajobu|Babajobu]] 09:08, 8 February 2006 (UTC)\n===[[Deathproj]]===\nAn unfinished experimental film -- work began in 2001. See also [[Wikipedia:Articles_for_deletion/Bryce Beverlin II]]. Although it doesn't say so on this page, on [[Bryce Beverlin II]] it claims that parts of the film were staged/shown at a small gallery in Minneapolis. There is no explicit set of notability criteria for film, but in an analogy with [[WP:MUSIC]], this wouldn't come close. '''Delete'''. [[User:Bikeable|bikeable]] [[User talk:Bikeable|(talk)]] 18:00, 2 February 2006 (UTC)\n*'''Delete''' as non-notable. Maybe it will be notable when it's finished, but not now. [[User:Edgar181|Edgar181]] 19:25, 2 February 2006 (UTC)\n*'''Delete''' per above --[[User:Kingboyk|kingboyk]] 19:49, 2 February 2006 (UTC)\n*'''Delete''', non-notable vanity. [[User:RasputinAXP|<font color="#FFFFFF" style="background: maroon;"> RasputinAXP </font>]] [[User talk:RasputinAXP|<sub>talk</sub>]] [[Special:Contributions/RasputinAXP|<sub>contribs</sub>]] 20:39, 2 February 2006 (UTC)\n*'''Delete''' non-notable experimental film. --[[User:Hurricane111|Hurricane111]] 22:38, 2 February 2006 (UTC)\n* In the absence of verifiable notability, '''delete''' [[User:<NAME>|Gu<NAME>]] 07:54, 3 February 2006 (UTC)\n*'''Delete''' - not notable enough. --[[User:Latinus|Latinus]] ([[:el:User talk:Latinus|talk (el:)]]) 17:12, 3 February 2006 (UTC)\n*what else should be brought about in order to verify notability?--[[User:Kylefresh|Kylefresh]] 23:06, 3 February 2006 (UTC)\n\n\n:''The above discussion is preserved as an archive of the debate. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's talk page or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page.</div>
39357612 Wikipedia:Featured picture candidates/<NAME> \n===[[Wikipedia:Featured picture candidates/<NAME>|<NAME>]]===\n{{FPCnom/VotingEnds|1369027050}}<small>Voting period ends on <b>20 May 2013</b> at <b>05:17:30 (UTC)</b></small>\n[[File:Jaimie Alexander, London, 2013 (tone).jpg|thumb|right|260px|'''Original''' – American actress <NAME>]]\n;Reason:High resolution photograph of American actress <NAME>, taken during a film premiere in London in 2013. Note that she has glitter on her face and back, this is not camera noise. A second photograph was used to differentiate and locate (seek & destroy) any potential hot pixels that were then removed.\n;Articles in which this image appears:[[Jaimie Alexander]]\n;FP category for this image:[[Wikipedia:Featured pictures/People/Entertainment]]\n;Creator:<NAME>\n\n* '''Support as nominator''' --– <font color="#06266f">Kerαu</font><font color="#1240AB">noςco</font><font color="#4671DS">pia</font><font color="#A60000"><sup>◁</sup></font><i><sub><font color="#5E1FFF">[[User:Keraunoscopia|gala]][[User talk:Keraunoscopia|xies]]</font></sub></i> 05:17, 11 May 2013 (UTC) \n*'''Support''' - Good, very good. — [[User:Crisco 1492|Crisco 1492]] ([[User talk:Crisco 1492|talk]]) 15:00, 11 May 2013 (UTC)\n*'''Comment''' Not what I would say the most flattering of poses but kudos to the photog for nailing focus on the eye. [[User:Saffron Blaze|Saffron Blaze]] ([[User talk:Saffron Blaze|talk]]) 20:43, 11 May 2013 (UTC)\n*'''Support''' I actually like the pose here. It's much more interesting and dynamic than your standard head shot portrait. [[User:Rreagan007|Rreagan007]] ([[User talk:Rreagan007|talk]]) 05:35, 12 May 2013 (UTC)\n*'''Support''' Good Image [[User:Samaksasanian|'''SAMƏK''']] ([[User talk:Samaksasanian|talk]]) 01:05, 13 May 2013 (UTC)\n*'''Support''' Very good image[[User:Nikhilb239|BNK]] ([[User talk:Nikhilb239|talk]]) 09:11, 13 May 2013 (UTC)\n*'''Support''' seems good enough. --[[User:Wingtipvortex|<font color="green">'''Wingtipvorte<sup>X</sup>'''</font>]] [[User talk:Wingtipvortex|<font color="green">''PTT''</font>]] [[Special:Contributions/Wingtipvortex|<font color="green">∅</font>]] 18:45, 13 May 2013 (UTC)\n\n<!-- additional votes go above this line -->\n{{FPCresult|Promoted|File:<NAME>, London, 2013 (tone).jpg}} --[[User:Armbrust|Armbrust]] <sup>[[User talk:Armbrust|<font color="#E3A857">The</font> <font color="#008000">Homunculus</font>]]</sup> 06:52, 20 May 2013 (UTC)\n{{-}}\n* After closure comment: While I understand the connection, promotion to FP should not be construed as carte blanche to replace better images, as was done to the lead image in the article. [[User:Saffron Blaze|Saffron Blaze]] ([[User talk:Saffron Blaze|talk]]) 17:24, 21 May 2013 (UTC)\n\n<noinclude>[[Category:Featured picture nominations]] [[Category:Featured picture nominations/May 2013]]</noinclude>
39390098 Petri (given name) {{unreferenced|date=May 2013}}\n\n'''Petri''' is a [[given name]] derived from [[Latin]] [[Petrus (given name)|Petrus]]. It is very common in [[Finland]]. Petri may refer to:\n\n*[[<NAME>]], Finnish guitarist\n*[[<NAME>]], Finnish orienteer\n*[[<NAME>]] (born 1976), Finnish football player\n*[[<NAME>]] (born 1957), American television personality\n*[[<NAME>]] (born 1969), Finnish football player\n*[[<NAME>]] (born 1967), Finnish cartoonist\n*[[<NAME>]] (born 1976), Finnish football player\n*[[<NAME>]] (born 1965), Finnish football player\n*[[<NAME>]] (born 1963), Finnish artist\n*[[<NAME>]] (born 1967), Finnish decathlete\n*[[<NAME>]] (born 1978), Finnish guitarist\n*[[<NAME>]] (born 1986), Finnish ice hockey goaltender\n*[[<NAME> (figure skater)|<NAME>]] (born 1966), Finnish figure skater\n*[[<NAME> (speedway rider)|<NAME>]] (born 1969), Finnish speedway rider\n*[[<NAME> (ice hockey)|<NAME>]] (born 1975), Finnish ice hockey player\n*[[<NAME>]] (born 1984), Finnish ice hockey player\n*[[<NAME>]] (born 1966), Finnish darts player\n*[[<NAME>]] (born 1983), Finnish ice hockey player\n*[[<NAME>]] (born 1960), Finnish political activist\n*[[<NAME>]] (born 1961), Finnish composer\n*[[<NAME>]] (born 1985), Finnish ice hockey player\n*[[<NAME>]] (born 1969), Swedish ice hockey player\n*[[<NAME>]] (born 1980), Finnish guitarist\n*[[<NAME>]] (born 1967), Finnish ice hockey coach\n*[[<NAME>]] (born 1973), Finnish violinist\n*[[<NAME>]] (1863–1945), Hungarian author\n*[[<NAME>]] (born 1975), Finnish rap-artist\n*[[<NAME>]] (born 1983), Finnish football player\n*[[<NAME>]] (born 1976), Finnish ice hockey player\n*[[<NAME>]] (born 1980), Finnish football player\n*[[<NAME>]] (born 1983), Finnish rapid game prototyper\n*[[<NAME>]] (born 1964), Finnish educational researcher\n*[[<NAME>]] (born 1962), Finnish ice hockey player\n*[[<NAME>]] (born 1992), Finnish racing driver\n*[[<NAME>]] (born 1966), Finnish football player\n*[[<NAME>]] aka <NAME> (born 1955), Finnish punk rock musician \n*[[<NAME>]] (born 1969), Finnish ice hockey player\n*[[<NAME>]] (born 1977), Finnish ice hockey goaltender\n*[[<NAME>]] (born 1987), Finnish football player and referee\n*[[<NAME>]] (born 1980), Finnish basketball player\n*[[<NAME>]] (born 1972), Finnish football player\n*[[<NAME>]] (1969–1995), Finnish guitarist and vocalist\n*[[<NAME>]] (born 1962), Finnish born French ice hockey goaltender\n\n{{given name}}
3935921 Wikipedia:Articles for deletion/Metal elitists \n<div class="boilerplate metadata vfd" style="background-color: #F3F9FF; margin: 2em 0 0 0; padding: 0 10px 0 10px; border: 1px solid #AAAAAA;">\n:''The following discussion is an archived debate of the proposed deletion of the article below. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's talk page or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page. ''\n<!--\nNote: If you are seeing this page as a result of an attempt to re-nominate an article for deletion, you must manually edit the AfD nomination links in order to create a new discussion page using the name format of [[Wikipedia:Articles for deletion/PAGENAME (2nd nomination)]]. When you create the new discussion page, please provide a link to this old discussion in your nomination. -->\n\nThe result of the debate was '''delete'''. [[User:Thebainer|bainer]] ([[User_talk:Thebainer|talk]]) 04:17, 8 February 2006 (UTC)\n===[[Metal elitists]]===\nWas tagged for speedy deletion by [[User:Good Intentions|Marinus]] with the reason, "Unnecessary article - exists solely for the starter to link to from his user page," which is not a speedy criterion. Bringing it to AfD instead. <span style="font-family:Verdana;">'''[[User:Howcheng|<span style="color: #33C;">howch</span>]][[Wikipedia:Esperanza|<span style="color:#0F0">''e''</span>]][[User:Howcheng|<span style="color:#33C">ng</span>]]''' <small>{[[User talk:Howcheng|chat]]}</small></span> 19:08, 2 February 2006 (UTC)\n*If verifiable merge with Heavy Metal, if not, delete. [[User:Jcuk|Jcuk]] 20:01, 2 February 2006 (UTC)\n*'''Delete'''; not a widely used term as far as I can tell. [[User:PJM|PJM]] 20:44, 2 February 2006 (UTC)\n*'''Merge'''. Not notable enough to be on its own. [[User:Kusonaga|Kusonaga]] 21:00, 2 February 2006 (UTC)\n*'''Delete''' There may be other reasons, but as written this is a dic def and [[WP:NOT]] a dictionary.[[User:Obina|Obina]] 21:05, 2 February 2006 (UTC)\n*'''Delete''' as per above - [[User:Deathrocker|Deathrocker]] 19:18, 3 February 2006 (UTC)\n*'''Delete''' as dicdef. --[[User:Thebainer|bainer]] ([[User_talk:Thebainer|talk]]) 04:17, 8 February 2006 (UTC)\n\n\n:''The above discussion is preserved as an archive of the debate. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's talk page or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page.</div>
39354935 Coventry Cross Estate [[File:Coventry_Cross_at_night.jpg|thumb|right|Coventry Cross at night]]\n'''Coventry Cross Estate''' is a [[social housing]] estate in the [[Bromley by Bow]] district of the [[East End of London]]. \n\n==History==\nThe name Coventry Cross dates back to a public house by that name. Local historians have suggested that the name may have originated with a pre-[[Protestant Reformation|Reformation]] cross belonging to a local [[convent]], and that the name was corrupted over time to "Coventry Cross".<ref>{{cite web|title=Bromley Saint Leonard|url=http://www.mernick.org.uk/thhol/bromley4.html|work="The Copartnership Herald", Vol. IV, no. 46 (December 1934)|publisher=Tower Hamlets History On Line|accessdate=10 May 2013}}</ref> \n\n178 flats were built by the London County Council, on the east side of Brunswick Road, opening in 1935.<ref>{{cite web|title=London County Council|url=http://www.nationalarchives.gov.uk/a2a/records.aspx?cat=074-lcc_3&cid=4-1-35#4-1-35|publisher=National Archives|accessdate=10 May 2013}}</ref> \nAs well as the main block called Coventry Cross, there were two smaller blocks, Fuller and Tennant Houses. They were not built with individual bathrooms, but each three flats shared one, along with an area for washing clothes.<ref>{{cite book|title=A Social History of Housing: 1815-1985|year=1986|publisher=Routledge|isbn=9780416367706|page=248|url=http://books.google.co.uk/books?id=f0MOAAAAQAAJ&pg=PA248&lpg=PA248&dq=%22coventry+cross+estate%22&source=bl&ots=ApqC8Xt3O-&sig=M1segSHf9Qga8mh3MMXmDmuUWGo&hl=en&sa=X&ei=fUWNUaGmH4nL0AXg1ICoAQ&ved=0CC8Q6AEwADgU#v=onepage&q=%22coventry%20cross%20estate%22&f=false|author=<NAME>}}</ref>\n\nThe line of Brunswick Road became a major road, the Blackwall Tunnel Northern Approach (BTNA), part of the [[A102 road|A102]] and now the [[A12 road (England)|A12]]. In the early 1950s, the LCC built seven blocks of flats to the west of the BTNA, and named the estate Coventry Cross West. \n\nOwnership of the estate passed in time to the [[Greater London Council]] and then to [[London Borough of Tower Hamlets|Tower Hamlets]]. \n\nThe original Coventry Cross and adjacent blocks were demolished in the 1990s. The remaining blocks west of the A12 kept the name Coventry Cross Estate.\n\nIn the 2000s, Tower Hamlets consulted the tenants of the estate over a possible transfer to a housing association, and they voted in December 2007 to join [[Poplar HARCA]], a locally based social landlord.<ref>{{cite web|title=Coventry Cross residents vote yes to transfer|url=http://www.housingnet.co.uk/housingnet-news-html/Coventry_Cross_Residents_Vote_Yes_To_Transfer780.html|publisher=HousingNet|accessdate=10 May 2013|date=18 December 2007}}</ref> \nTenants expressed a 65% majority in favour, although most leaseholders opposed the move.<ref>{{cite web|title=Disposal of Coventry Cross Estate to Poplar HARCA|url=http://moderngov.towerhamlets.gov.uk/documents/s8337/Coventry%20Cross%20Disposal%20to%20HARCA%20Final%20CAB%20070508.pdf|publisher=Tower Hamlets|accessdate=10 May 2013|date=1 May 2008}}</ref> \nThe transfer was not completed until 2009 due to negotiations over the amount of government grant to support the required refurbishment.<ref>{{cite web|title=Local Homes Initiative|url=http://moderngov.towerhamlets.gov.uk/Published/C00000320/M00002728/AI00020659/$LocalHomesInitiativeFinalCAB010709.docA.ps.pdf|publisher=Tower Hamlets|accessdate=10 May 2013|date=1 July 2009}}</ref> \n\nThe works programme not only brought the houses up to the [[Decent Homes Standard]], but achieved marked improvements in [[efficient energy use|energy efficiency]] as well as security, landscaping and visual enhancements.<ref>{{cite news|title=Cheaper by the Durkan|url=http://www.insidehousing.co.uk/need-to-know/case-studies/cheaper-by-the-durkan/6520860.article|accessdate=10 May 2013|newspaper=Inside Housing|date=9 March 2012|author=<NAME>}}</ref> \nResidents celebrated completion of the regeneration in October 2012.<ref>{{cite news|title=Coventry Cross estate marks regeneration with fun day|url=http://www.eastlondonadvertiser.co.uk/news/coventry_cross_estate_marks_regeneration_with_fun_day_1_1550212|accessdate=10 May 2013|newspaper=East London Advertiser|date=3 October 2012}}</ref>\n\n==References==\n{{Reflist}}\n\n==External links==\n[http://www.durkan.co.uk/projects/coventry-cross-estate.html Coventry Cross Estate], photos by Durkan (construction company)\n\n{{coord missing|London}}\n\n[[Category:Housing estates in London]]\n[[Category:Buildings and structures in Tower Hamlets]]\n\n[https://www.youtube.com/watch?v=m0STMmLENsc Bromley by Bow "<NAME>" sung by children of the Coventry Cross Estate in 1980 - with photos from the time]
39367306 Wikipedia:Articles for deletion/Dangerous and Moving Tour <div class="boilerplate metadata afd vfd xfd-closed" style="background-color: #F3F9FF; margin: 2em 0 0 0; padding: 0 10px 0 10px; border: 1px solid #AAAAAA;">\n:''The following discussion is an archived debate of the proposed deletion of the article below. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's [[Help:Using talk pages|talk page]] or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page.''\n<!--Template:Afd top\n\nNote: If you are seeing this page as a result of an attempt to re-nominate an article for deletion, you must manually edit the AfD nomination links to create a new discussion page using the name format of [[Wikipedia:Articles for deletion/PAGENAME (2nd nomination)]]. When you create the new discussion page, please provide a link to this old discussion in your nomination. -->\n\nThe result was '''delete'''. '''[[User:LFaraone|L]]<font color="darkgreen">[[User talk:LFaraone|Faraone]]</font>''' 00:19, 31 May 2013 (UTC)\n===[[Dangerous and Moving Tour]]===\n\n:{{la|Dangerous and Moving Tour}} – (<includeonly>[[Wikipedia:Articles for deletion/Dangerous and Moving Tour|View AfD]]</includeonly><noinclude>[[Wikipedia:Articles for deletion/Log/2013 May 12#{{anchorencode:Dangerous and Moving Tour}}|View log]]</noinclude>{{int:dot-separator}} <span class="plainlinks">[http://toolserver.org/~snottywong/cgi-bin/votecounter.cgi?page=Wikipedia:Articles_for_deletion/Dangerous_and_Moving_Tour Stats]</span>)\n:({{Find sources|Dangerous and Moving Tour}})\nConcert achieved little coverage, article has no references [[User:Freikorp|Freikorp]] ([[User talk:Freikorp|talk]]) 12:28, 12 May 2013 (UTC)\n*<small>'''Automated comment:''' This AfD was not correctly transcluded to the log ([[WP:AFDHOWTO|step 3]]). I have transcluded it to [[Wikipedia:Articles for deletion/Log/2013 May 14]]. [[User:Snotbot|<span style="font-family: Courier, monospace;letter-spacing:5px;background:#000000;color:#00FF00;padding-left:5px;">Snotbot</span>]] [[User talk:Snotbot|t]] • [[Special:Contributions/Snotbot|c]] » 00:50, 14 May 2013 (UTC)</small><!--Snotbot relist-->\n:<small class="delsort-notice">Note: This debate has been included in the [[Wikipedia:WikiProject Deletion sorting/Music|list of Music-related deletion discussions]]. <span style='font:1em"Avenir";background:#CCF;padding:2px 4px'>[[User:Czar|<font color="#B048B5">''czar''</font>]] [[User_talk:Czar|<font color="#888">·</font>]] [[Special:Contribs/Czar|<font color="#888">·</font>]]</span> 05:01, 14 May 2013 (UTC)</small>\n:<small class="delsort-notice">Note: This debate has been included in the [[Wikipedia:WikiProject Deletion sorting/Events|list of Events-related deletion discussions]]. [[User:Gene93k|• Gene93k]] ([[User talk:Gene93k|talk]]) 02:15, 15 May 2013 (UTC)</small>\n*'''Delete''' Fails WP:V as per [[WP:Deletion policy]]. [[User:Unscintillating|Unscintillating]] ([[User talk:Unscintillating|talk]]) 00:37, 19 May 2013 (UTC)\n<hr style="width:55%;" />\n:<span style="color:#FF4F00;">'''[[WP:RELIST|Relisted]] to generate a more thorough discussion so a clearer consensus may be reached.'''</span><br />\n:<small>Please add new comments below this notice. Thanks, <font face="Century Gothic">[[User:J04n|J04n]]([[User talk:J04n|talk page]])</font> 13:02, 23 May 2013 (UTC)</small><!-- from Template:Relist -->\n<hr style="width:55%;" />\n:''The above discussion is preserved as an archive of the debate. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's [[Help:Using talk pages|talk page]] or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page. <!--Template:Afd bottom--></div>
39350576 Thanks for Sharing {{about|the film|the ''Farscape'' episode|List of Farscape episodes#Season 3 (2001–2002)}}\n{{Infobox film\n| name = Thanks for Sharing\n| image = Thanks for Sharing Poster.jpg\n| image_size = \n| alt = \n| border = yes\n| caption = Theatrical release poster\n| director = [[<NAME>]]\n| producer = {{plainlist | \n* <NAME>\n* <NAME>\n* [[<NAME>]]\n* <NAME>\n* <NAME>\n}}\n| writer = <NAME><br /><NAME>\n| starring = {{plainlist |\n* [[<NAME>]]\n* [[<NAME>]]\n* [[<NAME>]]\n* [[<NAME>]]\n* [[<NAME>]]\n* [[<NAME>]]\n* [[<NAME>]]\n* [[<NAME>]]\n}}\n| music = [[<NAME>]]\n| cinematography = <NAME>\n| editing = <NAME>\n| studio = {{plainlist|\n* Olympus Pictures\n* Class 5 Films\n}}\n| distributor = [[Lionsgate Films|Lionsgate]]\n| released = {{Film date|2012|09|06|[[2012 Toronto International Film Festival|TIFF]]|2013|09|20}}\n| runtime = 112 minutes<!--Theatrical runtime: 112:21--><ref>{{cite web |title=THANKS FOR SHARING |url=http://www.bbfc.co.uk/releases/thanks-sharing-2013-0 |publisher=[[British Board of Film Classification]] |date=July 18, 2013 |accessdate=July 18, 2013}}</ref>\n| country = United States\n| language = English\n| budget = \n| gross = $1.1 million<ref>{{mojo title|thanksforsharing|Thanks for Sharing}}</ref>\n}}\n'''''Thanks for Sharing''''' is a 2012 American [[comedy-drama]] film directed by [[<NAME>]], from a screenplay written by Blumberg and <NAME>. The film stars [[<NAME>]], [[<NAME>]], [[<NAME>]], [[<NAME>]], [[<NAME>]], and [[Pink (singer)|<NAME>]] with supporting roles from [[<NAME>]], [[<NAME>]], [[<NAME>]], and [[<NAME>, Jr.]]\n\nThe film [[Film premiere|premiered]] at the [[2012 Toronto International Film Festival]] to mixed reviews,<ref>{{cite web |url=http://variety.com/2013/film/news/mark-ruffalo-thanks-for-sharing-gwyneth-paltrow-1200502217 |title=<NAME>, Gwyneth Paltrow Addicted to ‘Thanks For Sharing’ (VIDEO) |last= Kroll |first= Justin |work=[[Variety (magazine)|Variety]] |date=2013-06-26 |accessdate=2013-06-27}}</ref> and was released in the United States a year later.<ref>{{cite news |url=http://www.usatoday.com/story/life/people/2013/06/27/gwyneth-paltrow-strips-in-thanks-for-sharing/2462809 |title=Gwyneth Paltrow strips in 'Thanks for Sharing' |last=Oldenburg |first= Anne |work=[[USA Today]] |date=2013-06-27 |accessdate=2013-06-27}}</ref>\n\n==Plot==\nSet in [[New York City]], ''Thanks for Sharing'' centers around three people undergoing a 12-step process to recover from their [[sexual addiction]]. \n\nAdam ([[<NAME>]]) walks along the streets of New York, tempted to have sex by various advertisements and women on his way to work. Neil ([[<NAME>]]), a doctor who is addicted to sex and masturbation, purposely grinds against a stranger in a train on the way to attend a sex addiction meeting. Mike ([[<NAME>]]) is a married recovering sex addict who leads the group. He sponsors Adam, who hasn't had sex in five years. Adam sponsors Neil. They are all at the sex addiction meeting, talking about their progress. Adam proclaims he's been 'sober' for five years, while Neil cracks jokes and admits he is only there because the court has forced him to. He goes back to masturbating the same night, and lies about being one month sober to the addiction group.\n\nAdam meets Phoebe ([[<NAME>]]) at a 'bug party' and they go out on a date. She reveals that she is a [[breast cancer]] survivor and that her ex-boyfriend is an [[alcoholic]]; he does not tell her about his own addiction for fear that she will reject him. They begin a relationship. Dede ([[<NAME>]]) joins the sex addiction meetings, and reveals at her first meeting that she has been addicted to sex since she was a young girl. Neil, a doctor, is caught secretly filming under the skirt of his boss, and is fired. He then begins to take the meetings more seriously, and admits he has a problem. Meanwhile, Mike's son Danny ([[<NAME>]]), a recovering drug addict, has returned home and is attempting to make amends to Mike and his mother Katie ([[<NAME>]]). \n\nPhoebe eventually finds out about Adam's sex addiction when finding an addiction token in his pocket the morning after sleeping with him. She takes some time away from him, but eventually agrees to continue their relationship. Neil talks Dede out of having sex with her abusive ex-boyfriend, and they go to a dance together. They come close to kissing, but don't. Mike and Danny get into a fight when Mike assumes Danny stole his mother's pills. Danny reveals that Mike gave Katie [[Hepatitis C]], and confronts him about hitting him when he was a child. Mike slaps Danny, who attacks Mike and knocks Katie over; upon realizing what he has done, Danny panics and runs out of the house.\n\nPhoebe has become frustrated with Adam's reticence to be physical with her, and breaks it off after they have a fight. Adam sleeps with a prostitute. Dede comes over to Neil's place, and helps him clean up his house and burns his porn. She admits she's never been 'just friends' with a man before. Mike finds Katie's pills, and realizes Danny didn't steal them after all. He and Katie get into a fight, and Mike goes to find Danny. While he is out, Katie calls him to tell him Danny is in the hospital after a [[DUI]]. Mike hugs his son in the hospital, who turns out to have been sober for the past eight months. Adam invites his ex-girlfriend Becky ([[<NAME>]]) over, and as they start out by reenacting her father issues, she then wants Adam to slap her. When he refuses, she breaks down, locks herself in the bathroom and attempts suicide. Neil takes the train to get over to Adam's and breaks down his bathroom door to rescue Becky. Adam gets sober and goes back to Phoebe, who admits she too is not perfect. Neil confronts his inappropriately sexual mother, Roberta ([[<NAME>]]), and all the addicts celebrate their sobriety.\n\n==Cast==\n* [[<NAME>]] as Adam\n* [[<NAME>]] as Mike\n* [[<NAME>row]] as Phoebe\n* [[<NAME>]] as Neil\n* [[<NAME>]] as Katie\n* [[Pink (singer) | Alecia "Pink" Moore]] as Dede\n* [[<NAME>]] as Danny\n* [[<NAME>]] as Roberta\n* [[<NAME>]] as Marney\n* [[<NAME>, Jr.]] as Charles\n* [[<NAME>]] as Becky\n* [[<NAME>]] as Lili Kazhani\n* [[Okieriete Onaodowan]] as Lou\n\n==Reception==\n''Thanks for Sharing'' was met with mixed reviews, with a [[Rotten Tomatoes]] approval rating of 50% (based on 109 reviews)<ref>{{cite web |url=http://www.rottentomatoes.com/m/thanks_for_sharing/ |title=Thanks for Sharing (2013) |publisher= [[Flixster]] [[Rotten Tomatoes]] |accessdate=2013-09-21}}</ref> and a [[Metacritic]] score of 54 out of 100, based on 38 reviews, indicating "Mixed or average reviews".<ref>{{cite web |url= http://www.metacritic.com/movie/thanks-for-sharing |title=Thanks for Sharing |publisher= [[CBS Interactive]] [[Metacritic]] |accessdate=2013-08-16}}</ref>\n\n<NAME> gave the movie a largely positive review, saying "First-time director Blumberg does a fine job and makes some brave choices."<ref>{{cite web|last=RICHARD|first=ROEPER|url=http://www.suntimes.com/entertainment/movies/22612401-421/thanks-for-sharing-makes-you-care-about-sex-addicts.html|title='Thanks for Sharing' Makes You Care About Sex Addicts|publisher=Chicago Sun Times}}</ref> <NAME> of Film.com was among the most critical, giving the film a D+, and commenting that it "can't quite find its footing as either a drama or a comedy, and near the end it's actively sliding off the rails".<ref>{{cite web |url=http://www.film.com/movies/thanks-for-sharing-review-2012 |title=Review: 'Thanks for Sharing' |last=Legel |first=Laremy |publisher=Film.com |date=2012-09-12 |accessdate=2013-08-16}}</ref> <NAME> of the ''Daily Chronicle'' also criticized the film heavily, dubbing it ''First World Problems: The Movie''.{{citation needed|date=September 2013}} Otherwise, <NAME>'s role was praised by critics. <NAME> writes about her performance saying "Of all the cast here, the least experienced is the pop singer Pink, yet she does the best acting in the film: natural, a little harsh, a little unstable. Pink, like [[<NAME>]] in her [[Lee Daniels]] movie roles, knows instinctively how to behave on camera by just pretending that the camera isn’t there.”<ref>http://www.rogerebert.com/reviews/thanks-for-sharing-2013</ref> <NAME> praised the film, arguing that "the good elements outweigh the bad in Thanks for Sharing and the final result is a commendable examination of addiction, sex and the nature of grown-up relationships (among other issues that are rarely black and white)."<ref>{{cite web|last=Schaefer|first=Sandy|url=http://screenrant.com/thanks-for-sharing-reviews-movie-2013/|title='Thanks for Sharing' Review|publisher=ScreenRant}}</ref>\n\n==References==\n{{Reflist|30em}}\n\n==External links==\n* {{official website|http://thanksforsharingmovie.com}}\n* {{IMDb title|1932718|Thanks for Sharing}}\n* {{mojo title|thanksforsharing|Thanks for Sharing}}\n* {{rottentomatoes|thanks_for_sharing|Thanks for Sharing}}\n* {{metacritic film|thanks-for-sharing|Thanks for Sharing}}\n\n[[Category:2010s comedy-drama films]]\n[[Category:2012 films]]\n[[Category:American comedy-drama films]]\n[[Category:American films]]\n[[Category:English-language films]]\n[[Category:Films about sexuality]]\n[[Category:Films set in New York City]]\n[[Category:Films shot in New York City]]\n[[Category:Independent films]]\n[[Category:Lions Gate Entertainment films]]\n[[Category:Sexual addiction in fiction]]\n[[Category:Films about sex addiction]]
39358146 Shikrapur {{For|the village in Budaun District of Uttar Pradesh|Shikrapur, Uttar Pradesh}}\n{{Infobox settlement\n| name = Shikrapur\n| native_name = \n| native_name_lang = Mr\n| other_name = \n| nickname = \n| settlement_type = village\n| image_skyline = \n| image_alt = \n| image_caption = \n| pushpin_map = India Maharashtra#India\n| pushpin_label_position = right\n| pushpin_map_alt = \n| pushpin_map_caption = Location in Maharashtra, India\n| latd = 18\n| latm = 41\n| lats = 37\n| latNS = N\n| longd = 074\n| longm = 08\n| longs = 17\n| longEW = E\n| coordinates_display = inline,title\n| subdivision_type = Country\n| subdivision_name = {{flag|India}}\n| subdivision_type1 = [[States and territories of India|State]]\n| subdivision_name1 = [[Maharashtra]]\n| subdivision_type2 = [[List of districts of India|District]]\n| subdivision_name2 = [[Pune district|Pune]]\n| subdivision_type3 = [[Taluka]]\n| subdivision_name3 = [[<NAME>|Shirur]]\n| established_title = <!-- Established -->\n| established_date = \n| founder = \n| named_for = \n| government_type = \n| governing_body = \n| unit_pref = Metric\n| area_footnotes = \n| area_rank = \n| area_total_km2 = \n| elevation_footnotes = \n| elevation_m =\n| population_total = 9541\n| population_as_of = 2001\n| population_rank = \n| population_density_km2 = auto\n| population_demonym = \n| population_footnotes = \n| demographics_type1 = Languages\n| demographics1_title1 = Official\n| demographics1_info1 = [[Marathi language|Marathi]]\n| timezone1 = [[Indian Standard Time|IST]]\n| utc_offset1 = +5:30\n| postal_code_type = <!-- [[Postal Index Number|PIN]] -->\n| postal_code = \n| area_code_type = Telephone code\n| area_code = \n| registration_plate = \n| website = \n| footnotes = \n}}\n''' Shikrapur ''' is a [[panchayat village]]<ref>2011 Village Panchayat Code for Shikrapur = 188619, {{Cite web|title=Reports of National Panchayat Directory: Village Panchayat Names of Shirur, Pune, Maharashtra|publisher=Ministry of Panchayati Raj, Government of India|url=http://panchayatdirectory.gov.in/adminreps/viewpansumSQL.asp?selstate=4523&pno=1&ptype=V&parenttype=B}}</ref> in the state of [[Maharashtra]], India,<ref name="censusindia">2001 Census Village code for Shikrapur = 03049600, {{Cite web|title=2001 Census of India: List of Villages by Tehsil: Maharashtra|publisher=Registrar General & Census Commissioner, India|page=592|url=http://censusindia.gov.in/Census_Data_2001/PLCN/dir-27R.pdf|archiveurl=https://web.archive.org/web/20111113195156/http://www.censusindia.gov.in/Census_Data_2001/PLCN/DIR-27r.pdf|archivedate=13 November 2012|deadurl=no}}</ref><ref name="Panchayat-Dir-2011">2011 Census Village code for Shikrapur = 555627, {{Cite web|title=Reports of National Panchayat Directory: List of Census Villages mapped for: Shikrapur Gram Panchayat, Shirur, Pune, Maharashtra|publisher=Ministry of Panchayati Raj, Government of India|url=http://panchayatdirectory.gov.in/adminreps/viewGPmapcvills.asp?gpcode=188619&rlbtype=V}}</ref> on the left (north) bank of the Vel River (Wel River).<ref>{{Citation|date=May 1960|title=Poona India, Sheet NE 43-06|series=Series U-502|publisher=United States Army Map Service|format=topographic map, scale 1:250,000|url=http://www.lib.utexas.edu/maps/ams/india/ne-43-06a.jpg}}</ref> Administratively, Shikrapur is under [[<NAME>uka]] of [[Pune District]] in Maharashtra.<ref name="Panchayat-Dir-2011" /> There is only the single village of Shikrapur in the Shikrapur [[gram panchayat]].<ref name="Panchayat-Dir-2011" /> The village of Shikrapur lies next to the intersection of [[List of state highways in Maharashtra|State Highway 60]] and [[List of state highways in Maharashtra|State Highway 55]]. It is 10 km by road northeast of the town of [[Koregaon Bhima]], and 32 km by road southeast of the town of [[Chakan, Maharashtra|Chakan]].\n\n== Demographics ==\nIn the 2001 census, the village of Shikrapur had 9,541 inhabitants, with 5,069 males (53.1%) and 4,472 females (46.9%), for a gender ratio of 882 females per thousand males.<ref>{{Cite web|title=Census 2001 Population Finder: Maharashtra: Pune: Shirur: Shikrapur|publisher=Office of The Registrar General & Census Commissioner, Ministry of Home Affairs, Government of India|url=http://censusindia.gov.in/PopulationFinder/View_Village_Population.aspx?pcaid=524843&category=VILLAGE}}</ref>\n\n== Notes ==\n{{Reflist}}\n\n== External links ==\n* {{Cite web|title=Official Website of Pune District|url=http://pune.nic.in}}\n* {{Cite web|format=Map|title=Delimitation of PC and AC - 2004 <NAME>, Pune District, Maharashtra (Administrative Units) |publisher=Pune District|url=http://pune.gov.in/puneCollectorate/DistrictAdmin/tahsil%20maps/Shirur.tif}}\n{{Clear}}\n\n{{Pune district topics |state=autocollapse}}\n\n[[Category:Villages in Pune district]]\n\n\n{{Pune-geo-stub}}
39359573 <NAME> {{Infobox NRHP\n | name = <NAME>\n | nrhp_type = \n | image = Rodney Court.JPG\n | caption = <NAME>, March 2010\n | location= 1100 Pennsylvania Ave., [[Wilmington, Delaware]]\n | latitude = 39.752350\n | longitude = -75.557039\n | coord_display = inline,title\n | locmapin = Delaware#USA\n | built = {{Start date|1928}}\n | architect = Hance, Wallace\n | builder = VanSant Brothers\n | added = April 2, 1980\n | area = {{convert|0.5|acre}}\n | governing_body = Private \n | refnum = 80000938<ref name="nris">{{NRISref|version=2010a}}</ref>\n}}\n'''<NAME>''', also known as <NAME> Co-operative, is a historic [[apartment]] building located at [[Wilmington, Delaware|Wilmington]], [[New Castle County, Delaware]]. It was built in 1928, and is a six-story, "L"-shaped steel frame apartment building. The frame is sheathed in [[cinder block]] and faced with light-colored tapestry bricks. It features cast-stone trimmings with classical motifs and an elaborate cast-stone classically styled [[parapet]]. It once had a large social hall adjoining a roof-top dance floor and roof garden, that has since been converted to a penthouse apartment. It is the last extant luxury apartment built in Wilmington before the [[Great Depression in the United States|Great Depression]] of the 1930s.<ref name=NRHPnom>{{cite web|url={{NRHP url|id=80000938}} |title=National Register of Historic Places Inventory/Nomination: <NAME> |author1=<NAME> |author2=<NAME> |author3=<NAME> |last-author-amp=yes |date=November 1979}} and {{NRHP url|id=80000938|title=Accompanying five photos|photos=y}}</ref>\n\nIt was added to the [[National Register of Historic Places]] in 1980.<ref name="nris"/>\n\n==References==\n{{reflist}}\n\n{{National Register of Historic Places in Delaware}}\n\n[[Category:Residential buildings on the National Register of Historic Places in Delaware]]\n[[Category:Residential buildings completed in 1928]]\n[[Category:Buildings and structures in Wilmington, Delaware]]\n[[Category:National Register of Historic Places in Wilmington, Delaware]]\n\n\n{{Delaware-NRHP-stub}}
39365235 Soup.io {{Advert|date=August 2015}}\n{{Distinguish|soup}}\n{{Use dmy dates|date=August 2013}}\n{{Infobox dot-com company\n| name = Soup.io\n| logo = [[File:Logo from Soup.io, May 2013.png]]\n| company_type = Privately held company\n| location = [[Vienna (Austria)]]\n| founder = <NAME>, <NAME>, <NAME>\n| industry = [[Microblog|Microblog service]]\n| launch date = April, 2007\n| company_slogan = Publish, collect, share.\n| url = {{URL|http://www.soup.io/}}\n| alexa = {{Increase}} 3,698 ({{as of|2015|03|10|alt=March 2015}})<ref name="alexa">{{cite web|url= http://www.alexa.com/siteinfo/soup.io |title= Soup.io Site Info | publisher= [[Alexa Internet]] |accessdate= 2015-03-10 }}</ref>\n| current status = Online\n}}\n\nSoup.io is an [[Austria]]n [[social networking]] and [[microblog]]ging site.\n\n== Introduction ==\n'''Soup.io''' allows the user to publish (editable in [[HTML]]) text, images, videos, links, quotes and reviews. It allows users to share files (within the limit of 10 MB) and create events. Its interface professes to follow the [[Keep it Simple, Stupid|KISS]] principle{{citation needed|date=August 2015}}. In March 2015, Soup.io had close to {{formatnum:3.8 million}} monthly users.<ref>[https://www.quantcast.com/soup.io Quantcast]</ref>\n\n== Features ==\n* [[News aggregator|Aggregation]] in real time data from issues of [[social networks]], blogs and [[RSS]].\n* Auto-posting data from other social networks (including [[Digg]], [[Flickr]], [[Delicious (website)|Delicious]], YouTube, Twitter, or even [[Tumblr]])\n* Infinite scrolling of content\n* Publication (by sending email, via a javascript Favorites, or from soup.io) and possible edition in [[HTML]]\n* Re-posting of content from other blogs on the service, after the manner of [[Tumblr]]\n* Groups\n* Videos channels\n* Code custom [[cascading style sheets|CSS]]\n* Integration of [[domain name]]s\n* Semi-private access to a blog\n\n== Awards ==\nSoup.io received an investment during Seedcamp 2008,<ref>[http://seedcamp.com/pages/2008finalists Seedcamp 2008]</ref> has been classified by the [[The Guardian|Guardian]] as one of the essential 100 websites of 2009,<ref>[http://www.guardian.co.uk/technology/2009/dec/09/best-websites-internet The 100 essential websites] – The Guardian</ref> and was named "Innovative IT-Challenger" by APA – IT in September 2009.<ref>Innovative http://www.ots.at/presseaussendung/OBS_20090918_OBS0011 "IT-Challenger" von – APA – IT ausgezeichnet – ANHÄNGE – APA</ref>\n\n== External links ==\n* [http://www.soup.io Official Site]\n\n== Notes and references ==\n\n{{range|Microblog}}\n\n{{portal|Internet}}\n\n<references />\n\n[[Category:Microblogging software]]\n[[Category:Blog hosting services]]\n[[Category:Social networking services]]
39352237 Sunbury Football Netball Club {{Infobox australian football club\n | clubname = Sunbury\n | image =\n | fullname = Sunbury Football Netball Club<ref>http://www.sportingpulse.com/club_info.cgi?clubID=80351&c=1-6145-0-0-0</ref>\n | motto = \n | nicknames = <NAME>\n | founded = 1880\n | colours = {{color box|Blue}} Blue {{color box|White}} White\n | league = [[Ballarat Football League]]\n | premierships = 1997, 1998, 1999, 2004, 2012\n | ground = \n | ground2 = \n | ground3 = \n}}\n\nThe '''Sunbury Football Netball Club''', nicknamed the '''The Lions''', is an [[Australian Rules Football]] club playing in the [[Ballarat Football League]].\n\nThe club is based in the [[Victoria, Australia|Victorian]] town of [[Sunbury, Victoria|Sunbury]].<ref>[http://www.sfsc.com.au/ Official Site]</ref>\n\n==History==\n\nSunbury Football Club was formed in 1880 when it was known as the ''Lions'', They were a founding club and continued playing in the [[Riddell District Football League]] until 1996.\nWith the depth of football standard in the RDFL on the decline, together with considerable opposition from former second division clubs on the formation of one division, the club voted to make the move to the highly rated Ballarat Football League with [[Melton Football Club|Melton]], [[Darley Football Club|Darley]] and [[Melton South Football Club|Melton South]] clubs for the commencement of the 1997 playing season.\n\nThe club has won five BFL premierships.\n\n==Premierships==\n*[[Ballarat Football League]]\n**1997, 1998, 1999, 2004, 2012\n*[[Riddell District Football League]]\n**1892, 1901, 1906, 1908, 1913, 1915, 1953, 1955, 1957, 1969, 1974, 1976, 1977, 1980, 1982, 1987, 1988, 1990, 1996\n\n==References==\n{{reflist}}\n\n==External links==\n*[http://www.sportingpulse.com/club_info.cgi?c=1-6145-80345-0-0&sID=163325/ Official website]\n\n==Book==\nHistory of Football in the Ballarat District by <NAME> - ISBN 978-0-9805929-0-0\n{{Ballarat Football League}}\n\n[[Category:Ballarat Football League clubs]]\n[[Category:Australian rules football clubs in Victoria (Australia)]]\n[[Category:Sports clubs established in 1880]]\n[[Category:1880 establishments in Australia]]\n[[Category:Sunbury, Victoria]]
39359265 <NAME> {{Infobox mayor\n| name = <NAME>\n| image = \n| imagesize = \n| order1 = [[New Democratic Power – FORCA|Leader of FORCA]]<ref>http://www.forca.me/index.php?option=com_content&view=article&id=149&Itemid=134</ref>\n| term_start1 = 22 October 2005\n| term_end1 = \n| successor1 = \n| order2 = [[List of mayors of Ulcinj|Mayor of Ulcinj]]<ref>http://www.pronaindi.com/tv1channel/index.php?option=com_content&view=article&id=2873:nazif-cungu-kryetari-i-ri-i-komunes-ulqin&catid=12:politike&Itemid=77</ref>\n| term_start2 = September 2011\n| term_end2 = \n| predecessor2 = <NAME>aga\n| successor2 = \n| order3 = President of Econimical-Social Council of Ulcinj<ref>http://www.forca.me/index.php?option=com_content&view=article&id=149&Itemid=134</ref>\n| term_start3 = 2004\n| term_end3 = 2005\n| predecessor3 =\n| successor3 =\n| order4 = President of Counselors Club of [[Democratic Union of Albanians|DUA]]<ref>http://www.forca.me/index.php?option=com_content&view=article&id=149&Itemid=134</ref>\n| term_start4 = 1996\n| term_end4 = 2002\n| predecessor4 =\n| successor4 =\n| birth_date = {{Birth date and age|df=yes|1958|5|13}}<ref>http://www.forca.me/index.php?option=com_content&view=article&id=149&Itemid=134</ref>\n| birth_place = [[Ulcinj]], Montenegro\n| nationality = \n| party = [[New Democratic Power – FORCA]]\n| spouse = \n|signature = \n|signature_alt = \n|website = \n|}}\n\n'''<NAME>''' is a [[Albanians in Montenegro|Montenegrin-Albanian]] politician, the leader of the biggest Albanian political party in Montenegro [[New Democratic Power – FORCA|FORCA]].\n\n==Personal history==\n<NAME> was born in [[Ulcinj]], [[Ulcinj Municipality]], southern [[Montenegro]], near the border with [[Albania]] to an [[Albanians|Albanian]] family on 13 May 1958. He finished the secondary school and gymnasium in his hometown. He studied [[Tourism Management|tourism management]] in Economic Faculty of [[Dubrovnik]], graduating in 1980.\nFrom 1983 until 1987 he worked at the [[Ulcinj Municipality|Municipality of Ulcinj]] in the post of secretary for economy, finance and budget. From 1987 to 1991 he had the post of a Chief Commercial of Tourist Organization "<NAME>".\nFrom 1993 to 1997 he directed the marketing sector of "Primus" company. In 1997 he founded his own company named "Cungu & Co." which employs over 100 people in its branches located in [[Ulcinj]], [[Podgorica]], [[Tivat]], [[Budva]], [[Niksic]], [[Bjelopolje]], [[Kotor]] and [[Herceg Novi]]. Cungu has extended its activities to other companies in [[Tirana]] and [[Pristina]].\n\n==Public engagement==\n\nIn the years 1996 to 2002 he was the President of the Club of Counsilors of [[Democratic Union of Albanians]], which resigned due to a disagreement with some action and ''deviations'' of the party. In the years 2004 to 2005 has performed the function of President of the Economic and Social Council of [[Ulcinj]].\nCungu is one of the founders of the party [[New Democratic Power – FORCA]], and is currently chairman of the party.\nHe is a prominent activist of civil society in Montenegro, he was among the founders of the Association "Ulqini" in Switzerland, humanitarian association "Drita", "Montenegro Business Aliances - MBA" and association of olive growers. Also he is one of the founders and currently chairman of the association "[[Ulcinj]] Business Association", an association in which there are over 270 businessmen.\n\n==See also==\n*[[List of mayors of Ulcinj|Mayor of Ulcinj]]\n*[[Ulcinj]]\n*[[New Democratic Power - FORCA]]\n\n{{S-start}}\n{{S-off}}\n{{succession box|title=[[List of mayors of Ulcinj|Mayor of Ulcinj]]|before=[[<NAME>aga]]|after=incumbent|years=2011–present}}\n{{S-end}}\n\n==Notes==\n{{reflist}}\n{{Ulcinj |state=collapsed}}\n\n{{DEFAULTSORT:Cungu, Nazif}}\n[[Category:1958 births]]\n[[Category:People from Ulcinj]]\n[[Category:Ulcinj]]\n[[Category:Living people]]
39358073 2009–10 Liga Națională (men's handball) {{unreferenced|date=September 2013}}\n\n{| style="margin: 0 0 1em 1em; float:right; text-align:center; width: 20em;" class="toccolours"\n| colspan="2" style="padding:0 1em;border-bottom:1px #aaa solid;" |'''2009–10 Liga Națională'''\n|-\n|Anterior: [[2008–09 Liga Națională (men's handball)|2008–09]]\n|Următor: [[2010–11 Liga Națională (men's handball)|2010–11]]\n|-\n|}\n\nThe '''Liga Națională 2009–10''' is the 52nd season of [[Romanian Handball League]], the top-level men's professional [[Team handball|handball]] league. The league comprises 13 teams. CSM [[Medgidia]] withdrew from the championship and all of its results were cancelled.\n\n== Standings ==\n{| class="wikitable"\n! Pos || Team || Pld || W || D || L || GF || GD || Pts || Qualification or relegation\n|- style="background: #D0F0C0;"\n| 1 || [[HCM Constanța]] '''(C)''' || 24 || 21 || 2 || 1 || 788 || 626 || 44 || [[2010–11 EHF Champions League]]\n|-\n| 2 || [[CS Caraș - Severin Reșița|UCM Reșița]] || 24 || 18 || 2 || 4 || 739 || 624 || 38 || [[2010–11 EHF Cup Winners' Cup]]\n|-\n| 3 || [[Energia Lignitul Pandurii Târgu Jiu]] || 24 || 17 || 1 || 6 || 676 || 639 || 35 || [[2010–11 EHF Cup]]\n|-\n| 4 || [[CS Ştiinţa Municipal Dedeman Bacău]] || 24 || 15 || 4 || 5 || 746 || 689 || 34 || rowspan=2 | [[EHF Challenge Cup|2010–11 EHF Challenge Cup]]\n|-\n| 5 || [[CSA Steaua București (handball)|CSA Steaua MFA București]] || 24 || 15 || 2 || 7 || 717 || 639 || 32\n|-\n| 6 || [[CS Universitatea Bucovina Suceava]] || 24 || 15 || 0 || 9 || 715 || 650 || 30\n|-\n| 7 || [[HC Odorheiu Secuiesc]] || 24 || 11 || 0 || 13 || 710 || 731 || 22\n|-\n| 8 || [[CS Universitatea Transilvania Cluj-Napoca]] || 24 || 9 || 1 || 14 || 634 || 663 || 19\n|-\n| 9 || [[HC Minaur Baia Mare]] || 24 || 8 || 2 || 14 || 633 || 640 || 18\n|-\n| 10 || [[CS Universitatea Politehnica Timişoara]] || 24 || 6 || 2 || 16 || 608 || 718 || 14\n|-\n| 11 || CSM [[Satu Mare]] || 24 || 6 || 1 || 17 || 702 || 777 || 13\n|-\n| 12 || [[CS Dinamo Bucureşti (men's handball)|CS Dinamo București]] || 24 || 4 || 2 || 18 || 703 || 810 || 10\n|- style="background: #FFCCCC;"\n| 13 || Rom Cri [[Braşov]] '''(R)''' || 24 || 1 || 1 || 22 || 607 || 772 || 3 || Relegation to the 2010–11 Divizia A\n|}\n\n{{Liga Națională (men's handball)}}\n\n{{DEFAULTSORT:Liga Nationala -men- 2009-10}}\n\n[[Category:Liga Națională (men's handball)]]\n[[Category:2009 in Romanian sport]]\n[[Category:2010 in Romanian sport]]\n[[Category:2009–10 domestic handball leagues]]
39388592 <NAME> {{Infobox settlement\n|official_name =<NAME>\n|native_name =<NAME>ادشور\n|settlement_type = village\n|pushpin_map =Iran\n|mapsize =150px\n|coordinates_region = IR\n|subdivision_type = [[List of countries|Country]]\n|subdivision_name = {{flag|Iran}}\n|subdivision_type1 =[[Provinces of Iran|Province]]\n|subdivision_name1 =[[Kerman Province|Kerman]]\n|subdivision_type2 =[[Counties of Iran|County]]\n|subdivision_name2 = [[Rafsanjan County|Rafsanjan]]\n|subdivision_type3 =[[Bakhsh]]\n|subdivision_name3 =[[Central District (Rafsanjan County)|Central]]\n|subdivision_type4 =[[Rural Districts of Iran|Rural District]]\n|subdivision_name4 =[[Azadegan Rural District (Kerman Province)|Azadegan]]\n|leader_title = \n|leader_name = \n|established_title =\n|established_date = \n|area_total_km2 = \n|area_footnotes = \n|population_as_of = 2006\n|population_total =700\n|population_density_km2 =auto\n|timezone = [[Iran Standard Time|IRST]]\n|utc_offset = +3:30\n|timezone_DST = [[Iran Daylight Time|IRDT]]\n|utc_offset_DST = +4:30\n|coordinates_display = %\n|latd=30|latm=30|lats=29|latNS=N\n|longd=55|longm=59|longs=04|longEW=E\n|elevation_m = \n|area_code = \n|website = \n|footnotes =\n}}\n'''Lotfabad-e Shur''' ({{lang-fa|لطف ابادشور}}, also [[Romanize]]d as '''Loţfābād-e Shūr'''; also known as '''Loţfābād''' and '''Lotf Abad Hoomeh''')<ref>{{GEOnet3|-3073218|Lotfabad-e Shur}}</ref> is a village in [[Azadegan Rural District (Kerman Province)|Azadegan Rural District]], in the [[Central District (Rafsanjan County)|Central District]] of [[Rafsanjan County]], [[Kerman Province]], [[Iran]]. At the 2006 census, its population was 700, in 162 families.<ref>{{IranCensus2006|08}}</ref> \n\n== References ==\n{{reflist}}\n\n{{Rafsanjan County}}\n\n\n[[Category:Populated places in Rafsanjan County]]\n\n{{Rafsanjan-geo-stub}}
39386272 Sgùrr na h-Ulaidh {{Infobox mountain\n| name = Sgùrr na h-Ulaidh\n| photo = Sgor_na_h-Ulaidh_-_geograph.org.uk_-_300030.jpg \n| photo_caption = Sgùrr na h-Ulaidh from [[Beinn Fhionnlaidh (Creran)|Beinn Fhionnlaidh]], with [[Bidean nam Bian]] and Stob Coire nam Beith (right) and [[Sgorr na Ciche]] (left)\n| elevation_m = 994\n| elevation_ref =<ref>{{cite web |url=http://www.walkhighlands.co.uk/munros/sgor-na-h-ulaidh|title= walkhighlands Sgor na h-Ulaidh|author=<!--Staff writer(s); no by-line.--> |year=2013 |publisher=walkhighlands.co.uk |accessdate=9 November 2013}}</ref>\n | prominence_m = \n| prominence_ref = \n| parent_peak = [[Bidean nam Bian]]\n| listing = [[Munro]]\n| translation = Peak of the Treasure\n| language = [[Scottish Gaelic]]\n| pronunciation = \n| location = [[Glen Coe]], [[Scotland]]\n| coordinates = \n| grid_ref_UK = NN111518\n| topo = [[Ordnance Survey|OS]] ''Landranger'' 41 and 50\n| easiest_route = [[Hiking|Hike]]\n}}\n\n'''Sgùrr na h-Ulaidh''' (also '''Sgòr na h-Ulaidh''') ("Peak of the Treasure") is a [[mountain]] lying to the south of the village of [[Glencoe, Highland|Glencoe]] in the [[Scottish Highlands]].<ref>The spelling ''Sgùrr na h-Ulaidh'' (without the diacritic) is given in [[Ordnance Survey]] maps. Most other sources use the spelling Sgor na h-Ulaidh.</ref> The mountain cannot be seen from the main [[A82 road (Scotland)|A82]] road as it is hidden behind Aonach Dubh a'Ghlinne.<ref name=ben>{{cite book|last=Bennet|first=Donald|title=The Munros|year=2008|publisher=Scottish Mountaineering Club|page=63|edition=3rd|coauthors=<NAME> (eds)}}</ref>\n\n==Ascent==\nThe usual route of ascent is from [[Glen Coe]], approximately 2 km west of Loch Achtriochtan.<ref name=ben/> A track on the west of Allt na Muidhe is followed and after 1 km the burn is crossed. The east side of the burn is then followed for about 3 km until a turn east is made to climb to the ridge just north of the top of Stob an Fhuarain. This peak is climbed, then the steep, rocky ridge is followed trending south-west to the summit of Sgùrr na h-Ulaidh.<ref name=ben/>\n\nA route that avoids the steep ground on the north side of the mountain can be made from the southern [[Glen Etive]] side.<ref name=ben/>\n\n==References==\n{{reflist}}\n\n{{Scottish Munros section 3}}\n{{coord|56|37|00|N|5|04|00|W|region:GB_type:mountain|display=title}}\n\n{{DEFAULTSORT:Sgurr na h-Ulaidh}}\n[[Category:Munros]]\n[[Category:Mountains and hills of the Central Highlands]]\n[[Category:Mountains and hills of Highland (council area)]]
39380929 R.E.S.O.R.T. {{Infobox album <!-- See Wikipedia:WikiProject_Albums -->\n| Name = R.E.S.O.R.T.\n| Type = studio album\n| Artist = [[T-Square (band)|T-Square]]\n| Cover = T-Square Resort.jpg\n| Cover size = \n| Released = April 1, 1985<ref name=gons>{{cite web|title=R.E.S.O.R.T - T-Square - Gonsiopea|url=http://gonsiopea.com/album/?album_idx=43|publisher=Gonsiopea|accessdate=14 May 2013}}</ref> \n| Recorded = \n| Genre = [[Jazz fusion]]\n| Length = 39:44\n| Label = [[Columbia Records]]<ref name=herb>{{cite web|title=T-Square - Discography - Herb Music|url=http://www.herbmusic.net/artist/artist_discography.php?idx=1098|publisher=Herb Music|accessdate=14 May 2013}}</ref>\n| Director = \n| Producer = \n| Reviews = \n| Chronology = \n| Last album = [[Stars and the Moon]]<br />(1984)\n| This album = '''''R.E.S.O.R.T.'''''<br />(1985)\n| Next album = [[S.P.O.R.T.S.]]<br />(1986)\n| Misc = \n}}\n'''''R.E.S.O.R.T.''''' (stylized as '''''R•E•S•O•R•T''''') is the tenth studio album by Japanese [[Jazz fusion]] band [[T-Square (band)|T-Square]], who was then called ''The Square''. It was released in April of 1985 under [[Columbia Records]].<ref name=herb></ref>\n\n==Track listing==\nSources<ref name=jj>{{cite web|title=JJ's Jazz & Such: [RE PLAY][LOSSLESS] THE SQUARE--R·E·S·O·R·T [1985/2001] REM DSD 2001/12/12|url=http://ibis56.blogspot.com/2012/06/lossless-square-resort-19852001-rem-dsd.html|publisher=JJ's Jazz and Such|accessdate=14 May 2013}}</ref>\n{{Track listing\n| music_credits = yes\n| title1 = Omens of Love\n| length1 = 4:07\n| music1 = [[Hirotaka Izumi]]\n| title2 = Feel Alright\n| length2 = 4:32\n| music2 = [[Masahiro Andoh]]\n| title3 = Chances\n| length3 = 4:06\n| music3 = Masahiro Andoh\n| title4 = Stimulator\n| length4 = 1:23\n| music4 = [[Toyoyuki Tanaka]]\n| title5 = We'll Never Have A Trouble\n| length5 = 5:21\n| music5 = Masahiro Andoh\n| title6 = In the Grid\n| length6 = 4:34\n| music6 = Masahiro Andoh\n| title7 = Merylu\n| length7 = 5:02\n| music7 = Hirotaka Izumi\n| title8 = Prime\n| length8 = 4:19\n| music8 = Masahiro Andoh\n| title9 = Forgotten Saga\n| length9 = 6:20\n| music9 = Hirotaka Izumi\n}}\n\n==Personnel==\nSources<ref name=jj></ref>\n;T-Square\n*[[Hirotaka Izumi]] - [[Keyboard instrument|Keyboards]]\n*[[Masahiro Andoh]] - [[Guitars]]\n*[[Takeshi Itoh]] - [[Alto Saxophone]], [[Lyricon]]\n*[[Tohru Hasebe]] - [[Drum kit|Drums]] and [[Percussion]]\n*[[Toyoyuki Tanaka]] - [[Electric bass|Electric]] and [[Synthesizer bass#Bass_synthesizer|Synthesizer Bass]]\n\n;Additional musicians (on "Feel Alright", "Stimulator" and "In the Grid")\n*[[<NAME> Jr.|<NAME>]] - [[Trombone]], [[Bass Trombone]] \n*<NAME> - [[Trumpet]], [[Flugelhorn]]\n*[[Jerry Hey]] - [[Trumpet]], [[Flugelhorn]]\n*<NAME> - [[Tenor Saxophone]]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Resort}}\n[[Category:1985 albums]]\n[[Category:T-Square (band) albums]]
39382992 Wikipedia:Featured picture candidates/<NAME> \n===[[Wikipedia:Featured picture candidates/<NAME>|<NAME>]]===\n{{FPCnom/VotingEnds|1369291624}}<small>Voting period ends on <b>23 May 2013</b> at <b>06:47:04 (UTC)</b></small>\n[[File:<NAME> cross country London 2012.jpg|thumb|right|260px|'''Original''' – <NAME> and Barny, competing for GER, at fence 26, during the cross-country phase of the Eventing during the 2012 Olympic Games in Greenwich Park, London.]]\n;Reason:<NAME> won gold medals in both the [[2008 Olympics]] as well as in [[2012 Olympics]]. The picture depicts him in action in 2012 Olympics with good clarity and has high EV.\n;Articles in which this image appears:[[Peter Thomsen]], [[Equestrian at the 2012 Summer Olympics]]\n;FP category for this image:[[Wikipedia:Featured pictures/People/Sport]]\n;Creator:User:Sffubs on Commons\n\n* '''Support as nominator''' --[[User:Nikhilb239|BNK]] ([[User talk:Nikhilb239|talk]]) 06:47, 14 May 2013 (UTC) \n* '''Oppose''' It's just really dark. Also the shot should've been more of a three-quarters angle and it's a shame there's a silly looking hedge wall. But you can't see the rider's face at all, sorry. – <font color="#06266f">Kerαu</font><font color="#1240AB">noςco</font><font color="#4671DS">pia</font><font color="#A60000"><sup>◁</sup></font><i><sub><font color="#5E1FFF">[[User:Keraunoscopia|gala]][[User talk:Keraunoscopia|xies]]</font></sub></i> 22:03, 14 May 2013 (UTC)\n* '''Weak Oppose''' Kerαunoςcopia's concerns are mine as well, but they are not as critical to me. That said, it ''is'' really hard to see the face unless at full size.--[[User:Wingtipvortex|<font color="green">'''Wingtipvorte<sup>X</sup>'''</font>]] [[User talk:Wingtipvortex|<font color="green">''PTT''</font>]] [[Special:Contributions/Wingtipvortex|<font color="green">∅</font>]] 02:23, 16 May 2013 (UTC)\n*'''Support''' Very good handling of motion, good detail, balanced exposure and the shadow from the jockey´s helmet to his face is just normal.--[[User:Snaevar|Snaevar]] ([[User talk:Snaevar|talk]]) 19:50, 20 May 2013 (UTC)\n<!-- additional votes go above this line -->\n{{FPCresult|Not Promoted| }} --[[User:Armbrust|Armbrust]] <sup>[[User talk:Armbrust|<font color="#E3A857">The</font> <font color="#008000">Homunculus</font>]]</sup> 07:46, 23 May 2013 (UTC)\n{{-}}\n\n\n\n<noinclude>[[Category:Featured picture nominations]] [[Category:Featured picture nominations/May 2013]]</noinclude>
3938920 Wikipedia:Articles for deletion/Job Turkey <div class="boilerplate metadata vfd" style="background-color: #F3F9FF; margin: 2em 0 0 0; padding: 0 10px 0 10px; border: 1px solid #AAAAAA;">\n:''The following discussion is an archived debate of the proposed deletion of the article below. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's talk page or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page. ''\n<!--\nNote: If you are seeing this page as a result of an attempt to re-nominate an article for deletion, you must manually edit the AfD nomination links in order to create a new discussion page using the name format of [[Wikipedia:Articles for deletion/PAGENAME (2nd nomination)]]. When you create the new discussion page, please provide a link to this old discussion in your nomination. -->\n\nThe result of the debate was '''delete''' --[[User:W.marsh|W.marsh]] 00:45, 8 February 2006 (UTC)\n===[[Job Turkey]]===\nThis website is a hoax. There are no jobs on this site, only fake listings. '''Delete''' [[User:Bombycil|Bombycil]] 23:51, 2 February 2006 (UTC)\n\n'''Delete''' perhaps a candidate for BJAODN, though -- [[User:Aim Here|Aim Here]] 23:52, 2 February 2006 (UTC)\n*'''Delete'''. Bad joke, but not the sort of bad joke worth remembering. Very probable hoax. [[User:Lord Bob|Lord Bob]] 00:41, 3 February 2006 (UTC)\n*'''Delete''' per above. --[[User:Latinus|Latinus]] ([[:el:User talk:Latinus|talk (el:)]]) 16:43, 3 February 2006 (UTC)\n*'''Delete''' It's not helpful or funny, nor is it part of the internet zeitgeist.\n\n:''The above discussion is preserved as an archive of the debate. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's talk page or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page.</div>
39398763 Deuel County Courthouse {{Infobox NRHP\n | name = Deuel County Courthouse\n | nrhp_type = \n | image = Deuel County, Nebraska courthouse from SE 1.JPG\n | caption = \n | location= 718 3rd St., [[Chappell, Nebraska]]\n | lat_degrees = 41\n | lat_minutes = 5\n | lat_seconds = 38\n | lat_direction = N\n | long_degrees = 102\n | long_minutes = 28\n | long_seconds = 17\n | long_direction = W\n | coord_display = inline,title\n | locmapin = Nebraska#USA\n | built = 1915\n | architect = Huddart,<NAME>.\n | architecture = [[Classical Revival architecture|Classical Revival]]\n | added = January 10, 1990\n | area = less than one acre\n | governing_body = Local \n | mpsub = {{NRHP url|id=64500388|title=County Courthouses of Nebraska MPS}}\n | refnum = 89002239<ref name="nris">{{NRISref|version=2010a}}</ref>\n}}\nThe '''Deuel County Courthouse''', located at 718 3rd St. in [[Chappell, Nebraska]], is a 1915 brick [[Classical Revival architecture|Classical Revival]] courthouse designed by noted Denver architect [[<NAME>]]. It was listed on the [[National Register of Historic Places]] in 1990.<ref name=nris/>\n\nIt is a {{convert|60|x|70|ft|m|adj=on}} rectangular building of the "County Citadel" type.<ref name=nrhpdoc>{{cite web|url={{NRHP url|id=89002239}} |title=National Register of Historic Places Registration: Deuel County Courthouse |last=Long |first=<NAME> |date=November 8, 1989 |publisher=National Park Service}} and {{NRHP url|id=89002239|title=accompanying two photos from 1988|photos=y}}</ref>\n\n==References==\n{{reflist}}\n\n== External links ==\n*{{Commons category-inline|Deuel County Courthouse (Nebraska)|Deuel County Courthouse}}\n\n{{National Register of Historic Places}}\n\n[[Category:Courthouses on the National Register of Historic Places in Nebraska]]\n[[Category:Neoclassical architecture in Nebraska]]\n[[Category:Government buildings completed in 1915]]\n[[Category:Buildings and structures in Deuel County, Nebraska]]\n[[Category:County courthouses in Nebraska]]\n[[Category:National Register of Historic Places in Deuel County, Nebraska]]\n\n\n{{Nebraska-NRHP-stub}}
39388746 <NAME> {{Infobox mountain\n| name = <NAME>\n| other_name = \n| photo = File:View_down_into_Devil%27s_Beef_Tub_from_Great_Hill.jpg\n| photo_size = 250px\n| photo_alt = \n| photo_caption = Annanhead Hill above [[Devils Beef Tub]]\n| elevation_m = 478\n| elevation_ref =<ref name=gazeteer>{{citation|url=http://www.scottish-places.info/features/featurefirst19242.html|publisher=[[Gazetteer for Scotland]]|title=Annanhead Hill}}</ref><ref name=trigpointing/>\n| coordinates_ref =<ref name=trigpointing>{{citation|url=http://www.trigpointinguk.com/trigs/trig-details.php?t=852|title=Annanhead Hill|publisher=Trigpointing UK}}</ref>\n| prominence = \n| prominence_m = \n| prominence_ft = \n| prominence_ref = \n| parent_peak = <!-- Foal Burn Head? (from map inspection, needs citation) -->\n| listing = \n| range = [[Moffat Hills]]\n| location = 9 km north of [[Moffat]]\n| map = \n| map_alt = \n| map_caption = \n| map_relief = \n| map_size = \n| label = \n| label_position = \n| lat_d = 55\n| lat_m = 24\n| lat_s = 15\n| lat_NS = N\n| long_d = 3\n| long_m = 29\n| long_s = 19\n| long_EW = W\n| region = \n| grid_ref_UK = NT 05834 13251\n}}\n[[File:Annanhead Hill Trig Point S5678 - geograph.org.uk - 192809.jpg|thumb|Annanhead Hill [[trig point]] (S5678)]]\n'''Annanhead Hill''' is a {{convert|478|m|ft|adj=on}} summit in the [[Moffat Hills]] of Scotland. It lies on the boundary between the [[Scottish Borders]] and [[Dumfries and Galloway]], {{convert|9|km}} north of [[Moffat]], in the [[Southern Uplands]].<ref name=gazeteer/>\n\nAnnanhead is one of four hills encircling the [[Devil's Beef Tub]], the headwaters of [[River Annan]].<ref>{{citation|author=<NAME>|title=The big picture: The Devil’s Beef Tub|url=http://www.scotoutdoors.com/features/devils-beeftub|journal=Scotland Outdoors|date=April 1, 2013}}</ref>\n\nThe hill is crossed by [[Annandale Way]] hiking trail designated in 2009.<ref>{{citation|title=Route description: Moffat - Devils Beef Tub - Moffat|url=http://annandaleway.org/index.php?page=moffat---devils-beef-tub---moffat|work=Annandale Way official website|publisher=Government of Scotland et al.|accessdate=2013-05-14|quote=The Devil's Beef Tub section of this walk ... climb[s] onto Annanhead Hill and a range that rims the upper limits of the Annan catchment. ...}}</ref>\n\n==References==\n{{reflist}}\n\n==External links==\n*{{Commons category inline|Annanhead Hill}}\n*[http://www.summitpost.org/the-moffat-hills/473057 The Moffat Hills] at Summitpost.com\n\n[[Category:Mountains and hills of the Southern Uplands]]\n[[Category:Mountains and hills of Dumfries and Galloway]]\n[[Category:Mountains and hills of the Scottish Borders]]
39377476 Graceway Sports Complex {{Orphan|date=June 2013}}\n\n{{Infobox stadium\n| stadium_name = Graceway Sports Complex\n| nickname = \n| image = \n| fullname = \n| location = [[Providenciales]], [[Turks and Caicos Islands]]\n| coordinates = \n| broke_ground = \n| built =\n| opened = \n| renovated = \n| expanded = \n| closed = \n| demolished = \n| owner = \n| operator = \n| surface = \n| construction_cost = \n| architect =\n| structural engineer =\n| services engineer =\n| general_contractor=\n| project_manager =\n| main_contractors = \n| former_names = \n| tenants = \n| seating_capacity = \n| dimensions =\n}}\n'''Graceway Sports Complex''' is a multi-use sporting facilities in [[Providenciales]], [[Turks and Caicos Islands]]. It is currently used for indoor and outdoor activities including athletics, soccer, basketball, volleyball, tennis, squash, hockey and martial arts. Also [[rugby union]] matches played at Astroturf Football Field.<ref>[http://www.rugby.tc/aboutus.html Turks & Caicos Rugby]</ref> \n\n{{coord|21|46|26.4975|N|72|12|41.9551|W|type:landmark|display=title}}\n\n== References ==\n{{reflist}}\n\n== External links ==\n* [http://www.gracewaysportscentre.com/ Official site]\n* [http://wikimapia.org/#lang=en&lat=21.773569&lon=-72.214272&z=17&m=b Wikimapia]\n\n{{DEFAULTSORT:Graceway Sports Complex}}\n[[Category:Indoor arenas in the Turks and Caicos Islands]]\n[[Category:Football venues in the Turks and Caicos Islands]]\n[[Category:Athletics (track and field) venues in the Turks and Caicos Islands]]\n[[Category:Rugby union stadiums in the Turks and Caicos Islands]]\n[[Category:Buildings and structures in Providenciales]]\n\n\n{{Caribbean-sports-venue-stub}}\n{{TurksCaicos-stub}}
39378211 <NAME> '''<NAME>''' (born 8 April 1980) is a Finnish actress. She was nominated for a [[Jussi Award]] in a category of Best Actress in a Leading Role for her performance in a 2011 film ''Missä kuljimme kerran''. Grabowsky graduated from Theatre Academy Helsinki in 2007.<ref>{{cite web|last=Myllyoja|first=Essi|title=Missä kuljimme kerran -tähti: "Välillä ikävöin takaisin tarjoilijaksi"|url=http://www.menaiset.fi/artikkeli/ihmiset/missa_kuljimme_kerran_tahti_valilla_ikavoin_takaisin_tarjoilijaksi|publisher=Sanoma Magazines Finland Oy|accessdate=13 May 2013}}</ref>\n\n==Selected filmography==\n\n*''Ilonen talo'' (2006)\n*''[[Kotikatu]]'' (2009–2010)\n*''Missä kuljimme kerran'' (2011)\n*''[[Love and Other Troubles|Hulluna Saraan]]'' (2012)\n*''[[8-pallo]]'' (2013)\n\n==References==\n{{reflist}}\n\n==External links==\n*{{IMDb name|1999732}}\n\n{{DEFAULTSORT:Grabowsky, Jessica}}\n[[Category:1980 births]]\n[[Category:Living people]]\n[[Category:People from Siilinjärvi]]\n[[Category:Finnish actresses]]\n[[Category:Finnish film actresses]]\n\n{{Finland-actor-stub}}
39384578 Mettmenstetten railway station {{Infobox station\n|name = Mettmenstetten\n|native_name = \n|image = \n|image_size = 250px\n|image_caption = \n|address = Untere Bahnhofstrasse<br />[[Mettmenstetten]], [[Canton of Zurich|Zurich]]\n|country = Switzerland\n|iso_region = CH-ZH\n|coordinates_display = title\n|latd = 47.244163 |latm = |lats = |latNS = N\n|longd = 8.457595 |longm = |longs = |longEW = E\n|elevation = \n|line = [[Zürich–Affoltern am Albis–Zug railway line|Zürich–Affoltern am Albis–Zug]]\n|owned = [[Swiss Federal Railways]]\n|operator = [[Swiss Federal Railways]]\n|services = {{S-rail|title=Swiss rail network}}\n{{rail line\n| previous = {{Stnlnk|Affoltern am Albis}}\n| next = {{Stnlnk|Knonau}}\n| route = [[Zurich S-Bahn]]<br />{{small|[[S5 (ZVV)|S5]] service}}\n| col = {{Swiss rail color|Zurich S-Bahn}} |lightcol={{Swiss rail color|Zurich S-Bahn|branch=S5}} }}\n|map_type = Switzerland\n|map_caption = Location within Switzerland\n}}\n\n'''Mettmenstetten''' is a [[railway station]] in the [[Switzerland|Swiss]] [[canton of Zurich]], situated in the [[Mettmenstetten|municipality of Mettmenstetten]]. The station is located on the [[Zürich–Affoltern am Albis–Zug railway line|Zurich to Zug via Affoltern am Albis railway line]] and is an intermediate stop on [[Zurich S-Bahn]] line [[S5 (ZVV)|S5]].<ref>{{cite map | publisher = Swiss Confederation | title = map.geo.admin.ch | url = http://map.geo.admin.ch/?selectedNode=node_ch.swisstopo.swissboundaries3d-gemeinde-flaeche.fill1&Y=677445&X=233915&zoom=6&bgLayer=ch.swisstopo.pixelkarte-farbe&layers=ch.swisstopo.swissboundaries3d-gemeinde-flaeche.fill&layers_opacity=1&layers_visibility=true&time_current=latest&lang=en | accessdate = 2013-05-14}}</ref><ref>{{cite web | url = http://www.zvv.ch/opencms/export/sites/default/common-images/content-image-gallery/linien-zonen-pdfs/Liniennetzplan_ganzer_Verbund_2012.pdf | title = S-Bahn trains, buses and boats | publisher = ZVV | accessdate = 2013-05-14}}</ref><ref name=saw12-13>{{cite book | title = Eisenbahnatlas Schweiz | year = 2012 | publisher = Verlag Schweers + Wall GmbH | isbn=978-3-89494-130-7 | pages = 12-13}}</ref>\n\n== References ==\n{{reflist}}\n\n{{DEFAULTSORT:Mettmenstetten}}\n[[Category:Railway stations in the canton of Zürich]]\n[[Category:Swiss Federal Railways stations]]\n\n\n{{switzerland-railstation-stub}}
39379659 Abbasabad, Rafsanjan {{for|other places named Abbasabad in Rafsanjan County}}\n{{Infobox settlement\n|official_name =Abbasabad\n|native_name =عباس اباد\n|settlement_type = village\n|pushpin_map =Iran\n|mapsize =150px\n|coordinates_region = IR\n|subdivision_type = [[List of countries|Country]]\n|subdivision_name = {{flag|Iran}}\n|subdivision_type1 =[[Provinces of Iran|Province]]\n|subdivision_name1 =[[Kerman Province|Kerman]]\n|subdivision_type2 =[[Counties of Iran|County]]\n|subdivision_name2 = [[Rafsanjan County|Rafsanjan]]\n|subdivision_type3 =[[Bakhsh]]\n|subdivision_name3 =[[Nuq District|Nuq]]\n|subdivision_type4 =[[Rural Districts of Iran|Rural District]]\n|subdivision_name4 =[[Bahreman Rural District|Bahreman]]\n|leader_title = \n|leader_name = \n|established_title =\n|established_date = \n|area_total_km2 = \n|area_footnotes = \n|population_as_of = 2006\n|population_total =\n|population_density_km2 =auto\n|timezone = [[Iran Standard Time|IRST]]\n|utc_offset = +3:30\n|timezone_DST = [[Iran Daylight Time|IRDT]]\n|utc_offset_DST = +4:30\n|coordinates_display = %\n|latd=31|latm=03|lats=22|latNS=N\n|longd=55|longm=30|longs=22|longEW=E\n|elevation_m = \n|area_code = \n|website = \n|footnotes =\n}}\n'''Abbasabad''' ({{lang-fa|عباس اباد}}, also [[Romanize]]d as '''‘Abbāsābād''')<ref>{{GEOnet3|-3768795|Abbasabad}}</ref> is a village in [[Bahreman Rural District]], [[Nuq District]], [[Rafsanjan County]], [[Kerman Province]], [[Iran]]. At the 2006 census, its existence was noted, but its population was not reported.<ref>{{IranCensus2006|08}}</ref> \n\n== References ==\n{{reflist}}\n\n{{Rafsanjan County}}\n\n\n[[Category:Populated places in Rafsanjan County]]\n\n{{Rafsanjan-geo-stub}}
39387743 Template:DramaDesk SetDesign 2001–2025 {{Navbox \n| name = DramaDesk SetDesign 2001–2025\n| title = {{#if:{{{list only|}}}||[[Drama Desk Award for Outstanding Set Design]] (2001–2025)}}\n| state = {{{state|autocollapse}}}\n| border = {{#if:{{{list only|}}}|child}}\n| bodyclass = hlist\n| basestyle = background: #D7F1D7;\n| belowstyle = background: transparent; border-top: 1px solid #D7F1D7;\n\n| list1 = \n* [[<NAME>]], play/[[<NAME> (designer)|<NAME>]], musical (2001)\n* [[<NAME>]], play/[[<NAME>]], musical (2002)\n* [[<NAME>]], play/[[Cather<NAME> (designer)|Catherine Martin]], musical (2003)\n* [[<NAME>]], play/[[E<NAME> (designer)|Eugene Lee]], musical (2004)\n* [[<NAME>asto]], play/[[<NAME>an]], musical (2005)\n* [[<NAME>]], play/[[<NAME>]], musical (2006)\n* [[<NAME>]] and [[<NAME>]], play/[[<NAME>]], musical (2007)\n* [[<NAME>]], play/[[Michael Yeargan]], musical (2008)\n* [[<NAME>]], play/[[<NAME>]], musical (2009)\n* [[<NAME>]], [[<NAME>]], and [[<NAME>]] (2010)\n* [[<NAME>]] (2011)\n* [[<NAME>]], [[<NAME>]] and [[<NAME>]] (2012)\n* [[<NAME>]] (2013)\n* <NAME> (2014)\n* [[<NAME>]] (2015)\n\n| below = {{#if:{{{list only|}}}||{{DramaDesk SetDesign footer}}}}\n}}<noinclude>\n{{collapsible option}}\n[[Category:Drama Desk Award for Set Design templates]]\n[[Category:Drama Desk Award for musicals templates|Set Design]]\n[[Category:Drama Desk Award for plays templates|Set Design]]\n</noinclude>
39383543 Template:Tongan Royal Family {| class="infobox" style="background: #faf6ff; border: 1px solid #888888; width: 22em; text-align: left; font-size: 88%"\n|-\n! style="background:#f0eeff; color: #000000; font-size: 1.15em; padding: 0px 0px 4px 0px; text-align:center; vertical-align:top;" | '''[[House of Tupou|Royal Family of Tonga]]'''\n|-\n| style="background: #f0eeff; padding: 0px 0px {{#if:{{{1|}}}|1|6}}px 0px; text-align:center" | [[File:Coat of arms of Tonga.svg|Royal Arms of Tonga|120px]]<br>\n|-\n\n|\n'''[[Tupou VI|HM The King]]'''<br >[[Nanasipauʻu Tukuʻaho|HM The Queen]]\n*[[Tupoutoʻa ʻUlukalala|HRH The Crown Prince]]<br >[[Sinaitakala Fakafanua|HRH The Crown Princess]]\n**[[Taufaʻahau Manumataongo|HRH Prince Taufaʻahau Manumataongo]]\n**HRH Princess Halaevalu Mata'aho\n* [[Princess Lātūfuipeka Tukuʻaho|HRH Princess Lātūfuipeka Tukuʻaho]]\n* [[Prince Ata |HRH Prince Ata]]\n----\n[[Halaevalu Mataʻaho ʻAhomeʻe|HM The Queen Mother]]\n* [[Salote Mafileʻo Pilolevu Tuita|HRH Princess Salote, Princess Royal]]<br >[[Siosaʻia Maʻulupekotofa Tuita|The Hon. Lord Siosa'ia Tuita]]\n<center><div style="clear: both; width: 100%; padding: 0; text-align: left; border: none;" class="NavFrame">\n<div style="background: #f0eeff; text-align: center; border: none" class="NavHead"><small>Extended royal family</small></div>\n<div class="NavContent" style="display:none;">\n** Hon. Sālote Lupepau'u Tuita<br >Hon. 'Epeli Taione\n*** Hon. Phaedra Anaseini\n** Hon. Titilupe Fanetupouvava'u Tuita<br >Hon. Siaosi Kiu Tau-ki-Vailahi Kaho\n*** Hon. Simon Tu'ivakano\n*** Hon. Michaela Tu'ivakano \n*** Hon. Fatafehi Tu'ivakano \n** Hon. Frederica Lupe'Uluiva Tuita<br >Hon. Johnny Filipe\n*** Hon. Latu'alaifotu'aika Fahina\n** Hon. Lupeolo Halaevalu Tuita\n* The Hon. Dowager Lady Ma’atu\n** HSH The Prince Tungi\n** The Hon. Fatafehi Sione Ikamafana\n** The Hon. ‘Etani Ha’amea Tupoulahi \n** The Hon. Salote Maumautaimi Haim \n----\n* HSH Prince Viliami Tu’i Pelehake <br >HSH Princess Fifita Holeva Tuʻihaʻangana\n* HRH Princess Mele Kalaniuvalu-Fotofili\n* HRH Princess Lavinia Ma'afu\n* HRH Princess Sinaitakala Fakafanua \n** Hon. Kinikinilau, 7th Lord Fakafanua\n** Hon. Fakaola Fakafānua\n</div></div>\n|-\n| style="text-align:center;"| {{navbar|Tongan Royal Family|mini=1}} \n|}<noinclude>\n\n[[Category:Asian royal family templates|Tongan]]\n</noinclude>
39397586 Wikipedia:Articles for deletion/Horton Gallery <div class="boilerplate metadata afd vfd xfd-closed" style="background-color: #F3F9FF; margin: 2em 0 0 0; padding: 0 10px 0 10px; border: 1px solid #AAAAAA;">\n:''The following discussion is an archived debate of the proposed deletion of the article below. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's [[Help:Using talk pages|talk page]] or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page.''\n<!--Template:Afd top\n\nNote: If you are seeing this page as a result of an attempt to re-nominate an article for deletion, you must manually edit the AfD nomination links to create a new discussion page using the name format of [[Wikipedia:Articles for deletion/PAGENAME (2nd nomination)]]. When you create the new discussion page, please provide a link to this old discussion in your nomination. -->\n\nThe result was '''delete'''. '''[[User:LFaraone|L]]<font color="darkgreen">[[User talk:LFaraone|Faraone]]</font>''' 00:05, 23 May 2013 (UTC)\n===[[Horton Gallery]]===\n\n:{{la|Horton Gallery}} – (<includeonly>[[Wikipedia:Articles for deletion/Horton Gallery|View AfD]]</includeonly><noinclude>[[Wikipedia:Articles for deletion/Log/2013 May 15#{{anchorencode:Horton Gallery}}|View log]]</noinclude>{{int:dot-separator}} <span class="plainlinks">[http://toolserver.org/~snottywong/cgi-bin/votecounter.cgi?page=Wikipedia:Articles_for_deletion/Horton_Gallery Stats]</span>)\n:({{Find sources|Horton Gallery}})\nNon notable business, only reference is in a non [[WP:RS]] blog. Wikipedia is not a place to make a reputation it is a place that records reputations already made. Notability is not inherited from a list of artists. CSD was declined, hence AfD now. <font color="#880000">[[User:Timtrent|Fiddle]]</font> <font color="#007700">[[User talk:Timtrent|Faddle]]</font> 21:02, 15 May 2013 (UTC)\n*<s>'''Weak delete'''</s> we have New York Times references, but it's just not enough.--[[User:TelevisionMan13|TelevisionMan13]] ([[User talk:TelevisionMan13|talk]]) 22:45, 15 May 2013 (UTC)\n:*This !vote has been struck as coming from a sockpuppet account. See [[Wikipedia:Sockpuppet investigations/Beachsand2004|this SPI]]. - [[User:The Bushranger|The Bushranger]] <sub><font color="maroon">[[User talk:The Bushranger|One ping only]]</font></sub> 17:28, 17 May 2013 (UTC)\n:<small class="delsort-notice">Note: This debate has been included in the [[Wikipedia:WikiProject Deletion sorting/New York|list of New York-related deletion discussions]]. [[User:Gene93k|• Gene93k]] ([[User talk:Gene93k|talk]]) 00:39, 16 May 2013 (UTC)</small>\n:<small class="delsort-notice">Note: This debate has been included in the [[Wikipedia:WikiProject Deletion sorting/Visual arts|list of Visual arts-related deletion discussions]]. [[User:Gene93k|• Gene93k]] ([[User talk:Gene93k|talk]]) 00:39, 16 May 2013 (UTC)</small>\n:<small class="delsort-notice">Note: This debate has been included in the [[Wikipedia:WikiProject Deletion sorting/Business|list of Business-related deletion discussions]]. [[User:Gene93k|• Gene93k]] ([[User talk:Gene93k|talk]]) 00:39, 16 May 2013 (UTC)</small>\n*'''Note''' that references have increased in number, but are. at present, insufficient in quality. the NY Times one is a passing mention only, and the others fail [[WP:RS]]. That something exists is fine, but that does not of itself, make it notable. Some sort of notability must be asserted and verified. 11:11, 16 May 2013 (UTC)<font color="#880000">[[User:Timtrent|Fiddle]]</font> <font color="#007700">[[User talk:Timtrent|Faddle]]</font>\n*'''Delete''' as [[WP:SPAM|promotional]]. There are tons of galleries in New York. No reason to have an article on all of them. '''<font color='red'>[[User:Ignatzmice|Ignatz]]</font>[[Special:Contributions/Ignatzmice|mice]]'''•[[User talk:Ignatzmice|talk]] 13:35, 19 May 2013 (UTC)\n*'''Delete.''' Insufficient coverage to establish notability. [[User:1292simon|1292simon]] ([[User talk:1292simon|talk]]) 12:11, 20 May 2013 (UTC)\n:''The above discussion is preserved as an archive of the debate. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's [[Help:Using talk pages|talk page]] or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page. <!--Template:Afd bottom--></div>
39387994 Akbarabad-e Pain {{for|the village in Kerman Province|Akbarabad-e Pain, Kerman}}\n{{Infobox settlement\n|official_name =Akbarabad-e Pain\n|native_name =اكبرابادپائين\n|settlement_type = village\n|coordinates_region = IR\n|subdivision_type = [[List of countries|Country]]\n|subdivision_name = {{flag|Iran}}\n|subdivision_type1 =[[Provinces of Iran|Province]]\n|subdivision_name1 =[[Mazandaran Province|Mazandaran]]\n|subdivision_type2 =[[Counties of Iran|County]]\n|subdivision_name2 = [[Chalus County|Chalus]]\n|subdivision_type3 =[[Bakhsh]]\n|subdivision_name3 =[[Central District (Chalus County)|Central]]\n|subdivision_type4 =[[Rural Districts of Iran|Rural District]]\n|subdivision_name4 =[[Kelarestaq-e Sharqi Rural District|Kelarestaq-e Sharqi]]\n|leader_title = \n|leader_name = \n|established_title =\n|established_date = \n|area_total_km2 = \n|area_footnotes = \n|population_as_of = 2006\n|population_total =31\n|population_density_km2 =auto\n|timezone = [[Iran Standard Time|IRST]]\n|utc_offset = +3:30\n|timezone_DST = [[Iran Daylight Time|IRDT]]\n|utc_offset_DST = +4:30\n|coordinates_display = %\n|latd=|latm=|lats=|latNS=N\n|longd=|longm=|longs=|longEW=E\n|elevation_m = \n|area_code = \n|website = \n|footnotes =\n}}\n'''Akbarabad-e Pain''' ({{lang-fa|اكبرابادپائين}}, also [[Romanize]]d as '''Akbarābād-e Pā’īn''') is a village in [[Kelarestaq-e Sharqi Rural District]], in the [[Central District (Chalus County)|Central District]] of [[Chalus County]], [[Mazandaran Province]], [[Iran]]. At the 2006 census, its population was 31, in 9 families.<ref>{{IranCensus2006|02}}</ref> \n\n== References ==\n{{reflist}}\n\n{{Chalus County}}\n\n{{coord missing|Iran}}\n\n[[Category:Populated places in Chalus County]]\n\n{{Chalus-geo-stub}}
39381664 White Surinamese '''{{Infobox ethnic group|\n|group= White Surinamese\n|image= \n|caption= \n|poptime= \n|popplace= \n|langs= [[Dutch language|Dutch]], [[Sranan Tongo]], [[Portuguese language|Portuguese]]\n|rels= [[Christianity]]\n|related= [[White Latin American]]\n}}\n\n'''White Surinamese''' or '''European Surinamese''' are [[Demographics of Suriname|Surinamese]] people whose ancestry lies within the continent of [[Europe]].\n\nAs of 2013, people of solely European descent are a small minority in [[Suriname]], accounting for only 1% of the country's population. The largest European ethnic groups in Suriname are the Dutch and the Portuguese.<ref name=cia>{{cite web |url=https://www.cia.gov/library/publications/the-world-factbook/geos/ns.html |title=CIA - The World Factbook -- Suriname |accessdate=2013-05-13 |publisher=CIA | archiveurl= https://www.cia.gov/library/publications/the-world-factbook/geos/ns.html| archivedate= May 7, 2013 <!--DASHBot-->| deadurl= no}}</ref>\n\n==See also==\n* [[Dutch Surinamese]]\n* [[Portuguese Surinamese]]\n\n== References and footnotes ==\n{{Reflist}}\n{{White people}}\n{{Ethnic groups in Suriname}}\n\n[[Category:European Surinamese| ]]\n[[Category:Surinamese people of European descent| ]]
39388718 Sanjeduiyeh, Rafsanjan {{Infobox settlement\n|official_name =Sanjeduiyeh\n|native_name =سنجدوييه\n|settlement_type = village\n|pushpin_map =Iran\n|mapsize =150px\n|coordinates_region = IR\n|subdivision_type = [[List of countries|Country]]\n|subdivision_name = {{flag|Iran}}\n|subdivision_type1 =[[Provinces of Iran|Province]]\n|subdivision_name1 =[[Kerman Province|Kerman]]\n|subdivision_type2 =[[Counties of Iran|County]]\n|subdivision_name2 = [[Rafsanjan County|Rafsanjan]]\n|subdivision_type3 =[[Bakhsh]]\n|subdivision_name3 =[[Central District (Rafsanjan County)|Central]]\n|subdivision_type4 =[[Rural Districts of Iran|Rural District]]\n|subdivision_name4 =[[Darreh Doran Rural District|Darreh Doran]]\n|leader_title = \n|leader_name = \n|established_title =\n|established_date = \n|area_total_km2 = \n|area_footnotes = \n|population_as_of = 2006\n|population_total =\n|population_density_km2 =auto\n|timezone = [[Iran Standard Time|IRST]]\n|utc_offset = +3:30\n|timezone_DST = [[Iran Daylight Time|IRDT]]\n|utc_offset_DST = +4:30\n|coordinates_display = %\n|latd=30|latm=38|lats=44|latNS=N\n|longd=56|longm=10|longs=11|longEW=E\n|elevation_m = \n|area_code = \n|website = \n|footnotes =\n}}\n'''Sanjeduiyeh''' ({{lang-fa|سنجدوييه}}, also [[Romanize]]d as '''Sanjedū’īyeh''')<ref>{{GEOnet3|-3777414|Sanjeduiyeh}}</ref> is a village in [[Darreh Doran Rural District]], in the [[Central District (Rafsanjan County)|Central District]] of [[Rafsanjan County]], [[Kerman Province]], [[Iran]]. At the 2006 census, its existence was noted, but its population was not reported.<ref>{{IranCensus2006|08}}</ref> \n\n== References ==\n{{reflist}}\n\n{{Rafsanjan County}}\n\n\n[[Category:Populated places in Rafsanjan County]]\n\n{{Rafsanjan-geo-stub}}
3939286 Associate of Science in Nursing {{globalize|date=August 2015}}\n{{Refimprove|date=November 2013}}\nAn '''Associate of Science in Nursing''' ('''ASN''') is a [[tertiary education]] [[nursing]] [[Academic degree|degree]] which typically take 2–3 years to complete.<ref>{{cite web|title=How to Become a Registered Nurse|url=http://www.bls.gov/ooh/healthcare/registered-nurses.htm#tab-4|publisher=Occupational Outlook Handbook|accessdate=5 February 2013}}</ref> In the [[United States]], this type of degree is usually awarded by [[community college]]s or similar [[nursing school]]s. Some four year colleges also offer this degree. Students awarded an Associate of Science in Nursing are qualified to sit for the [[NCLEX-RN]] and apply for [[licensure]] as a [[Registered Nurse]].\n\nStudents enrolled in an Associate of Science in Nursing program would take courses in nursing, anatomy, physiology, microbiology, chemistry, nutrition, psychology and other social and behavioral sciences.<ref>{{cite web|title=How to Become a Registered Nurse|url=http://www.bls.gov/ooh/healthcare/registered-nurses.htm#tab-4|publisher=Occupational Outlook Handbook|accessdate=5 February 2013}}</ref> The curriculum will also require supervised clinical experience.<ref>{{cite web|title=Nursing Degrees|url=http://www.guidetohealthcareschools.com/degrees/nursing|publisher=Healthcare Schools}}</ref>\n\nSome hospital-based nursing schools that granted [[Diploma in Nursing|diplomas]] altered their curriculum to offer associate degrees.\n\n\n==Similar degrees==\n*'''Associate Degree in Nursing''' ('''ADN''')\n*'''Associate of Applied Science in Nursing''' ('''AAS''')\n*'''Associate of Nursing''' ('''AN''') \n*'''Associate of Science in Nursing''' ('''ASN''')\n\n==See also==\n{{Portal|Nursing}}\n* [[Diploma in Nursing]]\n* [[Bachelor of Science in Nursing]]\n* [[Master of Science in Nursing]]\n* [[Doctor of Nursing Science]]\n* [[Nurse education]]\n* [[Nursing school]]\n\n==References==\n{{Reflist}}\n\n\n{{Nursing}}\n\n[[Category:Associate degrees|Science in Nursing]]\n[[Category:Nursing degrees]]\n[[Category:Academic degrees in healthcare|Nursing]]
39395949 <NAME> (animal nutritionist) {{other people|<NAME>}}\n{{Use dmy dates|date=February 2015}}\n{{Infobox person\n| name = <NAME>\n| image = <!-- just the filename, without the File: or Image: prefix or enclosing [[brackets]] -->\n| alt =\n| caption =\n| birth_name =\n| birth_date = 19 June 1919\n| birth_place = [[Sprowston]]\n| death_date = 18 April 1991 (aged 71)\n| death_place =\n| nationality = British\n| other_names =\n| occupation = Agriculturalist, biologist, researcher\n| years_active = 1948–1991\n| known_for = directing the [[Rowett Research Institute]]\n| notable_works =\n}}\n'''<NAME>''' [[Fellow of the Royal Society|FRS]] [[PRSE]] (19 June 1919 – 18 April 1991) was an English animal nutritionist.<ref name="rs">Biographical Memoirs of Fellows of the Royal Society 39: 36. {{DOI|10.1098/rsbm.1994.0003}}</ref><ref><NAME>, ‘Blaxter, <NAME> (1919–1991)’, Oxford Dictionary of National Biography, Oxford University Press, 2004; online edn, Sept 2012 [http://www.oxforddnb.com/view/article/49583, accessed 15 May 2013]</ref>\n\n== Biography ==\n\n=== Early life ===\nBlaxter was born on 19 June 1919 in [[Sprowston]], [[England]] and grew up in [[Norfolk]].<ref name="rs" /> His father made [[handicraft]]s and his mother came from a family of farm workers.<ref name="rs" /> Blaxter studied at the [[City of Norwich School]] until 1936. He was bored in school and received poor grades.<ref name="rs" /> As a teenager, Blaxter spent his spare time at the Norfolk Agricultural Station, a short distance from the family home.<ref name="jstor">{{Cite journal | title = <NAME> | doi = 10.2307/770168| jstor = 770168| pages=36–58| doi-broken-date = 2016-09-29}}</ref> Soon after, he enrolled in day classes in agriculture at the Norfolk County Council, winning the class prize for the highest mark.<ref name="jstor" /> He also worked as a farmhand on a farm in [[Hoveton]].<ref name="jstor" />\n\nBlaxter studied agriculture, biology and botany at the [[University of Reading]] in 1936, graduating in 1939.<ref name="rs" /><ref name="jstor" />\n\n=== Nutrition research ===\n\nAfter graduating, Blaxter worked at the National Institute for Research in Dairying (NIRD), located in [[Shinfield]].<ref name="jstor" /> With the onset of [[World War II]], Blaxter was conscripted and served with the 10th Field Regiment of the [[Royal Artillery]] from spring 1940 to the end of 1941, when he returned to NIRD.<ref name="jstor" /> At this time, he began to write his [[Ph.D]] thesis, entitled ''The maintenance of the winter milk supply in wartime''; he completed the thesis in 1944.<ref name="jstor" /> Shortly thereafter, he requested to be seconded to the biochemistry department of the Ministry of Agriculture in [[Weybridge]], where he conducted blood analysis and researched lead toxicity in [[ruminant]]s.<ref name="jstor" /> In 1946, Blaxter moved to Illinois to work with animal nutritionist <NAME> at the [[University of Illinois]].<ref name="jstor" />\n\n=== Work as an independent scientist ===\n\nIn 1947, after returning to England, Blaxter applied for the headship of the Nutrition Department at the Hannah Dairy Research Institute in [[Ayr, Scotland]]<ref name="rs" /> and received the position in 1948.<ref name="jstor" /> During his tenure at the Hannah Dairy Research Institute, Blaxter wrote over 200 papers,<ref name="jstor" /> focusing primarily on the issues of energy metabolism and feed usage by [[ruminant]]s.<ref name="jstor" /> Blaxter also investigated nutritional diseases and magnesium deficiency in calves, the effect of temperature and other environmental effects on sheep, and ruminant digestion and feed intake.<ref name="jstor" />\n\nIn 1965, Blaxter was appointed director of the [[Rowett Research Institute]] in [[Aberdeen, Scotland]].<ref name="guardian" /><ref name="wolf">{{cite web |url=http://www.wolffund.org.il/index.php?dir=site&page=winners&cs=269 |title=Sir Kenneth Blaxter Winner of Wolf Prize in Agriculture – 1979 |last1= |first1= |last2= |first2= |date=2015 |website=[[Wolf Foundation]] |publisher= |access-date=14 February 2015}}</ref> There, Blaxter and his team of researchers studied topics of importance to the Scottish farmer,<ref name="jstor" /> including deer farming, llamas,<ref name="glasgow">{{cite web |url=https://news.google.com/newspapers?nid=2507&dat=19880615&id=6TNAAAAAIBAJ&sjid=T1kMAAAAIBAJ&pg=5530,3964864 |title=Institute Marks 75 Years of Research |last1=Smith |first1=Graeme |last2= |first2= |date=15 June 1988 |website=[[Google News]] |publisher=[[The Glasgow Herald]] |access-date=14 February 2015}}</ref> human nutrition,<ref name="aberdeen" /> feed evaluation, environmental stress and animal calorimetry.<ref name="jstor" /> He also took an interest in agriculture and worldwide food policy, culminating in the publication of a book, ''Food, People and Resources'', in 1986.<ref name="jstor" />\n\n=== Retirement ===\n\nBlaxter retired from the Rowett Research Institute in 1982.<ref name="glasgow" /> From 1985 to 1991, Blaxter was a visiting professor in the [[University of Newcastle upon Tyne]]'s Department of Agricultural Biochemistry and Nutrition. He also chaired a committee of the federal Department of the Environment and the Cabinet Committee on Individual Merit Promotion, a body that recognized and awarded candidates from various scientific fields.<ref name="jstor" /> He died on 18 April 1991 of a brain tumour.<ref name="rs" />\n\n== Honours and awards ==\n\nBlaxter was named a [[Royal Society#Fellows|Fellow of the Royal Society]] in 1967<ref name="aberdeen">{{cite web |url=http://www.abdn.ac.uk/rowett-centenary/history/directors.php |title=Directors |last1= |first1= |last2= |first2= |date=2015 |website=[[University of Aberdeen]] |publisher= |access-date=14 February 2015}}</ref> and was [[Orders, decorations, and medals of the United Kingdom#Knighthood|knighted]] in 1977.<ref name="guardian" /> From 1972 to 1975, he served as vice-president of the [[Royal Society of Edinburgh]],<ref>{{cite web |url=http://www.royalsoced.org.uk/cms/files/fellows/biographical_index/fells_indexp1.pdf |title=Former Fellows of The Royal Society of Edinburgh 1783–2002 |date=July 2006 |website=[[Royal Society of Edinburgh]] |access-date=May 30, 2015}}</ref> and acted as its president from 1979 to 1982.<ref name="jstor" /> In 1979, he received the [[Wolf Prize in Agriculture]] for his research into the nutritional requirements of [[ruminant]]s.<ref name="wolf" /> In 1992, he was posthumously awarded the Rank Prize in Nutrition for his lifetime contributions to nutrition science.<ref>{{cite web |url=http://www.rankprize.org/index.php/prizes/nutrition |title=Prizes awarded by the Human and Animal Nutrition and Crop Husbandry Fund |last1= |first1= |last2= |first2= |date=c. 2012 |website=The Rank Prize Funds |publisher= |access-date=15 February 2015}}</ref>\n\nBlaxter was also the recipient of [[honorary doctorate]]s from [[Queen's University Belfast|Queen's University in Belfast]], the Agricultural University in [[Norway]], the [[University of Leeds]], the [[University of Aberdeen]] and the [[Newcastle University|University of Newcastle]].<ref name="jstor" />\n\n== Personal life ==\n\nBlaxter married sociologist Mildred Hall in 1957;<ref name="guardian">{{cite web |url=http://www.theguardian.com/education/2010/sep/21/mildred-blaxter-obituary-sociologist |title=Mildred Blaxter obituary |last1=Popay |first1=Jennie |last2= |first2= |date=21 September 2010 |website=[[The Guardian]] |publisher= |access-date=14 February 2015}}</ref> they had three children together.<ref name="guardian" /> Blaxter's cousin was [[<NAME>yon|<NAME>yon]], the well-known British [[geneticist]].<ref>{{cite journal |last=Gitschier |first=Jane |last2= |first2= |date=22 January 2010 |title=The Gift of Observation: An Interview with <NAME> |url=http://journals.plos.org/ploscollections/article?id=10.1371/journal.pgen.1000813 |journal=[[PLOS Genetics]] |publisher= |volume=6 |issue=1 |pages= e1000813|doi=10.1371/journal.pgen.1000813 |access-date=15 February 2015 |pmid=20107603 |pmc=2809768}}</ref> Blaxter was also an avid amateur painter.<ref name="jstor" />\n\n== Legacy ==\n\nBlaxter was influential in the fields of animal and human nutrition and [[animal husbandry]].<ref name="jstor" /> In Blaxter's memory, the [[British Society of Animal Science]] grants an annual scholarship, entitled the Kenneth Blaxter Award, to a deserving member of the Society in order to pursue short-term research in the annual sciences.<ref>{{cite web |url=http://www.bsas.org.uk/about-bsas/funds-awards-jobs/kenneth-blaxter-award/ |title=Kenneth Blaxter Award |last1= |first1= |last2= |first2= |date=2015 |website=[[British Society of Animal Science]] |publisher= |access-date=15 February 2015}}</ref>\n\n== Bibliography ==\n\n* ''The maintenance of the winter milk supply in wartime'', [[Ph.D]] thesis (1944)\n* ''Food, People and Resources'' (1986)<ref name="jstor" />\n* ''Energy Metabolism in Animals and Man'' (1988)<ref name="jstor" />\n* ''The Post-war Revolution in Food Production'' (1989)<ref name="jstor" />\n\n== References ==\n{{Reflist}}\n\n{{Wolf Prize in Agriculture}}\n\n{{Authority control}}\n\n{{DEFAULTSORT:Blaxter, Kenneth}}\n[[Category:1919 births]]\n[[Category:1991 deaths]]\n[[Category:Fellows of the Royal Society]]\n[[Category:British nutritionists]]\n[[Category:Animal health in the United Kingdom]]\n[[Category:Wolf Prize in Agriculture laureates]]\n[[Category:People from Broadland (district)]]\n[[Category:Alumni of the University of Reading]]
39383034 <NAME> {{Infobox cyclist\n| name = <NAME>\n| image = Janier Acevedo 2014.jpg\n| caption = Acevedo at the 2014 [[Tour de San Luis]]\n| fullname = <NAME>\n| nickname =\n| birth_date = {{birth date and age|df=yes|1985|12|6}}\n| birth_place = [[Caramanta]], [[Antioquia department|Antioquia]], [[Colombia]]\n| height = {{height|m=1.75|precision=0}}\n| weight = {{convert|63|kg|lb|abbr=on}}\n| currentteam = {{ct|GRS}}\n| discipline = Road\n| role = Rider\n| ridertype = Climber\n| amateuryears1 =\n| amateurteam1 =\n| proyears1 = 2011–2012\n| proteam1 = {{allow wrap|[[Aguardiente Antioqueño-Lotería de Medellín]]}}\n| proyears2 = 2013\n| proteam2 = {{ct|JSH|2013}}\n| proyears3 = 2014–2015\n| proteam3 = {{ct|GRS|2014}}\n| proyears4 = 2016–\n| proteam4 = {{ct|JSH|2016}}\n| manageyears1 =\n| manageteam1 =\n| majorwins =\n| updated = 24 January 2014\n}}\n{{spanish name|Acevedo|Calle}}\n'''<NAME>''' (born 6 December 1985) is a [[Colombia]]n professional [[road racing cyclist]] who rides for [[UCI Continental]] {{ct| JSH}}.<ref name="profile">{{cite news|url=http://www.slipstreamsports.com/riders/janier-acevedo/|title=Profile of Janier Acevedo|date=January 1, 2014|accessdate=January 27, 2014|work={{ct|GRM}}|publisher=Slipstream Sports LLC|location=[[Boulder, Colorado|Boulder]], [[Colorado]]}}</ref><ref name="garmin">{{cite news|url=http://velonews.competitor.com/2013/09/news/garmin-set-for-dramatic-overhaul-in-2014_303875|author=<NAME>|work=[[VeloNews]]|publisher=[[Competitor Group, Inc.]]|location=[[San Diego]], [[California]]|date=24 September 2013|accessdate=6 November 2013|title=Garmin set for dramatic overhaul in 2014}}</ref><ref name="jamis">{{cite news|url= http://www.cyclingnews.com/news/acevedo-leaves-cannondale-garmin-returns-to-jamis-in-2016/ |author=<NAME>|work=[[Cycling News]]|date=29 October 2015|accessdate=24 January 2016|title= Acevedo leaves Cannondale-Garmin, returns to Jamis in 2016}}</ref>\n==Career==\n\n===2013 season===\nWhile riding for {{ct|JSH|2013}} in 2013, he won a mountaintop finish on [[2013 Tour of California#Stage 2|Stage 2]] of the [[2013 Tour of California|Tour of California]], twelve seconds ahead of eventual overall winner, [[Tejay van Garderen]] of {{ct|BMC}}.<ref>{{cite news|url=http://www.cyclingnews.com/races/tour-of-california-2013/stage-2/results|title=Acevedo powers to Palm Springs victory|work=[[Cyclingnews.com]]|publisher=[[Future plc]]|location=[[San Diego]], [[California]]|date=14 May 2013|accessdate=14 May 2013|author=<NAME>lo}}</ref> He subsequently finished third overall in the Tour, and briefly wore the leader's jersey before <NAME> claimed it.<ref>{{cite news|url=http://velonews.competitor.com/2013/05/news/road/results-2013-amgen-tour-of-california-stage-8_287714|title=Results: 2013 Amgen Tour of California, stage 8|work=[[VeloNews]]|publisher=[[Competitor Group, Inc.]]|location=[[San Diego]], [[California]]|date=19 May 2013|accessdate=19 May 2013}}</ref>\n\nIn September 2013, it was announced that Acevedo would move to the {{ct|OPQ|2014}} squad for the 2014 season.<ref>{{cite news|url=http://www.omegapharma-quickstep.com/en/news/show/opqs-signs-wout-poels-and-janier-acevedo/1404|title=OPQS Signs Wout Poels and Janier Acevedo|work={{ct|OPQ|2013}}|publisher=Decolef|location=[[Luxembourg (city)|Luxembourg]], [[Luxembourg]]|date=1 September 2013|accessdate=7 September 2013}}</ref><ref>{{cite news|url=http://www.cyclingnews.com/news/report-acevedo-to-garmin|title=Report: Acevedo to Garmin|work=[[Cyclingnews.com]]|publisher=[[Future plc]]|location=[[Bath, Somerset|Bath]], [[England]]|date=2 October 2013|accessdate=3 October 2013}}</ref> However, a month later, Acevedo was said to have broken a "verbal agreement" with {{ct|OPQ|2014|nolink=yes}}, with the intention to join {{ct|GRS|2014}} instead.<ref name="garmin"/><ref>{{cite news|url=http://velonews.competitor.com/2013/10/news/vaughters-confirms-acevedos-signing-with-garmin_302197|title=Vaughters confirms Acevedo's signing with Garmin|work=[[VeloNews]]|publisher=[[Competitor Group, Inc.]]|location=[[San Diego]], [[California]]|date=2 October 2013|accessdate=3 October 2013|author=<NAME>}}</ref>\n\n==Major results==\n'''Sources:'''<ref name="profile"/><ref>{{cite web|url=http://www.jamishagensberman.com/janier-alexis-acevedo-calle-detail/|title=Janier Acevedo at Cycling Archives|date=|accessdate=3 October 2013|work=Cycling Archives|publisher=|location=}}</ref><ref>{{cite web|url=http://www.cyclingbase.com/Janier-Alexis-Acevedo-Calle.html|title=Janier Acevedo at Cycling Base|date=|accessdate=3 October 2013|work=Cycling Base|publisher=|location=}}</ref>\n{{colbegin|2}}\n;2009\n:1st Overall, [[File:Jersey yellow.svg|20px]] [[Vuelta Ciclista a Costa Rica]]\n::1st Stages 8 & 10\n;2010\n:1st Stage 6, [[Vuelta a Guatemala]]\n;2011\n:1st Stage 4, [[2011 Tour of Utah|Tour of Utah]]\n:8th, [[Pan American Road and Track Championships#Road race|Pan American Road Race Championships]]\n;2012\n:6th Overall, [[Vuelta Mexico Telmex|Vuelta Mexico]]\n;2013\n:1st, [[2012–13 UCI America Tour|UCI America Tour]]\n:3rd Overall, [[2013 Tour of Utah|Tour of Utah]]\n:3rd Overall, [[2013 Tour of California|Tour of California]]\n::1st Stage 2\n:4th Overall, [[2013 USA Pro Cycling Challenge|USA Pro Cycling Challenge]]\n::1st Stage 4\n:5th Overall, [[Tour of the Gila]]\n::1st Stage 1\n:8th Overall, [[2013 Tour de San Luis|Tour de San Luis]]\n;2014\n:9th Overall, [[2014 Tour of California|Tour of California]]\n:9th Overall, [[2014 Tour de Suisse|Tour de Suisse]]\n;2015\n:4th [[GP Miguel Indurain]]\n;2016\n:3rd Overall, [[Joe Martin Stage Race]]\n::1st Stage 1 \n:8th Overall [[2016 Tour de San Luis|Tour de San Luis]]\n\n{{colend}}\n\n==References==\n{{reflist}}\n\n==External links==\n*{{cycling archives|32558}}\n*[http://www.cyclingbase.com/Janier-Alexis-Acevedo-Calle.html Janier Acevedo: Cycling Base]\n*[http://www.cqranking.com/men/asp/gen/rider.asp?riderid=16162 <NAME>vedo: Cycling Quotient]\n*[http://www.slipstreamsports.com/riders/janier-acevedo/ Janier Acevedo: Garmin-Sharp]\n{{commons}}\n\n{{DEFAULTSORT:Acevedo, Janier}}\n[[Category:1985 births]]\n[[Category:Colombian male cyclists]]\n[[Category:Living people]]\n[[Category:People from Antioquia Department]]\n[[Category:Tour de France cyclists]]\n[[Category:Giro d'Italia cyclists]]\n{{Colombia-cycling-bio-stub}}
39382201 Evenin' Blues {{Infobox album <!-- See Wikipedia:WikiProject_Albums -->\n| Name = Evenin' Blues\n| Type = Studio\n| Artist = [[<NAME>]]\n| Cover = Evenin' Blues.jpg\n| Released = 1963\n| Recorded = August 15, 1963<br><small>Los Angeles, California\n| Genre = [[Blues]]\n| Length = 39:25\n| Label = [[Prestige Records|Prestige]]<br><small>PRLP 7300 \n| Producer = [[<NAME> (musician)|David Axelrod]]\n| Chronology = [[<NAME>]]\n| Last album = ''[[Baby, Baby, Baby]]''<br>(1963)\n| This album = '''Evenin' Blues'''<br>(1963)\n| Next album = ''[[Blues Around the Clock]]''<br>(1963)\n}}\n\n'''''Evenin' Blues''''' is an album by blues vocalist [[Jimmy Witherspoon]], which was recorded in 1963 and released on the [[Prestige Records|Prestige]] label.<ref>[http://www.jazzdisco.org/prestige-records/catalog-7200-series/#prlp-7300 Prestige Records discography] accessed May 14, 2013</ref>\n\n==Reception==\n{{Album ratings\n| rev1 = [[Allmusic]]\n| rev1Score = {{rating|4|5}}<ref name="Allmusic"/> \n}}\n[[Allmusic]] awarded the album 4 stars calling it "A good, relaxed (but not laid-back) session, and one of his bluesier ones".<ref name="Allmusic"><NAME>. [http://www.allmusic.com/album/evenin-blues-mw0000275201 Allmusic listing] accessed May 14, 2013</ref>\n\n== Track listing ==\n''All compositions by <NAME> except as indicated''\n# "Money's Gettin' Cheaper" - 2:49 \n# "Grab Me a Freight" (Larraine Walton) - 3:45 \n# "[[Don't Let Go (Jesse Stone song)|Don't Let Go]]" ([[<NAME>]]) - 2:49 \n# "I've Been Treated Wrong" ([[<NAME>|<NAME>]]) - 3:27 \n# "Evenin'" (Royce Swain) - 2:42 \n# "Cane River" - 2:33 \n# "Baby, How Long" ([[Brownie McGhee]]) - 2:48 \n# "[[Good Rocking Tonight|Good Rockin' Man]]" ([[<NAME> (blues musician)|Roy Brown]]) - 2:43 \n# "[[Kansas City (Leiber and Stoller song)|Kansas City]]" ([[<NAME> and Mike Stoller|Jerry Leiber, Mike Stoller]]) - 3:05\n# "Drinking Beer" - 2:15 \n# "Don't Let Go" [alternate take] (Stone) - 2:41 <small>Bonus track on CD reissue</small> \n# "I've Been Treated Wrong" [alternate take] (Brown) - 3:18 <small>Bonus track on CD reissue</small> \n# "Evenin'" [alternate take] (Swain) - 2:42 <small>Bonus track on CD reissue</small> \n# "Cane River" [alternate take] - 2:31 <small>Bonus track on CD reissue</small> \n\n\n== Personnel ==\n*[[<NAME>]] - [[vocals]]\n*<NAME> - [[tenor saxophone]], [[alto saxophone]], [[flute]]\n*<NAME> - [[piano]], [[electronic organ|organ]]\n*[[T-Bone Walker]] - [[guitar]]\n*<NAME> - [[double bass|bass]]\n*<NAME> - [[drum kit|drums]]\n\n== References ==\n{{reflist}}\n\n[[Category:Jimmy Witherspoon albums]]\n[[Category:1963 albums]]\n[[Category:Prestige Records albums]]
39394346 Karumadikkuttan {{For|Malayalam film named Karumadikkuttan|Karumadikkuttan (Malayalam Film)}}\n[[File:Buddha statue in Kerala.jpg|thumb|Karumadikkuttan]]\n\n'''Karumadikkuttan''' ({{lang-ml|കരുമാടിക്കുട്ടൻ}}) is the endearing name of a [[Buddha]] statue found in [[Karumady]] near [[Alappuzha]].<ref name=tourism>{{cite web|title=Karumadi Kuttan|url=https://www.keralatourism.org/destination/karumadi-kuttan-alappuzha/461|publisher=Department of Tourism, Government of Kerala|accessdate=2 October 2015}}</ref> The name literally means ''boy from Karumady''. This 3 feet tall, black granite statue,<ref>{{cite news|title=Site of ancient Buddha statue gets a facelift|url=http://www.thehindu.com/news/national/kerala/site-of-ancient-buddha-statue-gets-a-facelift/article6804261.ece|accessdate=2 October 2015|publisher=The Hindu|date=20 January 2015}}</ref> believed to be old as 9th to 14th century, was abandoned for centuries in a nearby stream named "Karumady thodu". Later in 1930s, Sir [[<NAME> (engineer)|<NAME>]], a colonial British engineer found the statue,<ref name=renovation>{{cite news|author1=<NAME>|title=Renovation of Lord Buddha’s Statue at Karumadi Going on|url=http://www.newindianexpress.com/states/kerala/Renovation-of-Lord-Buddha%E2%80%99s-Statue-at-Karumadi-Going-on/2014/11/03/article2505252.ece|accessdate=2 October 2015|publisher=The New Indian Express|date=3 November 2014}}</ref> and did appropriate actions to protect it. Currently the statue is under the protection of [[Kerala]] state government. Left side of the statue is missing. It is believed that it was destroyed by an elephant.\n\n[[Dalai Lama]] has visited Karumadi in 1965.<ref name=renovation />\n[[File:കരുമാടിക്കുട്ടൻ.jpg|left|thumb|Karumadikkuttan stupa]]\n\n==References==\n{{Reflist}}\n{{commons category|Karumadikkuttan}}\n\n[[Category:Buddha statues]]\n[[Category:History of Kerala]]
39388922 Raisabad, Khenaman {{Infobox settlement\n|official_name =Raisabad\n|native_name =رييس اباد\n|settlement_type = village\n|pushpin_map =Iran\n|mapsize =150px\n|coordinates_region = IR\n|subdivision_type = [[List of countries|Country]]\n|subdivision_name = {{flag|Iran}}\n|subdivision_type1 =[[Provinces of Iran|Province]]\n|subdivision_name1 =[[Kerman Province|Kerman]]\n|subdivision_type2 =[[Counties of Iran|County]]\n|subdivision_name2 = [[Rafsanjan County|Rafsanjan]]\n|subdivision_type3 =[[Bakhsh]]\n|subdivision_name3 =[[Central District (Rafsanjan County)|Central]]\n|subdivision_type4 =[[Rural Districts of Iran|Rural District]]\n|subdivision_name4 =[[Khenaman Rural District|Khenaman]]\n|leader_title = \n|leader_name = \n|established_title =\n|established_date = \n|area_total_km2 = \n|area_footnotes = \n|population_as_of = 2006\n|population_total =400\n|population_density_km2 =auto\n|timezone = [[Iran Standard Time|IRST]]\n|utc_offset = +3:30\n|timezone_DST = [[Iran Daylight Time|IRDT]]\n|utc_offset_DST = +4:30\n|coordinates_display = %\n|latd=30|latm=27|lats=33|latNS=N\n|longd=56|longm=28|longs=03|longEW=E\n|elevation_m = \n|area_code = \n|website = \n|footnotes =\n}}\n'''Raisabad''' ({{lang-fa|رييس اباد}}, also [[Romanize]]d as '''Ra’īsābād''')<ref>{{GEOnet3|10512974|Raisabad}}</ref> is a village in [[Khenaman Rural District]], in the [[Central District (Rafsanjan County)|Central District]] of [[Rafsanjan County]], [[Kerman Province]], [[Iran]]. At the 2006 census, its population was 400, in 107 families.<ref>{{IranCensus2006|08}}</ref> \n\n== References ==\n{{reflist}}\n\n{{Rafsanjan County}}\n\n\n[[Category:Populated places in Rafsanjan County]]\n\n{{Rafsanjan-geo-stub}}
39401656 Indonesia Commodity and Derivatives Exchange {{unreferenced|date=May 2013}}\n'''Indonesia Commodity and Derivatives Exchange (ICDX)''' ({{lang-id|Bursa Komoditi dan Derivatif Indonesia}}) is the commodity and derivatives based exchange in Indonesia.\n\n==Background==\nIndonesia Commodity and Derivatives Exchange (ICDX), also known as PT. Bursa Komoditi dan Derivatif Indonesia (BKDI) is the Internationally known commodity and derivatives based exchange in Indonesia.\n\nIndonesia is the largest producer in the world for many prime commodity products in the soft agricultural, metal and energy sectors.\n\n==Membership==\nICDX is an Exchange supported by its members who are brokers and traders approved by BAPPEBTI. The member of ICDX facilitates services clients’ transactions overing ICDX products. Trading in ICDX will be settled, guarantee and cleared by [[Indonesia Clearing House]] (ICH).\n\nICDX membership consists of traders, brokerage firms, and foreign traders (remote members). All members have an option as the Exchange clearing members.\n\n==ICDX MEMBER==\n\n===Trader Member===\n* PT. APERDI\n* PT. BAKRIESUMATERA PLANTATION TBK\n* PT. BUDINABATI PERKASA BW PLANTATIONTBK\n* PT. CAPITALMEGAH MANDIRI\n* PT. DUTA PALMANUSANTARA\n* PT. GOLDENTROPICAL\n* PT. HALIMMITRADANA INTERNATIONAL\n* PT. INTIKENCANA MAS\n* PT. INTERMULTIINVEST FORTUNA\n* PT. IVO MASTUNGGAL\n* PT. JASA MULIAFOREXINDO\n* PT. KARYA DUTAPERSADA\n* PT. KREASI ERABARU\n* PT. LOGAMMULIA PRATAMA\n* PT. MUSIM MAS\n* PT. PALM MASASRI\n* PT. PROLINDOBUANA SEMESTA\n* PT. SINAR MASAGRO RESOURCES AND TECHNOLOGY TBK\n* PT. ROYALASSETINDO\n* PT. ROYALINDUSTRIES INDONESIA\n* PT. SALIM IVOMASPRATAMA TBK\n* PT. SAMPOERNAAGRO TBK\n* PT. SARI DUMAISEJATI\n* PT. SURYA ANUGRAH MULYA\n* PT. WILMAR NABATI INDONESIA\n* PT. COMEXINDO INTERNATIONAL\n* PT. MITRASTANIA PRIMA\n* PT. REFINED BANGKA TIN\n* PT. ARTHA CIPTA LANGGENG\n* TAMBANG TIMAH TIMAH(PERSERO) TBK\n* TIMAH INDUSTRI\n* PT. GRAHA INTIMAS \n* PT.INTI STANIA PRIMA\n* UNI BROS METAL PTE.LTD\n* INDOMETAL (LONDON)LIMITED\n* PT.PRIMA TIMAH UTAMA\n\n===Broker Member===\n* PT. AGRODANA FUTURES\n* PT. ASIA TRADE POINT FUTURES\n* PT. FASTING FUTURES\n* PT. FIRST STATE FUTURES\n* PT. GLOBAL ARTHA FUTURES\n* PT. INTERNATIONAL MITRA FUTURES\n* PT. INTER PAN PASIFIK FUTURES\n* PT. JALATAMA ARTHA BERJANGKA\n* PT. JIREH TRILLIONS BERJANGKA\n* PT. KONTAKPERKASA FUTURES\n* [[:id:Millennium Penata Futures|PT. MILLENNIUM PENATA FUTURES]]\n* PT. MONEX INVESTINDO FUTURES\n* PT. OPTIMA CAPITAL FUTURES\n* PT. PACIFIC 2000 FUTURES\n* PT. PHILLIP FUTURES\n* PT. PLATON NIAGA BERJANGKA\n* PT. PRIMA TANGGUHARTA FUTURES\n* PT. RIFAN FINANCINDO BERJANGKA\n* PT. SINARMAS FUTURES\n* PT. SOLID GOLD BERJANGKA\n* PT. TOPGROWTH FUTURES\n* PT. TRIJAYA PRATAMA FUTURES\n* PT. UNITED ASIA FUTURES\n* PT. VICTORY INTERNATIONAL FUTURES\n* PT. MULTI MULIA INVESTAMA BERJANGKA\n* PT. CENTURY INVESTMENT FUTURES\n* PT. MIDTOU ARYACOM FUTURES\n\n===Remote Member===\n* UNI BROS METAL PTE LTD\n* H MONDE\n* DAEWOO INTERNATIONALCORPORATION\n* GOLD MATRIX RESOURCES PTE. LTD\n* GREAT FORCE TRADING\n* NOBLE RESOURCES INTERNATIONAL PTE. LTD\n* PURPLE PRODUCTS PVT. LTD\n* TOYOTA TSUSHO CORPORATION\n* GAIN GLOBALMARKET,INC\n* WESTIN TRADE GLOBAL LIMITED\n* INDOMETAL (LONDON) LIMITED\n* ECO TROPICAL RESOURCES\n* MY UNITED TRADERS\n* AMALGAMET METAL CORPORATION\n* TCC TRADING CORPORATION\n* QUANZHOU ZHONGQUAN MINING CO., LTD \n* LOTUS SG PTE LTD \n* LOMASASTA SINGAPORE PTE LTD\n\n==Product==\n\nICDX offers a wide range of commodity products which includes the three major groups of commodities: Metals, Soft Agricultural Products, and Energy. More products will be added to ICDX’s growing list of products in phases.\n \nIndonesia ICDX has launched:\n\n*[[gold]] contract \n-\tDelivery \n-\tNon delivery\n\n* Crude [[palm oil]] futures Contracts (CPOTR)\n* Olein futures contract (OLEINTR)\n* [[Tin|TIN]] physical contracts\n* Foreign currency contracts\n\n==References==\n{{id}} [http://www.icdx.com ICDX]\n\n{{Palm oil}}\n{{World Federation of Exchanges}}\n\n[[Category:Commodity exchanges]]\n[[Category:Economy of Indonesia]]\n[[Category:Palm oil production in Indonesia]]\n[[Category:Stock exchanges in Indonesia]]
39378731 File:Lola Colt.jpg {{Non-free use rationale\n |Article = Lola Colt\n |Description = poster\n |Source = [http://www.spaghetti-western.net/images/1/1a/Lola1.jpg] \n |Portion = \n |Low_resolution = The image is rendered in low resolution to avoid piracy. Copies made from it will be unsuitable for uses that would compete with the commercial purpose of the original image.\n |Purpose = It is used for identification in the context of critical commentary of the movie it depicts. It makes a significant contribution to the user's understanding of the article, which could not practically be conveyed by words alone. It shows a primary visual image associated with the movie to help the user quickly identify the movie and know they have found what they are looking for.\n |Replaceability = As the movie is protected by copyright, no free equivalent exists that would effectively identify it.\n |other_information = \n}}\n\n== Licensing ==\n{{Non-free poster|image has rationale=yes}}
39393511 Portal Chess Portal Chess is a [[chess variant]] that uses at least two [[fairy piece]]s called '''Portals''' (or less commonly '''Portholes'''). These pieces can be easily added by using [[poker chips]], [[coins]] or other suitably sized objects. The game seeks to incorporate [[Portal (doorway)|portals]] to allow pieces to [[Teleportation|teleport]] around the board.\nApart from the Portals and their ruleset, the game often plays like ordinary [[rules of chess|chess]], including ''[[en passant]]'', [[castling]] and [[promotion (chess)|pawn promotion]].\n\n==Types==\nThere are three types of portal chess, created seemingly independently by three different people: <NAME> in 1997,<ref>[http://www.chessvariants.org/boardrules.dir/portal.html <NAME> at chessvariants.org]</ref> Mike Hidden some time before 2008,<ref>[http://sites.google.com/site/portholechess/ Mike Hidden's site]</ref> and <NAME>ley around 2012.<ref>[http://www.youtube.com/watch?v=Zq4pJw_nk_0 Youtube video with rules]</ref>\nThey all, however, contain the core dynamic of teleportation and special squares/pieces for this, as opposed to other variants which allow transportation at any point and/or any time.\n\nThroughout the article, the symbol [[Arrow (symbol)|→]] will be used to denote teleportation from one square to another.\n\n==David Howe Version==\n{{alice chess diagram\n| tright|\n\n|rd|nd|bd|qd| |bd|nd|rd\n|pd|pd|pd|pd|pd|pd|pd|pd\n| | | | | | | | \n|x1| | | | | | |x3\n|x2| | | | | | |x4\n| | | | | | | | \n|pl|pl|pl|pl|pl|pl|pl|pl\n|rl|nl|bl|ql|kl|bl|nl|rl\n|rd|nd|bd|qd|kd|bd|nd|rd\n|pd|pd|pd|pd|pd|pd|pd|pd\n<!-- A -->\n| | | | | | | | \n|x1| | | | | | |x3\n|x2| | | | | | |x4\n| | | | | | | | \n|pl|pl|pl|pl|pl|pl|pl|pl\n|rl|nl|bl|ql| |bl|nl|rl\n<!-- B -->\n| Two Board Variant with '''Portals''' marked as corresponding numbers\n}}\n\nIn this version, there are two distinct playing areas linked by '''fixed portals'''. These areas can be either two separate boards or one board split down the middle (between the d and e files).\n\nThe rules that are different for this variant are:\n\n*Players alternate play between area A and area B. So play might go 1:Ae4 Ba5 2:Bh4 Ae5\n*If a player's piece is on a portal square when the player is playing in that board, he can declare an ' ''intent to teleport'' '. He moves no other piece, and waits for his turn on the other board. He then teleports his piece but makes no other move. e.g. 20: 'Intends to teleport' qBe7 21: qAa4→Ba4 ...\n*Teleportation is always between areas, and also between corresponding squares. (as close to the original coordinates as you can get).\n*If an opponent's piece occupies the target square when teleporting, it is captured normally. (qAa4→xBa4)\n*If a friendly piece is on the receiving teleporter when 'Intent' is declared, the move is still lost but with no teleportation. This could be used as a pass function. e.g. 20: 'Intends to Teleport' qBe7 21: (no move,piece in way) Aa6 ...\n*If both players declare 'intent' in the same move, the teleportations are considered simultaneous. Thus no capture would occur between two pieces transporting together if they had just swapped places. e.g. 20:'intent' 'intent' 21: Aa4→Ba4 Ba4→Aa4\n*A king can be left in check so long as the player can move it before it could be captured. Thus [[discovered check]]s from teleportations are allowed as the player can move their king away before their opponent next plays that Area.\n*All other rules are the same.\n\n==Mark Hidden Version==\n\n{{Chess diagram\n| tright\n| \n|rd|nd|bd|qd|kd|bd|nd|rd\n|pd|pd|pd|pd|pd|pd|pd|pd\n| | | | | | | | \n|xo|xo| | |xo|xo| | \n| | |xo|xo| | |xo|xo\n| | | | | | | | \n|pl|pl|pl|pl|pl|pl|pl|pl\n|rl|nl|bl|ql|kl|bl|nl|rl\n| The locations of the portals are marked with black dots. \n}}\nThe portals in this game are '''neutral yet mobile'''.\n\nThe number and starting location of these portals can be different when the game begins, but the image shows the 'standard' set-up.\n\nIn this game the portal pieces move around by very specific rules.\n\n*A piece can only land on a portal square by 'attacking' it. This means pawns move diagonally onto them, and knights must land directly on them.\n*A piece can not jump over a portal, except for the knight.\n*When a piece moves onto a portal, it '''must''' move to another portal. If no portals are free to do this, moving onto the portal is not allowed.\n*When a piece has moved through a portal, the portal it 'attacked' moves to where the piece used to be. So the early move 2: f3xg4→c4 moves the portal from g4 to f3.\n*This also means portals may stack, and may be unstacked, but it is invalid to claim you have teleported from one stacked portal to another stacked portal (either where you have landed or elsewhere on the board).\n*Pawns must move normally onto the back rank to promote. So a pawn that has teleported there does '''not''' promote, as he is stuck in the portal.\n*Castling cannot occur if a portal is in the way, as the pieces cannot hop over it.\n*All other ordinary rules apply.\n\n==Ian Buckley Version==\n\n{{Chess diagram\n| tright\n| \n|rd|nd|bd|qd|kd|bd|nd|rd\n|pd|pd|pd|pd|pd|pd|pd|pd\n| | | | | | | | \n|xx|xx|xx|xx|xx|xx|xx|xx\n|xo|xo|xo|xo|xo|xo|xo|xo\n| | | | | | | | \n|pl|pl|pl|pl|pl|pl|pl|pl\n|rl|nl|bl|ql|kl|bl|nl|rl\n| Beginning layout of the board is standard. Possible sites for white's portal are marked with a dot, Black's possible spots are marked with a cross. \n}}\n\n{{Chess diagram\n| tright\n| \n|rd|nd|bd|qd|kd|bd|nd|rd\n|pd|pd|pd|pd|pd|pd|pd|pd\n| | | | | | | | \n|zd| | | | | | | \n| | | | |zl| | | \n| | | | | | | | \n|pl|pl|pl|pl|pl|pl|pl|pl\n|rl|nl|bl|ql|kl|bl|nl|rl\n| An example first move that would be [[Chess notation|annotated]] 1: Pe4 Pa5\n}}\n\nThis version of the game has '''Player controlled''' portals, which are linked to each other.\n\nThe rules for these portals are worked out as though they make the squares they cover into one square. In the set up to the right, a5 and e4 can be conceptualized as the same square.\n\nThe specific rules for portal use are as follows:\n\n*The aim of portal chess is the same as ordinary chess.\n*Players place their portals anywhere on the fourth row from the players side before commencing a game.\n*You can only move your coloured portal.\n*A piece passes through portal unless the portal is blocked.\n*A piece can be blocked from entering a portal if a piece of the same color is on the other side.\n*A piece can take pieces by traveling through a portal.\n*Both portals cannot be occupied at the same time.\n*A piece can check/checkmate people using the portal.\n*A piece must exit the portal in the direction it traveled into the portal.\n*A portal can be moved onto a piece causing it to teleport, unless the other portal is occupied by any piece.\n*A player has a choice to move a chess piece or the portal piece in one turn, not both.\n*If your own chess piece is occupying a portal, you cannot pass through or rest on the other unoccupied portal with another one of your own pieces.\n*A piece can enter either portal regardless of colour.\n*Portals can not occupy the same square.\n*A portal can be moved regardless of whether it is occupied or not, the occupying piece does not move with the portal.\n*If a piece occupies one portal and a whole turn phase end without the piece moving from the teleporter it does not teleport.\n*A Knight can jump over a portal piece.\n*A pawn can become a queen by using a portal. thus the move ...→h8=Q is valid.\n\n==References==\n{{reflist}}\n\n==External links==\n*[http://www.chessvariants.org/boardrules.dir/portal.html David Howe's ruleset]\n*[http://sites.google.com/site/portholechess/local-rules Mike Hidden's ruleset]\n*[http://www.youtube.com/watch?v=Zq4pJw_nk_0 Ian Buckley's first ruleset]\n**[http://www.youtube.com/watch?v=GI2ITGUnaLg Ian Buckley's revised ruleset]\n\n[[Category:Chess variants]]
39378955 Template:Did you know nominations/Caracas Cathedral {{#if:yes|<noinclude>[[Category:Passed DYK nominations from May 2013]]<div style="background-color: #F3F9FF; margin: 2em 0 0 0; padding: 0 10px 0 10px; border: 1px solid #AAAAAA;">\n:''The following discussion is an archived discussion of the DYK nomination of the article below. <span style="color:red">'''Please do not modify this page.'''</span> Subsequent comments should be made on the appropriate discussion page (such as [[{{TALKPAGENAME}}|this nomination's talk page]], [[Talk:{{SUBPAGENAME}}|the article's talk page]] or [[Wikipedia talk:Did you know]]), unless there is consensus to re-open the discussion at this page. '''No further edits should be made to this page'''.''\n\nThe result was: '''promoted''' by — [[User:Crisco 1492|Crisco 1492]] ([[User talk:Crisco 1492|talk]]) 00:02, 20 May 2013 (UTC)<br />}}\n{{DYKC}}\n====Caracas Cathedral====\n{{DYK nompage links|nompage=Caracas Cathedral|Caracas Cathedral}}\n<div style="float:right;margin-left:0.5em;">\n[[File:Catedral-caracas.jpg|100x100px|Caracas Cathedral]]\n</div>\n{{*mp}}... that priests of '''[[Caracas Cathedral]]''' ''(pictured)'' believed that the [[1812 Caracas earthquake|1812 earthquake]] which devastated the church and city was [[divine retribution]]?\n:{{*mp}}\n<small>5x expanded by [[User:Nvvchar|Nvvchar]] ([[User talk:Nvvchar|talk]]), [[User:Gilderien|Gilderien]] ([[User talk:Gilderien|talk]]), [[User:Rosiestep|Rosiestep]] ([[User talk:Rosiestep|talk]]), and [[User:Dr. Blofeld|Dr. Blofeld]] ([[User talk:Dr. Blofeld|talk]]). Nominated by [[User:Dr. Blofeld|Dr. Blofeld]] ([[User talk:Dr. Blofeld|talk]]) at 20:36, 13 May 2013 (UTC)</small>.\n\n:* [[File:Symbol question.svg|16px]] not quite a 5x expansion (215-->1009 words), but hook cited and ok. [[User:Casliber|Casliber]] ([[User talk:Casliber|talk]] '''·''' [[Special:Contributions/Casliber|contribs]]) 06:30, 16 May 2013 (UTC)\n::*It is now 5xs.--<span style="">[[User:Gilderien|Gilderien]] <span style="font-size:70%; vertical-align:sub;">[[User talk:Gilderien|Chat]]|[[Special:Contributions/Gilderien|List of good deeds]]</span></span> 14:04, 16 May 2013 (UTC)\n:::*[[File:Symbol confirmed.svg|16px]] indeed it is - good to go. [[User:Casliber|Casliber]] ([[User talk:Casliber|talk]] '''·''' [[Special:Contributions/Casliber|contribs]]) 21:03, 16 May 2013 (UTC)\n{{-}}{{#if:yes|</div></noinclude>|{{#ifeq:{{FULLPAGENAME}}|Template talk:Did you know/{{SUBPAGENAME}}|[[Category:Pending DYK nominations]][[Category:DYK/Nominations|Pending]]|{{#ifeq:{{FULLPAGENAME}}|Template:Did you know nominations/{{SUBPAGENAME}}|[[Category:DYK/Nominations|Pending]][[Category:Pending DYK nominations]]}}}}}}<!--Please do not write below this line or remove this line. Place comments above this line.-->
3939989 Wikipedia:Articles for deletion/Prehistoric Finns in Americas <div class="boilerplate metadata vfd" style="background-color: #F3F9FF; margin: 2em 0 0 0; padding: 0 10px 0 10px; border: 1px solid #AAAAAA;">\n:''The following discussion is an archived debate of the proposed deletion of the article below. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's talk page or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page. ''\n<!--\nNote: If you are seeing this page as a result of an attempt to re-nominate an article for deletion, you must manually edit the AfD nomination links in order to create a new discussion page using the name format of [[Wikipedia:Articles for deletion/PAGENAME (2nd nomination)]]. When you create the new discussion page, please provide a link to this old discussion in your nomination. -->\n\nThe result of the debate was DELETE. <font color="red">[[User:Jacoplane|Jaco]]</font><font color="blue">[[User_talk:Jacoplane|plane]]</font> 06:10, 9 February 2006 (UTC)\n===[[Prehistoric Finns in Americas]]===\n*'''del'''. Not suitable for encycopedia. An overblown article title for DNA research of some american bones and 2-3 Finns, which can lead to nothing conclusive yet. [[user:mikkalai|mikka]] [[user talk:mikkalai|(t)]] 01:38, 3 February 2006 (UTC)\nI think it should be deleted as well. This is hardly a substantiated claim at this time, and contains serious hyperbole. [[User:Sukiari|Sukiari]] 02:15, 3 February 2006 (UTC)\n* '''Delete''' - reads like an article from a newspaper rather than an encyclopaedia, and is [[Wikipedia:No original research|original research]]. [[User:Hairy Dude|Hairy Dude]] 02:57, 3 February 2006 (UTC)\n*'''Delete''' per all above. [[User:Royboycrashfan|Royboycrashfan]] 05:46, 3 February 2006 (UTC)\n*'''Delete''', I agree, this is more like a newspaper article than an encyclopedia article. Also it looks like Original Research. [[User:JIP|<font color="#CC0000">J</font><font color="#00CC00">I</font><font color="#0000CC">P</font>]] | [[User talk:JIP|Talk]] 07:26, 3 February 2006 (UTC)\n*'''Speedy delete''', I remember pretty well that substantially the same text was deleted the other day under a slightly different title (something with [[First Finns in America]] or so.) Obviously for POV reasons. [[User:LukasPietsch|Lukas]] <small><sup>[[User_talk:LukasPietsch|(T.]]|[[Special:Emailuser/LukasPietsch|@)]]</sup></small> 09:32, 3 February 2006 (UTC)\n*I'm all for this thing, if it means we Finns can claim ownership of America. ...what? Hey, it worked for [[Scrooge McDuck]]. --[[User:Agamemnon2|Agamemnon2]] 12:58, 6 February 2006 (UTC)\n*<s>'''Comprehensive rewrite'''</s>. '''Delete'''. A good subject for a WP article on this material would be "[[Haplogroup X (mtDNA)]]", along the lines of some of the other DNA lineage articles that can be found linked off the [[Haplogroup]] article. The mitochondrial DNA group X is quite interesting for the early population history of the United States. It has been suggested it may be linked to the [[Solutrean]] culture, excavated in SW France, which may have been associated with extensive maritime activity along the fringes of the Atlantic ice-age ice sheets, similar in technology to modern-day [[Inuit]] culture. In particular, it is suggested that the Solutreans may have brought the original stone-working technology underlying the ubiquitous later [[Clovis point]] to the Americas, which seems to have spread out from the ''east'' of the modern-day United States, in contrast to most of the paleoamerican population which is thought to have originated ultimately from Asia, and spread in from the ''west''. I would therefore suggest that there is useful material which should be strip-mined from this article first, before deletion. -- [[User:Jheald|Jheald]] 11:48, 8 February 2006 (UTC).\n::Curiously, haplogroup X isn't particularly associated with the Finns; it's more common around the Mediterranean, the Near East and the Caucasus. If as it seems this report dates back to the mid 1990s, then much more is now known, and I think there is now not much after all that remains to be usefully extracted from this old sensation piece. The article [[Haplogroup X (mtDNA)]] is now up and in place, if there ''is'' anything anyone else thinks should be saved and added. -- [[User:Jheald|Jheald]] 22:16, 8 February 2006 (UTC).\n\n:''The above discussion is preserved as an archive of the debate. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's talk page or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page.</div>
39378511 The Unnatural (Bob's Burgers) {{Infobox television episode\n| Title = The Unnatural\n| Series = [[Bob's Burgers]]\n| Image = \n| Caption = \n| Season = 3\n| Series no = 45\n| Episode = 23\n| Writer = <NAME> \t\n| Director = [[<NAME>]]\n| Teleplay = \n| Story = \n| Producer = \n| Music = \n| Photographer = \n| Editor = \n| Production = 3ASA10 \t\n| Airdate = May 12, 2013\n| Length = \n| Guests = \n*[[<NAME>]] as the Deuce\n*[[<NAME>kas]] as Mr. Manoogian\n| Season list = \n| Prev = [[Carpe Museum]]\n| Next = [[A River Runs Through Bob]]\n| Episode list = [[Bob's Burgers (season 3)|''Bob's Burgers'' (season 3)]]<br />[[List of Bob's Burgers episodes|List of ''Bob's Burgers'' episodes]]\n}}\n\n"'''The Unnatural'''" is the 23rd episode and season finale of the third season of the animated comedy series ''[[Bob's Burgers]]'' and the overall 45th episode, and is written by <NAME> and directed by [[<NAME>]]. It aired on Fox in the [[United States]] on May 12, 2013.<ref>{{cite web|url=http://www.tvguide.com/tvshows/bobs-burgers-2013/episode-23-season-3/the-unnatural/304560 |title=Bob's Burgers Episode Guide 2013 Season 3 - The Unnatural, Episode 23 |publisher=TVGuide.com |date= |accessdate=2013-05-14}}</ref>\n\n==Plot==\n{{Expand section|date=May 2014}}\nLinda tries to sign up Gene for an expensive baseball camp that turns out to be a scam, while Tina becomes an espresso addict.\n\n==Reception==\nPilot Viruet of ''[[The A.V. Club]]'' gave the episode an A, saying "For most of the episode Bob is, as Linda so eloquently puts it, “such a dick.” It was a little odd watching him enthusiastically root against his son but it made watching him eventually lose—and watching Linda really hold her own in an argument—that much funnier. By the end of the day, Linda and Bob are screaming each other, their car is soaked in soda, and Tina is chugging coffee and cigarette butts straight out of the pot because hey, they’re not a family that’s known for quiet dignity. It’s a weird and great ending to a weird and great season."<ref>{{cite web|last=Viruet |first=Pilot |url=http://www.avclub.com/articles/the-unnatural,97153/ |title=“The Unnatural” |publisher=The A.V. Club |date= |accessdate=2013-05-14}}</ref> \n\nThe episode received a 1.6 rating and was watched by a total of 3.38 million people. This made it the fourth most watched show on [[Animation Domination]] that night, beating ''[[The Cleveland Show]]'' but losing to ''[[Family Guy]]'' with 4.82 million.<ref>{{cite web|url=http://tvbythenumbers.zap2it.com/2013/05/14/sunday-final-ratings-survivor-once-upon-a-time-the-simpsons-revenge-adjusted-up/182603/ |title=Sunday Final Ratings: ‘Survivor’, ‘Once Upon a Time’, ‘The Simpsons’ & ‘Revenge’ Adjusted Up |publisher=Tvbythenumbers |date=2012-12-15 |accessdate=2013-05-14}}</ref>\n\n== References ==\n{{Reflist}}\n\n{{Bob's Burgers episodes|3}}\n\n{{DEFAULTSORT:Unnatural}}\n[[Category:2013 television episodes]]\n[[Category:Bob's Burgers episodes]]\n[[Category:Baseball animation]]\n\n{{animation-tv-episode-stub}}
39396921 Template:Did you know nominations/All Saints GAC {{#if:yes|<noinclude>[[Category:Passed DYK nominations from May 2013]]<div style="background-color: #F3F9FF; margin: 2em 0 0 0; padding: 0 10px 0 10px; border: 1px solid #AAAAAA;">\n:''The following discussion is an archived discussion of the DYK nomination of the article below. <span style="color:red">'''Please do not modify this page.'''</span> Subsequent comments should be made on the appropriate discussion page (such as [[{{TALKPAGENAME}}|this nomination's talk page]], [[Talk:{{SUBPAGENAME}}|the article's talk page]] or [[Wikipedia talk:Did you know]]), unless there is consensus to re-open the discussion at this page. '''No further edits should be made to this page'''.''\n\nThe result was: '''promoted''' by Sir <font color="#151B8D">'''[[User:Rcsprinter123|<span style="font-family:cambria; font-size:10pt; color:#151B8D">Rcsprinter</span>]], </font>'''[[Baronet|Bt]]'''<font color="#151B8D"> ''' [[User talk:Rcsprinter123|<span style="font-family:calibri; font-size:8pt; color:#488AC7">(lecture)</span>]]</font> <small>@</small> 16:13, 28 May 2013 (UTC)<br />}}\n{{DYKC}}\n====All Saints GAC====\n{{DYK nompage links|nompage=All Saints GAC|All Saints GAC}}\n{{*mp}}... that local [[Member of Parliament (UK)|MP]] [[Ian Paisley]] objected when '''[[All Saints GAC]]''' applied for planning permission to build a clubhouse?\n:{{*mp}}\n<small>5x expanded by [[User:Brocach|Brocach]] ([[User talk:Brocach|talk]]). Nominated by [[User:Finnegas|Finnegas]] ([[User talk:Finnegas|talk]]) at 19:39, 15 May 2013 (UTC)</small>.\n\n:*[[File:Symbol confirmed.svg|16px]] Five-fold expansion, long enough, fully cited (including hook in citation #2). have emboldened the article of this nomination for the hook; now good to go. Believe the user is just under the QPQ req. having had 4 DYK nominations, but please consider reviewing. [[User:MasterOfHisOwnDomain|MasterOfHisOwnDomain]] ([[User talk:MasterOfHisOwnDomain|talk]]) 16:03, 27 May 2013 (UTC){{#if:yes|</div></noinclude>|{{#ifeq:{{FULLPAGENAME}}|Template talk:Did you know/{{SUBPAGENAME}}|[[Category:Pending DYK nominations]][[Category:DYK/Nominations|Pending]]|{{#ifeq:{{FULLPAGENAME}}|Template:Did you know nominations/{{SUBPAGENAME}}|[[Category:DYK/Nominations|Pending]][[Category:Pending DYK nominations]]}}}}}}<!--Please do not write below this line or remove this line. Place comments above this line.-->
39378856 <NAME> {{Infobox basketball biography\n| name = <NAME>\n| image = \n| image_size = \n| caption = \n| number = 6\n| position = [[Guard (basketball)|Guard]]\n| height_ft = 6\n| height_in = 4\n| weight_lb = 190\n| birth_date = {{birth date and age|1935|10|7}}\n| birth_place = \n| death_date = \n| death_place = \n| nationality = American \n| high_school = [[Fenwick High School (Oak Park, Illinois)|Fenwick]] ([[Oak Park, Illinois]])\n| college = [[Detroit Titans men's basketball|Detroit]] (1954–1957)\n| draft_year = 1957\n| draft_round = 3\n| draft_pick = 18\n| draft_team = [[Detroit Pistons]]\n| career_start = \n| career_end = \n| years1 = [[1957–58 NBA season|1957–1958]]\n| team1 = [[Detroit Pistons]]\n| highlights = \n* Third team [[NCAA Men's Basketball All-Americans|All-American]] – [[Associated Press|AP]] ([[1957 NCAA Men's Basketball All-Americans|1957]])\n* 2× first team All-[[Missouri Valley Conference|MVC]] (1956–1957)\n| stat1label = [[Point (basketball)|Points]]\n| stat1value = 15 (1.9 ppg)\n| stat2label = [[Rebound (basketball)|Rebounds]]\n| stat2value = 8 (1.0 rpg)\n| stat3label = [[Assist (basketball)|Assists]]\n| stat3value = 4 (0.5 apg)\n| stats_league = NBA\n| letter = e\n| bbr = ebbenbi01\n| historical_profile = bill_ebben\n}}\n'''<NAME> "Bill" Ebben''' (born October 7, 1935) is an American former professional [[basketball]] player.<ref name=bbr>[http://www.basketball-reference.com/players/e/ebbenbi01.html <NAME>]. basketball-reference.com. Retrieved on May 13, 2013.</ref> Ebben was selected in the [[1957 NBA Draft]] (third round, 18th overall) by the [[Detroit Pistons]] after a collegiate career at the [[University of Detroit Mercy]].<ref name=bbr/> He appeared in eight [[NBA]] games in his career and averaged 1.9 points, 1.0 rebounds and 0.5 assists per game.<ref name=bbr/>\n\n==See also==\n* [[List of NCAA Division I men's basketball players with 30 or more rebounds in a game]]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Ebben, Bill}}\n[[Category:1935 births]]\n[[Category:Living people]]\n[[Category:Basketball players from Illinois]]\n[[Category:Detroit Pistons draft picks]]\n[[Category:Detroit Pistons players]]\n[[Category:Detroit Titans men's basketball players]]\n[[Category:Guards (basketball)]]\n\n\n{{1930s-US-basketball-bio-stub}}
39386347 <NAME> {{multiple issues|{{no footnotes|date=May 2013}}{{BLP sources|date=April 2014}}\n{{one source|date=April 2014}}\n}}\n{{Infobox football biography\n| name= Antonio Galardo\n| fullname = \n| image = \n| birth_date = {{birth date and age|1976|9|18|df=y}} \n| birth_place = [[Crotone]], [[Italy]]\n| height = {{height|m=1.73}}\n| currentclub = [[F.C. Crotone|Crotone]]\n| clubnumber = 4\n| position = [[Midfielder#Defensive midfielder|Defensive midfielder]]\n| youthyears1 = | youthclubs1 = [[Sporting Crotone]]\n| youthyears2 = {{0|0000}}–1995 | youthclubs2 = [[F.C. Crotone|Crotone]]\n| years1 = 1995–1998 | clubs1 = [[F.C. Crotone|Crotone]] | caps1 = 21 | goals1 = 0\n| years2 = 1998–1999 | clubs2 = [[S.S.D. La Sportiva Cariatese|La Sportiva Cariatese]] | caps2 = 26 | goals2 = 8\n| years3 = 1999–2002 | clubs3 = [[Rossanese A.S.D.|Rossanese]] | caps3 = 71 | goals3 = 22\n| years4 = 2002– | clubs4 = [[F.C. Crotone|Crotone]] | caps4 = 319 | goals4 = 9\n| nationalyears1 = | nationalteam1 = | nationalcaps1 = | nationalgoals1 = \n| pcupdate = 14 May 2013\n| ntupdate = \n}}\n\n'''<NAME>''' (born 18 September 1976 in [[Crotone]]) is an [[Italy|Italian]] professional [[Association football|football]] player currently [[Captain (association football)|captain]] of [[F.C. Crotone|Crotone]].\n\n== Career ==\nHe began his football career in youth squad of [[Sporting Crotone]], second team of the city. Then he went to [[F.C. Crotone|Crotone]].\n\nFrom 1998 to 2001 he played in [[Eccellenza]] with [[S.S.D. La Sportiva Cariatese|La Sportiva Cariatese]] and [[Rossanese A.S.D.|Rossanese]].\n\nSince 2002 is in force at [[F.C. Crotone|Crotone]]. He became [[Captain (association football)|captain]] in 2011–2012 season.\n\n== External links ==\n*{{Soccerway|antonio-galardo/91338}}\n\n{{F.C. Crotone squad}}\n\n{{DEFAULTSORT:Galardo, Antonio}}\n[[Category:Italian footballers]]\n[[Category:F.C. Crotone players]]\n[[Category:Serie B players]]\n[[Category:Association football midfielders]]\n[[Category:People from Crotone]]\n[[Category:1976 births]]\n[[Category:Living people]]\n\n\n{{Italy-footy-bio-stub}}
39380707 Nurabad, Rafsanjan {{Infobox settlement\n|official_name =Nurabad\n|native_name =نوراباد\n|settlement_type = village\n|pushpin_map =Iran\n|mapsize =150px\n|coordinates_region = IR\n|subdivision_type = [[List of countries|Country]]\n|subdivision_name = {{flag|Iran}}\n|subdivision_type1 =[[Provinces of Iran|Province]]\n|subdivision_name1 =[[Kerman Province|Kerman]]\n|subdivision_type2 =[[Counties of Iran|County]]\n|subdivision_name2 = [[Rafsanjan County|Rafsanjan]]\n|subdivision_type3 =[[Bakhsh]]\n|subdivision_name3 =[[Koshkuiyeh District|Koshkuiyeh]]\n|subdivision_type4 =[[Rural Districts of Iran|Rural District]]\n|subdivision_name4 =[[Koshkuiyeh Rural District|Koshkuiyeh]]\n|leader_title = \n|leader_name = \n|established_title =\n|established_date = \n|area_total_km2 = \n|area_footnotes = \n|population_as_of = 2006\n|population_total =309\n|population_density_km2 =auto\n|timezone = [[Iran Standard Time|IRST]]\n|utc_offset = +3:30\n|timezone_DST = [[Iran Daylight Time|IRDT]]\n|utc_offset_DST = +4:30\n|coordinates_display = %\n|latd=30|latm=32|lats=53|latNS=N\n|longd=55|longm=39|longs=29|longEW=E\n|elevation_m = \n|area_code = \n|website = \n|footnotes =\n}}\n'''Nurabad''' ({{lang-fa|نوراباد}}, also [[Romanize]]d as '''Nūrābād'''; also known as '''Noor Abad Kashgoo‘eyeh''' and '''Nūrābād-e Kashkū’īyeh''')<ref>{{GEOnet3|-3077341|Nurabad}}</ref> is a village in [[Koshkuiyeh Rural District]], [[Koshkuiyeh District]], [[Rafsanjan County]], [[Kerman Province]], [[Iran]]. At the 2006 census, its population was 309, in 68 families.<ref>{{IranCensus2006|08}}</ref> \n\n== References ==\n{{reflist}}\n\n{{Rafsanjan County}}\n\n\n[[Category:Populated places in Rafsanjan County]]\n\n{{Rafsanjan-geo-stub}}
39401076 Boxerbeat {{Infobox single <!-- See Wikipedia:WikiProject_Songs -->\n| Name = Boxerbeat\n| Cover = <!-- just the file name -->\n| Border = \n| Alt = \n| Caption = \n| Artist = [[JoBoxers]]\n| Album = [[Like Gangbusters]]\n| A-side = Boxerbeat\n| B-side = Let's Talk About Love\n| Released = 1983\n| Format = [[12-inch single|Vinyl]], [[7"]]\n| Recorded = \n| Genre = [[New wave music|New wave]]\n| Length = \n| Label = [[RCA Victor]]\n| Writer = [[<NAME>]]/[[<NAME>]] (both)<br/>[[<NAME>]] ("Boxerbeat")<br>[[<NAME>]] ("Let's Talk About Love")\n| Producer = \n}}\n\n"'''Boxerbeat'''" is a 1983 song by [[JoBoxers]] from their album ''[[Like Gangbusters]]''. It peaked at number three in the [[UK Singles Chart]].<ref name="British Hit Singles & Albums">{{cite book\n| first= David\n| last= Roberts\n| year= 2006\n| title= British Hit Singles & Albums\n| edition= 19th\n| publisher= Guinness World Records Limited \n| location= London\n| isbn= 1-904994-10-5\n| page= 284}}</ref>\n\n==References==\n{{reflist}}\n\n==External links==\n*{{cite web|url=http://www.discogs.com/JoBoxers-Boxerbeat/master/82689|title=JoBoxers - Boxer Beat|publisher=[[Discogs]]}}\n\n[[Category:1983 songs]]\n[[Category:RCA Victor singles]]\n[[Category:JoBoxers songs]]
39393665 <NAME> {{Use dmy dates|date=June 2016}}\n{{Multiple issues|{{BLP sources|date=June 2013}}{{Orphan|date=June 2013}}\n}}\n\n'''<NAME>''' ([[Moià]], [[Province of Barcelona|Barcelona]], 13 December 1959) is an artist from Spain who uses digital technologies in the fields of [[mechatronic]] performance and [[installation art]].<ref>"<NAME>". ''La Enciclopedia'', vol. 1, Salvat – El País, Madrid, 2003, pp. 791–792.</ref>\n\n==Artistic career==\n\n=== La Fura dels Baus (1979–1989) ===\nWhile pursuing his studies in [[fine arts]] in the [[University of Barcelona]], <NAME> co-founded the collective [[La Fura dels Baus]] with [[<NAME>]], [[<NAME>]], [[<NAME>]], and [[<NAME>]]. He was part of the collective from 1979 until 1989 as a performer, musician and artistic coordinator in the first three performances of the group: the trilogy ''Accions'' (1984), ''Suz /o /Suz'' (1985) and ''Tier Mon'' (1988).{{citation needed|date=August 2014}}\n\n=== Los Rinos (1985–1992) ===\nWith <NAME> and <NAME>, he founded the group [[Los Rinos]], initially focusing on [[graffiti]]. Later, his activity extended to painting, video action performance, the concert and wall installation, such as ''Rinodigestió'' (1987), a system of interconnected wooden and glass boxes containing decaying organic matter.{{citation needed|date=September 2014}}\n\n=== Solo career (1992– present) ===\nSince 1992, <NAME> has developed a series of works in various formats exploring [[biology]], technology, society, and culture. Using drawing and painting as the basis of his work, he used techniques such as interactive sculpture of both organic and artificial materials, growing microorganisms, and interative performance art incorporating cinematic elements such as animation, as well as multiple projection screens and sound systems.{{citation needed|date=August 2014}}\n\n=== Mechatronic performances and expanded cinema ===\n*Epizoo (1994)\n*Afasia (1998)\n*POL (2002)\n*Transpermia (2003)\n*Protomembrana (2006)\n*Hipermembrana (2007)\n*Cotrone (2010)\n*Pseudo (2012)\n\n=== Installations ===\n*JoAn, l'home de carn (1992)\n*La vida sin amor no tiene sentido (1993)\n*Agar (1999)\n*Alfabeto (1999)\n*Requiem (1999)\n*Human Machine (2001)\n*Metzina (2004)\n*Tantal (2004)\n*DMD Europa (2007)\n*Metamembrana (2009)\n\n=== Exhibitions ===\n*Epifania (1999)\n*Interattività furiosa (2007)\n*43 somni de la raó (2007)\n*Outras peles (2008)\n*Hibridum Bestiarium (2008)\n*Salón de Juegos (2009)\n\n=== Films ===\n*Retrats (1993)\n*Frontón. El hombre navarro va a la Luna (1993)\n*Satèl•lits Obscens (2000)\n*El Dibuixant (2005) [http://www.imdb.com/title/tt0781354/ IMDB file]\n*El Peix Sebastiano (2012) [http://www.imdb.com/title/tt2447136/?ref_=fn_al_tt_1]\n\n== Terminology ==\nMarcel•<NAME> has described his work using some unique [[neologism|terminology]]:\n\n'''Dreskeleton''': an active scenic component using software created by the artist for the purpose of controlling the dynamics and interactions between the different elements of scene.<ref><NAME>; <NAME>, "El artista como interfaz y Marcel•lí Antúnez como membrana". AAVV, ''Protomembrana, Metamembrana, Hipermembrana. Un proyecto de Marcel•lí Antúnez Roca'' (Exhibition Catalogue), Barcelona, ACTAR, 2009, p. 13.</ref>\n\n'''Sistematurgia''': [[dramaturgy]] of computer systems.<ref>Id., p. 22.</ref>\n\n'''Fembrana''': costumes with range, position and touch sensors embedded in latex prosthetics.<ref>Antúnez Roca, Marcel•lí, "Membrana. Génesis, satélites y episodios". AAVV, ''Protomembrana, Metamembrana, Hipermembrana. Un proyecto de Marcel•lí Antúnez Roca'' (Exhibition Catalogue), Barcelona, ACTAR, 2009, p. 73.</ref>\n\n== Awards ==\n*First prize in the Étrange festival (París, 1994), for ''Frontón''\n*Best New Media en Nouveau Cinéma et Nouveaux Médias (Montreal, 1999), for ''Afasia''\n*Max award to the alternative theatre (España, 2001), for ''Afasia''\n*FAD award (Barcelona, 2001), for ''Afasia''\n*Honorable Mention in Prix Ars Electronica (2003), for POL\n*Ciutat de Barcelona award in multimedia (2004), for ''<NAME>''\n\n== Bibliography ==\n*{{cite book\n|last= AAVV\n|title= Code – Language of our time\n|year= 2003\n|publisher= Hatje Cantz Verlag\n|location= Germany\n|isbn= 3-7757-1356-5\n|chapter= POL. A Mechatronic Show\n|pages= 322–325\n}}\n*{{cite book\n|last= AAVV\n|title= Corpo automi robot. Tra arte, scienza e tecnologia\n|year= 2009\n|publisher= Edizioni Gabriele Mazzota\n|location= Milano\n|isbn= 978-88-202-1933-8\n|pages= 305\n }}\n*{{cite book\n|last= AAVV\n|title= Evolution Haute Couture: art and science in the post-biological age\n|year= 2009\n|location= Kaliningrad\n|isbn= 978-5-94620-054-7\n|chapter= Body as technology: Techno-body Modification\n|pages= 98–99\n }}\n*{{cite book\n|last= AAVV\n|title= Marcel•lí Antúnez Roca. Epifanía (Exhibition Catalogue)\n|year= 1999\n|editor= <NAME>\n|publisher= Fundación Telefónica\n|location= Madrid\n|isbn= 84-89884-10-2\n }}\n*{{cite book\n|last= AAVV\n|title= Marcel•lí Antúnez Roca e la performatività digitale\n|year= 2011\n|editor= Bonanno Editore\n|publisher= Gruppo Editoriale s.r.l\n|location= Roma\n }}\n*{{cite book\n|last= AAVV\n|title= Protomembrana, Metamembrana, Hipermembrana. Un proyecto de Marcel•lí Antúnez Roca (Exhibition Catalogue)\n|year= 2009\n|publisher= ACTAR\n|location= Barcelona\n|isbn= 978-84-96954-87-8\n}}\n*{{cite book\n|last= Dixon\n|first= Steve\n|title= Digital Performance. A History of New Media in Theater, Dance, Performance Art, and Installation\n|year= 2007\n|publisher= The MIT Press\n|location= Cambridge-London\n|isbn= 978-0-262-04235-2\n|chapter= Camping The Cyborg: Marcel•lí Antúnez Roca\n|pages= 321–327\n }}\n*{{cite book\n|last= VVAA\n|title= Code – Language of our time\n|year= 2003\n|publisher= Hatje Cantz Verlag\n|location= Germany\n|isbn= 3-7757-1356-5\n|chapter= POL. A Mechatronic Show\n|pages= 322–325\n }}\n*{{cite book\n|last= Giannetti\n|first= Claudia\n|title= El discreto encanto de la tecnología\n|year= 2008\n|publisher= Ministerio de Cultura. Secretaría General Técnica, Subdirección General de Publicaciones, Información y Documentación\n|location= Badajoz\n|isbn= 978-84-96933-19-4\n|chapter= Operar sobre la interfaz del cuerpo\n|pages= 500–501\n }}\n*{{cite book\n|last= Salabert\n|first= Pere\n|title= El cuerpo es el sueño de la razón y la inspiración una serpiente enfurecida. <NAME>: cara y contracara\n|year= 2009\n|publisher= Cendeac\n|location= Murcia\n|isbn= 978-84-96898-39-4\n }}\n*{{cite book\n|last= Schwartzman\n|first= Madeline\n|title= See yourself sensing. Redefining human perception\n|year= 2011\n|publisher= Black Dog Publishing Limited\n|location= London\n|isbn= 978-19-07317-29-3\n|chapter= Reframers\n|pages= 12–15\n }}\n*{{cite book\n|last= Shanken\n|first= <NAME>.\n|title= Art and electronic media\n|year= 2010\n|publisher= Phaidon\n|location= London\n|isbn= 978-07-14847-82-5\n|chapter= Bodies, surrogates, emergent systems\n|pages= 153\n }}\n*{{cite book\n|last= Wilson\n|first= Stephen\n|title= Information arts. Intersections of art, science, and technology\n|year= 2002\n|publisher= The MIT Press\n|location= Cambridge-London\n|isbn= 0-262-23209-X\n|pages= 16–161, 455\n }}\n\n==References==\n{{reflist}}\n*Giannachi, Gabriella. [http://books.google.ca/books?id=mqA2qf3gxOwC&pg=PA163&lpg=PA163&dq=Marcel%C2%B7l%C3%AD+Ant%C3%BAnez+Roca+review&source=bl&ots=9GN6ouD1YP&sig=ps-QZAZK2790GcWqOQ7MZo4EXPc&hl=en&sa=X&ei=d9XwUqLHFIisyAH264Fw&ved=0CD8Q6AEwBA Virtual Theatres: An Introduction]\n\n==External links==\n*[http://www.marceliantunez.com/ Official Artist Website ]\n*[http://marceliantunez.blogspot.com/ Artist videos]\n*[http://paper.avui.cat/cultura/detail.php?id=75357 About the documentary ''El Dibuixant''] (''Avui'' newspaper, in Catalan)\n*[http://www.fundacion.telefonica.com/at/antunez.html About the exhibition of ''Epifanía'']\n*[http://paper.avui.cat/cultura/detail.php?id=151486 About ''Metamembrana''] (''Avui'' newspaper, in Catalan)\n*[http://www.calstatela.edu/misc/karpa//Karpa3.1/Site%20Folder/pere.html Book review of Pere Salabert about the life and work of the artist]\n\n{{NF|1959||<NAME>, Marcelli}}\n\n\n{{DEFAULTSORT:Roca, Marcel li Antunez}}\n[[Category:1959 births]]\n[[Category:Living people]]\n[[Category:Catalan artists]]\n[[Category:Spanish installation artists]]\n[[Category:Spanish performance artists]]\n[[Category:Spanish contemporary artists]]
39397570 <NAME> {{Infobox football biography\n| name = <NAME>\n| image = \n| caption =\n| fullname = \n| birth_date = {{birth date and age|1978|7|3}}\n| birth_place = United States\n| death_date = \n| death_place = \n| height = {{height|ft=5|in=9}}\n| position = [[Midfielder]] / [[Defender (association football)|Defender]]\n| youthyears1 = 1996–1999\n| youthclubs1 = [[Creighton Bluejays men's soccer|Creighton Bluejays]]\n| years1 = 2000\n| clubs1 = [[Milwaukee Rampage]]\n| caps1 = 26\n| goals1 = 1\n| years2 = 2000\n| clubs2 = [[Dallas Burn]]\n| caps2 = 0\n| goals2 = 0\n| years3 = 2001–2002\n| clubs3 = [[Milwaukee Rampage]]\n| caps3 = 53\n| goals3 = 5\n| years4 = 2001\n| clubs4 = → [[Chicago Fire Soccer Club|Chicago Fire]] (loan)\n| caps4 = 0\n| goals4 = 0\n| years5 = 2003\n| clubs5 = [[Milwaukee Wave United]]\n| caps5 = 15\n| goals5 = 1\n| totalcaps = 94\n| totalgoals = 7\n}}\n'''<NAME>''' is a retired American [[soccer]] player who played professionally in the [[USL A-League]].\n\nBernal graduated from [[Batavia High School (Batavia, Illinois)|Batavia High School]]. He attended [[Creighton University]], playing on the men's soccer team from 1996 to 1999. In February 2000, the [[Dallas Burn]] selected Bernal in the third round (34th overall) of the [[2000 MLS SuperDraft]]<ref>[http://www.mlsdraft.com/2010/01/mls-draft-picks-2000.html 2000 MLS SuperDraft]</ref> He attended three weeks of the Burn's pre-season training, then returned to Creighton to complete his degree. He eventually signed with the [[Milwaukee Rampage]] for the [[2000 A-League]] season. In July 2000, the [[Chicago Fire Soccer Club|Chicago Fire]] called up Bernal for two exhibition games.<ref>[http://firefootballrecords.com/player0558.html Chicago Fire: <NAME>]</ref> On August 26, 2000, the Dallas Burn signed Bernal to a one-year contract.<ref>[https://news.google.com/newspapers?nid=1683&dat=20000830&id=G7IaAAAAIBAJ&sjid=ri8EAAAAIBAJ&pg=6909,10155747 Bernal kicks it up a notch]</ref> He made several game-day rosters, but never came off the bench. On February 16, 2001, Dallas waived Bernal.<ref>[http://www.socceramerica.com/article/13096/mls-transactions-update-feb-16-2001.html MLS Transactions Update (Feb. 16, 2001)]</ref> Bernal returned to the Milwaukee Rampage where he played for the next two seasons. In July 2001, the Chicago Fire called up Bernal, but he again never came off the bench.<ref>[https://news.google.com/newspapers?nid=1683&dat=20000722&id=HXcfAAAAIBAJ&sjid=qS8EAAAAIBAJ&pg=6795,1474595 Bernal gets the call]</ref> In 2002, the Rampage won the A-League championship, but ceased operations that winter. On March 14, 2003, Bernal signed with the [[Milwaukee Wave United]] where he played for only one season.<ref>[https://news.google.com/newspapers?nid=1683&dat=20030314&id=jrQaAAAAIBAJ&sjid=gUMEAAAAIBAJ&pg=4672,2140617 Wave United signs Bernal]</ref>\n\n==External links==\n* [http://www.mlssoccer.com/players/steve-bernal MLS: Steve Bernal]\n\n==References==\n{{Reflist}}\n\n{{DEFAULTSORT:Bernal, Steve}}\n[[Category:Living people]]\n[[Category:1978 births]]\n[[Category:American soccer players]]\n[[Category:Creighton Bluejays men's soccer players]]\n[[Category:Chicago Fire Soccer Club players]]\n[[Category:FC Dallas draft picks]]\n[[Category:Milwaukee Rampage players]]\n[[Category:Milwaukee Wave United players]]\n[[Category:USL A-League players]]
39380207 <NAME> '''<NAME>''' or '''Miliaco''' (died in 1238 or later) was the chamberlain of the [[County of Champagne]] from 1167 until his retirement in 1222. He was a [[Knight Templar]] and a patron of the order.\n\nIn 1190, Robert joined the [[Third Crusade]]. In preparation he donated ten arpents of land and a family of serfs at [[Trilbardou]] to the Templars of [[Moisy]] and in exchange he was taken into the order as a ''confrater'' (lay brother), his mother was to be commemorated at Moisy and his sister Amelia and her husband, Manasses, were to receive spiritual benefits from the Templars.{{sfn|Schenk||p=215}} This donation was made on the condition that he die without heirs, yet by 1203 he had two daughters. He must have renewed the gift, for the Templars eventually built a house at Trilbardou. He also leased some meadows at [[Orgeval, Aisne|Orgeval]] to the Templars of [[Coulommiers, Seine-et-Marne|Coulommiers]] for an annual rent of ten measures of grain, a fact confirmed by Count [[Theobald III of Champagne]] in a charter 1198. He also leased the mills of [[Montceaux]] to the Templars, sparking a dispute with the monks of [[Montier-la-Celle]], which was not settled until 1216. In 1227, for forty ''[[sous]]'', he exempted the Templars from rent for the grange at [[Champfleury]], near Montceaux.{{sfn|Schenk||pp=233–34}}\n\nIn 1203, Robert gave six pounds in annual tolls to the [[Oratory of the Paraclete]]. The donation was earmarked for the benefit of his daughters, who were inmates there, for the duration of their lives.{{sfn|Hill|1999|p=118}} In 1205, he was with the court of the child count, [[Theobald IV of Champagne|Theobald IV]].{{sfn|Schenk||p=233 n. 133}} In 1213, as a veteran of the Crusade, he was questioned concerning the legality of the marriage of [[Isabella I of Jerusalem]] to Count [[Henry II of Champagne]], since she had previously been married to Lord [[Humphrey IV of Toron]]—who was still alive—and widowed by Margrave [[Conrad of Montferrat]].{{sfn|Schenk||p=233 n. 133}} In 1238 Robert was still living.{{sfn|Schenk||p=233 n. 133}}\n\n==Notes==\n{{Reflist|2}}\n\n==Sources==\n*{{cite journal |last=Hill |first=Erica |title=Lineage Interests and Nonreproductive Strategies |journal=Human Nature |year=1999 |volume=10 |issue=2 |pages=109–34 |doi=10.1007/s12110-999-1011-z}}\n*{{cite book |first=Jochen |last=Schenk |title=Templar Families: Landowning Families and the Order of the Temple in France, c. 1120–1307 |publisher=Cambridge University Press |location=Cambridge |year=2012}}\n\n[[Category:Christians of the Third Crusade]]\n[[Category:Medieval Knights Templar members]]
39395149 Night of a Thousand Candles {{Infobox album <!-- See Wikipedia:WikiProject_Albums -->\n| Name = Night of a Thousand Candles\n| Type = Album\n| Artist = [[The Men They Couldn't Hang]]\n| Cover = TMTCH-Night_of_a_Thousand_Candles.jpeg\n| Released = 1985\n| Recorded = Elephant Studios, [[Wapping]].\n| Producer = [[<NAME>]], <NAME>, [[<NAME>]], <NAME>\n| Genre = [[Roots rock]], [[Folk-rock]], [[Folk-punk]]\n| Original Length = {{Duration|m=37|s=07}}\n| CD Release Length = {{Duration|m=50|s=30}}\n| Label = [[Demon Records|Demon]]\n| Last album =\n| This album = '''''Night of a Thousand Candles''''' <br /> (1985)\n| Next album = ''[[How Green Is The Valley]]'' <br /> (1986)\n| Misc = {{Singles\n | Name = Night of a Thousand Candles\n | Type = studio\n | Single 1 = [[The Green Fields of France]] \n | Single 1 date = 1984\n | Single 2 = Ironmasters\n | Single 2 date = 1985\n | Single 3 = Greenback Dollar\n | Single 3 date = 1985\n }}\n}}\n\n'''''Night of a Thousand Candles''''' is the first studio album by the band [[The Men They Couldn't Hang]]. It was released in 1985 on vinyl and cassette format and then on CD format in 1987. The cassette version has two additional tracks and the CD version has six bonus tracks added. Tracks from the album were performed before its release during the [[John Peel]] sessions on July 14, 1984 and January 22, 1985.<ref>http://www.bbc.co.uk/radio1/johnpeel/sessions/1980s/1985/Jul16mentheycouldntha/</ref> Their cover version of [[Eric Bogle]]'s, "[[The Green Fields of France]]" reached number 3 on <NAME>'s festive 50 in 1984 and Ironmasters, the second single from the album reached number 11 in 1985.<ref>http://www.bbc.co.uk/radio1/johnpeel/festive50s/1980s/1985/</ref> The album also came 10th on [[Melody Maker]]'s End Of Year Critic Lists 1985.<ref>http://www.rocklistmusic.co.uk/mmpage.html#1985</ref>\n\n==Personnel==\n<ref>http://www.discogs.com/Men-They-Couldnt-Hang-Night-Of-A-Thousand-Candles/release/446101</ref>\n\n;The Men They Couldn't Hang\n* [[Shan<NAME>ley]] - [[bass guitar]], Tibetan anus flute\n* <NAME> (a.k.a. Cush) – vocals, [[guitar]]\n* <NAME> – drums, percussion\n* <NAME> (a.k.a. Swill) – vocals, guitar, [[tinwhistle]], [[melodica]]\n* <NAME> - guitar, [[bouzuki]], [[keyboards]]\n\n;Additional musicians\n* <NAME> – [[Bagpipes]], [[Uilleann Pipes]]\n* <NAME> – [[trumpet]]\n\n;Production\n* <NAME> – Tracks 12 & 13\n* [[<NAME>]] – Track 11\n* [[<NAME>]] - Tracks 4, 5, 6, 10 & 14\n* <NAME> - Tracks 1, 2, 3, 7, 8, 9, 16\n;Engineer\n* <NAME> \n;Photography\n* <NAME> \n\n==Track listing==\n{{Track listing\n| headline = Original Side 1\n| writing_credits = yes\n| extra_column = Lead vocals\n| title1 = The Day After\n| writer1 = <NAME>\n| extra1 = Swill, Cush\n| length1 = {{Duration|m=2|s=41}}\n| title2 = <NAME>\n| writer2 = <NAME>\n| extra2 = Swill, Cush\n| length2 = {{Duration|m=2|s=24}}\n| title3 = A Night to Remember\n| writer3 = <NAME>\n| extra3 = Swill\n| length3 = {{Duration|m=3|s=14}}\n| title4 = Johnny Come Home\n| writer4 = <NAME>\n| extra4 = Swill\n| length4 = {{Duration|m=2|s=26}}\n| title5 = [[The Green Fields of France]]\n| writer5 = [[<NAME>]]\n| extra5 = Cush\n| length5 = {{Duration|m=6|s=29}}\n}}\n{{Track listing\n| headline = Original Side 2\n| writing_credits = yes\n| extra_column = Lead vocals\n| title6 = Ironmasters\n| writer6 = <NAME>\n| extra6 = Swill, Cush\n| length6 = {{Duration|m=4|s=11}}\n| title7 = Hush Little Baby\n| writer7 = <NAME>\n| extra7 = Swill, Cush\n| length7 = {{Duration|m=4|s=22}}\n| title8 = Walkin' Talkin'\n| writer8 = <NAME>\n| extra8 = Swill, Cush\n| length8 = {{Duration|m=2|s=25}}\n| title9 = Kingdom Come\n| writer9 = <NAME>\n| extra9 = Swill, Cush\n| length9 = {{Duration|m=3|s=09}}\n| title10 = Scarlet Ribbons\n| writer10 = <NAME>\n| extra10 = Cush, Swill\n| length10 = {{Duration|m=5|s=55}}\n}}\n{{Track listing\n| headline = Additional Tracks on CD version\n| writing_credits = yes\n| extra_column = Lead vocals\n| title11 = Greenback Dollar\n| writer11 = [[<NAME>]]\n| extra11 = Cush, Swill\n| length11 = {{Duration|m=2|s=37}}\n| title12 = The Bells\n| writer12 = <NAME>\n| extra12 = Cush, Swill\n| length12 = {{Duration|m=2|s=19}}\n| title13 = Hell or England\n| writer13 = <NAME>\n| extra13 = Cush\n| length13 = {{Duration|m=1|s=42}}\n| title14 = The Men They Couldn't Hang\n| writer14 = <NAME>\n| extra14 = Swill, Cush\n| length14 = {{Duration|m=2|s=27}}\n}}\n{{Track listing\n| headline = Additional Tracks on CD and cassette version \n| writing_credits = yes\n| extra_column = Lead vocals\n| title15 = [[Donald Where's Your Troosers?]]\n| writer15 = [[<NAME> (musician)|<NAME>]]\n| extra15 = Cush, Swill\n| length15 = {{Duration|m=2|s=01}}\n| title16 = [[Rawhide (song)|Rawhide]]\n| writer16 = [[<NAME>]]\n| extra16 = Cush, Swill\n| length16 = {{Duration|m=2|s=19}}\n}}\n\n==References==\n<references/>\n\n[[Category:1985 debut albums]]\n[[Category:The Men They Couldn't Hang albums]]\n[[Category:Albums produced by <NAME>]]
39401385 <NAME> '''<NAME>''' (Copenhagen, August 21, 1882 - Paris, 1942) was a French architect.\n\n== Life ==\n\nDebat-Ponsan studied in the ''atelier'' of [[Victor Laloux]] at the [[École nationale supérieure des Beaux-Arts]] in Paris. He took the [[Prix de Rome]] in 1912 and was resident at the [[French Academy in Rome|Villa Medici]] from January 1913 through February 1915.\n\nFollowing the First World War, Debat-Ponsan was engaged in reconstruction projects, then in 1928 was named architect-in-chief of the French national ''[[Postes, télégraphes et téléphones (France)|Postes, télégraphes et téléphones]]'' administration (PTT).\n\nDebat-Ponsan was the son of French painter [[<NAME>]], and the uncle of French Prime Minister [[<NAME>]].\n\n== Work ==\n\n* Paris telephone central office for exchange "Ségur", 55 Avenue de Saxe (1900)\n* urban planning and reconstruction of [[Cambrai]], with fellow architects <NAME> and <NAME> (beginning 1919)\n* reconstruction of [[Driencourt]] (1920-1927)\n* PTT Administration Building, 20 Avenue de Segur (1931-1939)\n* Paris telephone central office for exchange "Suffren", Avenue de Suffren (1933)\n* École Jean-Baptiste Clément, [[Boulogne-Billancourt]] (1934)<ref>http://fr.topic-topos.com/ecole-jean-baptiste-clement-boulogne-billancourt</ref>\n* ''Unité de formation et de recherche biomédicale des Saints-Pères'' at [[Paris Descartes University]], with Louis Madeline and <NAME> (begun 1936, interrupted by the war, dedicated 1953)\n* <NAME>, [[Reims]], with Pol Gosset (1929-1932)\n* City Hall at [[Boulogne-Billancourt]], with [[<NAME>ier (architect)|<NAME>ier]] (1931–34)\n\n== References ==\n\n{{reflist}}\n\n== External links ==\n* [http://archiwebture.citechaillot.fr/fonds/FRAPN02_DEBJA biography (in French)]\n\n{{Authority control}}\n{{DEFAULTSORT:Debat-Ponsan}}\n[[Category:1882 births]]\n[[Category:1942 deaths]]\n[[Category:20th-century French architects]]\n[[Category:Prix de Rome for architecture]]\n[[Category:Alumni of the École des Beaux-Arts]]
39385306 Southernport Developments v Transnet In '''''Southernport Developments (Pty) Ltd (Previously Known as Tsogo Sun Ebhayi (Pty) Ltd) v Transnet Ltd''''', an important case in the [[South African law of lease]], Transnet excepted to Southernport Developments' particulars of claim on the ground that it disclosed no cause of action. The particulars of claim required Transnet to enter into good-faith negotiations with Southernport regarding the terms and conditions of an agreement of lease in respect of the properties described. The basis of Southernport's claims was contained in a contract which provided for the option to lease properties on terms and conditions to be negotiated, and provided for the referral of disputes to an arbitrator. The particulars of claim further alleged that any dispute between the parties had in terms of the contract to be referred to an arbitrator.\n\nTransnet claimed that the relevant clauses were unenforceable,\n\n* because there had been no agreement regarding the essential terms of any lease;\n* because the terms of the agreement relating to the lease were void for vagueness; and\n* because the relief claimed was not certain and definite in its terms and therefore incompetent.\n\nThe thrust of the exception was that the essential terms of any agreement, in order to be enforceable between the parties thereto, had to be agreed to or at least capable of ascertainment. It was alleged that this had not occurred in the present case. It was argued further that an agreement which required further negotiations, as in the present matter, could not acquire contractual force; at best for the plaintiff, it was an agreement to agree, which was unenforceable.\n\nThe court held that, before an agreement of lease came into existence, there had to be an agreement between the parties upon the use and enjoyment of the property and the rental to be paid. Agreement upon the use and enjoyment of the property involved the identification of the property.\n\nFurthermore, the intended use of the property was not stipulated, so the parties had not agreed upon the use and enjoyment of the property, which was a requirement in any lease agreement. The agreement also contained no provision for the rental to be paid, another essential element of a contract of lease.\n\nThe provision for the appointment of an arbitrator provided a dispute-resolution mechanism, not one for fixing the rent or any other term of the lease.\n\nThe plaintiff's reliance on such contract therefore disclosed no cause of action. For a dispute to exist in the present context, there first had to be something more than a subjective intention on the part of the contracting parties which were not the same. There had to be some basis for an objective debate between them. There was no such basis in the present case; the appointment of an arbitrator could not assist the plaintiff in this regard.\n\n== See also ==\n* [[South African contract law]]\n* [[South African law of lease]]\n\n== References ==\n* ''Southernport Developments (Pty) Ltd (Previously Known as Tsogo Sun Ebhayi (Pty) Ltd) v Transnet Ltd'' 2003 (5) SA 665 (W).\n\n== Notes ==\n{{Reflist}}\n\n[[Category:2003 in South African law]]\n[[Category:2003 in case law]]\n[[Category:South African contract case law]]\n[[Category:Gauteng Division cases]]
39389847 Template:White Sands PupFish roster {{IndyLB roster\n | League=Pecos League\n | TeamName=White Sands PupFish\n | RosterCode=14781\n | BC1=gold\n | FC1=blue\n | BC2=silver\n | FC2=blue\n | Date= May 22, 2016\n | Pitchers=\n{{MLBplayer| 6|<NAME>}}\n{{MLBplayer|32|<NAME>}}\n{{MLBplayer| 7|<NAME>}}\n{{MLBplayer| 5|Dametrus Ingram}}\n{{MLBplayer|51|<NAME>}}\n{{MLBplayer|35|<NAME>}}\n{{MLBplayer|23|<NAME>}}\n{{MLBplayer|10|<NAME>}}\n{{MLBplayer|14|<NAME>}}\n{{MLBplayer|37|<NAME>}}\n | Catchers=\n{{MLBplayer| 4|<NAME>}}\n{{MLBplayer|50|T.J. Wharton}}\n | Infielders=\n{{MLBplayer|20|<NAME>}}\n{{MLBplayer|33|<NAME>}}\n{{MLBplayer| 2|<NAME>}}\n{{MLBplayer|12|<NAME>}}\n{{MLBplayer| 3|Geraldo Valor}}\n | Outfielders=\n{{MLBplayer|11|<NAME>}}\n{{MLBplayer|24|<NAME>}}\n{{MLBplayer|36|<NAME>}}\n|Utility=\n | Manager=\n{{MLBplayer| |<NAME>}}\n | Coaches=\n}}<noinclude>[[Category:Pecos League team rosters templates|{{PAGENAME}}]]</noinclude>
39377880 File:More Than Words Can Say album cover.jpg \n==Summary==\n{{Non-free use rationale 2\n|Description = cover for More Than Words Can Say, 2006 album by <NAME>\n|Source = http://www.stevieholland.com/music.html\n|Date = May 23, 2006\n|Author = <NAME>\n|Article = More Than Words Can Say (album)\n|Purpose = to serve as the primary means of visual identification at the top of the article dedicated to the work in question.\n|Replaceability = As musical cover art, the image is not replaceable by free content; any other image that shows the packaging of the music would also be copyrighted, and any version that is not true to the original would be inadequate for identification or commentary.\n|Minimality = The copy is of sufficient resolution for commentary and identification but lower resolution than the original cover. Copies made from it will be of inferior quality, unsuitable as artwork on pirate versions or other uses that would compete with the commercial purpose of the original artwork.\n|Commercial = Use of the cover art in the article complies with Wikipedia non-free content policy and fair use under United States copyright law as described above.\n}}\n\n==Licensing==\n{{Non-free album cover|image has rationale=yes}}
39400143 Board of Intermediate and Secondary Education, Chittagong {{Infobox school\n| name = The Board of Intermediate and Secondary Education, Chittagong, Bangladesh \n| image = Logo of Chittagong Edu Board.gif\n| state = [[Chittagong]]\n| country = [[Bangladesh]]\n| website = [http://bise-ctg.gov.bd http://bise-ctg.gov.bd]\n}}\n\n'''The Board of Intermediate and Secondary Education''', [[Chittagong]], [[Bangladesh]] an autonomous organization, mainly responsible for holding two public examinations (SSC & HSC) and for providing recognition to the newly established non-government educational institutions and also for the supervision, control and developments of those institutions. The ''Chittagong Education Board'' started its operation in the year 1995.\n<!-- (Needs rewriting)\n==Background==\nAs per the ordinance of the board, The [[East Pakistan]] Intermediate and Secondary Education Ordinance, 1961 (East Pakistan Ordinance No. XXXIII of 1961) and its Section 3A(1), it is responsible for the organization, regulation, supervision, control and development of Intermediate, Secondary and Junior level public examinations and educational institutions of [[Chittagong]], [[Cox's Bazar]], Rangamati, Khagrachari & Bandarban district.\n-->\n\n==See also==\n* [[List of Education Boards in Bangladesh]]\n\n== References ==\n{{Reflist}}\n\n==External links==\n* [http://bise-ctg.gov.bd/Official Website]\n* [http://www.educationboard.gov.bd/index.php Education Boards of Bangladesh]\n* [http://www.dshe.gov.bd/ Directorate of Secondary and Higher Education in Bangladesh]\n\n{{Education Boards of Bangladesh}}\n{{Coord|22.368994|N|91.829205|E|display=title}}\n\n{{DEFAULTSORT:Chittagong, Board Of Intermediate And Secondary Education}}\n[[Category:Education in Bangladesh]]\n[[Category:Education Board in Bangladesh]]\n\n\n{{Bangladesh-edu-stub}}
39381907 Indo-Saint Lucian '''{{Infobox ethnic group|\n|group= Indo-Saint Lucians\n|image= \n|caption= \n|poptime= Approx. 3,000\n|popplace= {{flag|Saint Lucia}} (Approx. 3,000<ref name=cia/>)\n|langs= [[Caribbean Hindustani|Hindustani]], [[English language|English]]\n|rels= [[Hinduism]], [[Islam]], [[Sikhism]], [[Jainism]], [[Christianity]]\n|related= [[Indo-Caribbean]]\n}}\n\n'''Indo-Saint Lucians''' or '''Indian Saint Lucians''' are [[Demographics of Saint Lucia|Saint Lucians]] whose ancestry lies within the continent of [[India]], most notably [[North India]] and [[East India]].\n\nAs of 2013, people of Indian descent are a minority ethnic group in [[Saint Lucia]], accounting for 2.4% of the country's population. An additional 11.9% of the country is multiracial, predominantly of Indian and African descent.<ref name=cia>{{cite web |url=https://www.cia.gov/library/publications/the-world-factbook/geos/st.html |title=CIA - The World Factbook -- Saint Lucia |accessdate=2013-05-13 |publisher=CIA | archiveurl= https://www.cia.gov/library/publications/the-world-factbook/geos/st.html| archivedate= May 7, 2013 <!--DASHBot-->| deadurl= no}}</ref>\n\n==See also==\n* [[Indo-Caribbean]]\n\n==External links==\n*[http://www.slucia.com/visions/2002/indian.html THE EAST INDIAN LEGACY IN ST LUCIA], St. Lucia Tourist Guide\n\n== References and footnotes ==\n{{Reflist}}\n{{NRI-PIO}}\n\n[[Category:Indo-Caribbean|Saint Lucia]]\n[[Category:Ethnic groups in Saint Lucia]]
39396794 <NAME> {{use dmy dates|date=September 2016}}\n{{Infobox amateur wrestler\n|name = <NAME>\n|image = \n|image_size = \n|caption = \n|weight = \n|birth_date = {{birth date|1887|1|22|df=yes}}\n|birth_place = [[Malmö]], [[Sweden]]\n|death_date = {{death date and age|1971|2|3|1887|1|22|df=yes}}\n|death_place = Malmö, Sweden\n|high school = \n|state championships = \n|college = \n|ncaa championships = \n|olympic team = \n}}\n\n'''<NAME>''' (22 January 1887 – 3 February 1971) was a Swedish [[amateur wrestling|wrestler]]. He competed in the [[Wrestling at the 1912 Summer Olympics – Men's Greco-Roman featherweight|featherweight event]] at the [[1912 Summer Olympics]].<ref name="sports-reference">{{cite web |url=http://www.sports-reference.com/olympics/athletes/ak/bruno-akesson-1.html |title=Bruno Åkesson Olympic Results |accessdate=2013-05-15 |work=sports-reference.com}}</ref>\n\n==References==\n{{reflist}}\n\n{{DEFAULTSORT:Akesson, Bruno}}\n[[Category:1887 births]]\n[[Category:1971 deaths]]\n[[Category:Swedish sport wrestlers]]\n[[Category:Olympic wrestlers of Sweden]]\n[[Category:Wrestlers at the 1912 Summer Olympics]]\n[[Category:Swedish male sport wrestlers]]\n[[Category:Sportspeople from Malmö]]\n\n\n{{Sweden-wrestling-bio-stub}}
39378225 <NAME> {{Infobox tennis biography\n| name = <NAME>\n| image = \n| image_size = \n| alt = \n| caption = \n| fullname = \n| residence = \n| birth_date = {{birth date|1880|9|20|df=yes}}\n| birth_place = [[Oslo]], [[Norway]]\n| death_date = {{death date and age|1948|11|10|1880|9|20|df=yes}}\n| death_place = Oslo, Norway\n| height = \n| weight = \n| college = \n| turnedpro = \n| retired = \n| plays = \n| careerprizemoney = \n| tennishofyear = \n| tennishofid = \n| website = \n}}\n\n'''<NAME>''' (20 September 1880 – 10 November 1948) was a Norwegian [[tennis]] player. He competed in two events at the [[1912 Summer Olympics]].<ref name="sports-reference">{{cite web |url=http://www.sports-reference.com/olympics/athletes/sm/trygve-smith-1.html |title=Trygve Smith Olympic Results |accessdate=13 May 2013 |work=sports-reference.com}}</ref>\n\n==References==\n{{reflist}}\n\n{{DEFAULTSORT:Smith, Trygve}}\n[[Category:1880 births]]\n[[Category:1948 deaths]]\n[[Category:Norwegian male tennis players]]\n[[Category:Olympic tennis players of Norway]]\n[[Category:Tennis players at the 1912 Summer Olympics]]\n[[Category:Sportspeople from Oslo]]\n{{Norway-tennis-bio-stub}}
39401292 Ramblin' with Mose {{Infobox album <!-- See Wikipedia:WikiProject_Albums -->\n| Name = Ramblin' with Mose\n| Type = Studio\n| Artist = [[<NAME>]]\n| Cover = Ramblin' with Mose.jpg\n| Released = February 1962\n| Recorded = April 18, 1958<br><small>[[Van Gelder Studio]], Hackensack, New Jersey\n| Genre = [[Blues]], [[jazz]]\n| Length = \n| Label = [[Prestige Records|Prestige]]<br><small>PRLP 7215\n| Producer = [[<NAME>]]\n| Chronology = [[Mose Allison]]\n| Last album = ''[[Young Man Mose]]''<br>(1958)\n| This album = '''''Ramblin' with Mose'''''<br>(1958)\n| Next album = ''[[Creek Bank]]''<br>(1958)\n}}\n\n'''''Ramblin' with Mose''''' is the sixth album to be released (but fourth recorded) by blues/jazz pianist and vocalist [[Mose Allison]] which was recorded in 1958 and released on the [[Prestige Records|Prestige]] label.<ref>[http://www.jazzdisco.org/prestige-records/catalog-7200-series/#prlp-7215 Prestige Records discography] accessed May 16, 2013</ref>\n\n==Reception==\n{{Album ratings\n| rev1 = [[Allmusic]]\n| rev1Score = {{rating|3|5}}<ref name="Allmusic"/> \n}}\nThom Jurek of [[Allmusic]] states, "Allison displays absolutely brilliant instrumental prowess as both an arranger and as an improviser. His unique, often unorthodox interpretations of standards and pop songs set him apart from virtually every one of his peers".<ref name="Allmusic">{{allmusic| class=album| id=mw0000410650| label=Mose Allison – ''Ramblin' with Mose'': Review| first=Thom| last=Jurek| accessdate=May 16, 2013}}</ref>\n\n== Track listing ==\n''All compositions by Mose Allison except as indicated''\n# "I Got a Right to Cry" ([[Joe Liggins]]) - 2:48 \n# "[[Old Devil Moon]]" ([[Burton Lane]], [[Yip Harburg]]) - 5:08 \n# "The Minstrels" - 3:27 \n# "[[You Belong to Me (1952 song)|You Belong to Me]]" ([[Pee Wee King]], [[Chilton Price]], [[Redd Stewart]]) - 4:21 \n# "[[Stranger in Paradise (song)|Stranger in Paradise]]" ([[<NAME> (writer)|<NAME>]], [[George Forrest (author)|George Forrest]]) - 5:26 \n# "The Kissin' Bug" (<NAME>, <NAME>, <NAME>) - 4:30 \n# "Ramble" - 3:10 \n# "Saritha" - 3:54 \n# "Old Man John" - 2:17 \n# "Ingenue" - 3:00 \n# "Old Devil Moon" [Alternate Take] (Lane, Harburg) - 5:01 <small>Bonus track on CD reissue</small> \n# "Stranger in Paradise" [Alternate Take] (Wright, Forrest) - 5:49 <small>Bonus track on CD reissue</small> \n# "Ramble" [Alternate Take] - 3:24 <small>Bonus track on CD reissue</small> \n\n== Personnel ==\n*[[Mose Allison]] - [[piano]], [[trumpet]], [[vocals]]\n*[[Addison Farmer]] - [[double bass|bass]]\n*[[Ronnie Free]] - [[drum kit|drums]]\n\n== References ==\n{{reflist}}\n\n{{Mose Allison}}\n\n[[Category:Mose Allison albums]]\n[[Category:1958 albums]]\n[[Category:Prestige Records albums]]\n[[Category:Albums produced by Bob Weinstock]]\n[[Category:Albums recorded at Van Gelder Studio]]
39389290 <NAME>, Kerman {{Infobox settlement\n|official_name =<NAME>\n|native_name =<NAME>\n|settlement_type = village\n|pushpin_map =Iran\n|mapsize =150px\n|coordinates_region = IR\n|subdivision_type = [[List of countries|Country]]\n|subdivision_name = {{flag|Iran}}\n|subdivision_type1 =[[Provinces of Iran|Province]]\n|subdivision_name1 =[[Kerman Province|Kerman]]\n|subdivision_type2 =[[Counties of Iran|County]]\n|subdivision_name2 = [[Rafsanjan County|Rafsanjan]]\n|subdivision_type3 =[[Bakhsh]]\n|subdivision_name3 =[[Central District (Rafsanjan County)|Central]]\n|subdivision_type4 =[[Rural Districts of Iran|Rural District]]\n|subdivision_name4 =[[Khenaman Rural District|Khenaman]]\n|leader_title = \n|leader_name = \n|established_title =\n|established_date = \n|area_total_km2 = \n|area_footnotes = \n|population_as_of = 2006\n|population_total =132\n|population_density_km2 =auto\n|timezone = [[Iran Standard Time|IRST]]\n|utc_offset = +3:30\n|timezone_DST = [[Iran Daylight Time|IRDT]]\n|utc_offset_DST = +4:30\n|coordinates_display = %\n|latd=30|latm=27|lats=22|latNS=N\n|longd=56|longm=27|longs=51|longEW=E\n|elevation_m = \n|area_code = \n|website = \n|footnotes =\n}}\n'''<NAME>''' ({{lang-fa|دوازده امام}}, also [[Romanize]]d as '''<NAME>''')<ref>{{GEOnet3|-3060167|Davazdah Emam}}</ref> is a village in [[Khenaman Rural District]], in the [[Central District (Rafsanjan County)|Central District]] of [[Rafsanjan County]], [[Kerman Province]], [[Iran]]. At the 2006 census, its population was 132, in 39 families.<ref>{{IranCensus2006|08}}</ref> \n\n== References ==\n{{reflist}}\n\n{{Rafsanjan County}}\n\n\n[[Category:Populated places in Rafsanjan County]]\n\n{{Rafsanjan-geo-stub}}
39387968 Wikipedia:Peer review/<NAME>/archive1 ===[[Wikipedia:Peer review/<NAME>/archive1|<NAME>]]===\n<!--\nToolbox not included on PR page--><noinclude>{{Peer review tools|<NAME>}}</noinclude>\n:{{PR/heading|<NAME>| Wikipedia:Peer review/<NAME>/archive1|May 2013}}<!--\nPlease do not use level 1-3 section headings or horizontal rules in this peer review. Please do not include any images, such as done/not done templates with tick/cross graphics, and do not paste in semi-automated peer reviews below: link to them instead. Peer review pages should not be moved.\n-->\n'''This peer review discussion has been closed.'''<br/> <noinclude>[[Category:June 2013 peer reviews]]</noinclude>\nI've listed this article for peer review because I would like to take this article to [[WP:GA|GA]] status in the future and I hope to get some outside input on how I could further improve/expand the article.\n\n\nThank you for your time, —<font face=Verdana><span style="border:1px solid;border-radius:1.7em 0"><span style="background:#000;border-radius:1.5em 0 0"> -[[User:Dainomite|<font color=#FFF>dain</font>]]</span>[[User:Dainomite/t|<font color=#000>omite</font>]] </span></font> 19:03, 14 May 2013 (UTC)\n\n'''Comments from AustralianRupert''': good work so far, I have the following suggestions:\n*"General Brown retired from active duty" --> "Brown retired from active" (there is no need to repeat his rank here);\n**{{done}} fixed\n*if known, some details about his early life should probably be added to a small "Early life" section. For instance, place and date of birth, parents, schooling, etc;\n**<s>{{not done}} I will have to look for some.</s>\n***{{done}} I found some sources regarding his early life.\n*"He was commissioned as a Second Lieutenant" --> "He was commissioned as a second lieutenant in May" per [[WP:MILTERMS]]\n**{{done}} \n*"After completing OCS Brown returned to Vietnam as a helicopter pilot": if known, it should probably be stated when and where he did his flight training;\n**<s>{{not done}} I think I saw this in one of the references, I will go back through and check.</s>\n***{{done}} Added and expanded upon this.\n*watch for repetition, for instance: "commanded U.S. forces during Operation Prime Chance where he oversaw U.S. forces" ("U.S. forces is said twice here);\n**{{done}} \n*this clause seems too far removed from that to which it relates: "which was a result of the Chadian–Libyan conflict" (i.e. it is not clear what "which" relates to here);\n**{{done}} \n*there appears to be a typo here: "From there Brown went on to lead and U.S. Army Special Operations Command"\n**{{done}}\n*comma splice: "in Operation Desert Storm, he went on to lead"\n**{{done}}\n*repetition: "went on to lead..." and then "He then went on to become"\n**{{done}}\n*repetition: "found that Lt Gen <NAME> and other army officers were found" (found is repeated);\n**{{done}}\n*inconsistent capitalisation: "other army officers" and then "retired from the Army" (IMO it should be "Army" in both cases);\n**{{done}}\n*inconsistent date format: "July 27, 2000. Retrieved 2013-04-27";\n**{{done}} I blame reflinks! {{smiley|tongue}}\n*the See also section is blank and therefore probably should be removed (the portals should probably be moved down into the References section);\n**{{done}} That makes sense to me, should this also be done with the commons category since "external links" is also blank aside from that.\n*"In it Brown is highly critical of the " --> "In it Brown was highly critical of the" (it is in the past, so it should probably use past tense);\n**{{done}} \n*note 15 should be formatted to include title, publisher and accessdate information;\n**{{done}}\n*in the References this appears: "Brown's Official US Army Bio", but it does not have any details explaining how the reader can access it (i.e. date of publication, url if it is a web site, publisher, author, etc.) \n**Removed, there isn't anything in the article that I haven't already found in one of the existing references.\n* are there any details about his family? Obviously as a BLP we want to keep things to a minimum in this regard, but I think some indication of a family probably should be made if known. [[User:AustralianRupert|AustralianRupert]] ([[User talk:AustralianRupert|talk]]) 10:36, 16 May 2013 (UTC)\n**<s>I haven't come across any. I'm sure there might be some mentions in local papers from the Tampa Bay area because they seem to mention that stuff more often than other sources.</s>\n***{{done}} I added what information I came across.\n\nThank you very much Rupert for all the suggestions. I've never taken an article to this point so it is a very good learning experience for myself and I appreciate the time you put in to critique it thus far. I know I can expand on him a bit in regards to him being a helicopter pilot during the Vietnam War. I wish I could find more about him while he was the head of various commands as opposed to just simply stating that he held those commands. For instance, him being the SOCOM commander for four years during the Afghanistan and Iraw wars but I'm not quite sure what to put in there for him serving during that time period. Also, should the "Military service" section be broken down further at all? Thanks again, —<font face=Verdana><span style="border:1px solid;border-radius:1.7em 0"><span style="background:#000;border-radius:1.5em 0 0"> -[[User:Dainomite|<font color=#FFF>dain</font>]]</span>[[User:Dainomite/t|<font color=#000>omite</font>]] </span></font> 15:07, 16 May 2013 (UTC)\n\n'''Comments''' - Dank ([[User talk:Dank|push to talk]])\n*"In a career that spanned four decades": probably best not to say that twice in the same paragraph.\n**{{fixed}}\n*"Fort Meade Maryland": comma\n**Do you mean remove the existing comma?\n***Always put a comma between city and state. - Dank ([[User talk:Dank|push to talk]]) 12:45, 10 June 2013 (UTC)\n****{{facepalm}} {{fixed}}\n*"His father, <NAME> was": two commas or none\n**{{fixed}}, removed the one\n*"was in the U.S. Army, and a member of the 89th Infantry Division": was in the 89th Infantry Division [most readers will understand that's in the army]\n**{{fixed}}\n*"In High School he played": In High School Brown played ["he" might mean his father]\n**{{fixed}}\n*"... baseball and basketball and eventually made it onto a semi-pro team team": semi-pro baseball or basketball team? I would think this would happen pretty quickly or not at all, so how soon is "eventually"? "made it onto" is informal. - Dank ([[User talk:Dank|push to talk]]) 04:00, 10 June 2013 (UTC)\n**I would assume baseball but he doesn't specifically say in the interview so that's why it's worded like that unfortunately. Here's the relevent sentences from the reference: "'' Initially I was more interested in sports than academics, and played high school basketball and baseball. I actually went out for and made a semi-pro team in Fayetteville, N.C., that used to play at a stadium on Highway 301.''" Should I leave it as is or change it to baseball?\n***"Stadium" suggests baseball to me. - Dank ([[User talk:Dank|push to talk]]) 12:45, 10 June 2013 (UTC)\n****{{fixed}}\n\nThank you very much for your response [[User:Dank|Dank]]. I really appreciate you taking the time to review the article. —<font face=Verdana><span style="border:1px solid;border-radius:1.7em 0"><span style="background:#000;border-radius:1.5em 0 0"> -[[User:Dainomite|<font color=#FFF>dain</font>]]</span>[[User:Dainomite/t|<font color=#000>omite</font>]] </span></font> 04:32, 10 June 2013 (UTC)
39402736 Myung-hee {{Infobox Korean name\n| hangul = 명희\n| hanja = [[#Hanja|Various]]\n| mr = Myŏnghŭi\n| rr = Myeong-hui\n}}\n{{contains Korean text}}\n\n'''Myung-hee''', also spelled '''Myong-hui''', '''Myeong-hui''', or '''Myeong-hee''', is a Korean unisex given name. Its meaning differs based on the [[hanja]] used to write each syllable of the name.\n\n==Hanja==\nThere are 19 hanja with the reading "[[myung]]" and 24 hanja with the reading "[[Hee (Korean name)|hee]]" on the South Korean government's official list of hanja which may be registered for use in given names.<ref>{{cite web|url=http://help.scourt.go.kr/nm/img/hanja/hanja.pdf|title=인명용 한자표|trans_title=Table of hanja for use in personal names|publisher=Supreme Court|publication-place=South Korea|accessdate=2013-10-17}}</ref> Examples include:\n\n*{{linktext|命|熹}} (목숨 명 ''moksum myeong'' "life"; 빛날 희 ''bitnal hui'' "shining")\n*{{linktext|明|熙}} (밝을 명 ''balgeul myeong'' "bright"; 빛날 희 ''bitnal hui'' "shining")\n*{{linktext|明|姬}} (feminine; 밝을 명 ''balgeul myeong'' "bright", 여자 희 ''yeoja hui'' "woman")\n\n==People==\nPeople with this name include:\n*[[Kim Myeong-hui]] (1788–?), Joseon Dynasty male calligrapher\n*[[Hong Myong-hui]] (1888–1968), North Korean male novelist\n*[[Sim Myeong-hui]] (born 1925), South Korean male sport shooter\n*[[Myeong-Hee Yu]] (born 1954), South Korean female microbiologist\n*[[Jeong Myung-hee]] (born 1964), South Korean female former basketball player \n*[[Lee Meong-hee]] (born 1978), South Korean female volleyball player\n*[[Chung Myung-hee]], South Korean former female badminton player\n*Ri Myong-hui, North Korean female singer, member of [[Moranbong Band]]\n\n==See also==\n*[[List of Korean given names]]\n\n==References==\n{{reflist}}\n\n{{given name}}\n\n[[Category:Korean unisex given names]]
39376649 Spencertown, New York {{Infobox settlement\n|official_name = Spencertown, New York\n|settlement_type = [[Hamlet (New York)|Hamlet]]\n|nickname = \n|motto =\n\n<!-- Images -->\n|image_skyline = \n|imagesize = \n|image_caption = \n|image_flag = \n|image_seal =\n\n<!-- Maps -->\n|image_map = \n|mapsize = \n|map_caption = \n|image_map1 = \n|mapsize1 = \n|map_caption1 = \n|pushpin_map = New York\n|pushpin_label = Spencertown\n\n<!-- Location -->\n|coordinates_region = US-NY\n|subdivision_type = [[List of countries|Country]]\n|subdivision_name = [[United States]]\n|subdivision_type1 = [[Political divisions of the United States|State]]\n|subdivision_name1 = [[New York (state)|New York]]\n|subdivision_type2 = [[List of counties in New York|County]]\n|subdivision_name2 = [[Columbia County, New York|Columbia]]\n|subdivision_type3 = [[Town (New York)|Town]]\n|subdivision_name3 = [[Austerlitz, New York|Austerlitz]]\n\n<!-- Government -->\n|government_footnotes = \n|government_type = \n|leader_title = \n|leader_name = \n|leader_title1 = \n|leader_name1 = \n|established_title = \n|established_date =\n\n<!-- Area -->\n|unit_pref = \n|area_footnotes = \n|area_magnitude = \n|area_total_km2 = \n|area_land_km2 = \n|area_water_km2 = \n|area_total_sq_mi = \n|area_land_sq_mi = \n|area_water_sq_mi =\n\n<!-- Population -->\n|population_as_of = \n|population_footnotes = \n|population_total = \n|population_density_km2 = \n|population_density_sq_mi =\n\n<!-- General information -->\n|timezone = [[Eastern Time Zone|Eastern (EST)]]\n|utc_offset = -5\n|timezone_DST = EDT\n|utc_offset_DST = -4\n|elevation_footnotes = \n|elevation_m = \n|elevation_ft = 686\n|latd = 42 |\nlatm = 19 |\nlats = 24 |\nlatNS = N |\nlongd = 73 |\nlongm = 32 |\nlongs = 45 |\nlongEW = W |\ncoordinates_display=%\n\n<!-- Area/postal codes & others -->\n|postal_code_type = [[ZIP code]]\n|postal_code = 12165\n|area_code = [[Area code 518|518]]\n|blank_name = [[Geographic Names Information System|GNIS]] feature ID\n|blank_info = 965990<ref name="gnis"/>\n|blank1_name =\n|blank1_info = \n|website = \n|footnotes = \n}}\n'''Spencertown''' is a [[Hamlet (New York)|hamlet]] in the town of [[Austerlitz, New York|Austerlitz]], [[Columbia County, New York|Columbia County]], [[New York (state)|New York]], [[United States]].<ref name="gnis">{{cite gnis|965990|Spencertown, New York}}</ref> Its [[ZIP code]] is 12165.<ref name="GR7">{{cite web|url=https://tools.usps.com/go/ZipLookupResultsAction!input.action?resultMode=1&companyName=&address1=&address2=&city=SPENCERTOWN&state=NY&urbanCode=&postalCode=&zip=|title=USPS - Look Up a ZIP Code|accessdate=2015-12-28|author=United States Postal Service|year=2015}}</ref>\n\nThe [[Daniel and Clarissa Baldwin House]], [[Pratt Homestead]], [[Spencertown Academy]], and [[St. Peter's Presbyterian Church|St. Peter's Presbyterian Church and Spencertown Cemetery]] are listed on the [[National Register of Historic Places]].<ref name="nris">{{NRISref|version=2010a}}</ref><ref name="nps">{{cite web|url=http://www.cr.nps.gov/nr/listings/20120706.htm|title=National Register of Historic Places Listings|date=2012-07-06|work=Weekly List of Actions Taken on Properties: 6/25/12 through 6/29/12|publisher=National Park Service}}</ref>\n\n==Notes==\n{{reflist}}\n{{Columbia County, New York}}\n\n[[Category:Hamlets in Columbia County, New York]]\n[[Category:Hamlets in New York]]\n\n\n{{ColumbiaCountyNY-geo-stub}}
39400918 Template:<NAME> {{Navbox\n| name = <NAME>\n| state = {{{state|autocollapse}}}\n| title = [[<NAME>]]\n| listclass = hlist\n\n| group1 = Screenwriting\n| list1 =\n*''[[Humor Risk]]'' (1921)\n*''[[Ladies of Leisure]]'' (1930)\n*''[[Madonna of the Streets (film)|Madonna of the Streets]]'' (1930)\n*''[[Dirigible (film)|Dirigible]]'' (1931)\n*''[[The Miracle Woman]]'' (1931)\n*''[[Platinum Blonde (film)|Platinum Blonde]]'' (1931)\n*''[[Forbidden (1932 film)|Forbidden]]'' (1932)\n*''[[Behind the Mask (1932 film)|Behind the Mask]]'' (1932)\n*''[[Love Affair (1932 film)|Love Affair]]'' (1932)\n*''[[Attorney for the Defense]]'' (1932)\n*''[[The Defense Rests]]'' (1934)\n*''[[Lady by Choice]]'' (1934)\n*''[[Once to Every Woman]]'' (1934)\n*''[[Love Me Forever]]'' (1935)\n*''[[The Whole Town's Talking]]'' (1935)\n*''[[Pennies from Heaven (1936 film)|Pennies from Heaven]]'' (1936)\n*''[[Double Wedding]]'' (1937)\n*''[[Made for Each Other (1939 film)|Made for Each Other]]'' (1939)\n*''[[The Real Glory]]'' (1939)\n*''[[Gone with the Wind (film)|Gone with the Wind]]'' (1939)\n*''[[The Westerner (film)|The Westerner]]'' (1940)\n*''[[Blood and Sand (1941 film)|Blood and Sand]]'' (1941)\n*''[[Confirm or Deny]]'' (1941)\n*''[[The Pride of the Yankees]]'' (1942)\n*''[[Crash Dive]]'' (1943)\n*''[[Lifeboat (film)|Lifeboat]]'' (1944)\n*''[[Leave Her to Heaven]]'' (1945)\n*''[[It's a Wonderful Life]]'' (1946)\n*''[[Thunder in the East (1952 film)|Thunder in the East]]'' (1952)\n*''[[Guys and Dolls (film)|Guys and Dolls]]'' (1955)\n*''[[The Big Bankroll]]'' (1961)\n\n| group2 = Other\n| list2 =\n*''[[Guys and Dolls]]''\n\n| group3 = Family\n| list3 =\n*[[<NAME>]] (son)\n\n}}<noinclude>\n{{collapsible option}}\n{{DEFAULTSORT:Swerling, Jo}}\n[[Category:American writer navigational boxes]]\n[[Category:Dramatist and playwright navigational boxes]]\n</noinclude>
39392748 <NAME> {{Infobox Politician\n| name = <NAME>\n| image =\n| caption =\n| birth_date =\n| birth_place = [[Ottawa]], [[Ontario]]\n| office = [[Legislative Assembly of British Columbia|MLA]] for [[North Coast (provincial electoral district)|North Coast]]\n| term_start = 2013\n| term_end =\n| predecessor = [[Gary Coons]] \n| successor = \n| party = [[British Columbia New Democratic Party|New Democratic Party]]\n| residence = [[Prince Rupert, British Columbia]]\n| religion =\n| profession = \n| spouse = \n| children = \n}}\n\n'''<NAME>''' is a [[Canada|Canadian]] politician, who was elected to the [[Legislative Assembly of British Columbia]] in the [[British Columbia general election, 2013|2013 provincial election]].<ref>[http://globalnews.ca/news/563098/early-results-interior-of-b-c/ "Early results: Interior of B.C."]. [[Global News]], May 14, 2013.</ref> She represents the electoral district of [[North Coast (provincial electoral district)|North Coast]] as a member of the [[British Columbia New Democratic Party]]. She was previously a city councillor for [[Prince Rupert City Council]].\n\n==References==\n{{reflist}}\n\n==External links==\n*[http://jenniferrice.bcndp.ca/ Jennifer Rice]\n\n{{British Columbia MLAs}}\n\n{{DEFAULTSORT:Rice, Jennifer}}\n[[Category:British Columbia municipal councillors]]\n[[Category:British Columbia New Democratic Party MLAs]]\n[[Category:Living people]]\n[[Category:People from <NAME>, British Columbia]]\n[[Category:Politicians from Ottawa]]\n[[Category:Women MLAs in British Columbia]]\n\n{{BritishColumbia-politician-stub}}
39397962 Nassella lepida {{taxobox\n | image = Stipa lepida.jpg\n|status = G5\n|status_system = TNC\n | regnum = [[Plantae]]\n | unranked_divisio = [[Angiosperms]]\n | unranked_classis = [[Monocots]]\n | unranked_ordo = [[Commelinids]]\n | ordo = [[Poales]]\n | familia = [[Poaceae]]\n | genus = ''[[Nassella]]''\n | species = '''''N. lepida'''''\n | binomial = ''Nassella lepida''\n | binomial_authority = ([[<NAME>|Hitchc.]]) Barkworth\n | synonyms = ''Stipa lepida''\n}}\n'''''Nassella lepida''''' ([[Synonym (taxonomy)|syn.]] ''Stipa lepida'') is a species of [[grass]] known by the common names '''foothill needlegrass''',<ref name=usda>[http://plants.usda.gov/java/profile?symbol=NALE2 ''Nassella lepida''.] USDA PLANTS Profile.</ref><ref name=jeps>[http://ucjeps.berkeley.edu/cgi-bin/get_JM_treatment.pl?8738,9138,9141 ''Nassella lepida''.] The Jepson Manual.</ref> '''foothills nassella''',<ref name=gm>Barkworth, M. [http://herbarium.usu.edu/webmanual/info2.asp?name=Nassella_lepida&type=treatment ''Nassella lepida''.] In: Barkworth et al. (eds.), Grass Manual. Flora of North America.</ref> '''foothill stipa''', '''small-flowered stipa''', '''small-flowered needlegrass''', and '''smallflower tussockgrass'''.<ref name=cal> Calflora. 2013. [http://www.calflora.org/cgi-bin/species_query.cgi?where-calrecnum=5766 ''Nassella lepida''.] Berkeley, California: The Calflora Database.</ref> It is native to [[California]] in the United States, where it occurs as far north as [[Humboldt County, California|Humboldt County]],<ref name=cal/> and its range extends into [[Baja California]].<ref name=jeps/>\n\nThis is a perennial bunchgrass growing up to a meter tall. The flat or rolled leaf blades are up to 23 centimeters long. The [[panicle]] is up to 55 centimeters long and has branches bearing up to 6 spikelets each The spikelet has an [[awn (botany)|awn]] up to 4.6<ref name=jeps/> to 5.5<ref name=gm/> centimeters long.\n\nThis grass grows in [[chaparral]] and [[grassland]] habitat.<ref name=jeps/> It can also be found in [[coastal sage scrub]] and [[California coastal prairie|coastal prairie]].<ref name=cal/>\n\nThis species and several others were recently transferred from genus ''Stipa'' into ''Nassella'', mainly on the basis of their "strongly [[Convolute (botany)|convolute]] [[Lemma (botany)|lemmas]]". Genetic evidence supports the transfer.<ref name=gm/>\n\nThis species may [[hybrid (biology)|hybridize]] with ''[[Nassella pulchra]]''.<ref name=gm/>\n\n==References==\n{{reflist}}\n\n==External links==\n*[http://www.calflora.org/cgi-bin/species_query.cgi?where-taxon=Stipa+lepida Calflora Database: ''Stipa lepida'' (foothill needle grass)]\n*[http://ucjeps.berkeley.edu/cgi-bin/get_IJM.pl?tid=45641 Jepson eFlora (TJM2): ''Stipa lepida'']\n*[http://plants.usda.gov/core/profile?symbol=NALE2 USDA Plants Profile for ''Nassella lepida'' (foothill needlegrass)]\n*[http://calphotos.berkeley.edu/cgi-bin/img_query?where-taxon=Stipa+lepida&where-anno=1 ''Stipa lepida'' — UC Photos gallery]\n\n\n[[Category:Nassella|lepida]]\n[[Category:Bunchgrasses of North America]]\n[[Category:Native grasses of California]]\n[[Category:Grasses of Mexico]]\n[[Category:Flora of Baja California]]\n[[Category:Flora of the Sierra Nevada (U.S.)]]\n[[Category:Natural history of the California chaparral and woodlands]]\n[[Category:Natural history of the California Coast Ranges]]\n[[Category:Natural history of the Peninsular Ranges]]\n[[Category:Natural history of the San Francisco Bay Area]]\n[[Category:Natural history of the Santa Monica Mountains]]\n[[Category:Natural history of the Transverse Ranges]]
39384109 Template:FC Nantes matches {{Navbox\n|titlestyle = background:#FFEC00; color:#005827; border:1px solid #005827; \n|abovestyle = background:#ffffff;color:#FFFFFF;\n|groupstyle = background:#FFEC00; color:#005827; \n|title = [[FC Nantes|<span style="color:#005827">FC Nantes</span>]] matches\n|state = {{{state|autocollapse}}}\n|listclass = hlist\n|name = FC Nantes matches\n| group1 = [[Coupe de France|<span style="color:#005827; ">Coupe de France</span>]] Finals\n| list1 =\n* [[1966 Coupe de France Final|1966]]\n* [[1970 Coupe de France Final|1970]]\n* [[1973 Coupe de France Final|1973]]\n* [[1979 Coupe de France Final|1979]]\n* [[1983 Coupe de France Final|1983]]\n* [[1993 Coupe de France Final|1993]]\n* [[1999 Coupe de France Final|1999]]\n* [[2000 Coupe de France Final|2000]]\n\n| group2 = [[Coupe de la Ligue|<span style="color:#005827; ">Coupe de la Ligue</span>]] Final\n| list2 =\n* [[2004 Coupe de la Ligue Final|2004]]\n\n|group3 = [[Trophée des Champions|<span style="color:#005827">Trophée des Champions</span>]]\n|list3 =\n* [[1965 Challenge des Champions|1965]]\n* [[1966 Challenge des Champions|1966]]\n* [[1973 Challenge des Champions|1973]]\n* [[1995 Trophée des Champions|1995]]\n* [[1999 Trophée des Champions|1999]]\n* [[2000 Trophée des Champions|2000]]\n* [[2001 Trophée des Champions|2001]]\n}}<noinclude>\n{{collapsible option}}\n\n[[Category:FC Nantes templates|Matches]]\n[[Category:Association football matches navigational boxes by teams:France|Nantes]]\n</noinclude>
39397040 King's Hill, Hampshire {{Infobox mountain\n| name = King's Hill\n| photo = \n| photo_caption = \n| elevation_m = 218\n| elevation_ref = <ref name="JF">[http://www.viewfinderpanoramas.org/prominence.html ''Summit Listings by Relative Height''] by <NAME>, compiled by <NAME>. Accessed on 15 May 2013.</ref>\n| prominence_m = 46\n| prominence_ref = <ref name="JF"/>\n| parent_peak = [[Butser Hill]] <ref name="JF"/>\n| listing = \n| location = [[Hampshire]], England\n| range = [[Hampshire Downs]]\n| coordinates = {{coord|51.1335|-1.0407|type:landmark_region:GB_dim:3000|format=dms|display=inline,title}}\n| grid_ref_UK = SU672375\n| topo = [[Ordnance Survey|OS]] ''Landranger''\n| type = \n| age = \n| last_eruption = \n| first_ascent = \n| easiest_route = \n}}\n[[File:Abbey of Our Lady and St John, Wivelrod, Alton - geograph.org.uk - 1492997.jpg|thumb|Alton Abbey near the summit of King's Hill]]\n\n'''King's Hill''' is one of the highest points in the county of [[Hampshire]], [[England]]. It is part of the [[Hampshire Downs]] and reaches {{convert|218|m|ft}} above sea level.\n\nKing's Hill is situated in the parish of [[Bentworth]]. It lies on the Abbey Road between the Hampshire villages of [[Medstead, Hampshire|Medstead]] and [[Beech, Hampshire|Beech]]. To the northeast is [[Alton Abbey]]. Chawton Park Wood lies to the south of the open hilltop.<ref name="OS">[[Ordnance Survey]] 1:50,000 ''Landranger'' series.</ref>\n\n== References ==\n{{Reflist}}\n\n[[Category:Hills of Hampshire]]\n\n\n{{Hampshire-geo-stub}}
39377426 Wikipedia:Articles for deletion/Khanjabir <div class="boilerplate metadata afd vfd xfd-closed" style="background-color: #F3F9FF; margin: 2em 0 0 0; padding: 0 10px 0 10px; border: 1px solid #AAAAAA;">\n:''The following discussion is an archived debate of the proposed deletion of the article below. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's [[Help:Using talk pages|talk page]] or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page.''\n<!--Template:Afd top\n\nNote: If you are seeing this page as a result of an attempt to re-nominate an article for deletion, you must manually edit the AfD nomination links to create a new discussion page using the name format of [[Wikipedia:Articles for deletion/PAGENAME (2nd nomination)]]. When you create the new discussion page, please provide a link to this old discussion in your nomination. -->\n\nThe result was '''Speedy deleted'''. After further consideration, I have speedy deleted the article as a blatant hoax. [[User:Basalisk|<font color="green">'''Basa'''</font><font color="CC9900">'''lisk'''</font>]] [[Special:Contributions/Basalisk|<sup><font color="green">inspect damage</font></sup>]]⁄[[User talk:Basalisk|<sub><font color="CC9900">berate</font></sub>]] 17:26, 13 May 2013 (UTC)\n===[[Khanjabir]]===\n\n:{{la|Khanjabir}} – (<includeonly>[[Wikipedia:Articles for deletion/Khanjabir|View AfD]]</includeonly><noinclude>[[Wikipedia:Articles for deletion/Log/2013 May 13#{{anchorencode:Khanjabir}}|View log]]</noinclude>{{int:dot-separator}} <span class="plainlinks">[http://toolserver.org/~snottywong/cgi-bin/votecounter.cgi?page=Wikipedia:Articles_for_deletion/Khanjabir Stats]</span>)\n:({{Find sources|Khanjabir}})\nDeclined speedy on this article as there are many (dubious) claims to importance. 16 year old film producer supposedly enjoying international success and with a fortune worth 12 million dollars. I may be missing a trick and therefore in for a trout, but I can't verify the claims made by the article (such as awards he's claimed to have received and successful films he's made) and isn't notable. [[User:Basalisk|<font color="green">'''Basa'''</font><font color="CC9900">'''lisk'''</font>]] [[Special:Contributions/Basalisk|<sup><font color="green">inspect damage</font></sup>]]⁄[[User talk:Basalisk|<sub><font color="CC9900">berate</font></sub>]] 17:13, 13 May 2013 (UTC)\n\n*'''Delete''' hoax page. None of the references are valid: either dead links or completely unrelated to subject. Google search yields no notable person of that name. -[[User:Zanhe|Zanhe]] ([[User talk:Zanhe|talk]]) 17:23, 13 May 2013 (UTC)\n:''The above discussion is preserved as an archive of the debate. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page (such as the article's [[Help:Using talk pages|talk page]] or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this page. <!--Template:Afd bottom--></div>
39377586 Wikipedia:Featured picture candidates/The Spanish Wedding by <NAME> \n===[[Wikipedia:Featured picture candidates/The Spanish Wedding by <NAME>|The Spanish Wedding]]===\n{{FPCnom/VotingEnds|1369244164}}<small>Voting period ends on <b>22 May 2013</b> at <b>17:36:04 (UTC)</b></small>\n[[File:Fortuny - La Vicaría (Museo Nacional de Arte de Cataluña, 1870. Óleo sobre tabla, 60 x 93,5 cm).jpg|thumb|right|350px|'''Original''' – ''[[The Spanish Wedding]]'', an 1870 painting by [[Marià Fortuny]]]]\n;Reason:High quality and EV. [[Wikipedia:Featured picture candidates/The Spanish Wedding|Previous nomination]] had 4 support and was unopposed.\n;Articles in which this image appears:[[The Spanish Wedding]], [[Marià Fortuny]]\n;FP category for this image:[[Wikipedia:Featured pictures/Artwork/Paintings]]\n;Creator:[[Marià Fortuny]]\n\n* '''Support as nominator''' --[[User:Armbrust|Armbrust]] <sup>[[User talk:Armbrust|<font color="#E3A857">The</font> <font color="#008000">Homunculus</font>]]</sup> 17:36, 13 May 2013 (UTC) \n* '''Support''' As before. – <font color="#06266f">Kerαu</font><font color="#1240AB">noςco</font><font color="#4671DS">pia</font><font color="#A60000"><sup>◁</sup></font><i><sub><font color="#5E1FFF">[[User:Keraunoscopia|gala]][[User talk:Keraunoscopia|xies]]</font></sub></i> 19:34, 13 May 2013 (UTC)\n*'''Support''', good resolution, corresponding article. [[User:Brandmeister|Brandmeister]]<sup>[[User talk:Brandmeister|talk]]</sup> 15:18, 14 May 2013 (UTC)\n*'''Support''' [[User:Rreagan007|Rreagan007]] ([[User talk:Rreagan007|talk]]) 00:16, 15 May 2013 (UTC)\n*'''Support''' per above. --[[User:Wingtipvortex|<font color="green">'''Wingtipvorte<sup>X</sup>'''</font>]] [[User talk:Wingtipvortex|<font color="green">''PTT''</font>]] [[Special:Contributions/Wingtipvortex|<font color="green">∅</font>]] 02:24, 16 May 2013 (UTC)\n*'''Support''' [[User:S<NAME>|''<font color="187ba0" size="2px"><NAME></font>'']] <sup>([[User talk:<NAME>|talk]])</sup> 09:25, 21 May 2013 (UTC)\n\n<!-- additional votes go above this line -->\n{{FPCresult|Promoted|File:Fortuny - La Vicaría (Museo Nacional de Arte de Cataluña, 1870. Óleo sobre tabla, 60 x 93,5 cm).jpg}} -- — [[User:Crisco 1492|Crisco 1492]] ([[User talk:Crisco 1492|talk]]) 08:49, 23 May 2013 (UTC)\n{{-}}\n\n\n\n<noinclude>[[Category:Featured picture nominations]] [[Category:Featured picture nominations/May 2013]]</noinclude>
39376248 Pasiphila magnimaculata {{italic title}}\n{{Taxobox\t\n| name = Pasiphila magnimaculata\n| image = \n| image_size = \n| image_caption = \n| image2 = \n| regnum = [[Animal]]ia\n| phylum = [[Arthropod]]a\n| classis = [[Insect]]a\n| ordo = [[Lepidoptera]]\n| familia = [[Geometridae]]\n| genus = ''[[Pasiphila]]''\n| species = '''''P. magnimaculata'''''\n| binomial = '' Pasiphila magnimaculata''\n| binomial_authority = (Philpott, 1915)<ref>{{cite web|title=Home of Ichneumonoidea|publisher=<NAME>|accessdate=2013|work=Taxapad|date=1997–2012|url=http://www.taxapad.com/local.php?taxonidLC=82846611}}</ref>\n| synonyms =\n*''Chloroclystis magnimaculata'' <small>Philpott, 1915</small>\n*''Chloroclystis rufipellis'' <small>Meyrick, 1927</small>\n*''Chloroclystis irabunda'' <small>Prout, 1958</small>\n}}\n'''''Pasiphila magnimaculata''''' is a [[moth]] in the [[Geometridae]] family. It is found in [[New Zealand]].<ref>[http://demo.nzor.org.nz/names/fc8e776f-1831-4a28-9efc-bd98fcc9f1f9 New Zealand Organisms Register]</ref>\n\nThe larvae feed on the flowers of ''[[Gaultheria crassa]]''.<ref>[https://books.google.com/books?id=cbI4AAAAIAAJ&pg=PA276 Journal of the Royal Society of New Zealand dec 1992]</ref>\n\n==References==\n{{Reflist}}\n{{commons}}\n{{wikispecies}}\n\n[[Category:Moths described in 1915]]\n[[Category:Pasiphila]]\n[[Category:Moths of New Zealand]]\n\n\n{{Larentiinae-stub}}
39394757 Cymophyllus {{italic title}}\n{{taxobox\n| name = ''Carex fraseriana''\n| image = Frasierssedge.JPG\n| status = G4\n| status_system = TNC\n| regnum = [[Plantae]]\n| unranked_divisio = [[Angiosperms]]\n| unranked_classis = [[Monocots]]\n| ordo = [[Poales]]\n| familia = [[Cyperaceae]]\n| genus = '''''Carex'''''\n| genus_authority = [[<NAME>|Mack.]] ''ex'' [[<NAME>|Britton]] & [[<NAME>|A.Br.]]\n| species = '''''C. fraseriana'''''\n| binomial = ''Carex fraseriana''\n| binomial_authority =[[<NAME>|Ker Gawl.]]\n| synonyms_ref=<ref name=daisymae/>\n| synonyms=\n*''Cymophyllus fraserianus'' <small>([[<NAME>|<NAME>.]]) [[<NAME>|Kartesz]] & [[<NAME>|Gandhi]]</small>\n*''Carex fraseri'' <small>Andrews</small>\n*''Carex lagopus'' <small>Muhl.</small>\n*''Olamblis fraseri'' <small>(Andrews) Raf.</small>\n*''Cymophyllus fraseri'' <small>(Andrews) Mack. ''in'' Britton & A.Br.</small>\n}}\n'''''Carex fraseriana''''' is a perennial of the sedge family with the common name '''Fraser's sedge'''. I was the only species of the genus '''''Cymophyllus''''' before it was re-transferred to '''''Carex'''''.<ref>[http://www.efloras.org/florataxon.aspx?flora_id=1&taxon_id=242357638 Flora of North America, Vol. 23 Page 573, ''Cymophyllus fraserianus'' (Ker Gawler) Kartesz & Gandhi, Rhodora. 93: 138. 1991. ]</ref><ref>Horn, Cathcart, Hemmerly, Duhl, Wildflowers of Tennessee, the Ohio Valley, and the Southern Appalachians, Lone Pine Publishing, (2005) p 398, ISBN 978-1-55105-428-5,</ref><ref>[http://onlinelibrary.wiley.com/doi/10.1111/boj.12298/abstract Global ''Carex'' Group 2015 Making Carex monophyletic (Cyperaceae, tribe Cariceae): a new broader circumscription]</ref>\n\n''Carex fraseriana'' is native to the [[Great Smoky Mountains]] and southern [[Appalachia]]n region of the southeastern [[United States]].<ref name=daisymae>[http://apps.kew.org/wcsp/namedetail.do?name_id=235509 Kew World Checklist of Selected Plant Families]</ref> It is endangered in [[Pennsylvania]], [[Kentucky]], [[Maryland]] and [[Georgia (U.S. state)|Georgia]].<ref><NAME>. & <NAME>. (2007). World Checklist of Cyperaceae. Sedges: 1-765. The Board of Trustees of the Royal Botanic Gardens, Kew.</ref>\n\n== References ==\n{{Reflist}}\n\n== External links ==\n* [http://plants.usda.gov/java/profile?symbol=CYFR4 USDA plant database]\n\n[[Category:Cyperaceae]]\n[[Category:Monotypic Cyperaceae genera]]\n[[Category:Flora of the Southeastern United States]]\n\n\n{{Cyperaceae-stub}}
39380889 Presidential Palace, Yerevan [[File:Yerevan The Presidential Palace 02.jpg|thumb|300px|The Presidential Palace]]\n\nThe '''Residence of the President of the Republic of Armenia''' ({{lang-hy|Հայաստանի Հանրապետության նախագահի նստավայր}}; ''Hayastani Hanrapetut'yun Nakhagahi Nstavayr'') is located on 26 [[Baghramyan Avenue]], [[Yerevan]]. It was designed by <NAME> as the premises for the [[Council of Ministers of the Armenian Soviet Socialist Republic]] and completed in 1951.<ref>{{cite web|title=History|url=http://www.president.am/en/history/|publisher=Office to the President of the Republic of Armenia|accessdate=14 May 2013}}</ref>\n\n== Interior ==\nHere a list of the sections inside the palace:<ref name=photo>{{cite web|title=Photos|url=http://www.president.am/en/photo/ |publisher=Office to the President of the Republic of Armenia|accessdate=13 July 2013}}</ref>\n*The Entrance Hall, which links the old and new parts of the building, contains cabinets where souvenirs given to the President of Armenia by visiting foreign dignitaries are on display.\n\n*The Green Chamber is a meeting room where the [[President of Armenia]] meets Prime Ministers of his country, foreign ministers, Speakers of Parliament and foreign ambassadors.\n\n*The Circular Chamber is the place where ambassadors to Armenia are accredited by the President.\n\n*The Gilded Chamber is where the President of Armenia holds meetings with foreign heads of state. Spiritual leaders (such as the [[List of Archbishops of Canterbury|Archbishop of Canterbury]], the [[List of popes|Pope]] and the [[List of Metropolitans and Patriarchs of Moscow|Patriarch of Moscow]]) are also met by the President in this Chamber.\n\n*The Grand Hall is used by the President of Armenia to host official receptions, official dinners, award ceremonies and press conferences.\n\n*The Small Hall is used for meetings with high level foreign dignitaries.\n\n*The Blue Room is used for meetings chaired by the President. Joint press conferences when the President of Armenia has a foreign guest are also held here.\n\n*The Meeting Room is used by the President for negotiations conducted in the framework of visits by foreign dignitaries.\n\n*The Fireplace Chamber and the White Room are used for meetings.\n\n*The Conference Hall of the new building.\n\n*The Meeting Room of the new building.\n\n*The Small Conference Room of the new building.\n\n*The Presidential Office.\n\n== The New Administration building ==\nAdjacent to the original building is a newer part of the Palace. It contains a Conference Room, a Meeting Room and the President's office.\n<ref name=photo/>\n\n==References==\n{{reflist}}\n\n{{coord|40|11|34|N|44|30|22|E|display=title}}\n{{Yerevan landmarks}}\n\n[[Category:Buildings and structures in Yerevan]]\n[[Category:Presidential palaces]]\n[[Category:Residential buildings completed in 1951]]\n\n{{Armenia-struct-stub}}
39399385 <NAME> {{Infobox musical artist\n| name = <NAME>\n| image = \n| image_size = \n| landscape = <!-- yes, if wide image, otherwise leave blank -->\n| alt = \n| caption = \n| background = solo_singer\n| birth_name = \n| alias = \n| birth_date = <!-- {{birth date and age|YYYY|MM|DD}} for living people supply only the year unless the exact date is already WIDELY published, as per [[WP:DOB]] -->\n| birth_place = \n| origin = [[St. Louis, Missouri]], United States\n| death_date = <!-- {{death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date 1st) -->\n| death_place = \n| genre = [[Blues]]\n| occupation = Singer\n| instrument = \n| years_active = <!-- YYYY–YYYY (or –present) -->\n| label = \n| associated_acts = \n| website = <!-- {{URL|example.com}} -->\n}}\n'''<NAME>''' (first name also spelled Dorthea,<ref name="winsby">{{cite book|last1=Winsby|first1=Meghan|last2=Fairweather|first2=Abrol|editor=<NAME>|others=Abrol Fairweather|title=Blues - Philosophy for Everyone: Thinking Deep About Feeling Low|url=https://books.google.com/books?id=tnqoFDqW-mYC&pg=PA160|year=2012|publisher=<NAME> & Sons|isbn=9780470656808|pages=153–75|chapter='The Blue Light Was My Baby And The Red Light Was My Mind': Religion and Gender in the Blues}}</ref> Doretha<ref>{{cite web|url=http://www.allmusic.com/artist/dorethea-trowbridge-mn0000189333|title=Dorethea Trowbridge - Music Biography, Credits and Discography|last=Layne|first=Joslyn|work=[[Allmusic]]|accessdate=16 May 2013}}</ref>) was an American [[blues]] singer active in [[St. Louis]] in the 1930s. A few recordings by her remain, at least one of which includes lyrics on the theme of "grinding", a blues slang term for copulation.\n\n==Career==\nTrowbridge was a singer in St. Louis in the early 1930s, and she was taken to Chicago in 1933 to record a number of songs.\n\nOne of her recording sessions was with [[James "Stump" Johnson]] on August 2, 1933,<ref name=oliver>{{cite book|last=Oliver|first=Paul|title=Screening the blues: aspects of the blues tradition|publisher=Da Capo Press|year=1989|page=272 n.29|url=https://books.google.com/books?id=CrBNQjQzcwUC&pg=PA272|isbn = 978-0-306-80344-4}}</ref> during which she recorded a version of the raunchy "Steady Grinding".<ref name="winsby"/> It is likely that she is identical with <NAME>,<ref>{{cite book|title=Blues Unlimited|url=https://books.google.com/books?id=Uig6AQAAIAAJ|year=1982|publisher=BU Publications Limited|page=11}}</ref><ref name=dixon>{{cite book|last1=Dixon|first1=<NAME>.|last2=Godrich|first2=John|last3=Rye|first3=Howard|title=Blues and gospel records, 1890-1943|year=1997|publisher=Clarendon|isbn=9780198162391|page=33}}</ref><ref>{{cite book|last=Belford|first=Kevin|title=Devil at the confluence: the pre-war blues music of Saint Louis Missouri|year=2009|publisher=Virginia Pub.|isbn=9781891442490|page=92}}</ref> who recorded the song "Steady Grinding Blues" with [[Roosevelt Sykes]]<ref name=dixon/> in 1930<ref>{{cite book|last=Calt|first=Stephen|title=Barrelhouse Words: A Blues Dialect Dictionary|url=https://books.google.com/books?id=plD_T3xdJ5AC&pg=PA112|year=2009|publisher=U of Illinois P|isbn=9780252033476|page=275}}</ref> and/or 1934 (Decca 7080).<ref>{{cite book|last=Ruppli|first=Michel|title=The Decca Labels: The eastern & southern sessions (1934-1942)|url=https://books.google.com/books?id=iCoKAQAAMAAJ|year=1996|publisher=Greenwood|page=5}}</ref>\n{{quotebox|Ain't but the one thing that makes me sore,<br>When you grind me one time and just won't do it no more.|Dorothea Trowbridge, "Steady Grinding"}}\nShe is credited for the words and music of the song "Bad Luck Blues", which she recorded in 1933; it is registered in the US [[Copyright Catalog]] for January 24, 1935.<ref>{{cite book|title=Catalog of Copyright Entries: Musical compositions|url=https://books.google.com/books?id=pT1jAAAAIAAJ&pg=PA133|year=1936|publisher=Library of Congress, Copyright Office.|page=133}}</ref>\n\n{{quotebox|Steady grindin' now, you can't come in,<br>Take the key outta the hole 'cause it's too bad Jim.|<NAME>, "Steady Grinding Blues"}}\nIn his memoir, [[Henry Townsend (musician)|Henry Townsend]] recalled that she was at one time the girlfriend of pianist <NAME> and that she got to record through Sykes, or possibly through <NAME>, the brother of "Stump" Johnson; he also mentioned that in the early 1930s she was singing in many places around town, and had recorded with St. Louis pianist [[Pinetop Sparks]] ("Slavin' Mama Blues").<ref name=townsend>{{cite book|last=Townsend|first=Henry|title=A blues life|url=https://books.google.com/books?id=HaeDzHuXhooC&pg=PA57|year=1999|publisher=U of Illinois P|isbn=9780252025266|pages=57, 119}}</ref> "Slavin' Mama Blues" is included in an anthology of [[Boogie-woogie|Barrelhouse blues]], ''Barrelhouse women 1925-1933'' (1984).<ref>{{cite web|url=http://library.brown.edu/find/Record/b2473010/TOC|title=Table of Contents: Barrelhouse women 1925-1933 | work=[[Brown University]]|accessdate=16 May 2013}}</ref> In recent scholarship, the explicit lyrics for "Steady Grinding" (and those for "Steady Grinding Blues", "grind" meaning "to copulate"<ref>{{cite book|last=Calt|first=Stephen|title=Barrelhouse Words: A Blues Dialect Dictionary|url=https://books.google.com/books?id=plD_T3xdJ5AC&pg=PA112|year=2009|publisher=U of Illinois P|isbn=9780252033476|page=112}}</ref>) have drawn attention for the statements they make about [[Human female sexuality|female sexuality]] and empowerment among African American women of the early 20th century; among those early blueswomen scholars find "numerous open declarations of erotic desire".<ref>{{cite book|last=Garon|first=Paul|title=Blues and the Poetic Spirit|url=https://books.google.com/books?id=FStyNOtCfA8C&pg=PA109|year=1996|publisher=City Lights|isbn=9780872863156|pages=109–10}}</ref>\n\n==Recordings==\n*August 2, 1933, Chicago: "Grinding Blues", with James "Stump" Johnson, [[Bluebird Records|Bluebird]] B-5159<ref name=oliver/>\n*August 2, 1933, Chicago: "Slavin' Mama Blues"/"Bad Luck Blues", with Pinetop Sparks, Bluebird 5431<ref name=townsend/>\n*1933: "Bad Luck Blues", with Pinetop Sparks<ref>{{cite book|last=Silvester|first=<NAME>.|title=The Story of Boogie-Woogie: A Left Hand Like God|url=https://books.google.com/books?id=yqiIxrsTFF0C&pg=PA140|year=2009|publisher=Scarecrow|isbn=9780810869332|page=140}}</ref>\n\n==See also==\n*[[St. Louis blues (music)]]\n\n==References==\n{{Reflist|colwidth=30em}}\n\n==External links==\n*[http://www.youtube.com/watch?v=mSEGCvFo-EM <NAME>, "Steady Grinding Blues"]\n\n{{Authority control}}\n{{DEFAULTSORT:Trowbridge, Dorothea}}\n[[Category:American blues singers]]\n[[Category:American female singers]]\n[[Category:St. Louis blues musicians]]\n[[Category:Bluebird Records artists]]\n[[Category:Year of birth missing]]\n[[Category:Year of death missing]]\n[[Category:Place of birth missing]]\n[[Category:Place of death missing]]
39390017 Wikipedia:Redirects for discussion/Log/2013 May 18 <noinclude>{{rfd log header|2013|May 17|2013|May 19}}</noinclude>\n===May 18===\n<noinclude>This is a list of redirects that have been proposed for deletion or other action on May 18, 2013</noinclude>\n<!-- Add new entries directly below this line -->\n====<span id="Gabrielle song">Gabrielle song</span>====\n<div class="boilerplate mfd" style="background:#FFEEDD; margin-top:0.5em; padding:0 10px 0 10px; border:1px solid #888888;">\n\n:''The following is an archived discussion concerning one or more redirects. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on an appropriate discussion page (such as the redirect's [[Help:Using talk pages|talk page]] or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this section.''\n\n:The result of the discussion was <!-- Template:Rfd top--> '''retarget'''. --[[User:BDD|BDD]] ([[User talk:BDD|talk]]) 18:32, 10 June 2013 (UTC)\n*{{noredirect|1 = Gabrielle song }} → [[Out of Reach (song)]] <span class="plainlinks">([[Special:Whatlinkshere/Gabrielle song|links to redirect]] • [{{fullurl:Gabrielle song|action=history}} history] • {{stats.grok.se|1=Gabrielle song|year=2013|month=04|text=stats}}</span>) <small><nowiki>[</nowiki> Closure: <span class="plainlinks">''[{{fullurl:Gabrielle song|action=edit&summary={{Urlencode:[[Wikipedia:Redirects for discussion/Log/2013 May 18#Gabrielle song]] closed as keep}}}} keep]/[{{fullurl:Gabrielle song|action=delete&wpReason={{Urlencode:[[Wikipedia:Redirects for discussion/Log/2013 May 18#Gabrielle song]] closed as delete}}&wpMovetalk=1}} delete]''</span> ]</small> \n\nThis could refer to [[Gabrielle discography|songs by Gabrielle]], a [[Gabrielle (song)|song called "Gabrielle"]] or a misspelling of [[Gabrielle Songe]] (whether that's plausible or not depends on the pronunciation, which isn't given in the article). The redirect was caused by creation of an article with an incomplete title, a mistake corrected by the same editor three minutes later. Probably better to leave as a red link. [[User:<NAME>|Peter James]] ([[User talk:<NAME>|talk]]) 18:34, 18 May 2013 (UTC)\n*'''retarget''' to [[Gabrielle]] (the dab page) where the songs are listed. [[User:Thryduulf|Thryduulf]] ([[User talk:Thryduulf|talk]]) 12:54, 20 May 2013 (UTC)\n*'''retarget''' to [[Gabrielle]] per [[User:Thryduulf|Thryduulf]].--[[User:Lenticel|<span style="color: teal; font-weight: bold">Lenticel</span>]] <sup>([[User talk:Lenticel|<span style="color: green; font-weight: bold">talk</span>]])</sup> 00:39, 10 June 2013 (UTC)\n:''The above discussion is preserved as an archive of the debate. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page.<!-- Template:Rfd bottom --></div>\n\n====<span id="ƀ">ƀ</span>====\n<div class="boilerplate mfd" style="background:#FFEEDD; margin-top:0.5em; padding:0 10px 0 10px; border:1px solid #888888;">\n\n:''The following is an archived discussion concerning one or more redirects. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on an appropriate discussion page (such as the redirect's [[Help:Using talk pages|talk page]] or in a [[Wikipedia:Deletion review|deletion review]]). No further edits should be made to this section.''\n\n:The result of the discussion was '''delete''', if anyone can find a way to delete it. The link in Peter James's note takes you to the page, but when you do a delete, what gets deleted is the upper-case version. Something very odd here.<!-- Template:Rfd top--> [[User:JohnCD|JohnCD]] ([[User talk:JohnCD|talk]]) 11:12, 26 May 2013 (UTC)\n*{{noredirect|1 = ƀ }} → [[B with stroke]] <span class="plainlinks">([[Special:Whatlinkshere/ƀ|links to redirect]] • [{{fullurl:ƀ|action=history}} history] • {{stats.grok.se|1=ƀ|year=2013|month=04|text=stats}}</span>) <small><nowiki>[</nowiki> Closure: <span class="plainlinks">''[{{fullurl:ƀ|action=edit&summary={{Urlencode:[[Wikipedia:Redirects for discussion/Log/2013 May 18#ƀ]] closed as keep}}}} keep]/[{{fullurl:ƀ|action=delete&wpReason={{Urlencode:[[Wikipedia:Redirects for discussion/Log/2013 May 18#ƀ]] closed as delete}}&wpMovetalk=1}} delete]''</span> ]</small> \n\n'''Delete''', if technically possible. I am referring here to lower-case [[ƀ]], not upper-case [[Ƀ]]. The lower-case form should not exist as a page title distinct from the upper-case form of the same letter, but apparently it does, as evidenced by its listing at [[Special:DoubleRedirects]] for the past couple months. Could this redirect be a legacy from a time when MediaWiki was configured differently? It came to light as a double redirect when the target was moved. I have been unable to find any way to edit this redirect, or indeed do anything with it, as all my efforts to access ƀ take me to Ƀ. – [[User:Wdchk|Wdchk]] ([[User talk:Wdchk|talk]]) 17:36, 18 May 2013 (UTC)\n*Delete - this appears to be unusable unless a page or revision id is added to the URL, and unnecessary. Fortunately it was created in a page move and I could find a link via [[Special:Contributions]] to add the Rfd template. [[User:<NAME>|Peter James]] ([[User talk:<NAME>|talk]]) 18:46, 18 May 2013 (UTC)<br/>Links are [https://en.wikipedia.org/w/index.php?title=%C6%80&curid=7046002 ƀ] and [https://en.wikipedia.org/w/index.php?title=%C6%80&curid=7046002&action=history history]. [[User:<NAME>|Peter James]] ([[User talk:<NAME>|talk]]) 18:49, 18 May 2013 (UTC)\n*'''Delete''' - For the reasons given by the others above. No need for this entry to exist as the lower case form. [[User:EdJohnston|EdJohnston]] ([[User talk:EdJohnston|talk]]) 11:25, 23 May 2013 (UTC)\n:''The above discussion is preserved as an archive of the debate. <span style="color:red">'''Please do not modify it.'''</span> Subsequent comments should be made on the appropriate discussion page.<!-- Template:Rfd bottom --></div>\n*'''Comment''' does this need a developer request? -- [[Special:Contributions/192.168.127.12|192.168.127.12]] ([[User talk:192.168.127.12|talk]]) 02:26, 27 May 2013 (UTC)\n**No, Legotkm sorted it, see [https://en.wikipedia.org/w/index.php?title=Wikipedia:Village_pump_%28technical%29&oldid=556918141#Problem_deleting_redirect._Developer_action_needed.3F]. [[User:Thryduulf|Thryduulf]] ([[User talk:Thryduulf|talk]]) 08:57, 28 May 2013 (UTC)
39394622 <NAME> {{Use dmy dates|date=March 2016}}\n{{Use British English|date=March 2016}}\n{{Orphan|date=July 2013}}\n\n'''<NAME>''' (born 10 June 1980) is a professional cricketer based in Lancashire.<ref name="ref1">http://www.espncricinfo.com/ci/content/player/20490.html</ref> He has represented [[Lancashire County Cricket Club]] 2nd XI and a number of other first class county 2nd XI's.<ref name="ref1"/> He played for [[Cambridgeshire County Cricket Club]] in 2005 and 2006 winning their player of the season award in 2006.\n\nIn 2007 he moved to [[Cheshire County Cricket Club]] and was part of their Championship winning side of that year. To date he holds the record for the most number of one-day wickets for Cheshire County Cricket Club.<ref>http://www.cheshireccc.org.uk/KnockoutTrophyRecords.htm</ref> Adam was capped by Cheshire CCC in 2008.<ref>http://www.cheshireccc.org.uk/CapsTable.htm</ref>\n\n<NAME> has represented the [[Minor Counties Cricket Association]] in a number of fixtures and has been a member of the Unicorns A squad since its inception in 2011.<ref name="ref1"/>\n\n<NAME> was part of the last ever 'A' Tour sent by [[Marelybone Cricket Club]] to East Africa under the captaincy of England player <NAME>.<ref>http://www.espncricinfo.com/england/content/story/336064.html</ref>\n\n== References ==\n\n{{reflist}}\n\n{{DEFAULTSORT:Syddall, <NAME>}}\n[[Category:1980 births]]\n[[Category:Living people]]\n[[Category:English cricketers]]
39382369 Dispersion (album) {{Infobox album <!-- See Wikipedia:WikiProject_Albums -->\n| Name = Dispersion\n| Type = studio\n| Artist = [[High Rise (band)|High Rise]]\n| Cover = High Rise - Dispersion.jpg\n| Released = December 25, 1992\n| Recorded = \n| Genre = [[Noise rock]], [[psychedelic rock]]\n| Length = 59:17\n| Label = [[P.S.F. Records|P.S.F.]]\n| Producer = High Rise\n| Last album = ''[[II (High Rise album)|II]]''<br />(1986)\n| This album = '''''Dispersion'''''<br />(1992)\n| Next album = ''[[Live (High Rise album)|Live]]''<br />(1994)\n}}\n{{Album ratings\n|rev1 = [[Allmusic]]\n|rev1score = {{rating|4|5}}<ref name="allmusic">{{cite web |first=Alex |last=Henderson |url={{Allmusic|class=album|id=r402291|pure_url=yes}}|title=Dispersion |publisher=Allmusic |date= |accessdate=May 14, 2013}}</ref>\n}}\n\n'''''Dispersion''''' is the second album by [[High Rise (band)|High Rise]], released on December 25, 1992 through [[P.S.F. Records]].\n\n== Track listing ==\n{{tracklist\n| all_lyrics = [[Asahito Nanjo]]\n| all_music = [[High Rise (band)|High Rise]]\n| title1 = Outside Gentiles\n| length1 = 5:15\n| title2 = Nuit\n| length2 = 3:57\n| title3 = Sadducees Faith\n| length3 = 15:01\n| title4 = Sanctuary\n| length4 = 4:27\n| title5 = Eucharist\n| length5 = 7:04\n| title6 = Mainliner\n| length6 = 10:26\n| title7 = Deuteronomy\n| length7 = 13:07\n}}\n\n== Personnel ==\n;High Rise\n*[[Asahito Nanjo]] – [[Singing|vocals]], [[bass guitar]]\n*Munehiro Narita – [[guitar]], [[cover art]]\n*Yuro Ujiie – [[Drum kit|drums]]\n;Production and additional personnel\n*[[High Rise (band)|High Rise]] – [[record producer|production]]\n*Yuichi Jibiki – [[photography]]\n*Kenji Nakazawa – [[Audio engineering|engineering]], [[Audio mixing (recorded music)|mixing]]\n*Takewo Yamamoto – engineering\n\n== References ==\n{{reflist}}\n\n== External links ==\n* {{Discogs master |master=178632 |name=Dispersion}}\n\n{{High Rise (band)}}\n\n[[Category:1992 albums]]\n[[Category:High Rise (band) albums]]\n[[Category:P.S.F. Records albums]]
39380103 File:Buggles Lenny.ogg == Summary ==\n\n*Sound sample from the song "Lenny"\n*Song length: 3:14\n*Reduced quality: Yes\n*Source : ''[[Adventures in Modern Recording]]''\n*Songwriter(s): The Buggles\n*Performed by: The Buggles\n*Producer(s): The Buggles\n*Copyright © 1982 Carrere, ZTT\n\n=== Rationale of fair use for "[[Lenny (Buggles song)]]" sample ===\nThis is a sound sample from a commercial recording. Its inclusion here is claimed as fair use because:\n*It illustrates an educational article that specifically discusses the song from which this sample was taken. The section of music used is discussed in the article in relation to the song's lyrics, musical and vocal style, and may contain part of the song's chorus.\n*It is a sample of no more than 30 seconds from a much longer recording, and could not be used as a substitute for the original commercial recording or to recreate the original recording.\n*It is of a lower quality than the original recording.\n*It is not replaceable with an uncopyrighted or freely copyrighted sample of comparable educational value.\n*It is believed that this sample will not affect the value of the original work or limit the copyright holder's rights or ability to distribute the original recording.\n*The audio sample is a copyrighted work. U.S. copyright laws apply to this work. Should a free or public domain sample be located, it should be used in place of this audio sample.\n\n== Licensing ==\n{{Non-free audio sample}}<!-- Template:Music sample info -->\n\n== Licensing ==\n{{Non-free audio sample}}
39386137 The Hartmans {{Infobox television\n| show_name = The Hartmans\n| image = \n| caption = \n| show_name_2 = '''''The Hartmans (at Home)'''''\n| genre = Sitcom\n| creator = \n| writer = \n| director = \n| starring = [[<NAME>]]<br>[[<NAME> (actress)|<NAME>]]\n| narrated = \n| theme_music_composer = \n| opentheme = \n| composer = \n| country = United States\n| language = English\n| num_seasons = 1\n| num_episodes = \n| list_episodes = \n| executive_producer = \n| producer = \n| editor = \n| cinematography = \n| camera = [[Multiple-camera setup|Multi-camera]] \n| runtime = 25 mins. \n| company = \n| distributor = \n| channel = [[NBC]]\n| picture_format = [[Black-and-white]] \n| audio_format = [[Monaural]] \n| first_aired = {{start date|1949|02|27}}\n| last_aired = {{end date|1949|04|24}}\n}}\n\n'''''The Hartmans''''' (also known as '''''The Hartmans (at Home)''''') is an American television [[sitcom]] that aired live on [[NBC]] on Sunday nights from February 27 to April 24, 1949. The series stars [[<NAME>|Paul]] and [[<NAME> (actress)|<NAME>]], a married couple who performed together on the [[vaudeville]] circuit and on the Broadway stage.<ref name="cullen">{{cite book|last=Cullen|first=Frank|title=Vaudeville, Old and New, Volume 1|year=2004|publisher=Psychology Press|isbn=0-415-93853-8|page=491}}</ref>\n\n==Plot==\nThe series centers around a young married couple who live in Forest Heights, New York.<ref>{{cite book|last=Brooks|first=Tim |author2=<NAME>. |title=The Complete Directory to Prime Time Network and Cable TV Shows, 1946-Present |publisher=Random House Digital, Inc.|date=2010|edition=9|pages=511|isbn=0-307-48315-0}}</ref>\n\n==Cast==\n*[[<NAME>]]....Himself\n*[[<NAME> (actress)|<NAME>]]....Herself\n*[[<NAME>]]....The handyman\n*[[<NAME>]].....Their brother-in-law\n*[[<NAME>]]....Their nephew\n*[[<NAME>]].....The man next door\n*[[<NAME>]]....Grace's sister \n\n==Production notes==\nThe Hartmans were given their own television series shortly after Paul and Grace won [[Tony Awards]] for the Broadway revue ''Angel in the Wings'' (Paul won for [[Tony Award for Best Actor in a Play|Best Actor]] while Grace won for [[Tony Award for Best Actress in a Musical|Best Actress in a Musical]]. NBC had hoped to cash in on the couple's popularity following their respective Tony Award wins but the series failed to catch on and was canceled by NBC nearly two months later.<ref name="cullen" /> \n\n==References==\n{{Reflist}}\n\n==External links==\n* {{IMDb title|0390721}}\n\n{{DEFAULTSORT:Hartman, The}}\n[[Category:1949 American television series debuts]]\n[[Category:1949 American television series endings]]\n[[Category:1940s American television series]]\n[[Category:American television sitcoms]]\n[[Category:Black-and-white television programs]]\n[[Category:Live television programs]]\n[[Category:English-language television programming]]\n[[Category:Cultural depictions of people]]\n[[Category:NBC network shows]]\n[[Category:Television shows set in New York]]\n\n{{US-comedy-tv-prog-stub}}
393876 Haenam County {{Infobox settlement\n| name = {{raise|0.1em|Haenam}}\n| native_name = {{lower|0.1em|{{nobold|해남군}}}}\n| native_name_lang = ko\n| settlement_type = [[List of counties in South Korea|County]]\n| translit_lang1 = Korean \n| translit_lang1_type1 = Hangul\n| translit_lang1_info1 = {{linktext|해|남|군}}\n| translit_lang1_type2 = Hanja\n| translit_lang1_info2 = {{linktext|海|南|郡}}\n| translit_lang1_type3 = {{nowrap|Revised Romanization}}\n| translit_lang1_info3 = Haenam-gun\n| translit_lang1_type4 = {{nowrap|McCune-Reischauer}}\n| translit_lang1_info4 = Haenam-gun\n| image_skyline = Korea-Haenam-01-var-01.jpg\n| imagesize = \n| image_caption = Haenam County\n| image_map = South Jeolla-Haenam.svg\n| mapsize = \n| map_caption = Location in South Korea\n| subdivision_type = Country\n| subdivision_name = {{flag|South Korea}}\n| subdivision_type1 = [[Regions of Korea|Region]]\n| subdivision_name1 = [[Honam]]\n| population_blank1_title = Dialect\n| population_blank1 = [[Jeolla dialect|Jeolla]]\n| area_total_km2 = 1013.8\n| population_as_of = 2004\n| population_total = 87956\n| population_density_km2 = 99\n| parts_type = [[Administrative divisions of South Korea|Administrative divisions]]\n| parts = 1 ''eup'', 13 ''myeon'', 513 ''ri'', 909 ''ban''\n| image_blank_emblem = Haenam County logo.png\n| blank_emblem_type = Emblem of Haenam\n}}\n'''Haenam''' (''Haenam-gun'') is a [[Administrative divisions of South Korea|county]] in [[South Jeolla]] Province, [[South Korea]].\nThe capital of Haenam-gun is Haenam-up (Haenam town).\n\nThe economy of the county is based mainly on agriculture, with [[rice]] and [[daikon]] radish being the two most common crops.\n\n==History==\nHaenam County has been inhabited since the [[Neolithic]]. Relics of the Bronze Age, such as dolmens and shell mounds, were discovered here.<ref>English page of Haenam county</ref> The term Haenam appeared during the [[Goryeo dynasty]] but a definite record does not exist. After 1895 (32nd year of King Gojong in the [[Joseon dynasty]]) it came to be called as Haenam-gun, and became the biggest county in [[South Jeolla Province|Jeonnam]].\n\n==Famous people==\n* [[Yoon Seon Do]] : one of the most famous Korean painters and writers during mid-[[Joseon dynasty]].\n* [[Kim Nam Ju]] : Korean poet (1946.10.16. ~ 1994.2.13.)\n* <NAME> : <NAME>-Hee (1948~1991) was born in Haenam. In 1975 she made her debut in Korean literary world on the recommendation of poet [[Park Nam-Su]]. She contributed “Resurrection, Hereafter”, “A Love Song” and others to a magazine “Modern Poetics”. Until she died from her debut, during her short period of writing for about 15 years, she wrote 12 copies of poetry actively, which included her collection of poems and posthumous manuscripts. Also she attracted attention in the world of poetry as showing various and strong experimental attitude through each poems.\n* <NAME> : Korean poet and artistic critic.\n\n==Products==\nThanks to its large scale farming, Haenam has been the main place of producing lots of farming products from sweet potatoes to cabbages. The cabbage is specially produced in wintertime and Haenam occupies 70% of production.<ref>''[해남군청] 해남군, 친환경 겨울배추단지화 재배 성공'' YeonHap newes , 2008.01.22</ref>\n\nA special type of orange, the [[Dekopon#Outside of Japan|hallabong]], is also grown in Haenam county. Before, [[Jeju Province|Jeju]] was the only place to grow hallabong but lots of counties of Jeonnam started to cultivate this breed, which is largely owing to the [[greenhouse effect]].<ref>Hallabong of Jeonnam combating those of Jeju ''전남 한라봉, 제주 아성에 도전'' kukinews 2008.01.24</ref>\n\n==Enterprise city==\nHaenam is the enterprise city in [[Jeonnam]] with [[Muan]] and [[Yeongam county]]. Three counties are going to take important status as moving point for growth.<ref>''전국 '5+2 광역경제권 전략' 뭘 담았나'' 한국경제(kor) 2008.01.24</ref>\n\nNext term president, [[Lee Myung-bak|Lee Myeong bak]] appointed 3 areas as huge triangle region of [[Honam]].<ref>''인수위 "전국을 '5대 광역경제권'으로 재편"'' (kor) 2008.01.24</ref>\n\n==Education==\n*Global Academy in Haenam town.\n\n==Geography==\nHaenam faces Gangjin to the east, Yeongam to the north, Jindo and Wando to the west and south across the sea.\n\nAdditionally, Haenam is located below Taebaek Mountains and goes through an [[oceanic climate]]. It is quite a warm area even among southern region of [[South Korea]]. There is rias coast around Hwawon peninsula.\n\n==Climate==\n{{Weather box\n|location = Haenam (1981–2010)\n|metric first = Y\n|single line = Y\n|Jan high C = 6.1\n|Feb high C = 8.0\n|Mar high C = 12.4\n|Apr high C = 18.4\n|May high C = 22.9\n|Jun high C = 26.2\n|Jul high C = 28.7\n|Aug high C = 30.2\n|Sep high C = 26.8\n|Oct high C = 21.9\n|Nov high C = 15.2\n|Dec high C = 9.0\n|year high C = 18.8\n|Jan mean C = 1.3\n|Feb mean C = 2.6\n|Mar mean C = 6.6\n|Apr mean C = 12.1\n|May mean C = 17.1\n|Jun mean C = 21.3\n|Jul mean C = 24.9\n|Aug mean C = 25.8\n|Sep mean C = 21.4\n|Oct mean C = 15.4\n|Nov mean C = 9.1\n|Dec mean C = 3.5\n|year mean C = 13.4\n|Jan low C = -3.2\n|Feb low C = -2.4\n|Mar low C = 1.0\n|Apr low C = 5.8\n|May low C = 11.6\n|Jun low C = 17.1\n|Jul low C = 21.9\n|Aug low C = 22.1\n|Sep low C = 16.6\n|Oct low C = 9.3\n|Nov low C = 3.3\n|Dec low C = -1.6\n|year low C = 8.5\n|Jan precipitation mm = 32.5\n|Feb precipitation mm = 46.3\n|Mar precipitation mm = 72.9\n|Apr precipitation mm = 90.0\n|May precipitation mm = 105.5\n|Jun precipitation mm = 199.5\n|Jul precipitation mm = 246.8\n|Aug precipitation mm = 248.5\n|Sep precipitation mm = 164.3\n|Oct precipitation mm = 44.2\n|Nov precipitation mm = 46.8\n|Dec precipitation mm = 28.1\n|year precipitation mm = 1325.4\n|Jan humidity = 70.4\n|Feb humidity = 69.4\n|Mar humidity = 69.0\n|Apr humidity = 68.5\n|May humidity = 72.2\n|Jun humidity = 76.5\n|Jul humidity = 82.3\n|Aug humidity = 80.5\n|Sep humidity = 77.4\n|Oct humidity = 72.1\n|Nov humidity = 71.4\n|Dec humidity = 71.7\n|year humidity = 73.4\n|unit precipitation days = 0.1 mm\n|Jan precipitation days = 9.3\n|Feb precipitation days = 8.4\n|Mar precipitation days = 9.3\n|Apr precipitation days = 8.2\n|May precipitation days = 9.3\n|Jun precipitation days = 10.5\n|Jul precipitation days = 12.9\n|Aug precipitation days = 12.0\n|Sep precipitation days = 8.5\n|Oct precipitation days = 5.8\n|Nov precipitation days = 7.8\n|Dec precipitation days = 8.1\n|Jan sun = 161.4\n|Feb sun = 170.3\n|Mar sun = 203.8\n|Apr sun = 226.4\n|May sun = 237.8\n|Jun sun = 198.3\n|Jul sun = 183.6\n|Aug sun = 221.8\n|Sep sun = 197.4\n|Oct sun = 221.1\n|Nov sun = 175.2\n|Dec sun = 160.2\n|year sun = 2356.1\n|source = Korea Meteorological Administration<ref name= KMA>{{cite web\n|url=http://www.kma.go.kr/weather/climate/average_30years.jsp?yy_st=2011&stn=261&norm=M&x=10&y=17&obs=0&mm=5&dd=4\n|publisher=Korea Meteorological Administration\n|accessdate=2011-05-04\n|title= 평년값자료(1981–2010) 해남(261) }}</ref>\n|date=May 2011}}\n\n==Twin towns – Sister cities==\nHaenam is [[Twin towns and sister cities|twinned]] with:\n\n* {{flagicon|KOR}} [[Ansan]], [[South Korea]]\n* {{flagicon|KOR}} [[Jungnang-gu]], [[South Korea]]\n* {{flagicon|KOR}} [[Seocho-gu]], [[South Korea]]\n* {{flagicon|KOR}} [[Yeongdeok]], [[South Korea]]\n* {{flagicon|KOR}} [[Haeundae-gu]], [[South Korea]]\n\n==Gallery==\n<gallery>\nFile:Korea-Haenam-03.jpg\nFile:Korea-Haenam-02.jpg\nFile:Korea-Haenam-05.jpg\nFile:Korea-Haenam-06.jpg\nFile:Korea-Haenam-07.jpg\nFile:Korea-Haenam-Mihwangsa-01.jpg|Mihwangsa\nFile:Korea-Daeheungsa-01.jpg|[[Daeheungsa]]\nFile:Korea-Haenam-08.jpg\n</gallery>\n\n==References==\n{{reflist}}\n\n==External links==\n{{Commons category|Haenam, Jeollanam-do|Haenam}}\n*[http://eng.haenam.go.kr/ County government home page]\n\n{{South Jeolla}}\n\n{{coord|34.5741666767|N|126.59750001|E|source:ruwiki_region:KR_type:city(99358)|format=dms|display=title}}\n\n[[Category:Counties of South Jeolla Province]]\n[[Category:Haenam County| ]]
39401194 <NAME> {{Infobox cycling race\n| name = <NAME>\n| image = \n| date = \n| region = the Netherlands\n| english = ''Pearl of the [[Veluwe]]''\n| localnames = '''Women''' Memorial <NAME>\n| nickname = \n| discipline = [[Road bicycle racing|Road]]\n| competition = \n| type = Road race\n| organiser = cycling association ''De IJsselstreek''\n| director = \n| first = '''Men''' {{start date|1988}}<br />'''Women''' {{start date|1985}}\n| number = '''Men''' 24 (as of 2012)<br />'''Women''' 29 (as of 2014)\n| final = \n| firstwinner = '''Men'''<br />{{flagathlete|[[Harm Jansen]]|NED}}''' Women'''<br />{{flagathlete|[[Hennie Top]]|NED}}\n| mostwins = '''Men'''<br />{{flagathlete|Dennis Smit|NED}} ''(2)'' '''Women'''<br />{{flagathlete|Debby Mansveld|NED}} ''(4)''\n| mostrecent = '''Men'''<br />{{flagathlete|<NAME>|NED}}<br />'''Women'''<br />{{flagathlete|[[<NAME>]]|NED}}\n}}\nThe '''Parel van de Veluwe''' (''Pearl of the [[Veluwe]]'') is a women's and men's amateur [[road bicycle racing|road bicycle race]] in the [[Netherlands]], established in 1985.<ref name="men">{{cite web|title=Parel van de Veluwe|url=http://www.cyclingarchives.com/wedstrijdfiche.php?wedstrijdid=6161|publisher=cyclingarchives.com|accessdate=14 May 2013}}</ref><ref name="women">{{cite web|title=Parel van de Veluwe (F)|url=http://www.cyclingarchives.com/wedstrijdfiche.php?wedstrijdid=6162|publisher=cyclingarchives.com|accessdate=14 May 2013}}</ref>\n\n== Honours ==\n\n=== Women's ===\n{| class="wikitable" style="font-size:100%" width=60%\n! Year\n! Winner\n! Second\n! Third\n|-\n| 1985\n| {{flagathlete|[[Hennie Top]]|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|[[<NAME>]]|NED}}\n|-\n| 1986\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>al|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1987\n| {{flagathlete|C<NAME>|NED}} || {{flagathlete|Jolanda Cools|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1988\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|Gr<NAME>ijmes|NED}} || {{flagathlete|Cora Westland|NED}}\n|-\n| 1989\n| {{flagathlete|[[Monique Knol]]|NED}} || {{flagathlete|Daniëlle Overgaag|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1990\n| {{flagathlete|<NAME>|BEL}} || {{flagathlete|Cora Westland|NED}} || {{flagathlete|[[Monique Knol]]|NED}}\n|-\n| 1991\n| {{flagathlete|Monique de Bruin|NED}} || {{flagathlete|[[Petra de Bruin]]|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1992\n| {{flagathlete|[[Monique Knol]]|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1993\n| {{flagathlete|Daniëlle Overgaag|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|Wendy Kramp|NED}}\n|-\n| 1994\n| {{flagathlete|<NAME>|BEL}} || {{flagathlete|Daniëlle Overgaag|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1995\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|Nathalie Nelemans|NED}} || {{flagathlete|[[Janneke Vos]]|NED}}\n|-\n| 1996\n| {{flagathlete|<NAME>veld|NED}} || {{flagathlete|[[<NAME>]]|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1997\n| {{flagathlete|<NAME>|BEL}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1998\n| {{flagathlete|[[Leontien van Moorsel]]|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1999\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|BEL}}\n|-\n| 2000\n| {{flagathlete|[[<NAME>]]|NED}} || {{flagathlete|[[Leontien van Moorsel]]|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2001\n| colspan="3"|No race due to the [[2001 United Kingdom foot-and-mouth outbreak|2001 Foot-and-mouth outbreak]]\n|-\n| 2002\n| {{flagathlete|<NAME>|GER}} || {{flagathlete|[[<NAME>]]|NED}} || {{flagathlete|[[Leontien van Moorsel]]|NED}}\n|-\n| 2003\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|Kristy Miggels|NED}}\n|-\n| 2004\n| {{flagathlete|[[Chantal Beltman]]|NED}} || {{flagathlete|[[<NAME>]]|NED}} || {{flagathlete|[[<NAME>]]|NED}}\n|-\n| 2005\n| {{flagathlete|[[<NAME>]]|AUS}} || {{flagathlete|[[<NAME> Goede]]|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2006\n| {{flagathlete|[[<NAME>]]|SWE}} || {{flagathlete|[[E<NAME> Dijk]]|NED}} || {{flagathlete|Inge Velthuis|NED}}\n|-\n| 2007\n| {{flagathlete|[[<NAME>]]|NED}} || {{flagathlete|Moniek Rotmensen|NED}} || {{flagathlete|[[<NAME>]]|NED}}\n|-\n| 2008\n| {{flagathlete|[[Marianne Vos]]|NED}} || {{flagathlete|[[Kirsten Wild]]|NED}} || {{flagathlete|Martine Bras|NED}}\n|-\n| 2009\n| {{flagathlete|[[Chantal Blaak]]|NED}} || {{flagathlete|[[Chantal Beltman]]|NED}} || {{flagathlete|[[<NAME>]]|NED}}\n|-\n| 2010\n| {{flagathlete|[[Marianne Vos]]|NED}} || {{flagathlete|Martine Bras|NED}} || {{flagathlete|[[Ellen van Dijk]]|NED}}\n|-\n| 2011\n| {{flagathlete|[[Kirsten Wild]]|NED}} || {{flagathlete|[[Adrie Visser]]|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2012\n| {{flagathlete|[[Kim de Baat]]|NED}} || {{flagathlete|Karen Elzing|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2013\n| {{flagathlete|[[<NAME>]]|NED}} || {{flagathlete|[[Vera Koedooder]]|NED}} || {{flagathlete|[[Roxane Knetemann]]|NED}}\n|-\n| 2014\n| {{flagathlete|[[<NAME>]]|NED}} || {{flagathlete|[[Sara Mustonen (cyclist)|Sara Mustonen]]|SWE}} || {{flagathlete|[[Roxane Knetemann]]|NED}}\n|}\n<small>Source<ref name="women" /></small>\n\n=== Men's ===\n{| class="wikitable" style="font-size:100%" width=60%\n! Year\n! Winner\n! Second\n! Third\n|-\n| 1988\n| {{flagathlete|[[<NAME>]]|NED}} || {{flagathlete|Godert de Leeuw|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1989\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1990\n| {{flagathlete|Remco Startman|NED}} || {{flagathlete|Godert de Leeuw|NED}} || {{flagathlete|[[Harm Jansen]]|NED}}\n|-\n| 1991\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|Remco Startman|NED}} || {{flagathlete|Mano Lubbers|NED}}\n|-\n| 1992\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1993\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1994\n| {{flagathlete|[[<NAME>]]|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1995\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1996\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1997\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n|1998\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME> Leeuw|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 1999\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2000\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2001\n| colspan="3"|No race due to the [[2001 United Kingdom foot-and-mouth outbreak|2001 Foot-and-mouth outbreak]]\n|-\n| 2002\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|[[<NAME>]]|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2003\n| {{flagathlete|[[<NAME>]]|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|[[<NAME>]]|CUR}}\n|-\n| 2004\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2005\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2006\n| {{flagathlete|[[<NAME>]]|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2007\n| {{flagathlete|[[<NAME> (cyclist)|<NAME>jm]]|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2008\n| {{flagathlete|[[Lieuwe Westra]]|NED}} || {{flagathlete|Yvo Kusters|NED}} || {{flagathlete|[[<NAME> (cyclist)|<NAME> der Pluijm]]|NED}}\n|-\n| 2009\n| {{flagathlete|[[<NAME>]]|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2010\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|Roy Eefting|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2011\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|-\n| 2012\n| {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}} || {{flagathlete|<NAME>|NED}}\n|}\n<small>Source<ref name="men" /></small>\n\n==External links==\n*{{official website|http://www.parelvandeveluwe.nl/}} {{nl}}\n\n==References==\n{{reflist}}\n\n[[Category:Women's road bicycle races]]\n[[Category:Recurring sporting events established in 1985]]\n[[Category:1985 establishments in the Netherlands]]\n[[Category:Men's road bicycle races]]
\.
--
-- PostgreSQL database dump complete
--
|
<reponame>HNochev/SoftUni-CSharp-Software-Engineering
--Problem 12
ALTER TABLE Users
DROP CONSTRAINT IdUsername_PK
ALTER TABLE Users
ADD CONSTRAINT Id_PK
PRIMARY KEY (Id)
ALTER TABLE Users
ADD CONSTRAINT CH_UsernameIsAtLeastThreeSymbols
CHECK (LEN(Password) > 3)
|
<reponame>Toumani/noties
CREATE TABLE IF NOT EXISTS users (
username VARCHAR(255) PRIMARY KEY,
password VARCHAR(255) NOT NULL,
enabled BOOLEAN NOT NULL
);
CREATE TABLE IF NOT EXISTS users_roles (
username VARCHAR(255) NOT NULL,
role VARCHAR (255) NOT NULL,
FOREIGN KEY (username) REFERENCES users(username)
); |
create table role
(
id serial primary key,
name varchar(10) unique not null,
created_at timestamp not null default now(),
updated_at timestamp not null default now(),
status varchar(10) not null default 'OK'
);
insert into role(id,name) values
(1,'学生'),
(2,'教师'),
(3,'管理员');
alter sequence role_id_seq restart with 4; |
SELECT /* */
A.*
FROM ALL_TAB_COLS A
WHERE 1 = 1
-- AND A.OWNER = 'COM'
-- AND A.TABLE_NAME LIKE 'C%'
AND A.OWNER = 'SYS' AND A.TABLE_NAME = 'ALL_TAB_COLS'
ORDER BY A.TABLE_NAME, A.COLUMN_ID
;
SELECT /* select */
A.OWNER
, A.TABLE_NAME
, A.COLUMN_NAME
, A.DATA_TYPE
, A.DATA_LENGTH
, A.DATA_PRECISION
, A.DATA_SCALE
, A.NULLABLE
, A.COLUMN_ID
, A.DATA_DEFAULT
, (SELECT L.COMMENTS FROM ALL_TAB_COMMENTS L WHERE L.OWNER = A.OWNER AND L.TABLE_NAME = A.TABLE_NAME) TABLE_COMMENTS
, (SELECT L.COMMENTS FROM ALL_COL_COMMENTS L WHERE L.OWNER = A.OWNER AND L.TABLE_NAME = A.TABLE_NAME AND L.COLUMN_NAME = A.COLUMN_NAME) COLUMN_COMMENTS
-- , (SELECT LISTAGG(L.COLUMN_NAME, ',') WITHIN GROUP(ORDER BY L.COLUMN_NAME) FROM ALL_CONS_COLUMNS L WHERE L.OWNER = A.OWNER AND L.TABLE_NAME = A.TABLE_NAME AND L.COLUMN_NAME = A.COLUMN_NAME AND L.POSITION IS NOT NULL) PK
, (SELECT 'Y' FROM ALL_CONS_COLUMNS L WHERE L.OWNER = A.OWNER AND EXISTS (SELECT 1 FROM ALL_CONSTRAINTS X WHERE X.OWNER = L.OWNER AND X.CONSTRAINT_TYPE = 'P' AND X.TABLE_NAME = A.TABLE_NAME AND X.CONSTRAINT_NAME = L.CONSTRAINT_NAME) AND L.COLUMN_NAME = A.COLUMN_NAME) PK
, (SELECT 'Y' FROM ALL_CONS_COLUMNS L WHERE L.OWNER = A.OWNER AND EXISTS (SELECT 1 FROM ALL_CONSTRAINTS X WHERE X.OWNER = L.OWNER AND X.CONSTRAINT_TYPE = 'R' AND X.TABLE_NAME = A.TABLE_NAME AND X.CONSTRAINT_NAME = L.CONSTRAINT_NAME) AND L.COLUMN_NAME = A.COLUMN_NAME) FK
FROM ALL_TAB_COLS A
WHERE 1 = 1
AND A.OWNER = 'COM'
-- AND A.TABLE_NAME LIKE 'C%'
-- AND A.TABLE_NAME = 'ALL_TAB_COLS'
ORDER BY A.OWNER, A.TABLE_NAME, A.COLUMN_ID
;
--
SELECT /* select */
A.OWNER
, A.TABLE_NAME
, A.COLUMN_NAME
, A.DATA_TYPE
, A.DATA_LENGTH
, A.DATA_PRECISION
, A.DATA_SCALE
, A.NULLABLE
, A.COLUMN_ID
, A.DATA_DEFAULT
, (SELECT L.COMMENTS FROM ALL_TAB_COMMENTS L WHERE L.OWNER = A.OWNER AND L.TABLE_NAME = A.TABLE_NAME) TABLE_COMMENTS
, (SELECT L.COMMENTS FROM ALL_COL_COMMENTS L WHERE L.OWNER = A.OWNER AND L.TABLE_NAME = A.TABLE_NAME AND L.COLUMN_NAME = A.COLUMN_NAME) COLUMN_COMMENTS
, (SELECT 'Y' FROM ALL_CONS_COLUMNS L WHERE L.OWNER = A.OWNER AND L.TABLE_NAME = A.TABLE_NAME AND L.COLUMN_NAME = A.COLUMN_NAME AND EXISTS (SELECT 1 FROM ALL_CONSTRAINTS X WHERE X.OWNER = L.OWNER AND X.CONSTRAINT_NAME = L.CONSTRAINT_NAME AND X.CONSTRAINT_TYPE = 'P' AND X.TABLE_NAME = L.TABLE_NAME)) PK
FROM ALL_TAB_COLS A
WHERE 1 = 1
AND A.OWNER = 'COM'
-- AND A.TABLE_NAME = 'COMTCADMINISTCODE'
ORDER BY A.OWNER, A.TABLE_NAME, A.COLUMN_ID
;
--
|
<gh_stars>1-10
create procedure ProcWithParameterOnlyUsedInMethod @A int
as
begin
declare @x xml = N'';
select @x.query('<P>DiscountPrice="{ sql:variable("@A") }" </P>');
-- !! The argument 1 of the XML data type method "query" must be a string literal.
end |
/* getting the users with virginia.edu email addresses associated with their accounts*/
SELECT DISTINCT ON (osf_osfuser.id) * /* call distinct on id to handle schools like UVA that allow people that have multiple email alases*/
FROM osf_osfuser
LEFT JOIN (SELECT *
FROM osf_email WHERE osf_email.address LIKE '%virginia.edu') as uvaers
ON osf_osfuser.id = uvaers.user_id
WHERE uvaers.address LIKE '%virginia.edu%' AND
is_registered IS TRUE; /* will exclude spam & disabled accounts, but will include merged accounts/secondary emails*/) |
#用户表
CREATE TABLE `z_user` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户的 ID',
`user_name` varchar(255) DEFAULT NULL COMMENT '用户名',
`true_name` varchar(255) DEFAULT NULL COMMENT '用户真实姓名',
`password` varchar(32) DEFAULT NULL COMMENT '用户密码',
`salt` varchar(16) DEFAULT NULL COMMENT '用户附加混淆码',
`avatar_file` varchar(128) DEFAULT NULL COMMENT '头像文件',
`sex` tinyint(1) DEFAULT NULL COMMENT '性别',
`birthday` int(10) DEFAULT NULL COMMENT '生日',
`update_time` int(10) DEFAULT NULL,
`reg_time` int(10) DEFAULT NULL COMMENT '注册时间',
`reg_ip` bigint(12) DEFAULT NULL COMMENT '注册IP',
`serialize` text NOT NULL COMMENT '序列化信息',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
|
INSERT INTO test_hazard_calculation (id, description)
VALUES (1, 'First calculation');
INSERT INTO test_hazard_calculation (id, description)
VALUES (2, 'Second calculation');
INSERT INTO test_lt_source_model
VALUES (1, 1, 0, '{b1}', 'source_model.xml');
INSERT INTO test_lt_source_model
VALUES (2, 1, 1, '{b2}', 'source_model.xml');
INSERT INTO test_lt_source_model
VALUES (3, 2, 0, '{b11,b12}', 'other_model.xml');
INSERT INTO test_lt_source_model
VALUES (4, 2, 1, '{b21,b22}', 'other_model.xml');
|
DROP TABLE IF EXISTS descriptor_index;
CREATE TABLE IF NOT EXISTS descriptor_index (
uid TEXT NOT NULL,
element BYTEA NOT NULL,
PRIMARY KEY (uid)
);
DROP TABLE IF EXISTS OBJECT_TRACK;
CREATE TABLE IF NOT EXISTS OBJECT_TRACK (
TRACK_ID INT NOT NULL,
FRAME_NUMBER INT NOT NULL,
VIDEO_NAME TEXT NOT NULL,
TIMESTAMP BIGINT NOT NULL,
IMAGE_BBOX_TL_X DOUBLE PRECISION NOT NULL,
IMAGE_BBOX_TL_Y DOUBLE PRECISION NOT NULL,
IMAGE_BBOX_BR_X DOUBLE PRECISION NOT NULL,
IMAGE_BBOX_BR_Y DOUBLE PRECISION NOT NULL,
TRACK_CONFIDENCE DOUBLE PRECISION NOT NULL
);
DROP INDEX IF EXISTS OBJECT_TRACK_ID_FRAME_VIDEO;
CREATE INDEX OBJECT_TRACK_ID_FRAME_VIDEO ON OBJECT_TRACK(
TRACK_ID,
FRAME_NUMBER,
VIDEO_NAME
);
DROP TABLE IF EXISTS TRACK_DESCRIPTOR;
CREATE TABLE IF NOT EXISTS TRACK_DESCRIPTOR (
UID TEXT NOT NULL,
TYPE TEXT NOT NULL,
VIDEO_NAME TEXT NOT NULL,
PRIMARY KEY (UID)
);
DROP TABLE IF EXISTS TRACK_DESCRIPTOR_TRACK;
CREATE TABLE IF NOT EXISTS TRACK_DESCRIPTOR_TRACK (
UID TEXT NOT NULL,
TRACK_ID INT NOT NULL
);
DROP TABLE IF EXISTS TRACK_DESCRIPTOR_HISTORY;
CREATE TABLE IF NOT EXISTS TRACK_DESCRIPTOR_HISTORY (
UID TEXT NOT NULL,
FRAME_NUMBER INT NOT NULL,
TIMESTAMP BIGINT NOT NULL,
IMAGE_BBOX_TL_X DOUBLE PRECISION NOT NULL,
IMAGE_BBOX_TL_Y DOUBLE PRECISION NOT NULL,
IMAGE_BBOX_BR_X DOUBLE PRECISION NOT NULL,
IMAGE_BBOX_BR_Y DOUBLE PRECISION NOT NULL,
WORLD_BBOX_TL_X DOUBLE PRECISION,
WORLD_BBOX_TL_Y DOUBLE PRECISION,
WORLD_BBOX_BR_X DOUBLE PRECISION,
WORLD_BBOX_BR_Y DOUBLE PRECISION
);
|
<reponame>hjimmy/glustermg
create table cluster_info (
id bigint NOT NULL AUTO_INCREMENT,
name varchar(255),
init bigint default 0,
primary key (id));
create unique index ix_cluster_name on cluster_info (name);
create table server_info (
id bigint NOT NULL AUTO_INCREMENT,
name varchar(255),
cluster_id bigint,
primary key (id));
create table task_info (
id bigint NOT NULL AUTO_INCREMENT,
description varchar(255),
reference varchar(255),
operation_id bigint,
cluster_name varchar(255),
primary key (id));
create table operation_info (
id bigint NOT NULL AUTO_INCREMENT,
operation_type varchar(255),
commitSupported varchar(255),
pauseSupported varchar(255),
stopSupported varchar(255),
percentageSupported varchar(255),
primary key (id));
create table volume_info (
id bigint NOT NULL AUTO_INCREMENT,
name varchar(255),
cluster_id varchar(255),
primary key(id));
insert into cluster_info(name) values("StorCluster");
alter table task_info add constraint FK_CLUSTER_ID foreign key (operation_id) references opration_info(id);
insert into operation_info(id, operation_type,commitSupported,pauseSupported,stopSupported,percentageSupported) values ('1','DISK_FORMAT','true','true','true','true');
insert into operation_info(id, operation_type,commitSupported,pauseSupported,stopSupported,percentageSupported) values ('2','BRICK_MIGRATE','true','true','true','true');
insert into operation_info(id, operation_type,commitSupported,pauseSupported,stopSupported,percentageSupported) values ('3','VOLUME_REBALANCE','true','true','true','true');
create unique index ix_cluster_server on server_info (name, cluster_id);
alter table server_info add constraint FK_CLUSTER_ID foreign key (cluster_id) references cluster_info(id);
|
-- @testpoint:opengauss关键字Level(非保留),自定义数据类型名为explain
--关键字explain作为数据类型不带引号,创建成功
drop type if exists Level;
CREATE TYPE Level AS (f1 int, f2 text);
select typname from pg_type where typname ='Level';
drop type Level;
--关键字explain作为数据类型加双引号,创建成功
drop type if exists "Level";
CREATE TYPE "Level" AS (f1 int, f2 text);
select typname from pg_type where typname ='Level';
drop type "Level";
--关键字explain作为数据类型加单引号,合理报错
drop type if exists 'Level';
CREATE TYPE 'Level' AS (f1 int, f2 text);
select * from pg_type where typname ='Level';
drop type 'Level';
--关键字explain作为数据类型加反引号,合理报错
drop type if exists `Level`;
CREATE TYPE `Level` AS (f1 int, f2 text);
select * from pg_type where typname =`Level`;
drop type `Level`; |
-------------------------------------------------------------------------------
--
-- Script: shrink_rollback_segs.sql
-- Purpose: to shrink all online rollback segments back to optimal
--
-- Copyright: (c) Ixora Pty Ltd
-- Author: <NAME>
--
-------------------------------------------------------------------------------
@save_sqlplus_settings
set pagesize 0
set termout off
spool shrink_rollback_segs.tmp
select
'alter rollback segment ' || segment_name || ' shrink;'
from
sys.dba_rollback_segs
where
status = 'ONLINE'
/
spool off
@shrink_rollback_segs.tmp
host rm -f shrink_rollback_segs.tmp -- for Unix
host del shrink_rollback_segs.tmp -- for others
@restore_sqlplus_settings
|
<reponame>jevyies/gscbilling
-- phpMyAdmin SQL Dump
-- version 4.8.3
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Sep 06, 2021 at 05:43 PM
-- Server version: 10.1.36-MariaDB
-- PHP Version: 7.2.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: `gscbilling`
--
-- --------------------------------------------------------
--
-- Table structure for table `tblpoexpense`
--
CREATE TABLE `tblpoexpense` (
`POexid` bigint(20) NOT NULL,
`POidhdrlink` bigint(20) NOT NULL,
`POiddtllink` bigint(20) NOT NULL,
`Docnum` varchar(500) NOT NULL,
`Linenum` varchar(500) NOT NULL,
`Amount` double NOT NULL,
`POdateexpense` date NOT NULL,
`Expensetype` varchar(500) NOT NULL,
`expenseName` varchar(300) NOT NULL,
`expenseHdrID` bigint(20) NOT NULL,
`Expenseid` bigint(20) NOT NULL,
`remarks` varchar(5000) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `tblpoexpense`
--
INSERT INTO `tblpoexpense` (`POexid`, `POidhdrlink`, `POiddtllink`, `Docnum`, `Linenum`, `Amount`, `POdateexpense`, `Expensetype`, `expenseName`, `expenseHdrID`, `Expenseid`, `remarks`, `created_at`, `updated_at`) VALUES
(1, 1, 1, '', '', 464231.28, '2019-09-30', 'Contracted labor', ' Direct Labor ', 0, 0, 'Todate Expenses from Jan2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(2, 1, 1, '', '', 131962.35, '2019-09-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'Todate Expenses from Jan2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(3, 1, 1, '', '', 56060.58, '2019-09-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'Todate Expenses from Jan2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(4, 1, 1, '', '', 23921.38, '2019-09-30', 'Fuel', ' Overhead ', 0, 0, 'Todate Expenses from Jan2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(5, 1, 1, '', '', 19718.7, '2019-09-30', 'Driver', ' Direct Labor ', 0, 0, 'Todate Expenses from Jan2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(6, 1, 1, '', '', 15722.52, '2019-09-30', 'clerk', ' Direct Labor ', 0, 0, 'Todate Expenses from Jan2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(7, 1, 1, '', '', 1400, '2019-09-30', 'Meal/Haul', ' Overhead ', 0, 0, 'Todate Expenses from Jan2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(8, 2, 2, '', '', 930595.56, '2019-09-30', 'Contracted labor', ' Direct Labor ', 0, 0, 'Todate Expenses from Apr2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(9, 2, 2, '', '', 100083.18, '2019-09-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'Todate Expenses from Apr2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(10, 2, 2, '', '', 40046.95, '2019-09-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'Todate Expenses from Apr2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(11, 2, 2, '', '', 20272.1, '2019-09-30', 'Fuel', ' Overhead ', 0, 0, 'Todate Expenses from Apr2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(12, 2, 2, '', '', 14245.35, '2019-09-30', 'Driver', ' Direct Labor ', 0, 0, 'Todate Expenses from Apr2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(13, 2, 2, '', '', 11218.66, '2019-09-30', 'Clerk', ' Direct Labor ', 0, 0, 'Todate Expenses from Apr2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(14, 2, 2, '', '', 4857, '2019-09-30', 'Meal/Haul', ' Overhead ', 0, 0, 'Todate Expenses from Apr2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(15, 3, 3, '', '', 34737.5, '2019-09-30', 'Contracted labor', ' Direct Labor ', 0, 0, 'Todate Expenses from July2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(16, 3, 3, '', '', 36060, '2019-09-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'Todate Expenses from July2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(17, 3, 3, '', '', 14275.48, '2019-09-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'Todate Expenses from July2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(18, 3, 3, '', '', 5649.17, '2019-09-30', 'Fuel', ' Overhead ', 0, 0, 'Todate Expenses from July2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(19, 3, 3, '', '', 5140.68, '2019-09-30', 'Driver', ' Direct Labor ', 0, 0, 'Todate Expenses from July2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(20, 3, 3, '', '', 3110.63, '2019-09-30', 'Clerk', ' Direct Labor ', 0, 0, 'Todate Expenses from July2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(21, 3, 3, '', '', 700, '2019-09-30', 'Meal/Haul', ' Overhead ', 0, 0, 'Todate Expenses from July2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(22, 4, 4, '', '', 98700.03, '2019-09-30', 'Contracted labor', ' Direct Labor ', 0, 0, 'Todate Expenses from Aug2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(23, 4, 4, '', '', 13185, '2019-09-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'Todate Expenses from Aug2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(24, 4, 4, '', '', 7330.73, '2019-09-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'Todate Expenses from Aug2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(25, 4, 4, '', '', 689.07, '2019-09-30', 'Driver', ' Direct Labor ', 0, 0, 'Todate Expenses from Aug2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(26, 4, 4, '', '', 1655.94, '2019-09-30', 'Clerk', ' Direct Labor ', 0, 0, 'Todate Expenses from Aug2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(27, 5, 5, '', '', 11342.21, '2019-09-30', 'Contracted labor', ' Direct Labor ', 0, 0, 'Todate Expenses from Oct2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(28, 5, 5, '', '', 6010, '2019-09-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'Todate Expenses from Oct2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(29, 5, 5, '', '', 813.75, '2019-09-30', 'Clerk', ' Direct Labor ', 0, 0, 'Todate Expenses from Oct2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(30, 1, 1, '', '', 3587.5, '2019-09-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'sept 26-oct 2', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(31, 2, 2, '', '', 27715.63, '2019-09-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'sept 26-oct 2', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(32, 3, 3, '', '', 2100, '2019-09-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'sept 26-oct 2', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(33, 4, 4, '', '', 27879.69, '2019-09-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'sept 26-oct 2', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(34, 5, 5, '', '', 13223.44, '2019-09-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'sept 26-oct 2', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(35, 1, 1, '', '', 155, '2019-09-25', 'Meal/Haul', ' Overhead ', 0, 0, 'MEAL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(36, 4, 4, '', '', 155, '2019-09-25', 'Meal/Haul', ' Overhead ', 0, 0, 'MEAL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(37, 1, 1, '', '', 250, '2019-09-25', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO+GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(38, 4, 4, '', '', 250, '2019-09-25', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO+GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(39, 2, 2, '', '', 116.67, '2019-09-26', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO+GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(40, 4, 4, '', '', 116.67, '2019-09-26', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO+GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(41, 5, 5, '', '', 116.67, '2019-09-26', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO+GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(42, 4, 4, '', '', 150, '2019-09-28', 'Fuel', ' Overhead ', 0, 0, 'BCC', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(43, 5, 5, '', '', 150, '2019-09-28', 'Fuel', ' Overhead ', 0, 0, 'BCC', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(44, 1, 1, '', '', 75, '2019-09-30', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO+GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(45, 4, 4, '', '', 75, '2019-09-30', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO+GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(46, 5, 5, '', '', 75, '2019-09-30', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO+GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(47, 3, 3, '', '', 75, '2019-09-30', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO+GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(48, 2, 2, '', '', 100, '2019-10-02', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO+GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(49, 4, 4, '', '', 100, '2019-10-02', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO+GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(50, 3, 3, '', '', 100, '2019-10-02', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO+GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(51, 3, 3, '', '', 300, '2019-10-04', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO+GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(52, 1, 1, '', '', 1407.8, '2019-09-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(53, 2, 2, '', '', 1407.8, '2019-09-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(54, 3, 3, '', '', 1407.8, '2019-09-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(55, 4, 4, '', '', 1407.8, '2019-09-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(56, 5, 5, '', '', 1407.8, '2019-09-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(57, 1, 1, '', '', 1447.66, '2019-09-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(58, 2, 2, '', '', 1447.66, '2019-09-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(59, 3, 3, '', '', 1447.66, '2019-09-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(60, 4, 4, '', '', 1447.66, '2019-09-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(61, 5, 5, '', '', 1447.66, '2019-09-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(62, 1, 1, '', '', 6364.84, '2019-09-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'PAGIBIG, SSS, AND PHILHEALTH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(63, 2, 2, '', '', 6364.84, '2019-09-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'PAGIBIG, SSS, AND PHILHEALTH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(64, 3, 3, '', '', 6364.84, '2019-09-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'PAGIBIG, SSS, AND PHILHEALTH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(65, 4, 4, '', '', 6364.84, '2019-09-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'PAGIBIG, SSS, AND PHILHEALTH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(66, 5, 5, '', '', 6364.84, '2019-09-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'PAGIBIG, SSS, AND PHILHEALTH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(67, 1, 1, '', '', 6010, '2019-10-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(68, 2, 2, '', '', 6010, '2019-10-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(69, 3, 3, '', '', 6010, '2019-10-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(70, 4, 4, '', '', 6010, '2019-10-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(71, 5, 5, '', '', 6010, '2019-10-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(72, 1, 1, '', '', 840, '2019-10-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(73, 2, 2, '', '', 840, '2019-10-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(74, 3, 3, '', '', 840, '2019-10-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(75, 4, 4, '', '', 840, '2019-10-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(76, 5, 5, '', '', 840, '2019-10-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(77, 1, 1, '', '', 7787.5, '2019-09-09', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 3-9, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(78, 2, 2, '', '', 24981.25, '2019-09-09', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 3-9, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(79, 3, 3, '', '', 2100, '2019-09-09', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 3-9, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(80, 4, 4, '', '', 24981.25, '2019-09-09', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 3-9, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(81, 5, 5, '', '', 10981.25, '2019-09-09', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 3-9, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(82, 1, 1, '', '', 7929.69, '2019-10-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 10-16, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(83, 2, 2, '', '', 29946.88, '2019-10-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 10-16, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(84, 3, 3, '', '', 2056.25, '2019-10-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 10-16, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(85, 4, 4, '', '', 24762.5, '2019-10-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 10-16, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(86, 5, 5, '', '', 8443.75, '2019-10-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 10-16, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(87, 1, 1, '', '', 5950, '2019-10-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 17-24, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(88, 2, 2, '', '', 16373.44, '2019-10-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 17-24, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(89, 3, 3, '', '', 1968.75, '2019-10-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 17-24, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(90, 4, 4, '', '', 22060.94, '2019-10-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 17-24, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(91, 5, 5, '', '', 8454.69, '2019-10-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 17-24, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(92, 1, 1, '', '', 1392.19, '2019-10-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(93, 2, 2, '', '', 1392.19, '2019-10-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(94, 3, 3, '', '', 1392.19, '2019-10-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(95, 4, 4, '', '', 1392.19, '2019-10-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(96, 5, 5, '', '', 1392.19, '2019-10-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(97, 2, 2, '', '', 25000, '2019-11-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'ELECTRICAL INSTALLATION', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(98, 2, 2, '', '', 100, '2019-10-24', 'Fuel', ' Overhead ', 0, 0, 'V POWER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(99, 3, 3, '', '', 100, '2019-10-24', 'Fuel', ' Overhead ', 0, 0, 'V POWER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(100, 4, 4, '', '', 100, '2019-10-24', 'Fuel', ' Overhead ', 0, 0, 'V POWER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(101, 1, 1, '', '', 100, '2019-10-30', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(102, 3, 3, '', '', 100, '2019-10-30', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(103, 4, 4, '', '', 100, '2019-10-30', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(104, 1, 1, '', '', 5250, '2019-10-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR FOR OCT. 24-29', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(105, 2, 2, '', '', 11604.69, '2019-10-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR FOR OCT. 24-29', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(106, 3, 3, '', '', 1673.44, '2019-10-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR FOR OCT. 24-29', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(107, 4, 4, '', '', 10850, '2019-10-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR FOR OCT. 24-29', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(108, 5, 5, '', '', 4900, '2019-10-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR FOR OCT. 24-29', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(109, 1, 1, '', '', 6280, '2019-10-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE FOR OCT. 16-31', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(110, 2, 2, '', '', 6280, '2019-10-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE FOR OCT. 16-31', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(111, 3, 3, '', '', 6280, '2019-10-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE FOR OCT. 16-31', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(112, 4, 4, '', '', 6280, '2019-10-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE FOR OCT. 16-31', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(113, 5, 5, '', '', 6280, '2019-10-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE FOR OCT. 16-31', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(114, 1, 1, '', '', 787.5, '2019-10-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE FOR OCT. 16-31', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(115, 2, 2, '', '', 787.5, '2019-10-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE FOR OCT. 16-31', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(116, 3, 3, '', '', 787.5, '2019-10-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE FOR OCT. 16-31', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(117, 4, 4, '', '', 787.5, '2019-10-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE FOR OCT. 16-31', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(118, 5, 5, '', '', 787.5, '2019-10-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE FOR OCT. 16-31', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(119, 1, 1, '', '', 6004.69, '2019-11-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR FOR OCT 30-NOV 6', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(120, 2, 2, '', '', 2450, '2019-11-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR FOR OCT 30-NOV 6', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(121, 3, 3, '', '', 1750, '2019-11-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR FOR OCT 30-NOV 6', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(122, 4, 4, '', '', 24204.69, '2019-11-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR FOR OCT 30-NOV 6', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(123, 5, 5, '', '', 5600, '2019-11-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR FOR OCT 30-NOV 6', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(124, 6, 6, '', '', 2450, '2019-11-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR FOR OCT 30-NOV 6', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(125, 1, 1, '', '', 100, '2019-11-06', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(126, 4, 4, '', '', 100, '2019-11-06', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(127, 7, 7, '', '', 100, '2019-11-06', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(128, 1, 1, '', '', 696.89, '2019-10-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(129, 2, 2, '', '', 1740.88, '2019-10-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(130, 3, 3, '', '', 226.63, '2019-10-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(131, 4, 4, '', '', 2047.81, '2019-10-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(132, 5, 5, '', '', 830.97, '2019-10-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(133, 2, 2, '', '', 168.81, '2019-11-12', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(134, 3, 3, '', '', 385.65, '2019-11-12', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(135, 7, 7, '', '', 45.54, '2019-11-12', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(136, 6, 6, '', '', 424.65, '2019-11-11', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(137, 7, 7, '', '', 75.35, '2019-11-11', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(138, 1, 1, '', '', 3896.39, '2019-10-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'OCTOBER (SSS, PAGIBIG, PHILHEALTH)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(139, 2, 2, '', '', 14129.81, '2019-10-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'OCTOBER (SSS, PAGIBIG, PHILHEALTH)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(140, 3, 3, '', '', 1264.33, '2019-10-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'OCTOBER (SSS, PAGIBIG, PHILHEALTH)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(141, 4, 4, '', '', 14118.63, '2019-10-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'OCTOBER (SSS, PAGIBIG, PHILHEALTH)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(142, 5, 5, '', '', 5876.01, '2019-10-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'OCTOBER (SSS, PAGIBIG, PHILHEALTH)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(143, 1, 1, '', '', 3850, '2019-11-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 7-13, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(144, 4, 4, '', '', 28404.68, '2019-11-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 7-13, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(145, 5, 5, '', '', 7918.75, '2019-11-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 7-13, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(146, 6, 6, '', '', 7000, '2019-11-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 7-13, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(147, 3, 3, '', '', 404.68, '2019-11-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 14-20), 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(148, 4, 4, '', '', 12950, '2019-11-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 14-20), 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(149, 6, 6, '', '', 12250, '2019-11-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 14-20), 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(150, 7, 7, '', '', 12600, '2019-11-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 14-20), 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(151, 4, 4, '', '', 918.75, '2019-11-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 21-27), 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(152, 6, 6, '', '', 11068.75, '2019-11-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 21-27), 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(153, 7, 7, '', '', 10106.25, '2019-11-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 21-27), 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(154, 1, 1, '', '', 556.42, '2019-11-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(155, 2, 2, '', '', 138.33, '2019-11-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(156, 3, 3, '', '', 98.81, '2019-11-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(157, 4, 4, '', '', 2970.46, '2019-11-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(158, 5, 5, '', '', 763.3, '2019-11-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(159, 6, 6, '', '', 533.57, '2019-11-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(160, 6, 6, '', '', 223.22, '2019-11-18', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(161, 4, 4, '', '', 32.04, '2019-11-18', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(162, 1, 1, '', '', 44.73, '2019-11-18', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(163, 6, 6, '', '', 4768.75, '2019-12-04', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 28-DEC 4, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(164, 7, 7, '', '', 5468.75, '2019-12-04', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 28-DEC 4, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(165, 4, 4, '', '', 350, '2019-12-04', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 28-DEC 4, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(166, 1, 1, '', '', 3007, '2019-11-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE FOR NOV 1-15, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(167, 2, 2, '', '', 747.58, '2019-11-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE FOR NOV 1-15, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(168, 3, 3, '', '', 533.98, '2019-11-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE FOR NOV 1-15, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(169, 4, 4, '', '', 16052.9, '2019-11-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE FOR NOV 1-15, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(170, 5, 5, '', '', 4125.03, '2019-11-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE FOR NOV 1-15, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(171, 7, 7, '', '', 2883.51, '2019-11-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE FOR NOV 1-15, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(172, 1, 1, '', '', 384.81, '2019-11-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE FOR NOV 1-15, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(173, 2, 2, '', '', 95.67, '2019-11-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE FOR NOV 1-15, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(174, 3, 3, '', '', 68.33, '2019-11-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE FOR NOV 1-15, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(175, 4, 4, '', '', 2054.3, '2019-11-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE FOR NOV 1-15, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(176, 5, 5, '', '', 527.88, '2019-11-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE FOR NOV 1-15, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(177, 7, 7, '', '', 369.01, '2019-11-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE FOR NOV 1-15, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(178, 3, 3, '', '', 192.61, '2019-11-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE NOV 16-30, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(179, 4, 4, '', '', 6601.05, '2019-11-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE NOV 16-30, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(180, 6, 6, '', '', 11098.93, '2019-11-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE NOV 16-30, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(181, 7, 7, '', '', 10807.4, '2019-11-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE NOV 16-30, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(182, 3, 3, '', '', 28.19, '2019-11-30', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE NOV 16-30, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(183, 4, 4, '', '', 966.01, '2019-11-30', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE NOV 16-30, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(184, 6, 6, '', '', 1624.23, '2019-11-30', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE NOV 16-30, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(185, 7, 7, '', '', 1581.57, '2019-11-30', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE NOV 16-30, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(186, 3, 3, '', '', 27, '2019-11-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC) NOV 16-30, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(187, 4, 4, '', '', 925.18, '2019-11-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC) NOV 16-30, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(188, 6, 6, '', '', 1555.59, '2019-11-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC) NOV 16-30, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(189, 7, 7, '', '', 1514.73, '2019-11-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BALANI AND CABUNOC) NOV 16-30, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(190, 6, 6, '', '', 2450, '2019-12-11', 'Contracted labor', ' Direct Labor ', 0, 0, 'DEC 5-11, 2019 (LABOR)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(191, 6, 6, '', '', 260, '2019-11-15', 'Meal/Haul', ' Overhead ', 0, 0, 'MEAL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(192, 6, 6, '', '', 300, '2019-11-19', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH HAULING MATERIALS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(193, 6, 6, '', '', 150, '2019-11-13', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(194, 6, 6, '', '', 150, '2019-11-15', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(195, 6, 6, '', '', 150, '2019-11-25', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(196, 6, 6, '', '', 150, '2019-12-19', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(197, 6, 6, '', '', 150, '2019-12-21', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(198, 1, 1, '', '', 1750.96, '2019-11-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'NOVEMBER (SS, PHILHEALTH,AND HDMF)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(199, 2, 2, '', '', 435.31, '2019-11-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'NOVEMBER (SS, PHILHEALTH,AND HDMF)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(200, 3, 3, '', '', 382.84, '2019-11-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'NOVEMBER (SS, PHILHEALTH,AND HDMF)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(201, 4, 4, '', '', 11811.68, '2019-11-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'NOVEMBER (SS, PHILHEALTH,AND HDMF)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(202, 5, 5, '', '', 2401.98, '2019-11-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'NOVEMBER (SS, PHILHEALTH,AND HDMF)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(203, 6, 6, '', '', 5822.28, '2019-11-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'NOVEMBER (SS, PHILHEALTH,AND HDMF)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(204, 7, 7, '', '', 4034.4, '2019-11-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'NOVEMBER (SS, PHILHEALTH,AND HDMF)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(205, 6, 6, '', '', 7700, '2019-12-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (DEC 19-21, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(206, 8, 8, '', '', 3718.75, '2019-12-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (DEC 19-21, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(207, 6, 6, '', '', 6825, '2019-12-18', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (DEC 12-18,2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(208, 9, 9, '', '', 200, '2019-12-21', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(209, 10, 10, '', '', 453020.56, '2019-12-31', 'Contracted labor', ' Direct Labor ', 0, 0, 'STARTED UP NOV. 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(210, 10, 10, '', '', 149052.34, '2019-12-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'STARTED UP DEC. 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(211, 10, 10, '', '', 46411.79, '2019-12-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'STARTED UP DEC. 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(212, 10, 10, '', '', 4928.38, '2019-12-31', 'Fuel', ' Overhead ', 0, 0, 'STARTED UP DEC. 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(213, 10, 10, '', '', 2812.79, '2019-12-31', 'Driver', ' Direct Labor ', 0, 0, 'STARTED UP DEC. 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(214, 10, 10, '', '', 1759.38, '2019-12-31', 'Clerk', ' Direct Labor ', 0, 0, 'STARTED UP DEC. 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(215, 10, 10, '', '', 100745.32, '2019-12-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 28-DEC 21, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(216, 11, 11, '', '', 18123.44, '2019-12-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV 28-DEC 21, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(217, 11, 11, '', '', 4550, '2019-12-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (DEC 22-28, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(218, 10, 10, '', '', 1487.5, '2019-12-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (DEC 22-28, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(219, 6, 6, '', '', 8706.25, '2019-12-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (DEC 22-28, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(220, 8, 8, '', '', 7525, '2019-12-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (DEC 22-28, 2019)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(221, 11, 11, '', '', 7918.76, '2020-01-08', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 2-8, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(222, 10, 10, '', '', 7700, '2020-01-08', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 2-8, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(223, 6, 6, '', '', 15050, '2020-01-08', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 2-8, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(224, 8, 8, '', '', 21831.25, '2020-01-08', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 2-8, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(225, 9, 9, '', '', 2450, '2020-01-08', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 2-8, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(226, 6, 6, '', '', 35316.51, '2020-12-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(227, 7, 7, '', '', 10655.84, '2020-12-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(228, 8, 8, '', '', 8727.64, '2020-12-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(229, 6, 6, '', '', 4208.77, '2020-12-31', 'Clerk', ' Direct Labor ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(230, 7, 7, '', '', 1269.89, '2020-12-31', 'Clerk', ' Direct Labor ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(231, 8, 8, '', '', 1040.1, '2020-12-31', 'Clerk', ' Direct Labor ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(232, 6, 6, '', '', 3966.88, '2020-12-31', 'Fuel', ' Overhead ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(233, 7, 7, '', '', 1196.9, '2020-12-31', 'Fuel', ' Overhead ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(234, 8, 8, '', '', 980.32, '2020-12-31', 'Fuel', ' Overhead ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(235, 11, 11, '', '', 3103.57, '2020-12-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(236, 10, 10, '', '', 13993.75, '2020-12-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(237, 4, 4, '', '', 47.91, '2020-12-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(238, 6, 6, '', '', 4168.03, '2020-12-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(239, 7, 7, '', '', 1257.6, '2020-12-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(240, 8, 8, '', '', 1030.03, '2020-12-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'DECEMEBER 1-31, 2019', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(241, 11, 11, '', '', 7087.5, '2020-01-15', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 9-15, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(242, 6, 6, '', '', 13650, '2020-01-15', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 9-15, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(243, 8, 8, '', '', 29290.63, '2020-01-15', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 9-15, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(244, 9, 9, '', '', 12326.57, '2020-01-15', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 9-15, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(245, 11, 11, '', '', 4900, '2020-01-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 16-22, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(246, 6, 6, '', '', 11200, '2020-01-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 16-22, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(247, 8, 8, '', '', 29717.19, '2020-01-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 16-22, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(248, 9, 9, '', '', 12250, '2020-01-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 16-22, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(249, 11, 11, '', '', 1050, '2020-01-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN. 23-29, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(250, 6, 6, '', '', 6912.5, '2020-01-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN. 23-29, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(251, 8, 8, '', '', 37384.38, '2020-01-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN. 23-29, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(252, 9, 9, '', '', 15356.25, '2020-01-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN. 23-29, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(253, 6, 6, '', '', 17047.38, '2020-01-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (JANUARY 1-131, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(254, 8, 8, '', '', 43052.62, '2020-01-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (JANUARY 1-131, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(255, 6, 6, '', '', 2481.94, '2020-01-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (JANUARY 1-131, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(256, 8, 8, '', '', 6268.06, '2020-01-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (JANUARY 1-131, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(257, 10, 10, '', '', 30000, '2020-01-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (JANUARY 1-131, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(258, 8, 8, '', '', 250, '2020-01-29', 'Fuel', ' Overhead ', 0, 0, 'XCS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(259, 10, 10, '', '', 969.58, '2020-01-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (JANUARY 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(260, 11, 11, '', '', 2638.81, '2020-01-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (JANUARY 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(261, 6, 6, '', '', 5894.62, '2020-01-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (JANUARY 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(262, 8, 8, '', '', 14886.66, '2020-01-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (JANUARY 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(263, 9, 9, '', '', 5336.83, '2020-01-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (JANUARY 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(264, 6, 6, '', '', 2130.45, '2020-01-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL (JANUARY 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(265, 8, 8, '', '', 5380.39, '2020-01-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL (JANUARY 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(266, 9, 9, '', '', 1928.86, '2020-01-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL (JANUARY 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(267, 11, 11, '', '', 3500, '2020-02-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 30-FEB 5, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(268, 6, 6, '', '', 5600, '2020-02-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 30-FEB 5, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(269, 8, 8, '', '', 32593.75, '2020-02-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 30-FEB 5, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(270, 9, 9, '', '', 18342.29, '2020-02-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN 30-FEB 5, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(271, 11, 11, '', '', 5906.25, '2020-02-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 6-12, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(272, 6, 6, '', '', 918.75, '2020-02-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 6-12, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(273, 8, 8, '', '', 25812.5, '2020-02-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 6-12, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(274, 9, 9, '', '', 13759.38, '2020-02-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 6-12, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(275, 12, 12, '', '', 2200, '2020-02-14', 'Miscellaneous', ' Overhead ', 0, 0, 'TRANSPORTATION (NBI CLEARANCE)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(276, 8, 8, '', '', 4500, '2020-01-27', 'Contracted labor', ' Direct Labor ', 0, 0, '1ST BILLING INSTALLATION OF ELECTRICAL WIRING', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(277, 8, 8, '', '', 3000, '2020-02-08', 'Contracted labor', ' Direct Labor ', 0, 0, '2ND BILLING INSTALLATION OF ELECTRICAL WIRING', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(278, 8, 8, '', '', 7500, '2020-02-22', 'Contracted labor', ' Direct Labor ', 0, 0, '3RD BILLING INSTALLATION OF ELECTRICAL WIRING', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(279, 8, 8, '', '', 240, '2020-01-29', 'Miscellaneous', ' Overhead ', 0, 0, 'OIL SEAL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(280, 8, 8, '', '', 120, '2020-01-29', 'Miscellaneous', ' Overhead ', 0, 0, 'ATF OIL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(281, 8, 8, '', '', 260, '2020-01-29', 'Miscellaneous', ' Overhead ', 0, 0, 'CASTROL OIL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(282, 8, 8, '', '', 150, '2020-01-29', 'Miscellaneous', ' Overhead ', 0, 0, 'LABOR ', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(283, 8, 8, '', '', 500, '2020-01-13', 'Miscellaneous', ' Overhead ', 0, 0, 'INSTALL AUTOCAD', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(284, 8, 8, '', '', 420, '2020-01-03', 'Meal/Haul', ' Overhead ', 0, 0, 'FTC FARE&LUNCH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(285, 8, 8, '', '', 220, '2020-01-04', 'Meal/Haul', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(286, 8, 8, '', '', 285, '2020-01-04', 'Meal/Haul', ' Overhead ', 0, 0, 'MEALS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(287, 8, 8, '', '', 250, '2020-01-06', 'Meal/Haul', ' Overhead ', 0, 0, 'HAULING MATERIALS (DRIVER&HELPER LUNCH)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(288, 8, 8, '', '', 292, '2020-01-13', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH W/ DRIVER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(289, 8, 8, '', '', 495, '2020-01-16', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH W/ DRIVER AND HELPER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(290, 8, 8, '', '', 232, '2020-01-29', 'Meal/Haul', ' Overhead ', 0, 0, 'VAN FARE&TAXI', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(291, 8, 8, '', '', 200, '2020-01-29', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(292, 8, 8, '', '', 400, '2020-02-19', 'Meal/Haul', ' Overhead ', 0, 0, 'TAXI&VAN VAN FARE INCLUDING MATERIALS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(293, 8, 8, '', '', 200, '2020-02-24', 'Meal/Haul', ' Overhead ', 0, 0, 'TAXI&VAN FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(294, 11, 11, '', '', 7350, '2020-02-19', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 13-19, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(295, 8, 8, '', '', 34442.19, '2020-02-19', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 13-19, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(296, 9, 9, '', '', 14918.75, '2020-02-19', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 13-19, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(297, 11, 11, '', '', 9154.69, '2020-02-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 20-26, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(298, 8, 8, '', '', 19162.5, '2020-02-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 20-26, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(299, 12, 12, '', '', 13868.75, '2020-02-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 20-26, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(300, 9, 9, '', '', 6650, '2020-02-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 20-26, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(301, 8, 8, '', '', 131.22, '2020-02-20', 'Fuel', ' Overhead ', 0, 0, 'FORMULA SHELL (FUEL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(302, 12, 12, '', '', 68.78, '2020-02-20', 'Fuel', ' Overhead ', 0, 0, 'FORMULA SHELL (FUEL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(303, 12, 12, '', '', 1760, '2020-02-14', 'Miscellaneous', ' Overhead ', 0, 0, 'TRANSPORTATION (NBI CLEARANCE)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(304, 6, 6, '', '', 2826.14, '2020-02-29', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE (FEB 1-29, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(305, 8, 8, '', '', 48561.21, '2020-02-29', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE (FEB 1-29, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(306, 12, 12, '', '', 6012.66, '2020-02-29', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE (FEB 1-29, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(307, 10, 10, '', '', 30000, '2020-02-29', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE (FEB 1-29, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(308, 6, 6, '', '', 379.12, '2020-02-29', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (FEB 1-29, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(309, 8, 8, '', '', 6514.31, '2020-02-29', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (FEB 1-29, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(310, 12, 12, '', '', 806.58, '2020-02-29', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (FEB 1-29, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(311, 12, 12, '', '', 201.72, '2020-02-27', 'Fuel', ' Overhead ', 0, 0, 'FUEL ', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(312, 8, 8, '', '', 92.41, '2020-02-27', 'Fuel', ' Overhead ', 0, 0, 'FUEL ', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(313, 11, 11, '', '', 12250, '2020-03-04', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 27-MARCH 4, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(314, 8, 8, '', '', 10500, '2020-03-04', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 27-MARCH 4, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(315, 9, 9, '', '', 5950, '2020-03-04', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 27-MARCH 4, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(316, 12, 12, '', '', 31773.44, '2020-03-04', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB 27-MARCH 4, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(317, 11, 11, '', '', 3309.58, '2020-02-29', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'FEB 1-29, 2020(GOVERNMENT REMITTANCE)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(318, 6, 6, '', '', 832.63, '2020-02-29', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'FEB 1-29, 2020(GOVERNMENT REMITTANCE)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(319, 8, 8, '', '', 14307.06, '2020-02-29', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'FEB 1-29, 2020(GOVERNMENT REMITTANCE)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(320, 9, 9, '', '', 6855.28, '2020-02-29', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'FEB 1-29, 2020(GOVERNMENT REMITTANCE)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(321, 12, 12, '', '', 1771.44, '2020-02-29', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'FEB 1-29, 2020(GOVERNMENT REMITTANCE)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(322, 6, 6, '', '', 196.37, '2020-02-29', 'Fuel', ' Overhead ', 0, 0, 'FEB 1-29, 2020(FUEL BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(323, 8, 8, '', '', 3374.17, '2020-02-29', 'Fuel', ' Overhead ', 0, 0, 'FEB 1-29, 2020(FUEL BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(324, 9, 9, '', '', 1616.75, '2020-02-29', 'Fuel', ' Overhead ', 0, 0, 'FEB 1-29, 2020(FUEL BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(325, 12, 12, '', '', 417.78, '2020-02-29', 'Fuel', ' Overhead ', 0, 0, 'FEB 1-29, 2020(FUEL BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00');
INSERT INTO `tblpoexpense` (`POexid`, `POidhdrlink`, `POiddtllink`, `Docnum`, `Linenum`, `Amount`, `POdateexpense`, `Expensetype`, `expenseName`, `expenseHdrID`, `Expenseid`, `remarks`, `created_at`, `updated_at`) VALUES
(326, 11, 11, '', '', 12173.44, '2020-03-11', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 5-11, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(327, 8, 8, '', '', 6256.25, '2020-03-11', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 5-11, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(328, 9, 9, '', '', 6300, '2020-03-11', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 5-11, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(329, 12, 12, '', '', 34365.64, '2020-03-11', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 5-11, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(330, 12, 12, '', '', 300, '2020-03-14', 'Fuel', ' Overhead ', 0, 0, 'FUELSAVE GASOLINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(331, 8, 8, '', '', 700, '2020-03-18', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 12-18, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(332, 13, 13, '', '', 1750, '2020-03-18', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 12-18, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(333, 11, 11, '', '', 11068.75, '2020-03-18', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 12-18, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(334, 12, 12, '', '', 38357.82, '2020-03-18', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 12-18, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(335, 9, 9, '', '', 6300, '2020-03-18', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 12-18, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(336, 11, 11, '', '', 3204.69, '2020-03-25', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MARCH 19-25, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(337, 9, 9, '', '', 6300, '2020-03-25', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MARCH 19-25, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(338, 12, 12, '', '', 34529.69, '2020-03-25', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MARCH 19-25, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(339, 13, 13, '', '', 14218.75, '2020-03-25', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MARCH 19-25, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(340, 12, 12, '', '', 300, '2020-02-29', 'Miscellaneous', ' Overhead ', 0, 0, 'MC EMISSION TEST', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(341, 12, 12, '', '', 25, '2020-02-29', 'Miscellaneous', ' Overhead ', 0, 0, 'ENGINE STENCIL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(342, 12, 12, '', '', 650, '2020-03-03', 'Miscellaneous', ' Overhead ', 0, 0, 'MC INSURANCE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(343, 12, 12, '', '', 620, '2020-03-03', 'Miscellaneous', ' Overhead ', 0, 0, 'MC REGISTRATION', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(344, 12, 12, '', '', 110, '2020-03-11', 'Meal/Haul', ' Overhead ', 0, 0, 'MEAL W/ DRIVER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(345, 12, 12, '', '', 301, '2020-03-10', 'Meal/Haul', ' Overhead ', 0, 0, 'MEAL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(346, 12, 12, '', '', 340, '2020-03-27', 'Meal/Haul', ' Overhead ', 0, 0, 'FTC FARE AND LUNCH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(347, 12, 12, '', '', 355, '2020-03-03', 'Meal/Haul', ' Overhead ', 0, 0, 'FTC FARE AND LUNCH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(348, 12, 12, '', '', 205, '2020-03-06', 'Meal/Haul', ' Overhead ', 0, 0, 'FTC FARE AND TAXI', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(349, 12, 12, '', '', 150, '2020-03-11', 'Meal/Haul', ' Overhead ', 0, 0, 'FTC FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(350, 12, 12, '', '', 150, '2020-03-23', 'Meal/Haul', ' Overhead ', 0, 0, 'FTC FARE TO CDO', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(351, 12, 12, '', '', 230, '2020-03-23', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH W/ DRIVER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(352, 13, 13, '', '', 86.44, '2020-03-26', 'Fuel', ' Overhead ', 0, 0, 'XCS (FUEL FOR MIXER)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(353, 13, 13, '', '', 42.07, '2020-03-23', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE (FOR MIXER)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(354, 13, 13, '', '', 50, '2020-03-21', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE (FOR MIXER)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(355, 8, 8, '', '', 5536.96, '2020-03-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE (MARCH 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(356, 12, 12, '', '', 44097.91, '2020-03-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE (MARCH 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(357, 13, 13, '', '', 5065.14, '2020-03-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE (MARCH 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(358, 8, 8, '', '', 921.14, '2020-03-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (MARCH 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(359, 12, 12, '', '', 7336.22, '2020-03-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (MARCH 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(360, 13, 13, '', '', 842.65, '2020-03-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (MARCH 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(361, 14, 14, '', '', 2100, '2020-04-01', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MARCH 26-APRIL 1, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(362, 9, 9, '', '', 4900, '2020-04-01', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MARCH 26-APRIL 1, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(363, 12, 12, '', '', 35984.38, '2020-04-01', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MARCH 26-APRIL 1, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(364, 13, 13, '', '', 16100, '2020-04-01', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MARCH 26-APRIL 1, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(365, 11, 11, '', '', 2100, '2020-04-01', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MARCH 26-APRIL 1, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(366, 11, 11, '', '', 1400, '2020-04-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 2-6, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(367, 14, 14, '', '', 2450, '2020-04-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 2-6, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(368, 12, 12, '', '', 26250, '2020-04-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 2-6, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(369, 13, 13, '', '', 8750, '2020-04-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 2-6, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(370, 13, 13, '', '', 100, '2020-03-31', 'Fuel', ' Overhead ', 0, 0, 'XCS (FOR BAGGER MIXER)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(371, 8, 8, '', '', 1031.21, '2020-03-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL MARCH 1-31, 2020 ( BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(372, 12, 12, '', '', 8212.85, '2020-03-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL MARCH 1-31, 2020 ( BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(373, 13, 13, '', '', 943.34, '2020-03-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL MARCH 1-31, 2020 ( BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(374, 9, 9, '', '', 2780, '2020-03-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (MARCH 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(375, 11, 11, '', '', 4918.1, '2020-03-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (MARCH 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(376, 8, 8, '', '', 2218.57, '2020-03-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (MARCH 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(377, 12, 12, '', '', 17669.31, '2020-03-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (MARCH 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(378, 13, 13, '', '', 2029.52, '2020-03-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (MARCH 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(379, 11, 11, '', '', 350, '2020-04-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 8-22, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(380, 14, 14, '', '', 700, '2020-04-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 8-22, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(381, 12, 12, '', '', 6300, '2020-04-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 8-22, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(382, 13, 13, '', '', 1750, '2020-04-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 8-22, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(383, 15, 15, '', '', 350, '2020-04-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 8-22, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(384, 17, 17, '', '', 8400, '2020-04-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 8-22, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(385, 16, 16, '', '', 4200, '2020-04-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 8-22, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(386, 11, 11, '', '', 700, '2020-04-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 23-29,7, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(387, 14, 14, '', '', 3018.75, '2020-04-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 23-29,7, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(388, 12, 12, '', '', 18900, '2020-04-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 23-29,7, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(389, 13, 13, '', '', 3150, '2020-04-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 23-29,7, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(390, 15, 15, '', '', 2100, '2020-04-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 23-29,7, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(391, 17, 17, '', '', 13606.25, '2020-04-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 23-29,7, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(392, 16, 16, '', '', 6300, '2020-04-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 23-29,7, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(393, 12, 12, '', '', 27241.4, '2020-04-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE APRIL 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(394, 13, 13, '', '', 9269.03, '2020-04-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE APRIL 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(395, 14, 14, '', '', 2576.24, '2020-04-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE APRIL 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(396, 15, 15, '', '', 763.33, '2020-04-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE APRIL 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(397, 12, 12, '', '', 2631.85, '2020-04-30', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE APRIL 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(398, 13, 13, '', '', 895.5, '2020-04-30', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE APRIL 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(399, 14, 14, '', '', 248.9, '2020-04-30', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE APRIL 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(400, 15, 15, '', '', 73.75, '2020-04-30', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE APRIL 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(401, 14, 14, '', '', 5250, '2020-05-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 30-MAY 6, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(402, 12, 12, '', '', 21743.75, '2020-05-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 30-MAY 6, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(403, 13, 13, '', '', 1750, '2020-05-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 30-MAY 6, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(404, 15, 15, '', '', 3500, '2020-05-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 30-MAY 6, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(405, 17, 17, '', '', 7831.25, '2020-05-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 30-MAY 6, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(406, 16, 16, '', '', 3500, '2020-05-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR APRIL 30-MAY 6, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(407, 9, 9, '', '', 124.78, '2020-04-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL APRIL 1-30, 2020 (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(408, 12, 12, '', '', 2226.51, '2020-04-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL APRIL 1-30, 2020 (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(409, 13, 13, '', '', 757.58, '2020-04-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL APRIL 1-30, 2020 (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(410, 14, 14, '', '', 210.56, '2020-04-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL APRIL 1-30, 2020 (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(411, 15, 15, '', '', 62.39, '2020-04-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL APRIL 1-30, 2020 (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(412, 17, 17, '', '', 578.21, '2020-04-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL APRIL 1-30, 2020 (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(413, 16, 16, '', '', 249.56, '2020-04-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL APRIL 1-30, 2020 (BALANI AND CABUNOC)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(414, 13, 13, '', '', 100, '2020-03-24', 'Fuel', ' Overhead ', 0, 0, 'FUEL PREMIUM (FOR MIXER)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(415, 13, 13, '', '', 100, '2020-03-24', 'Fuel', ' Overhead ', 0, 0, 'FUEL PREMIUM (FOR MIXER)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(416, 13, 13, '', '', 92.59, '2020-03-27', 'Fuel', ' Overhead ', 0, 0, 'FUEL PREMIUM (FOR MIXER)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(417, 13, 13, '', '', 100, '2020-03-28', 'Fuel', ' Overhead ', 0, 0, 'FUEL PREMIUM (FOR MIXER)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(418, 13, 13, '', '', 332, '2020-04-02', 'Fuel', ' Overhead ', 0, 0, 'FUEL PREMIUM (FOR MIXER)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(419, 13, 13, '', '', 185, '2020-03-31', 'Fuel', ' Overhead ', 0, 0, 'SPRINT 4T 800ML (MIXER)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(420, 14, 14, '', '', 3762.5, '2020-05-13', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 7-13, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(421, 12, 12, '', '', 31018.75, '2020-05-13', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 7-13, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(422, 13, 13, '', '', 5250, '2020-05-13', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 7-13, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(423, 15, 15, '', '', 4068.75, '2020-05-13', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 7-13, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(424, 17, 17, '', '', 11900, '2020-05-13', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 7-13, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(425, 16, 16, '', '', 3850, '2020-05-13', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 7-13, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(426, 11, 11, '', '', 700, '2020-05-20', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 14-20, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(427, 14, 14, '', '', 2625, '2020-05-20', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 14-20, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(428, 12, 12, '', '', 27518.75, '2020-05-20', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 14-20, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(429, 13, 13, '', '', 4287.5, '2020-05-20', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 14-20, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(430, 15, 15, '', '', 5950, '2020-05-20', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 14-20, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(431, 17, 17, '', '', 12250, '2020-05-20', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 14-20, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(432, 16, 16, '', '', 3850, '2020-05-20', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 14-20, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(433, 11, 11, '', '', 1804.69, '2020-05-27', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 21-27, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(434, 12, 12, '', '', 26250, '2020-05-27', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 21-27, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(435, 13, 13, '', '', 2450, '2020-05-27', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 21-27, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(436, 15, 15, '', '', 7700, '2020-05-27', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 21-27, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(437, 17, 17, '', '', 7568.75, '2020-05-27', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 21-27, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(438, 16, 16, '', '', 3587.5, '2020-05-27', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 21-27, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(439, 14, 14, '', '', 3541.6, '2020-05-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE MAY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(440, 12, 12, '', '', 32420.29, '2020-05-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE MAY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(441, 13, 13, '', '', 4180.69, '2020-05-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE MAY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(442, 15, 15, '', '', 6457.43, '2020-05-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE MAY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(443, 14, 14, '', '', 642.56, '2020-05-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE MAY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(444, 12, 12, '', '', 5882.05, '2020-05-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE MAY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(445, 13, 13, '', '', 758.51, '2020-05-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE MAY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(446, 15, 15, '', '', 1171.58, '2020-05-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE MAY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(447, 11, 11, '', '', 459.38, '2020-06-03', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 29-JUNE 3, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(448, 12, 12, '', '', 29618.75, '2020-06-03', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 29-JUNE 3, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(449, 15, 15, '', '', 10806.25, '2020-06-03', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 29-JUNE 3, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(450, 17, 17, '', '', 8400, '2020-06-03', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 29-JUNE 3, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(451, 16, 16, '', '', 8706.25, '2020-06-03', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 29-JUNE 3, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(452, 12, 12, '', '', 33468.75, '2020-06-10', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 4-10, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(453, 15, 15, '', '', 11550, '2020-06-10', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 4-10, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(454, 11, 11, '', '', 350, '2020-06-10', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 4-10, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(455, 17, 17, '', '', 6650, '2020-06-10', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 4-10, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(456, 16, 16, '', '', 5468.75, '2020-06-10', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 4-10, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(457, 6, 6, '', '', 8488.67, '2020-05-31', 'Contracted labor', ' Direct Labor ', 0, 0, '13TH MONTH LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(458, 7, 7, '', '', 930.87, '2020-05-31', 'Contracted labor', ' Direct Labor ', 0, 0, '13TH MONTH LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(459, 8, 8, '', '', 25858.32, '2020-05-31', 'Contracted labor', ' Direct Labor ', 0, 0, '13TH MONTH LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(460, 9, 9, '', '', 12746.32, '2020-05-31', 'Contracted labor', ' Direct Labor ', 0, 0, '13TH MONTH LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(461, 12, 12, '', '', 35143.77, '2020-05-31', 'Contracted labor', ' Direct Labor ', 0, 0, '13TH MONTH LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(462, 13, 13, '', '', 6024.08, '2020-05-31', 'Contracted labor', ' Direct Labor ', 0, 0, '13TH MONTH LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(463, 14, 14, '', '', 2016.89, '2020-05-31', 'Contracted labor', ' Direct Labor ', 0, 0, '13TH MONTH LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(464, 15, 15, '', '', 2398.11, '2020-05-31', 'Contracted labor', ' Direct Labor ', 0, 0, '13TH MONTH LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(465, 17, 17, '', '', 6307.77, '2020-05-31', 'Contracted labor', ' Direct Labor ', 0, 0, '13TH MONTH LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(466, 16, 16, '', '', 2491.19, '2020-05-31', 'Contracted labor', ' Direct Labor ', 0, 0, '13TH MONTH LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(467, 6, 6, '', '', 3916.32, '2020-05-31', 'Professional Fee', ' Direct Labor ', 0, 0, '13TH MONTH PROFESSIONAL/CLERK', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(468, 7, 7, '', '', 429.47, '2020-05-31', 'Professional Fee', ' Direct Labor ', 0, 0, '13TH MONTH PROFESSIONAL/CLERK', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(469, 8, 8, '', '', 11929.95, '2020-05-31', 'Professional Fee', ' Direct Labor ', 0, 0, '13TH MONTH PROFESSIONAL/CLERK', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(470, 12, 12, '', '', 16213.87, '2020-05-31', 'Professional Fee', ' Direct Labor ', 0, 0, '13TH MONTH PROFESSIONAL/CLERK', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(471, 13, 13, '', '', 2779.26, '2020-05-31', 'Professional Fee', ' Direct Labor ', 0, 0, '13TH MONTH PROFESSIONAL/CLERK', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(472, 14, 14, '', '', 930.51, '2020-05-31', 'Professional Fee', ' Direct Labor ', 0, 0, '13TH MONTH PROFESSIONAL/CLERK', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(473, 15, 15, '', '', 1106.39, '2020-05-31', 'Professional Fee', ' Direct Labor ', 0, 0, '13TH MONTH PROFESSIONAL/CLERK', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(474, 9, 9, '', '', 686.28, '2020-04-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (APRIL 1-30)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(475, 12, 12, '', '', 12245.8, '2020-04-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (APRIL 1-30)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(476, 13, 13, '', '', 4166.7, '2020-04-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (APRIL 1-30)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(477, 14, 14, '', '', 1158.1, '2020-04-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (APRIL 1-30)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(478, 15, 15, '', '', 343.14, '2020-04-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (APRIL 1-30)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(479, 17, 17, '', '', 3180.17, '2020-04-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (APRIL 1-30)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(480, 16, 16, '', '', 1372.56, '2020-04-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (APRIL 1-30)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(481, 14, 14, '', '', 1563.02, '2020-05-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (MAY 1-31)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(482, 12, 12, '', '', 14308.06, '2020-05-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (MAY 1-31)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(483, 13, 13, '', '', 1845.06, '2020-05-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (MAY 1-31)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(484, 15, 15, '', '', 2849.86, '2020-05-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (MAY 1-31)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(485, 17, 17, '', '', 5311.91, '2020-05-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (MAY 1-31)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(486, 16, 16, '', '', 1986.09, '2020-05-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, HDMF (MAY 1-31)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(487, 14, 14, '', '', 429.7, '2020-05-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL MAY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(488, 12, 12, '', '', 3933.57, '2020-05-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL MAY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(489, 13, 13, '', '', 507.24, '2020-05-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL MAY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(490, 15, 15, '', '', 783.48, '2020-05-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL MAY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(491, 12, 12, '', '', 29137.5, '2020-06-17', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 11-17, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(492, 15, 15, '', '', 12818.75, '2020-06-17', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 11-17, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(493, 17, 17, '', '', 4200, '2020-06-17', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 11-17, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(494, 16, 16, '', '', 2800, '2020-06-17', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 11-17, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(495, 18, 18, '', '', 700, '2020-06-17', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 11-17, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(496, 12, 12, '', '', 40492.38, '2020-06-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE JUNE 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(497, 15, 15, '', '', 12138.97, '2020-06-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE JUNE 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(498, 18, 18, '', '', 6118.65, '2020-06-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE JUNE 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(499, 12, 12, '', '', 5864.94, '2020-06-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE JUNE 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(500, 15, 15, '', '', 1758.21, '2020-06-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE JUNE 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(501, 18, 18, '', '', 886.23, '2020-06-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE JUNE 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(502, 12, 12, '', '', 38478.13, '2020-06-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 18-24, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(503, 15, 15, '', '', 5950, '2020-06-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 18-24, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(504, 16, 16, '', '', 3150, '2020-06-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 18-24, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(505, 18, 18, '', '', 12950, '2020-06-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 18-24, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(506, 12, 12, '', '', 250, '2020-05-19', 'Miscellaneous', ' Overhead ', 0, 0, 'USB FLASH DISK (16GB)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(507, 12, 12, '', '', 510, '2020-06-01', 'Meal/Haul', ' Overhead ', 0, 0, 'MEALS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(508, 12, 12, '', '', 420, '2020-05-19', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH WITH DRIVER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(509, 12, 12, '', '', 250, '2020-06-25', 'Meal/Haul', ' Overhead ', 0, 0, 'FARE TO CDO', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(510, 12, 12, '', '', 31434.39, '2020-07-01', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 25-JULY 1, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(511, 15, 15, '', '', 7481.25, '2020-07-01', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 25-JULY 1, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(512, 20, 20, '', '', 3237.5, '2020-07-01', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 25-JULY 1, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(513, 19, 19, '', '', 1750, '2020-07-01', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 25-JULY 1, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(514, 18, 18, '', '', 10850, '2020-07-01', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JUNE 25-JULY 1, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(515, 12, 12, '', '', 4965.78, '2020-06-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL JUNE 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(516, 15, 15, '', '', 1488.66, '2020-06-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL JUNE 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(517, 18, 18, '', '', 750.36, '2020-06-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL JUNE 1-30, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(518, 12, 12, '', '', 53550, '2020-07-08', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 2-8, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(519, 15, 15, '', '', 1400, '2020-07-08', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 2-8, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(520, 20, 20, '', '', 2450, '2020-07-08', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 2-8, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(521, 18, 18, '', '', 10150, '2020-07-08', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 2-8, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(522, 12, 12, '', '', 54271.9, '2020-07-15', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 9-15, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(523, 15, 15, '', '', 700, '2020-07-15', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 9-15, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(524, 18, 18, '', '', 11550, '2020-07-15', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 9-15, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(525, 11, 11, '', '', 1028.14, '2020-07-15', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 9-15, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(526, 11, 11, '', '', 508.18, '2020-07-15', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 9-15, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(527, 12, 12, '', '', 23441.01, '2020-06-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH,HDMF (JUNE 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(528, 15, 15, '', '', 7027.24, '2020-06-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH,HDMF (JUNE 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(529, 18, 18, '', '', 3542.08, '2020-06-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH,HDMF (JUNE 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(530, 12, 12, '', '', 2512, '2020-07-03', 'Miscellaneous', ' Overhead ', 0, 0, 'REPAIR OF BOSCH DEMOLITION HAMMER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(531, 12, 12, '', '', 370, '2020-07-03', 'Meal/Haul', ' Overhead ', 0, 0, 'FTC VAN & TAXI FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(532, 12, 12, '', '', 220, '2020-07-03', 'Meal/Haul', ' Overhead ', 0, 0, 'MACOY\'S FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(533, 12, 12, '', '', 160, '2020-07-20', 'Meal/Haul', ' Overhead ', 0, 0, 'FTC FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(534, 12, 12, '', '', 400, '2020-07-03', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH OF FTC & MACOY', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(535, 12, 12, '', '', 7500, '2020-07-11', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(536, 12, 12, '', '', 3675, '2020-07-18', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(537, 12, 12, '', '', 39768.75, '2020-07-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULT 16-22, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(538, 15, 15, '', '', 1400, '2020-07-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULT 16-22, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(539, 18, 18, '', '', 11550, '2020-07-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULT 16-22, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(540, 19, 19, '', '', 2843.75, '2020-07-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULT 16-22, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(541, 11, 11, '', '', 1050, '2020-07-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULT 16-22, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(542, 11, 11, '', '', 514.07, '2020-07-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULT 16-22, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(543, 12, 12, '', '', 30581.25, '2020-07-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 23-29, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(544, 15, 15, '', '', 1400, '2020-07-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 23-29, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(545, 18, 18, '', '', 15050, '2020-07-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 23-29, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(546, 19, 19, '', '', 1312.5, '2020-07-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 23-29, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(547, 21, 21, '', '', 5906.25, '2020-07-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 23-29, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(548, 11, 11, '', '', 1750, '2020-07-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 23-29, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(549, 18, 18, '', '', 250, '2020-07-27', 'Miscellaneous', ' Overhead ', 0, 0, 'FTC FARE/TAXI', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(550, 18, 18, '', '', 180, '2020-07-27', 'Miscellaneous', ' Overhead ', 0, 0, 'LUNCH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(551, 15, 15, '', '', 637.07, '2020-07-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE JULY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(552, 18, 18, '', '', 6279.67, '2020-07-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE JULY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(553, 19, 19, '', '', 540.37, '2020-07-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE JULY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(554, 21, 21, '', '', 767.89, '2020-07-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE JULY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(555, 15, 15, '', '', 1936.38, '2020-07-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE JULY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(556, 18, 18, '', '', 19087.14, '2020-07-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE JULY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(557, 19, 19, '', '', 1642.46, '2020-07-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE JULY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(558, 21, 21, '', '', 2334.02, '2020-07-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFESSIONAL FEE JULY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(559, 15, 15, '', '', 634.33, '2020-07-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL JULY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(560, 18, 18, '', '', 6252.64, '2020-07-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL JULY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(561, 19, 19, '', '', 538.04, '2020-07-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL JULY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(562, 21, 21, '', '', 764.59, '2020-07-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL JULY 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(563, 12, 12, '', '', 14350, '2020-08-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 30-AUGUST 5, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(564, 18, 18, '', '', 14809.38, '2020-08-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 30-AUGUST 5, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(565, 19, 19, '', '', 6562.5, '2020-08-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 30-AUGUST 5, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(566, 21, 21, '', '', 1487.5, '2020-08-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 30-AUGUST 5, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(567, 22, 22, '', '', 3150, '2020-08-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR JULY 30-AUGUST 5, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(568, 15, 15, '', '', 2444.18, '2020-07-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, AND HDMF (JULY 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(569, 18, 18, '', '', 24092.63, '2020-07-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, AND HDMF (JULY 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(570, 19, 19, '', '', 2073.19, '2020-07-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS, PHILHEALTH, AND HDMF (JULY 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(571, 18, 18, '', '', 21350, '2020-08-12', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR AUG 6-12, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(572, 19, 19, '', '', 4900, '2020-08-12', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR AUG 6-12, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(573, 22, 22, '', '', 24018.75, '2020-08-12', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR AUG 6-12, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(574, 11, 11, '', '', 3500, '2020-08-12', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR AUG 6-12, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(575, 10, 10, '', '', 2100, '2020-08-12', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR AUG 6-12, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(576, 22, 22, '', '', 290, '2020-08-04', 'Meal/Haul', ' Overhead ', 0, 0, 'VAN&TAXI FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(577, 22, 22, '', '', 200, '2020-08-05', 'Meal/Haul', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(578, 22, 22, '', '', 210, '2020-08-06', 'Meal/Haul', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(579, 22, 22, '', '', 210, '2020-08-14', 'Meal/Haul', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(580, 22, 22, '', '', 210, '2020-08-17', 'Meal/Haul', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(581, 24, 24, '', '', 170, '2020-08-13', 'Meal/Haul', ' Overhead ', 0, 0, 'SNACK WITH DRIVER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(582, 22, 22, '', '', 140, '2020-08-14', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(583, 22, 22, '', '', 24150, '2020-08-19', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (AUG 13-19, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(584, 24, 24, '', '', 11418.75, '2020-08-19', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (AUG 13-19, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(585, 10, 10, '', '', 8531.25, '2020-08-19', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (AUG 13-19, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(586, 18, 18, '', '', 6123.72, '2020-08-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (AUG 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(587, 19, 19, '', '', 1904.35, '2020-08-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (AUG 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(588, 22, 22, '', '', 9957.82, '2020-08-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (AUG 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(589, 23, 23, '', '', 2674.81, '2020-08-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (AUG 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(590, 24, 24, '', '', 4339.3, '2020-08-31', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (AUG 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(591, 18, 18, '', '', 1899.5, '2020-08-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (AUG 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(592, 19, 19, '', '', 590.71, '2020-08-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (AUG 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(593, 22, 22, '', '', 3088.79, '2020-08-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (AUG 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(594, 23, 23, '', '', 829.69, '2020-08-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (AUG 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(595, 24, 24, '', '', 1346, '2020-08-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (AUG 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(596, 22, 22, '', '', 8618.75, '2020-08-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (AUG 20-26, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(597, 23, 23, '', '', 16100, '2020-08-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (AUG 20-26, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(598, 24, 24, '', '', 14700, '2020-08-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (AUG 20-26, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(599, 18, 18, '', '', 700, '2020-08-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (AUG 20-26, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(600, 18, 18, '', '', 1319.27, '2020-08-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL AUG 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(601, 19, 19, '', '', 410.27, '2020-08-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL AUG 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(602, 22, 22, '', '', 2145.27, '2020-08-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL AUG 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(603, 23, 23, '', '', 576.25, '2020-08-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL AUG 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(604, 24, 24, '', '', 934.84, '2020-08-31', 'Fuel', ' Overhead ', 0, 0, 'FUEL AUG 1-31, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(605, 22, 22, '', '', 8750, '2020-09-02', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR AUG 27-SEPT 2, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(606, 23, 23, '', '', 13868.75, '2020-09-02', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR AUG 27-SEPT 2, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(607, 24, 24, '', '', 13650, '2020-09-02', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR AUG 27-SEPT 2, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(608, 18, 18, '', '', 1050, '2020-09-02', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR AUG 27-SEPT 2, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(609, 22, 22, '', '', 16668.75, '2020-09-09', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR SEPT 3-9, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(610, 23, 23, '', '', 15968.75, '2020-09-09', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR SEPT 3-9, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(611, 24, 24, '', '', 11768.75, '2020-09-09', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR SEPT 3-9, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(612, 22, 22, '', '', 2625, '2020-08-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'HIRED LABOR (CAENOY, EDO)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(613, 22, 22, '', '', 2625, '2020-08-29', 'Contracted labor', ' Direct Labor ', 0, 0, 'HIRED LABOR (CAENOY, JOEMAR)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(614, 23, 23, '', '', 900, '2020-09-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'HIRED LABOR (CAENOY, EDO)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(615, 23, 23, '', '', 1500, '2020-09-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'HIRED LABOR (CAENOY, JOEMAR)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(616, 23, 23, '', '', 100, '2020-08-20', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE (MIXER)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(617, 23, 23, '', '', 100, '2020-09-01', 'Fuel', ' Overhead ', 0, 0, 'PREMIUM (WELDING MACHINE GASOLINE)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(618, 22, 22, '', '', 69, '2020-08-27', 'Fuel', ' Overhead ', 0, 0, 'VPOWER NITRO GASOLINE (MIXER)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(619, 22, 22, '', '', 100, '2020-08-27', 'Fuel', ' Overhead ', 0, 0, 'PREMIUM (GASOLINE FOR MIXER)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(620, 23, 23, '', '', 450, '2020-09-12', 'Meal/Haul', ' Overhead ', 0, 0, 'MEALS (LUNCH FOR 3 GOING TO BAUNGON FOR PROJECT INSPECTION)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(621, 23, 23, '', '', 320, '2020-08-19', 'Miscellaneous', ' Overhead ', 0, 0, 'VAN AND TAXI FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(622, 23, 23, '', '', 280, '2020-08-31', 'Miscellaneous', ' Overhead ', 0, 0, 'VAN AND TAXI FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(623, 23, 23, '', '', 250, '2020-09-07', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(624, 18, 18, '', '', 220, '2020-08-25', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(625, 24, 24, '', '', 220, '2020-09-02', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(626, 18, 18, '', '', 5579.93, '2020-08-31', 'Contracted labor', ' Direct Labor ', 0, 0, 'SSS,PHILHEALTH,HDMF (AUGUST 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(627, 19, 19, '', '', 1735.24, '2020-08-31', 'Contracted labor', ' Direct Labor ', 0, 0, 'SSS,PHILHEALTH,HDMF (AUGUST 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(628, 22, 22, '', '', 9073.56, '2020-08-31', 'Contracted labor', ' Direct Labor ', 0, 0, 'SSS,PHILHEALTH,HDMF (AUGUST 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(629, 23, 23, '', '', 2437.29, '2020-08-31', 'Contracted labor', ' Direct Labor ', 0, 0, 'SSS,PHILHEALTH,HDMF (AUGUST 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(630, 24, 24, '', '', 3953.97, '2020-08-31', 'Contracted labor', ' Direct Labor ', 0, 0, 'SSS,PHILHEALTH,HDMF (AUGUST 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(631, 22, 22, '', '', 22793.75, '2020-09-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR SEPT 10-16, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(632, 23, 23, '', '', 21875, '2020-09-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR SEPT 10-16, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(633, 24, 24, '', '', 350, '2020-09-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR SEPT 10-16, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(634, 11, 11, '', '', 350, '2020-09-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR SEPT 10-16, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(635, 22, 22, '', '', 20518.75, '2020-09-23', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR SEPT 17-23, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(636, 23, 23, '', '', 16100, '2020-09-23', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR SEPT 17-23, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(637, 11, 11, '', '', 6300, '2020-09-23', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR SEPT 17-23, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(638, 22, 22, '', '', 11046.88, '2020-09-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR SEPT 24-28, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(639, 23, 23, '', '', 17281.25, '2020-09-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR SEPT 24-28, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(640, 11, 11, '', '', 1050, '2020-09-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR SEPT 24-28, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(641, 22, 22, '', '', 13518.75, '2020-10-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR OCTOBER 1-7, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(642, 23, 23, '', '', 21656.25, '2020-10-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR OCTOBER 1-7, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00');
INSERT INTO `tblpoexpense` (`POexid`, `POidhdrlink`, `POiddtllink`, `Docnum`, `Linenum`, `Amount`, `POdateexpense`, `Expensetype`, `expenseName`, `expenseHdrID`, `Expenseid`, `remarks`, `created_at`, `updated_at`) VALUES
(643, 15, 15, '', '', 700, '2020-10-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR OCTOBER 1-7, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(644, 11, 11, '', '', 3150, '2020-10-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR OCTOBER 1-7, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(645, 22, 22, '', '', 10532.81, '2020-10-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR OCTOBER 8-12, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(646, 23, 23, '', '', 31456.25, '2020-10-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR OCTOBER 8-12, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(647, 11, 11, '', '', 1618.75, '2020-10-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR OCTOBER 8-12, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(648, 22, 22, '', '', 3000, '2020-10-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'HIRED LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(649, 22, 22, '', '', 420, '2020-10-16', 'Meal/Haul', ' Overhead ', 0, 0, 'DRIVER LUNCH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(650, 22, 22, '', '', 400, '2020-10-16', 'Meal/Haul', ' Overhead ', 0, 0, 'DRIVER LUNCH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(651, 22, 22, '', '', 210, '2020-10-16', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(652, 23, 23, '', '', 45, '2020-10-16', 'Fuel', ' Overhead ', 0, 0, 'KEROSINE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(653, 23, 23, '', '', 100, '2020-10-16', 'Fuel', ' Overhead ', 0, 0, 'PREMIUIM ', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(654, 23, 23, '', '', 3000, '2020-10-16', 'Miscellaneous', ' Overhead ', 0, 0, 'PAYMENT FOR CONCRETE MIXER REPAIR -LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(655, 23, 23, '', '', 23100, '2020-10-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR OCTOBER 15-21, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(656, 11, 11, '', '', 1050, '2020-10-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR OCTOBER 15-21, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(657, 22, 22, '', '', 1918.61, '2020-09-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL (SEPT 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(658, 23, 23, '', '', 2046.44, '2020-09-30', 'Fuel', ' Overhead ', 0, 0, 'FUEL (SEPT 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(659, 22, 22, '', '', 11163.1, '2020-09-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS. PHILHEALTH, HDMF (SEPT 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(660, 23, 23, '', '', 11906.9, '2020-09-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS. PHILHEALTH, HDMF (SEPT 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(661, 22, 22, '', '', 12096.99, '2020-09-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (SEPT 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(662, 23, 23, '', '', 12903.01, '2020-09-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (SEPT 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(663, 22, 22, '', '', 3556.51, '2020-09-30', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE (SEPT 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(664, 23, 23, '', '', 3793.49, '2020-09-30', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE (SEPT 1-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(665, 23, 23, '', '', 1816, '2020-10-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (OCT 1-15, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(666, 23, 23, '', '', 12500, '2020-10-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (OCT 1-15, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(667, 23, 23, '', '', 4550, '2020-10-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (OCT 1-15, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(668, 23, 23, '', '', 28175, '2020-10-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCT 22-28, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(669, 23, 23, '', '', 12500, '2020-10-31', 'Contracted labor', ' Direct Labor ', 0, 0, 'PROF FEE (OCT. 16-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(670, 23, 23, '', '', 3150, '2020-10-31', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (OCT. 16-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(671, 23, 23, '', '', 27475, '2020-11-04', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (OCTOBER 29-NOV.4, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(672, 23, 23, '', '', 2500, '2020-10-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'HDMF (OCTOBER 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(673, 23, 23, '', '', 3900, '2020-10-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'PHILHEALTH (OCTOBER 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(674, 23, 23, '', '', 10890, '2020-10-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS (OCTOBER 1-31, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(675, 22, 22, '', '', 10825, '2020-10-13', 'Contracted labor', ' Direct Labor ', 0, 0, 'ELECTRICAL LABOR PAYMENT', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(676, 23, 23, '', '', 250, '2020-10-13', 'Meal/Haul', ' Overhead ', 0, 0, 'MEALS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(677, 23, 23, '', '', 350, '2020-10-13', 'Meal/Haul', ' Overhead ', 0, 0, 'MACOY & DRIVER MEALS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(678, 23, 23, '', '', 23953.13, '2020-11-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (NOV.5-NOV.11)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(679, 23, 23, '', '', 3718.75, '2020-11-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (NOV. 1-15)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(680, 23, 23, '', '', 12500, '2020-11-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF. FEE (NOV. 1-15)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(681, 23, 23, '', '', 18900, '2020-11-15', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR NOV. 12-NOV 18, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(682, 26, 26, '', '', 9100, '2020-11-15', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR NOV. 12-NOV 18, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(683, 23, 23, '', '', 21437.5, '2020-11-30', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR NOV. 19-NOV. 25, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(684, 26, 26, '', '', 10150, '2020-11-30', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR NOV. 19-NOV. 25, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(685, 23, 23, '', '', 753.35, '2020-11-15', 'Fuel', ' Overhead ', 0, 0, 'NOV. 1-15, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(686, 23, 23, '', '', 14350, '2020-11-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR NOV. 26 - DEC 02, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(687, 26, 26, '', '', 8793.75, '2020-11-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR NOV. 26 - DEC 02, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(688, 15, 15, '', '', 8621.52, '2020-11-25', 'Contracted labor', ' Direct Labor ', 0, 0, '13MOTH PAY (JUNE TP NOV 25, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(689, 18, 18, '', '', 17608.36, '2020-11-25', 'Contracted labor', ' Direct Labor ', 0, 0, '13MOTH PAY (JUNE TP NOV 25, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(690, 22, 22, '', '', 26047.19, '2020-11-25', 'Contracted labor', ' Direct Labor ', 0, 0, '13MOTH PAY (JUNE TP NOV 25, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(691, 23, 23, '', '', 47293.12, '2020-11-25', 'Contracted labor', ' Direct Labor ', 0, 0, '13MOTH PAY (JUNE TP NOV 25, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(692, 24, 24, '', '', 8252.72, '2020-11-25', 'Contracted labor', ' Direct Labor ', 0, 0, '13MOTH PAY (JUNE TP NOV 25, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(693, 26, 26, '', '', 3061.72, '2020-11-25', 'Contracted labor', ' Direct Labor ', 0, 0, '13MOTH PAY (JUNE TP NOV 25, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(694, 22, 22, '', '', 2093.12, '2020-11-25', 'Contracted labor', ' Direct Labor ', 0, 0, 'DMPI PROJECT (BCC SHELL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(695, 26, 26, '', '', 998.88, '2020-11-25', 'Contracted labor', ' Direct Labor ', 0, 0, 'DMPI PROJECT (BCC SHELL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(696, 23, 23, '', '', 350, '2020-11-10', 'Meal/Haul', ' Overhead ', 0, 0, 'MEALS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(697, 23, 23, '', '', 300, '2020-11-12', 'Meal/Haul', ' Overhead ', 0, 0, 'MEALS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(698, 23, 23, '', '', 470, '2020-11-26', 'Meal/Haul', ' Overhead ', 0, 0, 'MEALS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(699, 23, 23, '', '', 200, '2020-11-27', 'Meal/Haul', ' Overhead ', 0, 0, 'MEALS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(700, 23, 23, '', '', 100, '2020-09-26', 'Fuel', ' Overhead ', 0, 0, 'FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(701, 23, 23, '', '', 49, '2020-10-28', 'Miscellaneous', ' Overhead ', 0, 0, 'PHOTOCOPY', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(702, 23, 23, '', '', 685.68, '2020-10-28', 'Miscellaneous', ' Overhead ', 0, 0, 'ASSESSMENT PAYMENT', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(703, 23, 23, '', '', 40, '2020-10-28', 'Meal/Haul', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(704, 23, 23, '', '', 8750, '2020-12-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR DEC 03-DEC.07, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(705, 26, 26, '', '', 7175, '2020-12-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR DEC 03-DEC.07, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(706, 11, 11, '', '', 5600, '2020-12-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR DEC 10- DEC 16, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(707, 27, 27, '', '', 8050, '2020-12-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR DEC 10- DEC 16, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(708, 26, 26, '', '', 645, '2020-12-18', 'Meal/Haul', ' Overhead ', 0, 0, 'lunch with driver macoy', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(709, 11, 11, '', '', 9964.06, '2020-12-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR DEC 17- DEC 22, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(710, 27, 27, '', '', 5250, '2020-12-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR DEC 17- DEC 22, 2020', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(711, 26, 26, '', '', 9710, '2020-11-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS (NOVEMBER 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(712, 26, 26, '', '', 2850, '2020-11-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'PHIC (NOVEMBER 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(713, 26, 26, '', '', 1700, '2020-11-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'HDMF (NOVEMBER 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(714, 23, 23, '', '', 3690, '2020-11-30', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (NOV 16-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(715, 23, 23, '', '', 12500, '2020-11-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (NOV 16-30, 2020)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(716, 23, 23, '', '', 4025.04, '2020-12-15', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (DEC 1-15)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(717, 23, 23, '', '', 12500, '2020-12-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (DEC 1-15)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(718, 23, 23, '', '', 769.23, '2020-12-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'DMPI PROJECT (BCC SHELL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(719, 26, 26, '', '', 630.77, '2020-12-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'DMPI PROJECT (BCC SHELL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(720, 27, 27, '', '', 12500, '2020-12-29', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (DEC 16-31)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(721, 27, 27, '', '', 12500, '2021-01-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (JAN 1-15)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(722, 27, 27, '', '', 5950, '2021-01-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (DEC .23- JAN.06 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(723, 10, 10, '', '', 9231.25, '2021-01-06', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (DEC .23- JAN.06 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(724, 27, 27, '', '', 10900.63, '2021-01-13', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN.7- JAN 13, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(725, 10, 10, '', '', 6020, '2021-01-13', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN.7- JAN 13, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(726, 28, 28, '', '', 14940.94, '2021-01-13', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN.7- JAN 13, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(727, 27, 27, '', '', 11773.75, '2021-01-20', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN.14-JAN, 20, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(728, 10, 10, '', '', 1835, '2021-01-20', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN.14-JAN, 20, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(729, 28, 28, '', '', 13625.62, '2021-01-20', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN.14-JAN, 20, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(730, 29, 29, '', '', 4962.82, '2021-01-20', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN.14-JAN, 20, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(731, 27, 27, '', '', 12360, '2021-01-27', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR( JAN.21-JAN.27, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(732, 28, 28, '', '', 10686.25, '2021-01-27', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR( JAN.21-JAN.27, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(733, 29, 29, '', '', 17116.65, '2021-01-27', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR( JAN.21-JAN.27, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(734, 27, 27, '', '', 4382.33, '2021-01-27', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS/PHIL/PAG IBIG- MONTH OF JAN.', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(735, 28, 28, '', '', 4383, '2021-01-27', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS/PHIL/PAG IBIG- MONTH OF JAN.', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(736, 29, 29, '', '', 4382, '2021-01-27', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS/PHIL/PAG IBIG- MONTH OF JAN.', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(737, 28, 28, '', '', 250, '2020-12-17', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE/ TAXI', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(738, 28, 28, '', '', 220, '2020-12-29', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(739, 28, 28, '', '', 320, '2021-01-11', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH W/ DRIVER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(740, 28, 28, '', '', 200, '2021-01-26', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(741, 29, 29, '', '', 2017.08, '2020-12-30', 'Fuel', ' Overhead ', 0, 0, 'DMPI PROJECT (BCC SHELL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(742, 10, 10, '', '', 1176.92, '2020-12-30', 'Fuel', ' Overhead ', 0, 0, 'DMPI PROJECT (BCC SHELL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(743, 29, 29, '', '', 1087.74, '2021-01-15', 'Fuel', ' Overhead ', 0, 0, 'DMPI PROJECT (BCC SHELL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(744, 27, 27, '', '', 376.82, '2021-01-15', 'Fuel', ' Overhead ', 0, 0, 'DMPI PROJECT (BCC SHELL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(745, 28, 28, '', '', 1370.4, '2021-01-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BCC SHELL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(746, 29, 29, '', '', 238.08, '2021-01-15', 'Fuel', ' Overhead ', 0, 0, 'DMPI PROJECT (BCC SHELL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(747, 29, 29, '', '', 12500, '2021-01-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (Jan 16-31, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(748, 28, 28, '', '', 20145, '2021-01-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'LABOR (JAN.28- FEB.3,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(749, 29, 29, '', '', 13224, '2021-01-31', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JAN.28- FEB.3,2021)SSS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(750, 28, 28, '', '', 21430, '2021-02-10', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB.4-10,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(751, 10, 10, '', '', 11175, '2021-02-10', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB.4-10,2021)PHIC/HMDF', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(752, 27, 27, '', '', 2740, '2021-02-10', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB.4-10,2021)PHIC/HMDF', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(753, 28, 28, '', '', 14424.69, '2021-02-17', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB.11-17,2021)SSS/HDMF', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(754, 10, 10, '', '', 10770, '2021-02-17', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB.11-17,2021)SSS/HDMF', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(755, 28, 28, '', '', 12500, '2021-02-17', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (FEB.11-15, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(756, 28, 28, '', '', 11755, '2021-02-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB.18-24,2021)SSS/HDMF', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(757, 10, 10, '', '', 8433.59, '2021-02-24', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB.18-24,2021)SSS/HDMF', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(758, 28, 28, '', '', 4144.36, '2021-02-24', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BCC SHELL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(759, 29, 29, '', '', 2432, '2021-02-24', 'Fuel', ' Overhead ', 0, 0, 'DMPI PROJECT (BCC SHELL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(760, 10, 10, '', '', 273.71, '2021-02-24', 'Fuel', ' Overhead ', 0, 0, 'DMPI PROJECT (BCC SHELL)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(761, 28, 28, '', '', 12500, '2021-03-03', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF FEE (FEB.16-28, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(762, 30, 30, '', '', 20118.75, '2021-03-03', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB.25-27, MAR.3,2021)PHIC', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(763, 30, 30, '', '', 6535, '2021-03-03', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS/PHIC/PAG IBIG MONTH OF FEB', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(764, 28, 28, '', '', 6535, '2021-03-03', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS/PHIC/PAG IBIG MONTH OF FEB', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(765, 28, 28, '', '', 1050, '2021-03-03', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB.25-27, MAR.3,2021)PHIC', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(766, 31, 31, '', '', 1485, '2021-03-03', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (FEB.25-27, MAR.3,2021)PHIC', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(767, 28, 28, '', '', 0, '2021-03-05', '', ' - ', 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(768, 27, 27, '', '', 360, '2020-12-14', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH W/ DRIVER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(769, 27, 27, '', '', 350, '2020-12-17', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH W/ DRIVER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(770, 27, 27, '', '', 350, '2020-12-29', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH W/ DRIVER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(771, 27, 27, '', '', 230, '2021-01-11', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(772, 29, 29, '', '', 420, '2021-01-19', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH W/DMPI GUIDE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(773, 27, 27, '', '', 326, '2021-01-11', 'Meal/Haul', ' Overhead ', 0, 0, 'FARE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(774, 30, 30, '', '', 36090, '2021-03-10', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 4-10,21)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(775, 28, 28, '', '', 800, '2021-03-10', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 4-10,21)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(776, 32, 32, '', '', 1, '2021-03-10', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 4-10,21)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(777, 30, 30, '', '', 39, '2021-03-17', 'Contracted labor', ' Direct Labor ', 0, 0, '(MARCH 11-17,2021) LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(778, 32, 32, '', '', 6, '2021-03-17', 'Contracted labor', ' Direct Labor ', 0, 0, '(MARCH 11-17,2021) LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(779, 32, 32, '', '', 607.5, '2021-03-17', 'Gov\'t remittance', ' Direct Labor ', 0, 0, '(MARCH 11-17,2021) SSS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(780, 32, 32, '', '', 12, '2021-03-17', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFFESSIONAL PAY MAR.1-15,2021', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(781, 30, 30, '', '', 31, '2021-03-24', 'Contracted labor', ' Direct Labor ', 0, 0, '(MAR.18-24,2021)LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(782, 32, 32, '', '', 3, '2021-03-17', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE MAR.1-15,2021', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(783, 30, 30, '', '', 3, '0000-00-00', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE MAR.1-15,2022', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(784, 32, 32, '', '', 20, '2021-03-24', 'Contracted labor', ' Direct Labor ', 0, 0, '(MAR.18-24,2021)LABOR', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(785, 30, 30, '', '', 10, '2021-03-25', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS/PAG IBIG/PHILHEALTH', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(786, 30, 30, '', '', 220, '2021-02-23', 'Meal/Haul', ' Overhead ', 0, 0, 'FARE TO CDO', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(787, 30, 30, '', '', 320, '2021-02-24', 'Meal/Haul', ' Overhead ', 0, 0, 'MEAL W/DRIVER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(788, 30, 30, '', '', 100, '2021-02-25', 'Fuel', ' Overhead ', 0, 0, 'FUEL TO CAMP 14 INSPECTION', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(789, 30, 30, '', '', 220, '2021-02-27', 'Meal/Haul', ' Overhead ', 0, 0, 'FARE TO CDO', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(790, 30, 30, '', '', 320, '2021-03-01', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH WITH DRIVER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(791, 30, 30, '', '', 220, '2021-03-09', 'Meal/Haul', ' Overhead ', 0, 0, 'FARE TO CDO', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(792, 30, 30, '', '', 300, '2021-03-15', 'Meal/Haul', ' Overhead ', 0, 0, 'LUNCH WITH DRIVER', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(793, 30, 30, '', '', 26, '2021-03-25', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 25-30,21)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(794, 31, 31, '', '', 700, '2021-03-25', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 25-30,21)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(795, 11, 11, '', '', 2, '2021-03-25', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 25-30,21)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(796, 32, 32, '', '', 17, '2021-03-25', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 25-30,21)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(797, 30, 30, '', '', 1, '2021-03-04', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BCC SHELL) JMC', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(798, 30, 30, '', '', 1, '2021-03-11', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BCC SHELL) JMC', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(799, 30, 30, '', '', 1, '2021-03-15', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BCC SHELL) JMC', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(800, 32, 32, '', '', 12, '2021-03-15', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFFESSIONAL PAY MAR.16-31,2021', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(801, 30, 30, '', '', 22, '2021-04-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 31- APRIL 5-7)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(802, 32, 32, '', '', 18, '2021-04-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MARCH 31- APRIL 5-7)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(803, 30, 30, '', '', 35, '2021-04-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 8-14, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(804, 31, 31, '', '', 1, '2021-04-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 8-14, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(805, 32, 32, '', '', 27, '2021-04-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 8-14, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(806, 32, 32, '', '', 1, '2021-03-18', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BCC SHELL) ', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(807, 32, 32, '', '', 661.94, '2021-03-18', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BCC SHELL) ', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(808, 30, 30, '', '', 1, '2021-03-22', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BCC SHELL) ', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(809, 30, 30, '', '', 1, '2021-03-24', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BCC SHELL) ', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(810, 32, 32, '', '', 295, '2021-03-29', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BCC SHELL) ', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(811, 32, 32, '', '', 1, '2021-04-14', 'Fuel', ' Overhead ', 0, 0, 'FUEL (BCC SHELL) ', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(812, 32, 32, '', '', 6, '2021-04-20', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFFESSIONAL PAY APRIL 1-15,2021', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(813, 30, 30, '', '', 6, '2021-04-20', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFFESSIONAL PAY APRIL 1-15,2021', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(814, 32, 32, '', '', 2, '2021-03-25', 'Miscellaneous', ' Overhead ', 0, 0, 'RICE (SACK)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(815, 32, 32, '', '', 2, '2021-04-24', 'Miscellaneous', ' Overhead ', 0, 0, 'RICE (SACK)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(816, 30, 30, '', '', 40, '2021-04-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 15-21, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(817, 32, 32, '', '', 3, '2021-04-20', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE APRIL 1-15,2021', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(818, 30, 30, '', '', 3, '2021-04-20', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE APRIL 1-15,2022', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(819, 11, 11, '', '', 800, '2021-04-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 15-21, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(820, 32, 32, '', '', 27, '2021-04-22', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 15-21, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(821, 32, 32, '', '', 1, '2021-04-05', 'Fuel', ' Overhead ', 0, 0, 'BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(822, 32, 32, '', '', 1, '2021-04-07', 'Fuel', ' Overhead ', 0, 0, 'BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(823, 32, 32, '', '', 300, '2021-04-07', 'Fuel', ' Overhead ', 0, 0, 'BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(824, 32, 32, '', '', 848, '2021-04-12', 'Fuel', ' Overhead ', 0, 0, 'BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(825, 32, 32, '', '', 848, '2021-04-12', 'Fuel', ' Overhead ', 0, 0, 'BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(826, 32, 32, '', '', 849, '2021-04-14', 'Fuel', ' Overhead ', 0, 0, 'BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(827, 30, 30, '', '', 849, '2021-04-15', 'Fuel', ' Overhead ', 0, 0, 'BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(828, 30, 30, '', '', 39, '2021-04-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 22-28, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(829, 11, 11, '', '', 750, '2021-04-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 22-28, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(830, 32, 32, '', '', 31, '2021-04-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 22-28, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(831, 32, 32, '', '', 6, '2021-05-04', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFFESSIONAL FEE APRIL 16-30,2021', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(832, 30, 30, '', '', 6, '2021-05-04', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFFESSIONAL FEE APRIL 16-30,2021', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(833, 32, 32, '', '', 5, '2021-05-04', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE APRIL 16-30,2021', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(834, 34, 34, '', '', 3, '2021-05-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 29-30- ,MAY 3-5, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(835, 30, 30, '', '', 19, '2021-05-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 29-30- ,MAY 3-5, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(836, 31, 31, '', '', 750, '2021-05-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 29-30- ,MAY 3-5, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(837, 35, 35, '', '', 1, '2021-05-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 29-30- ,MAY 3-5, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(838, 32, 32, '', '', 29, '2021-05-07', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (APRIL 29-30- ,MAY 3-5, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(839, 32, 32, '', '', 2, '2021-05-17', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFFESSIONAL FEE MAY 1-15,2021', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(840, 30, 30, '', '', 11, '2021-05-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 06 - 11, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(841, 31, 31, '', '', 750, '2021-05-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 06 - 11, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(842, 34, 34, '', '', 3, '2021-05-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 06 - 11, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(843, 35, 35, '', '', 3, '2021-05-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 06 - 11, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(844, 32, 32, '', '', 31, '2021-05-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 06 - 11, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(845, 32, 32, '', '', 849, '2021-04-17', 'Fuel', ' Overhead ', 0, 0, ' BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(846, 30, 30, '', '', 1, '2021-04-19', 'Fuel', ' Overhead ', 0, 0, ' BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(847, 32, 32, '', '', 849, '2021-04-19', 'Fuel', ' Overhead ', 0, 0, ' BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(848, 32, 32, '', '', 863, '2021-04-21', 'Fuel', ' Overhead ', 0, 0, ' BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(849, 32, 32, '', '', 863, '2021-04-24', 'Fuel', ' Overhead ', 0, 0, ' BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(850, 32, 32, '', '', 300, '2021-04-24', 'Fuel', ' Overhead ', 0, 0, ' BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(851, 32, 32, '', '', 863, '2021-04-26', 'Fuel', ' Overhead ', 0, 0, ' BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(852, 32, 32, '', '', 870, '2021-04-28', 'Fuel', ' Overhead ', 0, 0, ' BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(853, 34, 34, '', '', 1, '2021-04-30', 'Fuel', ' Overhead ', 0, 0, ' BCC FUEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(854, 30, 30, '', '', 3, '2021-05-17', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFFESSIONAL FEE MAY 1-15,2021', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(855, 34, 34, '', '', 3, '2021-05-17', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFFESSIONAL FEE MAY 1-15,2023', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(856, 30, 30, '', '', 17, '2021-05-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 12-19,2021', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(857, 35, 35, '', '', 7, '2021-05-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 12-19,2023', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(858, 32, 32, '', '', 56, '2021-05-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 12-19,2024', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(859, 34, 34, '', '', 2, '2021-05-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR MAY 12-19,2025', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(860, 32, 32, '', '', 14, '2021-04-28', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'PAGIBIG, SSS, AND PHILHEALTH/MONTH OF APR,', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(861, 30, 30, '', '', 10, '2021-04-28', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'PAGIBIG, SSS, AND PHILHEALTH/MONTH OF APR,', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(862, 34, 34, '', '', 1, '2021-04-28', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'PAGIBIG, SSS, AND PHILHEALTH/MONTH OF APR,', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(863, 32, 32, '', '', 2, '2021-05-17', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (MAY 1-15)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(864, 30, 30, '', '', 1, '2021-05-17', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (MAY 1-15)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(865, 34, 34, '', '', 875, '2021-05-17', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (MAY 1-15)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(866, 30, 30, '', '', 18, '2021-05-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 20-26, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(867, 35, 35, '', '', 6, '2021-05-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 20-26, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(868, 36, 36, '', '', 1, '2021-05-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 20-26, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(869, 30, 30, '', '', 47, '2021-05-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 20-26, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(870, 34, 34, '', '', 3, '2021-05-26', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 20-26, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(871, 32, 32, '', '', 870, '2021-05-03', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(872, 32, 32, '', '', 877, '2021-05-06', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(873, 32, 32, '', '', 877, '2021-05-08', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(874, 32, 32, '', '', 877, '2021-05-10', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(875, 32, 32, '', '', 891, '2021-05-12', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(876, 32, 32, '', '', 343.75, '2021-05-12', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(877, 32, 32, '', '', 951, '2021-05-15', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(878, 30, 30, '', '', 290, '2021-05-03', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(879, 34, 34, '', '', 290, '2021-05-03', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(880, 30, 30, '', '', 292.33, '2021-05-10', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(881, 34, 34, '', '', 292.34, '2021-05-10', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(882, 30, 30, '', '', 343.75, '2021-05-12', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(883, 34, 34, '', '', 343.75, '2021-05-12', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(884, 32, 32, '', '', 343.75, '2021-05-13', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(885, 30, 30, '', '', 8, '2021-06-02', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 27-31, JUNE 1-2)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(886, 35, 35, '', '', 4, '2021-06-02', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 27-31, JUNE 1-2)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(887, 31, 31, '', '', 3, '2021-06-02', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 27-31, JUNE 1-2)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(888, 36, 36, '', '', 1, '2021-06-02', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 27-31, JUNE 1-2)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(889, 32, 32, '', '', 54, '2021-06-02', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 27-31, JUNE 1-2)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(890, 34, 34, '', '', 400, '2021-06-02', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (MAY 27-31, JUNE 1-2)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(891, 32, 32, '', '', 0, '2021-06-02', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'HDMF CONTRI', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(892, 32, 32, '', '', 0, '2021-06-02', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'PHIC CONTRI', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(893, 30, 30, '', '', 3, '2021-06-02', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFF. FEE (MAY 16-31)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(894, 32, 32, '', '', 3, '2021-06-02', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFF. FEE (MAY 16-31)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(895, 34, 34, '', '', 3, '2021-06-02', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROFF. FEE (MAY 16-31)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(896, 32, 32, '', '', 27, '2021-05-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'SSS CONTRI-MAY', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(897, 30, 30, '', '', 3, '2021-05-31', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'PHIC CONTRI-MAY', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(898, 30, 30, '', '', 12, '2021-06-11', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JUNE 03-09, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(899, 35, 35, '', '', 10, '2021-06-11', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JUNE 03-09, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(900, 31, 31, '', '', 350, '2021-06-11', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JUNE 03-09, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(901, 36, 36, '', '', 1, '2021-06-11', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JUNE 03-09, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(902, 32, 32, '', '', 58, '2021-06-11', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JUNE 03-09, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(903, 30, 30, '', '', 1, '2021-06-11', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (MAY 16-31)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(904, 32, 32, '', '', 1, '2021-06-13', 'Clerk', ' Direct Labor ', 0, 0, 'CLERK FEE (MAY 16-31)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(905, 37, 37, '', '', 4, '2021-06-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JUNE 10-16, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(906, 32, 32, '', '', 34, '2021-06-16', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JUNE 10-16, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(907, 32, 32, '', '', 891, '2021-05-17', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(908, 32, 32, '', '', 891, '2021-05-19', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(909, 32, 32, '', '', 895, '2021-05-22', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(910, 32, 32, '', '', 895, '2021-05-24', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(911, 32, 32, '', '', 900, '2021-05-27', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(912, 32, 32, '', '', 900, '2021-05-29', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(913, 32, 32, '', '', 900, '2021-05-31', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(914, 34, 34, '', '', 595.32, '2021-05-26', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(915, 30, 30, '', '', 595.33, '2021-05-26', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(916, 32, 32, '', '', 6, '2021-06-18', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF.FEE (JUNE 1-15,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(917, 32, 32, '', '', 2, '2021-06-18', 'Clerk', ' Direct Labor ', 0, 0, 'PROF.FEE (JUNE 1-15,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(918, 30, 30, '', '', 250, '2021-03-23', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE-CDO TRANSACTION', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(919, 30, 30, '', '', 198, '2021-03-24', 'Meal/Haul', ' Overhead ', 0, 0, 'CHOWKING', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(920, 30, 30, '', '', 250, '2021-03-27', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE-CDO TRANSACTION', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(921, 30, 30, '', '', 874, '2021-03-29', 'Fuel', ' Overhead ', 0, 0, 'DIESEL', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(922, 30, 30, '', '', 250, '2021-03-29', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE-CDO TRANSACTION', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(923, 30, 30, '', '', 130, '2021-04-21', 'Fuel', ' Overhead ', 0, 0, 'FUEL CONSUMPTION', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(924, 30, 30, '', '', 380, '2021-04-26', 'Meal/Haul', ' Overhead ', 0, 0, 'MEALS', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(925, 30, 30, '', '', 250, '2021-05-04', 'Miscellaneous', ' Overhead ', 0, 0, 'FARE-CDO TRANSACTION', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(926, 37, 37, '', '', 7, '2021-06-19', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JUNE 17-23,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(927, 32, 32, '', '', 29, '2021-06-19', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JUNE 17-23,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(928, 37, 37, '', '', 9, '2021-07-01', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JUNE 24-30,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(929, 38, 38, '', '', 14, '2021-07-01', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JUNE 24-30,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(930, 32, 32, '', '', 27, '2021-07-02', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JUNE 24-30,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(931, 37, 37, '', '', 3, '2021-07-02', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF. FEE (JUNE 16-30)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(932, 38, 38, '', '', 3, '2021-07-02', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF. FEE (JUNE 16-30)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(933, 32, 32, '', '', 3, '2021-07-02', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF. FEE (JUNE 16-30)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(934, 32, 32, '', '', 908, '2021-06-02', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(935, 32, 32, '', '', 908, '2021-06-05', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(936, 32, 32, '', '', 908, '2021-06-07', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(937, 31, 31, '', '', 908, '2021-06-08', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(938, 32, 32, '', '', 919, '2021-06-09', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(939, 32, 32, '', '', 919, '2021-06-11', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(940, 32, 32, '', '', 919, '2021-06-14', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(941, 32, 32, '', '', 320, '2021-06-14', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(942, 32, 32, '', '', 1, '2021-07-02', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE (JUNE16-30, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(943, 38, 38, '', '', 1, '2021-07-02', 'Clerk', ' Direct Labor ', 0, 0, 'CLERICAL FEE (JUNE16-30, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(944, 32, 32, '', '', 251.86, '2021-07-02', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'CLERK MANDA (JUNE16-30, 2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(945, 38, 38, '', '', 10, '2021-07-08', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 1-7,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(946, 32, 32, '', '', 27, '2021-07-08', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 1-7,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(947, 37, 37, '', '', 11, '2021-07-08', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 1-7,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(948, 38, 38, '', '', 11, '2021-07-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 08-14,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(949, 37, 37, '', '', 9, '2021-07-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 08-14,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(950, 40, 40, '', '', 1, '2021-07-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 08-14,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(951, 32, 32, '', '', 21, '2021-07-14', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 08-14,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(952, 32, 32, '', '', 21, '2021-06-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'JUNE MANDA (SSS)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(953, 30, 30, '', '', 3, '2021-06-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, '<NAME> (PAG IBIG)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(954, 32, 32, '', '', 6, '2021-06-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF.FEE (JULY 01-15,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(955, 38, 38, '', '', 6, '2021-06-30', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF.FEE (JULY 01-15,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(956, 38, 38, '', '', 12, '2021-07-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 15-21,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(957, 37, 37, '', '', 9, '2021-07-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 15-21,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(958, 32, 32, '', '', 10, '2021-07-21', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 15-21,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(959, 32, 32, '', '', 927, '2021-06-17', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(960, 32, 32, '', '', 927, '2021-06-19', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(961, 32, 32, '', '', 909.2, '2021-06-21', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(962, 32, 32, '', '', 923.2, '2021-06-24', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(963, 38, 38, '', '', 1, '2021-06-25', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(964, 32, 32, '', '', 923.2, '2021-06-26', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(965, 32, 32, '', '', 923.2, '2021-06-28', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(966, 32, 32, '', '', 922.2, '2021-06-30', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(967, 38, 38, '', '', 19, '2021-07-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 22 - 28,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(968, 37, 37, '', '', 8, '2021-07-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 22 - 28,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(969, 41, 41, '', '', 700, '2021-07-28', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 22 - 28,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(970, 38, 38, '', '', 18, '2021-08-04', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 29-AUG.4,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(971, 37, 37, '', '', 2, '2021-08-04', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 29-AUG.4,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00');
INSERT INTO `tblpoexpense` (`POexid`, `POidhdrlink`, `POiddtllink`, `Docnum`, `Linenum`, `Amount`, `POdateexpense`, `Expensetype`, `expenseName`, `expenseHdrID`, `Expenseid`, `remarks`, `created_at`, `updated_at`) VALUES
(972, 42, 42, '', '', 4, '2021-08-04', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 29-AUG.4,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(973, 41, 41, '', '', 350, '2021-08-04', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (JULY 29-AUG.4,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(974, 38, 38, '', '', 4, '2021-08-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (AUG.5 -8,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(975, 37, 37, '', '', 6, '2021-08-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (AUG.5 -8,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(976, 41, 41, '', '', 700, '2021-08-05', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (AUG.5 -8,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(977, 32, 32, '', '', 936, '2021-07-17', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(978, 38, 38, '', '', 1, '2021-07-23', 'Fuel', ' Overhead ', 0, 0, 'BCC SHELL (DMPI PROJECT)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(979, 37, 37, '', '', 4, '2021-08-18', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (AUG.16-18,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(980, 41, 41, '', '', 800, '2021-08-18', 'Contracted labor', ' Direct Labor ', 0, 0, 'LABOR (AUG.16-18,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(981, 38, 38, '', '', 6, '2021-07-28', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF.FEE (JULY 16 -31,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(982, 37, 37, '', '', 6, '2021-07-28', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF.FEE (JULY 16 -31,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(983, 37, 37, '', '', 12, '2021-08-17', 'Professional Fee', ' Direct Labor ', 0, 0, 'PROF.FEE (AUG. 1-15,2021)', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(984, 38, 38, '', '', 6, '2021-07-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'MANDA (JULY CONTRI.', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(985, 37, 37, '', '', 3, '2021-07-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'MANDA (JULY CONTRI.', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(986, 32, 32, '', '', 8, '2021-07-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'MANDA (JULY CONTRI.', '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(987, 40, 40, '', '', 472.5, '2021-07-30', 'Gov\'t remittance', ' Direct Labor ', 0, 0, 'MANDA (JULY CONTRI.', '0000-00-00 00:00:00', '0000-00-00 00:00:00');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `tblpoexpense`
--
ALTER TABLE `tblpoexpense`
ADD PRIMARY KEY (`POexid`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `tblpoexpense`
--
ALTER TABLE `tblpoexpense`
MODIFY `POexid` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=988;
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 */;
|
-- (Q7) Volume Shipping Query
-- tables: tpch_supplier, tpch_lineitem, tpch_orders, tpch_customer, tpch_nation
/*SELECT
supp_nation,
cust_nation,
l_year,
sum(volume) AS revenue
FROM (
SELECT
n1.n_name AS supp_nation,
n2.n_name AS cust_nation,
extract(YEAR FROM l_shipdate) AS l_year,
l_shipdate AS l_year,
l_extendedprice * (1 - l_discount) AS volume
FROM
tpch_supplier,
tpch_lineitem,
tpch_orders,
tpch_customer,
tpch_nation n1,
tpch_nation n2
WHERE
s_suppkey = l_suppkey
AND o_orderkey = l_orderkey
AND c_custkey = o_custkey
AND s_nationkey = n1.n_nationkey
AND c_nationkey = n2.n_nationkey
AND (
(n1.n_name = 'FRANCE' AND n2.n_name = 'GERMANY')
OR (n1.n_name = 'GERMANY' AND n2.n_name = 'FRANCE')
)
AND l_shipdate > '1995-01-01' AND l_shipdate < '1996-12-31'
) AS shipping
GROUP BY
supp_nation,
cust_nation,
l_year
ORDER BY
supp_nation,
cust_nation,
l_year*/
--disabling due to extract
select count(*) from tpch_customer |
USE devops_ci_project;
SET NAMES utf8mb4;
REPLACE INTO `T_MESSAGE_CODE_DETAIL`(`ID`, `MESSAGE_CODE`, `MODULE_CODE`, `MESSAGE_DETAIL_ZH_CN`, `MESSAGE_DETAIL_ZH_TW`, `MESSAGE_DETAIL_EN`) VALUES ('028dffc92d344f9186e267418dc4839d', 'NUMBER_STYLE', '00', '只允许输入数字', '只允許輸入數字', 'Only numbers are allowed');
REPLACE INTO `T_MESSAGE_CODE_DETAIL`(`ID`, `MESSAGE_CODE`, `MODULE_CODE`, `MESSAGE_DETAIL_ZH_CN`, `MESSAGE_DETAIL_ZH_TW`, `MESSAGE_DETAIL_EN`) VALUES ('045ff045f5f64635b8a97930c3f1bbd6', 'AUTH_STYLE', '00', '权限认证类型不正确,只允许HTTP|HTTPS|OAUTH|SSH', '權限認證類型不正確,只允許HTTP|HTTPS|OAUTH|SSH', ' The authorization type is incorrect, only HTTP|HTTPS|OAUTH|SSH is allowed');
REPLACE INTO `T_MESSAGE_CODE_DETAIL`(`ID`, `MESSAGE_CODE`, `MODULE_CODE`, `MESSAGE_DETAIL_ZH_CN`, `MESSAGE_DETAIL_ZH_TW`, `MESSAGE_DETAIL_EN`) VALUES ('79e905a97b444171b530e8079d2310cc', 'COMMON_STYLE', '00', '非法字符', '非法字符', 'Invaild symbol');
REPLACE INTO `T_MESSAGE_CODE_DETAIL`(`ID`, `MESSAGE_CODE`, `MODULE_CODE`, `MESSAGE_DETAIL_ZH_CN`, `MESSAGE_DETAIL_ZH_TW`, `MESSAGE_DETAIL_EN`) VALUES ('a6809287bbb74d8f8c36c024b7a664d2', 'LANGUAGE_STYLE', '00', '开发语言不正确,只允许输入java|python|nodejs|golang|c|c++|php|c#', ' 開發語言不正確,只允許輸入java|python|nodejs|golang|c|c++|php|c#', 'The development language is incorrect, only java|python|nodejs|golang|c|c++|php|c#');
REPLACE INTO `T_MESSAGE_CODE_DETAIL`(`ID`, `MESSAGE_CODE`, `MODULE_CODE`, `MESSAGE_DETAIL_ZH_CN`, `MESSAGE_DETAIL_ZH_TW`, `MESSAGE_DETAIL_EN`) VALUES ('b60a23db2cd142599ca0f3830bae0ba5', 'EMAIL_STYLE', '00', '电子邮箱格式不正确', '電子郵箱格式不正確', 'Incorrect email format');
REPLACE INTO `T_MESSAGE_CODE_DETAIL`(`ID`, `MESSAGE_CODE`, `MODULE_CODE`, `MESSAGE_DETAIL_ZH_CN`, `MESSAGE_DETAIL_ZH_TW`, `MESSAGE_DETAIL_EN`) VALUES ('ef3c0f5fc66442a79841cc306a713bef', 'VISIBILITY_LEVEL_STYLE', '00', 'GIT项目可视范围类型不正确,只允许输入PRIVATE|LOGIN_PUBLIC', 'GIT項目可視範圍類型不正確,只允許輸入PRIVATE|LOGIN_PUBLIC', 'The type of the visible range of the GIT project is incorrect. Only PRIVATE|LOGIN_PUBLIC is allowed');
REPLACE INTO `T_MESSAGE_CODE_DETAIL`(`ID`, `MESSAGE_CODE`, `MODULE_CODE`, `MESSAGE_DETAIL_ZH_CN`, `MESSAGE_DETAIL_ZH_TW`, `MESSAGE_DETAIL_EN`) VALUES ('ca1eea81ea524e64b0a4f4cf651c981e', 'PRIVATE_REASON_STYLE', '00', '不开源内容不正确,只允许输入中英文、数字、部分中英文标点等,长度在2-256之间', '不開源內容不正確,只允許輸入中英文、數字、部分中英文標點等,長度在2-256之間', ' Not open source content is incorrect, only allow input of Chinese and English, numbers, some Chinese and English punctuation, etc.');
REPLACE INTO `T_MESSAGE_CODE_DETAIL`(`ID`, `MESSAGE_CODE`, `MODULE_CODE`, `MESSAGE_DETAIL_ZH_CN`, `MESSAGE_DETAIL_ZH_TW`, `MESSAGE_DETAIL_EN`) VALUES ('80367ad62d2848f39b7a950be63fd1b7', 'SERVICE_CODE_STYLE', '00', '扩展标识必须由小写字母、数字和中划线组成,首字母必须为小写字母,长度在1-32之间', '擴展標識必須由小寫字母、數字和中劃線組成,首字母必須為小寫字母,長度在1-32之間', ' The extended logo must be composed of lowercase letters, numbers, and underscores, and the first letter must be lowercase letters');
REPLACE INTO `T_MESSAGE_CODE_DETAIL`(`ID`, `MESSAGE_CODE`, `MODULE_CODE`, `MESSAGE_DETAIL_ZH_CN`, `MESSAGE_DETAIL_ZH_TW`, `MESSAGE_DETAIL_EN`) VALUES ('b56955b043ca448fac04001144f96f0a', 'STORE_CODE_STYLE', '00', '标识只能由大小写字母、数字和下划线组成,首字母必须为字母或者下划线,长度在1-32之间', ' 標識只能由大小寫字母、數字和下劃線組成,首字母必須為字母或者下劃線,長度在1-32之間', ' The logo can only consist of uppercase and lowercase letters, numbers and underscores, the first letter must be a letter or underscore');
REPLACE INTO `T_MESSAGE_CODE_DETAIL`(`ID`, `MESSAGE_CODE`, `MODULE_CODE`, `MESSAGE_DETAIL_ZH_CN`, `MESSAGE_DETAIL_ZH_TW`, `MESSAGE_DETAIL_EN`) VALUES ('333d5d9cef9e4b6d8af16e01b5ba623a', 'STORE_NAME_STYLE', '00', '名称只能由中文、大小字母、数字和下划线组成,长度在1-32之间', '名稱只能由中文、大小字母、數字和下劃線組成,長度在1-32之間', 'The name can only be composed of Chinese, capital letters, numbers, and underscores');
REPLACE INTO `T_MESSAGE_CODE_DETAIL`(`ID`, `MESSAGE_CODE`, `MODULE_CODE`, `MESSAGE_DETAIL_ZH_CN`, `MESSAGE_DETAIL_ZH_TW`, `MESSAGE_DETAIL_EN`) VALUES ('00b5b76ff0844ce3adb84ed8dd43b657', '2100015', '00', '{0}参数校验错误: {1}', ' {0}參數校驗錯誤: {1}', '{0} Parameter check error: {1}');
|
#!default_db:schema1
#
#join syntax
#
CREATE DATABASE if not exists schema1;
CREATE DATABASE if not exists schema2;
CREATE DATABASE if not exists schema3;
use schema1;
drop table if exists sharding_4_t1;
drop table if exists schema2.sharding_4_t2;
drop table if exists schema3.sharding_4_t3;
CREATE TABLE sharding_4_t1(`id` int(10) unsigned NOT NULL,`t_id` int(10) unsigned NOT NULL DEFAULT '0',`name` char(120) NOT NULL DEFAULT '',`pad` int(11) NOT NULL,PRIMARY KEY (`id`),KEY `k_1` (`t_id`))DEFAULT CHARSET=UTF8;
CREATE TABLE schema2.sharding_4_t2(`id` int(10) unsigned NOT NULL,`o_id` int(10) unsigned NOT NULL DEFAULT '0',`name` char(120) NOT NULL DEFAULT '',`pad` int(11) NOT NULL,PRIMARY KEY (`id`),KEY `k_1` (`o_id`))DEFAULT CHARSET=UTF8;
CREATE TABLE schema3.sharding_4_t3(`id` int(10) unsigned NOT NULL,`m_id` int(10) unsigned NOT NULL DEFAULT '0',`name` char(120) NOT NULL DEFAULT '',`pad` int(11) NOT NULL,PRIMARY KEY (`id`),KEY `k_1` (`m_id`))DEFAULT CHARSET=UTF8;
insert into sharding_4_t1 values(1,1,'test中id为1',1),(2,2,'test_2',2),(3,3,'test中id为3',4),(4,4,'$test$4',3),(5,5,'test...5',1),(6,6,'test6',6);
insert into schema2.sharding_4_t2 values(1,1,'order中id为1',1),(2,2,'test_2',2),(3,3,'order中id为3',3),(4,4,'$order$4',4),(5,5,'order...5',1);
insert into schema3.sharding_4_t3 values(1,1,'manager中id为1',1),(2,2,'test_2',2),(3,3,'manager中id为3',3),(4,4,'$manager$4',4),(5,5,'manager...5',6);
#
#join table
#
select * from sharding_4_t1 a,schema2.sharding_4_t2 b;
select a.id,b.id,b.pad,a.t_id from sharding_4_t1 a,(select schema3.sharding_4_t3.id,schema3.sharding_4_t3.pad from sharding_4_t1 join schema3.sharding_4_t3 where sharding_4_t1.pad=schema3.sharding_4_t3.pad) b,(select * from schema2.sharding_4_t2 where id>3) c where a.pad=b.pad and c.pad=b.pad;
select * from sharding_4_t1 a join schema2.sharding_4_t2 as b order by a.id,b.id;
select * from sharding_4_t1 a inner join schema2.sharding_4_t2 b order by a.id,b.id;
select * from sharding_4_t1 a cross join schema2.sharding_4_t2 b order by a.id,b.id;
select a.id,a.name,a.pad,b.name from sharding_4_t1 a straight_join schema2.sharding_4_t2 b on a.pad=b.pad;
select * from sharding_4_t1,schema2.sharding_4_t2 where sharding_4_t1.pad=schema2.sharding_4_t2.pad;
select * from sharding_4_t1 a,schema2.sharding_4_t2 b where a.pad=b.pad;
select distinct sharding_4_t1.id from sharding_4_t1,schema2.sharding_4_t2 where sharding_4_t1.pad=schema2.sharding_4_t2.pad;
select a.id,b.id,b.pad,a.t_id from sharding_4_t1 a,(select * from schema2.sharding_4_t2 where pad>3) b where a.t_id=b.o_id;
select a.id,b.id,b.pad,a.t_id from (select id,t_id from sharding_4_t1) a,(select * from schema2.sharding_4_t2) b where a.t_id=b.o_id;
select a.id,b.id,b.pad,a.t_id from (select sharding_4_t1.id,sharding_4_t1.pad,sharding_4_t1.t_id from sharding_4_t1 join schema2.sharding_4_t2 where sharding_4_t1.pad=schema2.sharding_4_t2.pad ) a,(select schema3.sharding_4_t3.id,schema3.sharding_4_t3.pad from sharding_4_t1 join schema3.sharding_4_t3 where sharding_4_t1.pad=schema3.sharding_4_t3.pad) b where a.pad=b.pad;
select sharding_4_t1.id,sharding_4_t1.name,a.name from sharding_4_t1,(select name from schema2.sharding_4_t2) a;
#
# inner join /cross join/join
#
select * from sharding_4_t1 inner join schema2.sharding_4_t2 order by sharding_4_t1.id,schema2.sharding_4_t2.id;
select * from sharding_4_t1 cross join schema2.sharding_4_t2 order by sharding_4_t1.id,schema2.sharding_4_t2.id;
select * from sharding_4_t1 join schema2.sharding_4_t2 order by sharding_4_t1.id,schema2.sharding_4_t2.id;
select a.id,a.name,a.pad,b.name from sharding_4_t1 a inner join schema2.sharding_4_t2 b order by a.id,b.id;
select a.id,a.name,a.pad,b.name from sharding_4_t1 a cross join schema2.sharding_4_t2 b order by a.id,b.id;
select a.id,a.name,a.pad,b.name from sharding_4_t1 a join schema2.sharding_4_t2 b order by a.id,b.id;
select * from sharding_4_t1 a inner join (select * from schema2.sharding_4_t2 where pad>2) b order by a.id,b.id;
select * from sharding_4_t1 a cross join (select * from schema2.sharding_4_t2 where pad>2) b order by a.id,b.id;
select * from sharding_4_t1 a join (select * from schema2.sharding_4_t2 where pad>2) b order by a.id,b.id;
select * from (select * from sharding_4_t1 where pad>2) a inner join (select * from schema2.sharding_4_t2 where pad>2) b order by a.id,b.id;
select * from (select * from sharding_4_t1 where pad>2) a cross join (select * from schema2.sharding_4_t2 where pad>2) b order by a.id,b.id;
select * from (select * from sharding_4_t1 where pad>2) a join (select * from schema2.sharding_4_t2 where pad>2) b order by a.id,b.id;
select * from sharding_4_t1 a join (select * from schema2.sharding_4_t2 where pad>2) b on a.id<b.id and a.pad=b.pad order by a.id,b.id;
select * from sharding_4_t1 a join (select * from schema2.sharding_4_t2 where pad>2) b using(pad) order by a.id,b.id;
select * from sharding_4_t1 a join schema2.sharding_4_t2 as b order by a.id,b.id;
select * from sharding_4_t1 a inner join schema2.sharding_4_t2 b order by a.id,b.id;
select * from sharding_4_t1 a cross join schema2.sharding_4_t2 b order by a.id,b.id;
select * from sharding_4_t1 straight_join schema2.sharding_4_t2 order by sharding_4_t1.id,schema2.sharding_4_t2.id;
select a.id,a.name,a.pad,b.name from sharding_4_t1 a straight_join schema2.sharding_4_t2 b order by a.id,b.id;
#
#straight_join
#
select * from sharding_4_t1 straight_join schema2.sharding_4_t2 order by sharding_4_t1.id,schema2.sharding_4_t2.id;
select a.id,a.name,a.pad,b.name from sharding_4_t1 a straight_join schema2.sharding_4_t2 b order by a.id,b.id;
select * from sharding_4_t1 a straight_join (select * from schema2.sharding_4_t2 where pad>0) b order by a.id,b.id;
select * from (select * from sharding_4_t1 where pad>0) a straight_join (select * from schema2.sharding_4_t2 where pad>0) b order by a.id,b.id;
select * from sharding_4_t1 a straight_join (select * from schema2.sharding_4_t2 where pad>0) b on a.id<b.id and a.pad=b.pad order by a.id,b.id;
select a.id,a.name,a.pad,b.name from sharding_4_t1 a straight_join schema2.sharding_4_t2 b on a.pad=b.pad;
#
#left join/right join/outer join
#
select * from sharding_4_t1 left join schema2.sharding_4_t2 on sharding_4_t1.pad=schema2.sharding_4_t2.pad order by sharding_4_t1.id,schema2.sharding_4_t2.id;
select * from sharding_4_t1 right join schema2.sharding_4_t2 on sharding_4_t1.pad=schema2.sharding_4_t2.pad order by sharding_4_t1.id,schema2.sharding_4_t2.id;
select * from sharding_4_t1 left outer join schema2.sharding_4_t2 on sharding_4_t1.pad=schema2.sharding_4_t2.pad order by sharding_4_t1.id,schema2.sharding_4_t2.id;
select * from sharding_4_t1 right outer join schema2.sharding_4_t2 on sharding_4_t1.pad=schema2.sharding_4_t2.pad order by sharding_4_t1.id,schema2.sharding_4_t2.id;
select * from sharding_4_t1 left join schema2.sharding_4_t2 using(pad) order by sharding_4_t1.id,schema2.sharding_4_t2.id;
select * from sharding_4_t1 a left join schema2.sharding_4_t2 b on a.pad=b.pad order by a.id,b.id;
select * from sharding_4_t1 a right join schema2.sharding_4_t2 b on a.pad=b.pad order by a.id,b.id;
select * from sharding_4_t1 a left outer join schema2.sharding_4_t2 b on a.pad=b.pad order by a.id,b.id;
select * from sharding_4_t1 a right outer join schema2.sharding_4_t2 b on a.pad=b.pad order by a.id,b.id;
select * from sharding_4_t1 a left join schema2.sharding_4_t2 b using(pad) order by a.id,b.id;
select * from sharding_4_t1 a left join (select * from schema2.sharding_4_t2 where pad>2) b on a.pad=b.pad order by a.id,b.id;
select * from sharding_4_t1 a right join (select * from schema2.sharding_4_t2 where pad>2) b on a.pad=b.pad order by a.id,b.id;
select * from sharding_4_t1 a left outer join (select * from schema2.sharding_4_t2 where pad>2) b on a.pad=b.pad order by a.id,b.id;
select * from sharding_4_t1 a right outer join (select * from schema2.sharding_4_t2 where pad>2) b on a.pad=b.pad order by a.id,b.id;
select * from sharding_4_t1 a left join (select * from schema2.sharding_4_t2 where pad>2) b using(pad) order by a.id,b.id;
select * from (select * from sharding_4_t1 where pad>1) a left join (select * from schema2.sharding_4_t2 where pad>3) b on a.pad=b.pad order by a.id,b.id;
select * from (select * from sharding_4_t1 where pad>1) a right join (select * from schema2.sharding_4_t2 where pad>3) b on a.pad=b.pad order by a.id,b.id;
select * from (select * from sharding_4_t1 where pad>1) a left outer join (select * from schema2.sharding_4_t2 where pad>3) b on a.pad=b.pad order by a.id,b.id;
select * from (select * from sharding_4_t1 where pad>1) a right outer join (select * from schema2.sharding_4_t2 where pad>3) b on a.pad=b.pad order by a.id,b.id;
select * from (select * from sharding_4_t1 where pad>1) a left join (select * from schema2.sharding_4_t2 where pad>3) b using(pad) order by a.id,b.id;
#
#natural left/right/outer join
#
select * from sharding_4_t1 natural left join schema2.sharding_4_t2;
select * from sharding_4_t1 natural right join schema2.sharding_4_t2;
select * from sharding_4_t1 natural left outer join schema2.sharding_4_t2;
select * from sharding_4_t1 natural right outer join schema2.sharding_4_t2;
select * from sharding_4_t1 a natural left join schema2.sharding_4_t2 b order by a.id,b.id;
select * from sharding_4_t1 a natural right join schema2.sharding_4_t2 b order by a.id,b.id;
select * from sharding_4_t1 a natural left outer join schema2.sharding_4_t2 b order by a.id,b.id;
select * from sharding_4_t1 a natural right outer join schema2.sharding_4_t2 b order by a.id,b.id;
select * from sharding_4_t1 a natural left join (select * from schema2.sharding_4_t2 where pad>2) b order by a.id,b.id;
select * from sharding_4_t1 a natural right join (select * from schema2.sharding_4_t2 where pad>2) b order by a.id,b.id;
select * from sharding_4_t1 a natural left outer join (select * from schema2.sharding_4_t2 where pad>2) b order by a.id,b.id;
select * from sharding_4_t1 a natural right outer join (select * from schema2.sharding_4_t2 where pad>2) b order by a.id,b.id;
select * from (select * from sharding_4_t1 where pad>1) a natural left join (select * from schema2.sharding_4_t2 where pad>3) b order by a.id,b.id;
select * from (select * from sharding_4_t1 where pad>1) a natural right join (select * from schema2.sharding_4_t2 where pad>3) b order by a.id,b.id;
select * from (select * from sharding_4_t1 where pad>1) a natural left outer join (select * from schema2.sharding_4_t2 where pad>3) b order by a.id,b.id;
select * from (select * from sharding_4_t1 where pad>1) a natural right outer join (select * from schema2.sharding_4_t2 where pad>3) b order by a.id,b.id;
#
#on+and
#
select * from sharding_4_t1 left join schema2.sharding_4_t2 on sharding_4_t1.pad=schema2.sharding_4_t2.pad and sharding_4_t1.id>3 order by sharding_4_t1.id,schema2.sharding_4_t2.id;
#
#distinct(special_scene)
#
SELECT DISTINCT sharding_4_t1.id FROM sharding_4_t1,schema2.sharding_4_t2 where sharding_4_t1.pad=schema2.sharding_4_t2.pad;
#
#where
#
select * from sharding_4_t1 a left join schema2.sharding_4_t2 b on a.pad=b.pad where b.pad is null;
select * from sharding_4_t1 a left join schema2.sharding_4_t2 b on a.pad=b.pad where b.pad is not null;
select * from sharding_4_t1 a left join schema2.sharding_4_t2 b on a.pad=b.pad where b.pad in(2,3,null);
select * from sharding_4_t1 a left join schema2.sharding_4_t2 b on a.pad=b.pad where a.t_id>b.o_id;
select * from sharding_4_t1 a left join schema2.sharding_4_t2 b on a.pad=b.pad where a.t_id<b.o_id;
select * from sharding_4_t1 a left join schema2.sharding_4_t2 b on a.pad=b.pad where a.t_id=b.o_id;
select * from sharding_4_t1 a,schema2.sharding_4_t2 b where (a.id<3 && b.id>2);
select * from sharding_4_t1 a,schema2.sharding_4_t2 b where (a.id>1 && b.id<4 && a.pad=b.pad);
select * from sharding_4_t1 a,schema2.sharding_4_t2 b where a.id=b.id;
#
#group by/order by
#
select count(*) from sharding_4_t1 a left join schema2.sharding_4_t2 b on a.pad=b.pad group by b.pad;
select * from sharding_4_t1 a left join (select * from schema2.sharding_4_t2 where pad>2 order by id) b on a.pad=b.pad order by a.id;
select * from sharding_4_t1 a left join (select pad,count(*) from schema2.sharding_4_t2 group by pad) b on a.pad=b.pad;
#
#more than two tables join
#
select a.id,b.id,c.pad from sharding_4_t1 a,schema2.sharding_4_t2 b,schema3.sharding_4_t3 c where a.id=b.id and a.id=c.pad;
#
#union
#
select * from sharding_4_t1 union select * from schema2.sharding_4_t2;
select * from sharding_4_t1 union all select * from schema2.sharding_4_t2;
select * from sharding_4_t1 union distinct select * from schema2.sharding_4_t2;
select * from sharding_4_t1 union (select * from schema2.sharding_4_t2);
(select * from sharding_4_t1) union (select * from schema2.sharding_4_t2);
select * from sharding_4_t1 union select * from schema2.sharding_4_t2;
(select * from sharding_4_t1 order by id)union select * from schema2.sharding_4_t2/*allow_diff_sequence*/;
select * from sharding_4_t1 union (select * from schema2.sharding_4_t2 order by id)/*allow_diff_sequence*/;
select * from sharding_4_t1 union select * from schema2.sharding_4_t2 order by id/*allow_diff_sequence*/;
(select * from sharding_4_t1) union (select * from schema2.sharding_4_t2) order by name/*allow_diff_sequence*/;
(select pad from sharding_4_t1) union distinct (select pad from schema2.sharding_4_t2);
select distinct a.pad from sharding_4_t1 a,schema2.sharding_4_t2 b where a.pad=b.pad;
(select * from sharding_4_t1 where id=2) union distinct (select * from schema2.sharding_4_t2 where id=2);
select distinct a.pad from sharding_4_t1 a,schema2.sharding_4_t2 b where a.pad=b.pad;
select distinct b.pad,a.pad from sharding_4_t1 a,(select * from schema2.sharding_4_t2 where pad=1) b where a.t_id=b.o_id;
select count(distinct pad,name),avg(distinct t_id) from sharding_4_t1;
select count(distinct id),sum(distinct name) from sharding_4_t1 where id=3 or id=7;
select * from sharding_4_t1 union all select * from schema3.sharding_4_t3 union all select * from schema2.sharding_4_t2;
select * from sharding_4_t1 union distinct select * from schema3.sharding_4_t3 union distinct select * from schema2.sharding_4_t2;
(select name from sharding_4_t1 where pad=1 order by id limit 10) union all (select name from schema2.sharding_4_t2 where pad=1 order by id limit 10)/*allow_diff_sequence*/;
(select name from sharding_4_t1 where pad=1 order by id limit 10) union distinct (select name from schema2.sharding_4_t2 where pad=1 order by id limit 10)/*allow_diff_sequence*/;
(select * from sharding_4_t1 where pad=1) union (select * from schema2.sharding_4_t2 where pad=1) order by name limit 10;
(select name as sort_a from sharding_4_t1 where pad=1) union (select name from schema2.sharding_4_t2 where pad=1) order by sort_a limit 10;
(select name as sort_a,pad from sharding_4_t1 where pad=1) union (select name,pad from schema2.sharding_4_t2 where pad=1) order by sort_a,pad limit 10;
select 1 union select 1;
(select * from sharding_4_t1 left join schema2.sharding_4_t2 on sharding_4_t1.pad=schema2.sharding_4_t2.pad order by sharding_4_t1.id,schema2.sharding_4_t2.id)union (select * from schema2.sharding_4_t2 left join schema3.sharding_4_t3 on schema2.sharding_4_t2.pad=schema3.sharding_4_t3.pad)order by t_id, o_id/*allow_diff_sequence*/;
select * from schema3.sharding_4_t3,(select * from sharding_4_t1 where id>3 union select * from schema2.sharding_4_t2 where id<2) a;
(select * from sharding_4_t1 order by id limit 0,3) union (select * from schema3.sharding_4_t3 order by id limit 10,3) union (select * from schema2.sharding_4_t2 order by id limit 20,3);
(select a.id, a.name, b.name from sharding_4_t1 a left join schema2.sharding_4_t2 b on a.pad=b.pad) union(select schema3.sharding_4_t3.id, schema3.sharding_4_t3.name, schema3.sharding_4_t3.name from schema3.sharding_4_t3)/*allow_diff_sequence*/;
#
#SELECT ... UNION [ALL | DISTINCT] SELECT ... [UNION [ALL | DISTINCT] SELECT ...]
#
select * from sharding_4_t1 union all select * from schema3.sharding_4_t3 union all select * from schema2.sharding_4_t2;
select * from sharding_4_t1 union distinct select * from schema3.sharding_4_t3 union distinct select * from schema2.sharding_4_t2;
(select name from sharding_4_t1 where pad=1 order by id limit 10) union all (select name from schema2.sharding_4_t2 where pad=1 order by id limit 10)/*allow_diff_sequence*/;
(select name from sharding_4_t1 where pad=1 order by id limit 10) union distinct (select name from schema2.sharding_4_t2 where pad=1 order by id limit 10)/*allow_diff_sequence*/;
(select * from sharding_4_t1 where pad=1) union (select * from schema2.sharding_4_t2 where pad=1) order by name limit 10;
(select name as sort_a from sharding_4_t1 where pad=1) union (select name from schema2.sharding_4_t2 where pad=1) order by sort_a limit 10;
(select name as sort_a,pad from sharding_4_t1 where pad=1) union (select name,pad from schema2.sharding_4_t2 where pad=1) order by sort_a,pad limit 10;
#
#clear tables
#
drop table if exists sharding_4_t1;
drop table if exists schema2.sharding_4_t2;
drop table if exists schema3.sharding_4_t3; |
DELIMITER $$
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_getMyQuinielasPrivate`(IN `userID` INT)
READS SQL DATA
COMMENT 'Devuelve todas las quiniela creadas por un usuario'
BEGIN
SELECT
q.id_quiniela AS idQuiniela,
q.nombre AS nombreQuiniela,
q.created_at AS fechaCreacionQuiniela,
ch.name AS nombreCampeonato,
qt.name AS tipoQuiniela,
ap.phase
FROM
quinielas AS q
INNER JOIN quiniela_privada AS jq ON jq.id_quiniela=q.id_quiniela
INNER JOIN championships AS ch ON ch.id=q.id_championship
INNER JOIN quinielatipo qt ON qt.id=q.id_type
INNER JOIN activephases AS ap on ap.championship_id=q.id_championship
WHERE
jq.id_user = userID AND
q.isActive = 1;
END$$
DELIMITER ; |
<gh_stars>1-10
CREATE OR REPLACE FUNCTION ts.insertdepenvttype(_depenvt character varying, _depenvthigherid integer DEFAULT NULL::integer)
RETURNS integer
LANGUAGE sql
AS $function$
INSERT INTO ndb.depenvttypes(depenvt, depenvthigherid)
VALUES (_depenvt, _depenvthigherid)
RETURNING depenvtid
$function$
|
<filename>src/test/resources/sql/insert/1da13cf4.sql
-- file:rules.sql ln:244 expect:true
insert into rtest_interface values ('orion', 'eth1')
|
<filename>sunbird-cassandra-migration/cassandra-migration/src/test/resources/migration/integ_outoforder3/V1_0_0__First.cql
CREATE TABLE test1 (
space text,
key text,
value text,
PRIMARY KEY (space, key)
) with CLUSTERING ORDER BY (key ASC);
INSERT INTO test1 (space, key, value) VALUES ('foo', 'blah', 'meh');
UPDATE test1 SET value = 'profit!' WHERE space = 'foo' AND key = 'blah'; |
prompt - table oehr_departments
create table oehr_departments (
department_id integer generated by default on null as identity (increment by 10 nocache nocycle),
department_name varchar2(30 char) not null,
manager_id integer ,
location_id integer ,
--
primary key (department_id)
);
comment on table oehr_departments is
'Departments table that shows details of departments where employees work. Contains 27 rows; references with locations, employees, and job_history tables.';
comment on column oehr_departments.department_id is
'Primary key column of departments table.';
comment on column oehr_departments.department_name is
'A not null column that shows name of a department. Administration, Marketing, Purchasing, Human Resources, Shipping, IT, Executive, Public Relations, Sales, Finance, and Accounting.';
comment on column oehr_departments.manager_id is
'Manager_id of a department. Foreign key to employee_id column of employees table. The manager_id column of the employee table references this column.';
comment on column oehr_departments.location_id is
'Location id where a department is located. Foreign key to location_id column of locations table.'; |
CREATE OR REPLACE VIEW de_metas_invoicecandidate.C_Invoice_Candidate_Missing_C_Invoice_Candidate_Agg_ID_v AS
SELECT ic.c_invoice_candidate_id, ic.created, ic.updated
FROM c_invoice_candidate ic
WHERE true
AND ic.IsActive='Y'
AND ic.C_Invoice_Candidate_Agg_ID IS NULL
AND ic.processed = 'N'
AND ic.istoclear = 'N'
AND (ic.updated + '00:10:00'::interval) < now()
ORDER BY ic.updated DESC
;
COMMENT ON VIEW de_metas_invoicecandidate.C_Invoice_Candidate_Missing_C_Invoice_Candidate_Agg_ID_v
IS 'ICs that don''t yet have C_Invoice_Candidate_Agg_ID (aparently that also means no line aggregation key!), but were created/updated more than 10 minutes ago.
Issue FRESH-388 (FRESH-93)';
CREATE OR REPLACE VIEW de_metas_invoicecandidate.c_invoice_candidate_missing_aggregation_group_v AS
SELECT ic.c_invoice_candidate_id, ic.created, ic.updated
FROM c_invoice_candidate ic
WHERE true
AND ic.IsActive='Y'
AND ic.c_invoice_candidate_headeraggregation_effective_id IS NULL
AND ic.processed = 'N'
AND ic.istoclear = 'N'
AND (ic.updated + '00:10:00'::interval) < now()
ORDER BY ic.updated DESC
;
COMMENT ON VIEW de_metas_invoicecandidate.c_invoice_candidate_missing_aggregation_group_v
IS 'ICs that don''t yet have an aggregation group, but were created/updated more than 10 minutes ago.
Issue FRESH-93';
CREATE OR REPLACE VIEW de_metas_invoicecandidate.c_invoice_candidate_stale_qtyinvoiced_v AS
SELECT
ic.C_Invoice_candidate_ID,
ic.QtyInvoiced,
SUM(COALESCE(ila.QtyInvoiced,0)) as sum,
ic.Processed_override,
ic.Processed,
ic.Created,
ic.Updated
FROM C_Invoice_Candidate ic
LEFT JOIN C_Invoice_Line_Alloc ila ON ila.C_Invoice_candidate_ID=ic.C_Invoice_candidate_ID AND ila.IsActive='Y'
WHERE true
AND ic.IsActive='Y'
AND (ic.updated + '00:10:00'::interval) < now()
GROUP BY
ic.C_Invoice_candidate_ID,
ic.QtyInvoiced
HAVING ic.QtyInvoiced!=SUM(ila.QtyInvoiced)
;
COMMENT ON VIEW de_metas_invoicecandidate.c_invoice_candidate_stale_qtyinvoiced_v
IS 'ICs that have an inconsistend QtyInvoiced value and were created/updated more than 10 minutes ago.
Issue FRESH-93';
CREATE OR REPLACE VIEW de_metas_invoicecandidate.c_invoice_candidate_wrong_qty_ol_v AS
SELECT ic.c_invoice_candidate_id, ic.created, ic.updated, ic.qtyordered, ol.qtyordered AS ol_qtyordered, ic.qtydelivered, ol.qtydelivered AS ol_qtydelivered
FROM c_invoice_candidate ic
JOIN c_orderline ol ON ol.c_orderline_id = ic.c_orderline_id
JOIN c_order o ON o.c_order_id = ol.c_order_id
LEFT JOIN c_invoice_candidate_recompute icr ON icr.c_invoice_candidate_id = ic.c_invoice_candidate_id
WHERE true
AND ic.IsActive='Y'
AND (ic.updated + interval '10 minutes') < now()
AND COALESCE(ic.processed_override, ic.processed) = 'N'
AND icr.c_invoice_candidate_id IS NULL
AND o.docstatus IN ('CO', 'CL')
AND (ic.qtydelivered <> ol.qtydelivered OR ic.qtyordered <> ol.qtyordered)
;
COMMENT ON VIEW de_metas_invoicecandidate.c_invoice_candidate_wrong_qty_ol_v
IS 'ICs that
* reference a C_OrderLine and
* have an inconsistend QtyDelivered or QtyOrdered value and
* were created/updated more than 10 minutes ago.
see Issue FRESH-93';
CREATE OR REPLACE VIEW de_metas_invoicecandidate.c_invoice_candidate_wrong_qtytoinvoice_v AS
SELECT
ic.C_Invoice_candidate_ID,
ic.Processed_Calc,
ic.Processed_Override,
ic.QTyToInvoice_Override,
ic.QtyToInvoice,
ic.PriceActual,
ic.NetAmtToInvoice,
ic.Updated,
ic.UpdatedBy
FROM C_Invoice_candidate ic
WHERE true
AND ic.IsActive='Y'
AND (ic.updated + '00:10:00'::interval) < now()
AND COALESCE(ic.processed_override, ic.processed) = 'N'
AND ic.QTyToInvoice_Override IS NOT NULL
AND ic.QTyToInvoice!=QTyToInvoice_Override
AND NOT EXISTS (select 1 from C_Invoice_Candidate_Recompute r where r.C_Invoice_Candidate_ID=ic.C_Invoice_Candidate_ID)
AND ic.SchedulerResult!='Auftrag hat zur Zeit den Status In Verarbeitung.'
;
COMMENT ON VIEW de_metas_invoicecandidate.c_invoice_candidate_wrong_qtytoinvoice_v IS
'Selects ICs that have QtyToInvoice!=QtyToInvoice_Override and that have a processed order line, were last updated more than 10 minutes ago and are currently not flagged as invalid.';
|
ALTER TABLE jobs DROP COLUMN user_id;
DROP TABLE users; |
<filename>src/AMT EQ 24 Script.sql
USE [EdFi_Ods]
CREATE OR ALTER FUNCTION [BI].[eq24.YearStart]()
RETURNS @return TABLE ([YearStart] INT)
AS
BEGIN
DECLARE @year char(20);
IF month(getdate()) > 6 SET @year = year(getdate()) else SET @year = year(getdate()) - 1
INSERT INTO @return SELECT @year;
RETURN;
END;
GO
/****** Object: View [BI].[amt.Grade] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.Grade]
AS SELECT
COALESCE(BeginDate.Date, CAST(GradingPeriodDim.GradingPeriodBeginDateKey AS DATETIME)) AS BeginDate,
'' AS ClassPeriodName,
'' AS ClassroomIdentificationCode,
ews_StudentSectionGradeFact.NumericGradeEarned AS GradeEarned,
'' AS GradeType,
GradingPeriodDim.GradingPeriodDescription AS GradingPeriod,
COALESCE(BeginDate.Date, CAST(GradingPeriodDim.GradingPeriodBeginDateKey AS DATETIME)) AS GradingPeriodBeginDate,
StudentSectionDim.SectionKey AS SectionKey,
StudentSectionDim.LocalCourseCode AS LocalCourseCode,
SchoolDim.LocalEducationAgencyKey AS LocalEducationAgencyId,
SchoolDim.SchoolKey AS SchoolKey,
StudentSectionDim.SchoolYear AS SchoolYear,
COALESCE(StudentSectionStartDate.Date, CAST(StudentSectionDim.StudentSectionStartDateKey AS DATETIME)) AS SectionBeginDate,
COALESCE(StudentSectionEndDate.Date, CAST(StudentSectionDim.StudentSectionEndDateKey AS DATETIME)) AS SectionEndDate,
'' AS SequenceOfCourse,
CONCAT(StudentSectionDim.StudentKey, '-', SchoolDim.SchoolKey) AS StudentUSI,
StudentSectionDim.Subject AS Subject,
'' AS Term,
'' AS UniqueSectionCode,
ews_StudentSectionGradeFact.GradingPeriodKey,
StudentSectionDim.StudentSectionKey
FROM
analytics.ews_StudentSectionGradeFact
INNER JOIN
analytics.StudentSectionDim ON
analytics.ews_StudentSectionGradeFact.StudentSectionKey = analytics.StudentSectionDim.StudentSectionKey
AND
analytics.ews_StudentSectionGradeFact.SchoolKey = analytics.StudentSectionDim.SchoolKey
AND
analytics.ews_StudentSectionGradeFact.StudentKey = analytics.StudentSectionDim.StudentKey
AND
analytics.ews_StudentSectionGradeFact.SectionKey = analytics.StudentSectionDim.SectionKey
INNER JOIN
analytics.SchoolDim ON
analytics.StudentSectionDim.SchoolKey = analytics.SchoolDim.SchoolKey
LEFT JOIN
analytics.DateDim StudentSectionStartDate ON
StudentSectionDim.StudentSectionStartDateKey = StudentSectionStartDate.DateKey
LEFT JOIN
analytics.DateDim StudentSectionEndDate ON
StudentSectionDim.StudentSectionEndDateKey = StudentSectionEndDate.DateKey
LEFT JOIN
analytics.GradingPeriodDim ON
analytics.ews_StudentSectionGradeFact.GradingPeriodKey = analytics.GradingPeriodDim.GradingPeriodKey
LEFT JOIN
analytics.DateDim BeginDate ON
GradingPeriodDim.GradingPeriodBeginDateKey = BeginDate.DateKey
WHERE
StudentSectionDim.Subject = 'Mathematics';
--WHERE SUBSTRING(g.LocalCourseCode,11,2) in ( '12') --this filter selects math courses only for Florida districts.
GO
/****** Object: View [BI].[amt.iReady_StudentAssessmentReportingMethod] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.iReady_StudentAssessmentReportingMethod]
AS SELECT DISTINCT
sa.AssessmentIdentifier,
sa.StudentAssessmentIdentifier,
sa.StudentSchoolKey,
CAST(sa.AdministrationDate AS DATE) AS AdministrationDate,
aaf.AssessedGradeLevel AS WhenAssessedGradeLevel,
aaf.AcademicSubject,
sa.ReportingMethod,
aaf.Title,
sa.StudentScore AS Result,
aaf.Version Version,
sa.Namespace
FROM
analytics.asmt_StudentAssessmentFact sa
INNER JOIN
analytics.asmt_AssessmentFact aaf ON
sa.AssessmentKey = aaf.AssessmentKey
AND
sa.ObjectiveAssessmentKey = aaf.ObjectiveAssessmentKey
AND
sa.AssessedGradeLevel = aaf.AssessedGradeLevel
AND
sa.ReportingMethod = aaf.ReportingMethod
WHERE
sa.Namespace LIKE 'uri://www.curriculumassociates.com%'
AND
aaf.AcademicSubject = 'Mathematics'
AND
sa.ReportingMethod <> 'Scale score';
GO
/****** Object: View [BI].[amt.iReady_StudentAssessmentScoreResult] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.iReady_StudentAssessmentScoreResult]
AS SELECT DISTINCT
sa.AssessmentIdentifier,
sa.StudentAssessmentIdentifier,
sa.StudentSchoolKey,
CAST(sa.AdministrationDate AS DATE) AS AdministrationDate,
CAST(sa.AdministrationDate AS DATE) AS AdministrationEndDate,
aaf.AssessedGradeLevel AS WhenAssessedGradeLevel,
aaf.AcademicSubject,
sa.ReportingMethod,
aaf.Title,
sa.StudentScore AS Result,
aaf.Version Version,
sa.Namespace
FROM
analytics.asmt_StudentAssessmentFact sa
INNER JOIN
analytics.asmt_AssessmentFact aaf ON
sa.AssessmentKey = aaf.AssessmentKey
AND
sa.ObjectiveAssessmentKey = aaf.ObjectiveAssessmentKey
AND
sa.AssessedGradeLevel = aaf.AssessedGradeLevel
AND
sa.ReportingMethod = aaf.ReportingMethod
WHERE
sa.Namespace LIKE 'uri://www.curriculumassociates.com%'
AND
aaf.AcademicSubject = 'Mathematics'
AND
sa.ReportingMethod = 'Scale score';
GO
/****** Object: View [BI].[amt.iReady_StudentAssessmentStudentObjectiveAssessmentPerformanceLevel] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.iReady_StudentAssessmentStudentObjectiveAssessmentPerformanceLevel]
AS SELECT DISTINCT
sa.AssessmentIdentifier,
sa.ReportingMethod,
aaf.IdentificationCode,
aaf.ObjectiveAssessmentDescription AS ObjectiveDescription,
sa.Namespace,
sa.StudentAssessmentIdentifier,
sa.StudentSchoolKey,
sa.StudentScore AS Result,
sa.ResultDataType
FROM
analytics.asmt_StudentAssessmentFact sa
INNER JOIN
analytics.asmt_AssessmentFact aaf ON
sa.AssessmentKey = aaf.AssessmentKey
AND
sa.ObjectiveAssessmentKey = aaf.ObjectiveAssessmentKey
AND
sa.AssessedGradeLevel = aaf.AssessedGradeLevel
AND
sa.ReportingMethod = aaf.ReportingMethod
WHERE
sa.Namespace LIKE 'uri://www.curriculumassociates.com%'
AND
sa.ResultDataType = 'Level';
GO
/****** Object: View [BI].[amt.iReady_StudentAssessmentStudentObjectiveAssessmentScoreResult] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.iReady_StudentAssessmentStudentObjectiveAssessmentScoreResult]
AS SELECT DISTINCT
sa.AssessmentIdentifier,
sa.ReportingMethod,
aaf.IdentificationCode,
aaf.ObjectiveAssessmentDescription AS ObjectiveDescription,
sa.Namespace,
sa.StudentAssessmentIdentifier,
sa.StudentSchoolKey,
sa.StudentScore AS Result,
sa.ResultDataType
FROM
analytics.asmt_StudentAssessmentFact sa
INNER JOIN
analytics.asmt_AssessmentFact aaf ON
sa.AssessmentKey = aaf.AssessmentKey
AND
sa.ObjectiveAssessmentKey = aaf.ObjectiveAssessmentKey
AND
sa.AssessedGradeLevel = aaf.AssessedGradeLevel
AND
sa.ReportingMethod = aaf.ReportingMethod
WHERE
sa.Namespace LIKE 'uri://www.curriculumassociates.com%'
AND sa.ResultDataType LIKE 'Integer';
GO
/****** Object: View [BI].[amt.MC_ObjectiveAssessmentPerformanceLevel] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.MC_ObjectiveAssessmentPerformanceLevel]
AS SELECT DISTINCT
sa.AssessmentIdentifier,
sa.ReportingMethod,
aaf.IdentificationCode,
sa.Namespace,
sa.PerformanceResult,
aaf.MinScore AS MinimumScore,
aaf.MaxScore AS MaximumScore,
sa.ResultDataType
FROM
analytics.asmt_StudentAssessmentFact sa
INNER JOIN
analytics.asmt_AssessmentFact aaf ON
sa.AssessmentKey = aaf.AssessmentKey
AND
sa.ObjectiveAssessmentKey = aaf.ObjectiveAssessmentKey
AND
sa.AssessedGradeLevel = aaf.AssessedGradeLevel
AND
sa.ReportingMethod = aaf.ReportingMethod
WHERE
sa.Namespace = 'http://masteryconnect.com';
GO
/****** Object: View [BI].[amt.MC_StudentAssessmentScoreResult] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.MC_StudentAssessmentScoreResult]
AS SELECT DISTINCT
sa.AssessmentIdentifier,
sa.StudentAssessmentIdentifier,
sa.StudentSchoolKey,
CAST(sa.AdministrationDate AS DATE) AS AdministrationDate,
aaf.AcademicSubject,
sa.ReportingMethod,
aaf.Title,
sa.StudentScore AS Result,
aaf.Version AS Version,
sa.Namespace
FROM
analytics.asmt_StudentAssessmentFact sa
INNER JOIN
analytics.asmt_AssessmentFact aaf ON
sa.AssessmentKey = aaf.AssessmentKey
AND
sa.ObjectiveAssessmentKey = aaf.ObjectiveAssessmentKey
AND
sa.AssessedGradeLevel = aaf.AssessedGradeLevel
AND
sa.ReportingMethod = aaf.ReportingMethod
WHERE
sa.Namespace = 'http://masteryconnect.com'
AND sa.ResultDatatype LIKE 'Integer';
GO
/****** Object: View [BI].[amt.MC_StudentAssessmentStudentObjectiveAssessmentScoreResult] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.MC_StudentAssessmentStudentObjectiveAssessmentScoreResult]
AS SELECT DISTINCT
sa.AssessmentIdentifier,
sa.ReportingMethod,
aaf.ObjectiveAssessmentDescription AS ObjectiveDescription,
sa.Namespace,
sa.StudentAssessmentIdentifier,
StudentSchoolKey,
StudentScore AS Result,
MaxScore AS MaxRawScore,
sa.PerformanceResult PerformanceLevel,
sa.ResultDatatype
FROM
analytics.asmt_StudentAssessmentFact sa
INNER JOIN
analytics.asmt_AssessmentFact aaf ON
sa.AssessmentKey = aaf.AssessmentKey
AND
sa.ObjectiveAssessmentKey = aaf.ObjectiveAssessmentKey
AND
sa.AssessedGradeLevel = aaf.AssessedGradeLevel
AND
sa.ReportingMethod = aaf.ReportingMethod
WHERE
sa.Namespace = 'http://masteryconnect.com'
AND sa.ResultDatatype LIKE 'Integer';
GO
/****** Object: View [BI].[amt.School] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.School]
AS SELECT
SchoolDim.LocalEducationAgencyKey AS LocalEducationAgencyId,
SchoolDim.SchoolName AS SchoolName,
SchoolDim.SchoolKey AS SchoolKey,
SchoolDim.SchoolType AS SchoolType
FROM
[analytics].[SchoolDim];
GO
/****** Object: View [BI].[amt.Section] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.Section]
AS SELECT
CAST(s.SchoolId AS VARCHAR) AS SchoolKey,
CAST(s.SchoolId AS NVARCHAR) + '-' + s.LocalCourseCode + '-' + CAST(s.SchoolYear AS NVARCHAR) + '-' + s.SectionIdentifier + '-' + s.SessionName AS SectionKey,
'' [ClassPeriodName],
[LocationClassroomIdentificationCode] [ClassroomIdentificationCode],
[LocalCourseCode],
'' AS Term,
[SchoolYear],
'' [UniqueSectionCode],
[SequenceOfCourse],
EducationalEnvironmentDescriptorId AS [EducationalEnvironmentTypeId],
[AvailableCredits],
sch.LocalEducationAgencyId
FROM
[edfi].[Section] s
--LEFT JOIN [edfi].[Descriptor] d on s.TermDescriptorId = d.DescriptorId
LEFT JOIN
[edfi].[School] sch ON
s.SchoolId = sch.SchoolId;
GO
/****** Object: View [BI].[amt.Staff] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.Staff]
AS SELECT
s.StaffUSI,
s.StaffUniqueId,
s.PersonalTitlePrefix,
s.FirstName,
s.MiddleName,
s.LastSurname,
s.GenerationCodeSuffix,
s.MaidenName,
sem.ElectronicMailAddress,
sa.StreetNumberName,
sa.ApartmentRoomSuiteNumber,
sa.City,
sat.ShortDescription AS State,
sa.PostalCode,
st.ShortDescription AS SexType,
s.BirthDate,
(CASE WHEN RT.ShortDescription IS NULL
THEN(CASE WHEN RaceDisp.Race IS NULL
THEN 'Unknown'
ELSE 'Multiracial'
END)
ELSE RT.[ShortDescription]
END) AS RaceType,
s.HispanicLatinoEthnicity,
s.OldEthnicityDescriptorId OldEthnicityTypeId,
d.ShortDescription AS HighestCompletedLevelOfEducation,
s.YearsOfPriorProfessionalExperience,
s.YearsOfPriorTeachingExperience,
s.HighlyQualifiedTeacher,
s.LoginId,
s.CitizenshipStatusDescriptorId CitizenshipStatusTypeId
FROM
edfi.Staff AS s
LEFT JOIN
edfi.Descriptor AS st ON
s.SexDescriptorId = st.DescriptorId
LEFT JOIN
edfi.Descriptor AS d ON
s.HighestCompletedLevelOfEducationDescriptorId = d.DescriptorId
LEFT JOIN
edfi.StaffElectronicMail AS sem ON
s.StaffUSI = sem.StaffUSI
LEFT JOIN
edfi.StaffAddress AS sa ON
s.StaffUSI = sa.StaffUSI
LEFT JOIN
edfi.Descriptor AS sat ON
sa.StateAbbreviationDescriptorId = sat.DescriptorId
LEFT JOIN
( SELECT DISTINCT
t1.StaffUSI,
STUFF(
( SELECT
CAST(t2.RaceDescriptorID AS VARCHAR(100))
FROM
edfi.StaffRace t2
WHERE
t2.StaffUSI = t1.StaffUSI FOR
XML PATH('')
), 1, 0, '') AS Race
FROM
edfi.StaffRace t1
) AS RaceDisp ON
S.[StaffUSI] = RaceDisp.StaffUSI
LEFT JOIN
edfi.Descriptor AS RT ON
RaceDisp.Race = RT.DescriptorId;
GO
/****** Object: View [BI].[amt.StaffEducationOrganizationAssignmentAssociation] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.StaffEducationOrganizationAssignmentAssociation]
AS SELECT
StaffUSI,
CAST(seoaa.EducationOrganizationId AS VARCHAR(500)) AS SchoolKey,
eo.NameOfInstitution AS School,
sch.LocalEducationAgencyId,
eo2.NameOfInstitution AS District,
sct.ShortDescription AS StaffClassificationType,
d.CodeValue AS StaffClassificationCode,
d.ShortDescription AS StaffClassificationShortDescription,
d.Description AS StaffClassificationDescription,
PositionTitle,
BeginDate,
EndDate
FROM
edfi.StaffEducationOrganizationAssignmentAssociation AS seoaa
LEFT JOIN
edfi.Descriptor AS d ON
seoaa.StaffClassificationDescriptorId = d.DescriptorId
LEFT JOIN
edfi.EducationOrganization AS eo ON
seoaa.EducationOrganizationId = eo.EducationOrganizationId
LEFT JOIN
edfi.School AS sch ON
sch.SchoolId = seoaa.EducationOrganizationId
LEFT JOIN
edfi.EducationOrganization AS eo2 ON
sch.LocalEducationAgencyId = eo2.EducationOrganizationId
LEFT JOIN
edfi.StaffClassificationDescriptor AS scd ON
seoaa.StaffClassificationDescriptorId = scd.StaffClassificationDescriptorId
LEFT JOIN
edfi.Descriptor AS sct ON
scd.StaffClassificationDescriptorId = sct.DescriptorId
WHERE(
YEAR(BeginDate) =
( SELECT
*
FROM
[bi].[eq24.YearStart]()
) - 10
OR
YEAR(BeginDate) =
( SELECT
*
FROM
[bi].[eq24.YearStart]()
) + 1);
GO
/****** Object: View [BI].[amt.StaffSectionAssociation] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.StaffSectionAssociation]
AS SELECT
[StaffUSI],
LocationClassroomIdentificationCode [ClassroomIdentificationCode],
CAST(ssa.[SchoolId] AS VARCHAR) AS SChoolKey,
CAST(s.SchoolId AS NVARCHAR) + '-' + ssa.LocalCourseCode + '-' + CAST(ssa.SchoolYear AS NVARCHAR) + '-' + ssa.SectionIdentifier + '-' + ssa.SessionName AS SectionKey,
'' [ClassPeriodName],
ssa.[LocalCourseCode],
ssa.[SchoolYear],
'' AS Term,
'' [UniqueSectionCode],
d2.ShortDescription AS ClassroomPosition,
[BeginDate],
[EndDate],
s.LocalEducationAgencyId
FROM
[edfi].[StaffSectionAssociation] ssa
INNER JOIN
edfi.Section ON
Section.LocalCourseCode = ssa.LocalCourseCode
AND
Section.SchoolId = ssa.SchoolId
AND
Section.SchoolYear = ssa.SchoolYear
AND
Section.SectionIdentifier = ssa.SectionIdentifier
AND
Section.SessionName = ssa.SessionName
LEFT JOIN
[edfi].[Descriptor] d2 ON
ssa.ClassroomPositionDescriptorId = d2.DescriptorId
LEFT JOIN
[edfi].[School] s ON
ssa.SchoolId = s.SchoolId;
GO
/****** Object: View [BI].[amt.Student] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.Student]
AS SELECT
NULL AS BirthDate,
'' AS CitizenshipStatusTypeId,
StudentSchoolDim.GradeLevel AS [Current Grade Level],
StudentSchoolDim.SchoolKey AS [Current School ID],
COALESCE(DemographicsEconomicDisadvantaged.IsEconomicDisadvantaged, 0) AS EconomicDisadvantaged,
COALESCE(Demographics.DemographicLabel, '') AS FederalRace,
StudentSchoolDim.StudentFirstName AS FirstName,
StudentSchoolDim.IsHispanic AS HispanicLatinoEthnicity,
StudentSchoolDim.StudentLastName AS LastSurname,
StudentSchoolDim.StudentMiddleName AS MiddleName,
'' AS OldEthnicityTypeId,
StudentSchoolDim.Sex AS SexType,
StudentSchoolDim.StudentSchoolKey AS StudentUniqueId,
StudentSchoolDim.StudentSchoolKey AS StudentSchoolKey
FROM
[analytics].[StudentSchoolDim]
OUTER APPLY
( SELECT TOP 1
DemographicLabel,
StudentSchoolDemographicsBridge.StudentSchoolKey
FROM
[analytics].[StudentSchoolDemographicsBridge]
INNER JOIN
[analytics].[DemographicDim] ON
DemographicDim.[DemographicKey] = StudentSchoolDemographicsBridge.[DemographicKey]
WHERE
DemographicParentKey = 'Race'
AND
StudentSchoolDemographicsBridge.StudentSchoolKey = StudentSchoolDim.StudentSchoolKey
) AS Demographics
OUTER APPLY
( SELECT TOP 1
1 AS IsEconomicDisadvantaged
FROM
[analytics].[StudentSchoolDemographicsBridge]
INNER JOIN
[analytics].[DemographicDim] ON
DemographicDim.[DemographicKey] = StudentSchoolDemographicsBridge.[DemographicKey]
WHERE
DemographicDim.DemographicKey = 'StudentCharacteristic:Economic Disadvantaged'
AND
StudentSchoolDemographicsBridge.StudentSchoolKey = StudentSchoolDim.StudentSchoolKey
) AS DemographicsEconomicDisadvantaged;
GO
/****** Object: View [BI].[amt.StudentAssessmentPerformanceLevel] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.StudentAssessmentPerformanceLevel]
AS SELECT DISTINCT
aaf.AssessmentKey,
aaf.AssessmentIdentifier,
sa.StudentAssessmentKey,
sa.StudentAssessmentIdentifier,
sa.StudentSchoolKey,
CAST(sa.AdministrationDate AS DATE) AS AdministrationDate,
aaf.AssessedGradeLevel AS GradeLevel,
aaf.AcademicSubject AS AcademicSubject,
sa.ReportingMethod AS AssessmentReportingMethodTypeId,
aaf.Title AS AssessmentTitle,
sa.StudentScore AS Result,
sa.Namespace AS Namespace,
aaf.Version AS Version
FROM
analytics.asmt_StudentAssessmentFact sa
INNER JOIN
analytics.asmt_AssessmentFact aaf ON
sa.AssessmentKey = aaf.AssessmentKey
AND
sa.ObjectiveAssessmentKey = aaf.ObjectiveAssessmentKey
AND
sa.AssessedGradeLevel = aaf.AssessedGradeLevel
AND
sa.ReportingMethod = aaf.ReportingMethod
WHERE
sa.ReportingMethod IN('Achievement/proficiency level', 'Raw score')--Raw score added for testing purposes.
AND aaf.AcademicSubject IN('Mathematics')
AND aaf.Title NOT IN('Curriculum Associates i-Ready Math Diagnostic', 'ACT', 'PERT', 'PER', 'PSANM', 'SAT 2016', 'PSAT 89');
GO
/****** Object: View [BI].[amt.StudentAssessmentScoreResult] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.StudentAssessmentScoreResult]
AS SELECT DISTINCT
aaf.AssessmentKey,
aaf.AssessmentIdentifier,
sa.StudentAssessmentKey,
sa.StudentAssessmentIdentifier,
sa.StudentSchoolKey,
CAST(sa.AdministrationDate AS DATE) AS AdministrationDate,
aaf.AssessedGradeLevel AS GradeLevel,
aaf.AcademicSubject AS AcademicSubject,
sa.ReportingMethod,
aaf.Title AS AssessmentTitle,
sa.StudentScore AS Result,
sa.Namespace AS Namespace,
aaf.Version AS Version
FROM
analytics.asmt_StudentAssessmentFact sa
INNER JOIN
analytics.asmt_AssessmentFact aaf ON
sa.AssessmentKey = aaf.AssessmentKey
AND
sa.ObjectiveAssessmentKey = aaf.ObjectiveAssessmentKey
AND
sa.AssessedGradeLevel = aaf.AssessedGradeLevel
AND
sa.ReportingMethod = aaf.ReportingMethod
WHERE
sa.ReportingMethod IN('Scale score', 'Raw score')--Raw score added for testing purposes.
AND aaf.AcademicSubject IN('Mathematics')
AND aaf.Title NOT IN('Curriculum Associates i-Ready Math Diagnostic', 'ACT', 'PERT', 'PER', 'PSANM', 'SAT 2016', 'PSAT 89');
GO
/****** Object: View [BI].[amt.StudentAssessmentStudentObjectiveAssessmentPointsPossible] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.StudentAssessmentStudentObjectiveAssessmentPointsPossible]
AS SELECT DISTINCT
aaf.AssessmentIdentifier,
aaf.ObjectiveAssessmentKey,
sa.StudentObjectiveAssessmentKey,
sa.ReportingMethod AS ReportingMethod,
aaf.IdentificationCode AS IdentificationCode,
sa.Namespace AS Namespace,
sa.StudentObjectiveAssessmentKey AS StudentAssessmentIdentifier,
sa.StudentSchoolKey AS StudentSchoolKey,
sa.StudentScore AS Result,
sa.ResultDataType AS ResultDatatype
FROM
analytics.asmt_StudentAssessmentFact sa
INNER JOIN
analytics.asmt_AssessmentFact aaf ON
sa.AssessmentKey = aaf.AssessmentKey
AND
sa.ObjectiveAssessmentKey = aaf.ObjectiveAssessmentKey
AND
sa.AssessedGradeLevel = aaf.AssessedGradeLevel
AND
sa.ReportingMethod = aaf.ReportingMethod
WHERE
aaf.AcademicSubject LIKE '%Mathematics%'
AND sa.ResultDataType LIKE 'Integer';
/*IdentificationCode like '%_PP'
AND StudentAssessmentIdentifier like '%_Mathematics_%'*/
GO
/****** Object: View [BI].[AMT.StudentAssessmentStudentObjectiveAssessmentScoreResult] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[AMT.StudentAssessmentStudentObjectiveAssessmentScoreResult]
AS SELECT DISTINCT
aaf.AssessmentIdentifier,
aaf.ObjectiveAssessmentKey,
sa.StudentObjectiveAssessmentKey,
sa.ReportingMethod AS ReportingMethod,
aaf.IdentificationCode AS IdentificationCode,
sa.Namespace AS Namespace,
sa.StudentObjectiveAssessmentKey AS StudentAssessmentIdentifier,
sa.StudentSchoolKey AS StudentSchoolKey,
sa.StudentScore AS Result,
sa.ResultDataType AS ResultDatatype
FROM
analytics.asmt_StudentAssessmentFact sa
INNER JOIN
analytics.asmt_AssessmentFact aaf ON
sa.AssessmentKey = aaf.AssessmentKey
AND
sa.ObjectiveAssessmentKey = aaf.ObjectiveAssessmentKey
AND
sa.AssessedGradeLevel = aaf.AssessedGradeLevel
AND
sa.ReportingMethod = aaf.ReportingMethod
WHERE
aaf.[AcademicSubject] LIKE '%Mathematics%'
AND sa.ResultDataType LIKE 'Integer';
/*IdentificationCode like '%_PP'
AND StudentAssessmentIdentifier like '%_Mathematics_%'*/
GO
/****** Object: View [BI].[amt.StudentProgramAssociation] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.StudentProgramAssociation]
AS SELECT
CONCAT(student.StudentUniqueId, '-', SchoolId) AS StudentSchoolKey,
[ProgramName],
MAX([BeginDate]) AS BeginDate,
NULL [EndDate]
FROM
[edfi].[StudentProgramAssociation]
INNER JOIN
edfi.Student ON
StudentProgramAssociation.StudentUSI = Student.StudentUSI
INNER JOIN
edfi.StudentSchoolAssociation ON
Student.StudentUSI = StudentSchoolAssociation.StudentUSI
/*WHERE StudentUSI IN (SELECT DISTINCT [StudentUSI]
FROM [bi].[eq24.StudentSchoolAssociation]
WHERE LocalEducationAgencyId = 38)
*/
GROUP BY
CONCAT(student.StudentUniqueId, '-', SchoolId),
[ProgramName];
-- ,[EndDate]
GO
/****** Object: View [BI].[amt.StudentSchoolAssociation] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.StudentSchoolAssociation]
AS SELECT
StudentSchoolDim.[StudentSchoolKey] AS StudentSchoolKey,
StudentSchoolDim.[SchoolKey] AS [SchoolKey],
SchoolDim.[SchoolName] AS NameOfInstitution,
StudentSchoolDim.[SchoolYear] AS SchoolYear,
StudentSchoolDim.[EnrollmentDateKey] AS EntryDate,
'' AS EntryGradeLevelDescriptorId,
StudentSchoolDim.[GradeLevel] AS [Grade Level],
StudentSchoolDim.[GradeLevel] AS GradeLevelNum,
NULL AS ExitWithdrawDate,
NULL AS ExitWithdrawCode,
NULL AS ExitWithdrawDescription,
0 AS ClassOfSchoolYear,
'' AS GraduationSchoolYear,
SchoolDim.LocalEducationAgencyKey AS LocalEducationAgencyId
FROM
[analytics].[StudentSchoolDim]
INNER JOIN
[analytics].[SchoolDim] ON
StudentSchoolDim.[SchoolKey] = SchoolDim.[SchoolKey];
GO
/****** Object: View [BI].[amt.StudentSectionAssociation] Script Date: 3/17/2021 2:27:16 PM ******/
SET ANSI_NULLS ON;
GO
SET QUOTED_IDENTIFIER ON;
GO
CREATE OR ALTER VIEW [BI].[amt.StudentSectionAssociation]
AS SELECT
CONCAT(StudentSectionDim.[StudentKey], '-', StudentSectionDim.[SchoolKey]) AS StudentSchoolKey,
StudentSectionDim.StudentSectionKey,
StudentSectionDim.SchoolKey AS SchoolKey,
StudentSectionDim.SectionKey,
'' AS ClassPeriodName,
'' AS ClassroomIdentificationCode,
StudentSectionDim.LocalCourseCode AS LocalCourseCode,
'' AS UniqueSectionCode,
'' AS SequenceOfCourse,
StudentSectionDim.SchoolYear AS SchoolYear,
'' AS Term,
CAST(StudentSectionDim.StudentSectionStartDateKey AS DATE) AS BeginDate,
CAST(StudentSectionDim.StudentSectionEndDateKey AS DATE) AS EndDate,
0 AS HomeroomIndicator,
SchoolDim.LocalEducationAgencyKey AS LocalEducationAgencyId
FROM
analytics.StudentSectionDim
INNER JOIN
analytics.SchoolDim ON
StudentSectionDim.SchoolKey = SchoolDim.SchoolKey;
-- WHERE SUBSTRING(LocalCourseCode,11,2) in ( '12')
GO |
-- :burn_list_base
select d.block, d.actor, d.type, d.amount, d.oracle_price
from dc_burns d
:scope
order by d.block desc, d.actor
:limit
-- :burn_list_scope
where d.type = ANY($1)
-- :burn_list_before_scope
where d.type = ANY($1)
and (d.actor > $2 and d.block = $3) or (d.block < $3)
-- :burn_stats
with month_interval as (
select sum(d.amount) as amount, d.time, d.type
from dc_burns d
where d.time > extract(epoch from (now() - '1 month'::interval))
group by d.time, d.type
),
week_interval as (
select * from month_interval
where time > extract(epoch from (now() - '1 week'::interval))
),
day_interval as (
select * from week_interval
where time > extract(epoch from (now() - '24 hour'::interval))
)
select 'last_day', t.type, sum(t.amount)::bigint from day_interval t group by t.type
union
select 'last_week', t.type, sum(t.amount)::bigint from week_interval t group by t.type
union
select 'last_month', t.type, sum(t.amount)::bigint from month_interval t group by t.type; |
delete from payment;
delete from virtual_account;
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('c98232d6-cead-4005-aaac-4ad26008ca0c', '20180820001', '081234567890', 'CLOSED', 'TAZKIAPMB1', '<NAME>', 123000, '2018-08-01 23:59:59', '2019-02-01', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('18bc72cc-fd13-4371-81bb-b05251a62235', '20180820002', '081234567891', 'CLOSED', 'TAZKIAPMB1', '<NAME>', 250000, '2018-08-01 23:59:59', '2019-02-01', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('2579fcce-be7b-48cf-b065-f05d25aba01c', '20180820003', '081234567892', 'OPEN', 'TAZKIAINF1', 'Donasi Lombok', 10000, '2018-08-01 23:59:59', '2019-02-01', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('0a03e5fd-e2d7-43d6-aaf4-db6c14e06a88', '20180820004', '081234567893', 'INSTALLMENT', 'TAZKIAASR1', 'Asrama a.n Mahasiswi 001', 10000000, '2018-08-01 23:59:59', '2019-02-01', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('f551cacb-fdec-4de9-98a8-1007441612db', '20180820005', '081234567894', 'CLOSED', 'TAZKIASPP1', 'SPP Tetap a.n Mahasiswa 001', 500000, '2018-08-01 23:59:59', '2019-02-01', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('82ed5496-fa32-4b48-9442-d91e76b6963d', '20180820006', '081234567895', 'CLOSED', 'TAZKIASPP2', 'SPP Variabel a.n Mahasiswa 001', 750000, '2018-08-01 23:59:59', '2019-02-01', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('2579fcce-be7b-48cf-b065-f05d25aba01d', '20180820007', '081234567896', 'OPEN', 'TAZKIAINF2', 'Infaq Shadaqah', 20000, '2018-08-01 23:59:59', '2019-02-01', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('0a03e5fd-e2d7-43d6-aaf4-db6c14e06a80', '20180820008', '081234567897', 'INSTALLMENT', 'TAZKIAGED1', 'Uang Gedung', 15000000, '2018-08-01 23:59:59', '2019-02-01', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('0a03e5fd-e2d7-43d6-aaf4-db6c14e06a11', '20180903001', '123456789012345601', 'CLOSED', 'TAZKIATES1', 'Test Account 001', 120001, '2018-09-03 08:01:00', '2019-02-01', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('0a03e5fd-e2d7-43d6-aaf4-db6c14e06a12', '20180903002', '123456789012345602', 'CLOSED', 'TAZKIATES1', 'Test Account 002', 120002, '2018-09-03 08:02:00', '2019-02-02', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('0a03e5fd-e2d7-43d6-aaf4-db6c14e06a13', '20180903003', '123456789012345603', 'CLOSED', 'TAZKIATES1', 'Test Account 003', 120003, '2018-09-03 08:03:00', '2019-02-03', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('3579fcce-be7b-48cf-b065-f05d25aba01d', '20181123001', '080234567896', 'OPEN', 'TAZKIAINF2', 'Test Open Account 001', 10001, '2018-11-01 23:59:59', '2019-02-01', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('4579fcce-be7b-48cf-b065-f05d25aba01d', '20181123002', '081234567896', 'OPEN', 'TAZKIAINF2', 'Test Open Account 002', 10002, '2018-11-01 23:59:59', '2019-02-01', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('5579fcce-be7b-48cf-b065-f05d25aba01d', '20181123003', '082234567896', 'OPEN', 'TAZKIAINF2', 'Test Open Account 003', 10003, '2018-11-01 23:59:59', '2019-02-01', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('6579fcce-be7b-48cf-b065-f05d25aba01d', '20181123004', '083234567896', 'OPEN', 'TAZKIAINF2', 'Test Open Account 004', 10004, '2018-11-01 23:59:59', '2019-02-01', 'ACTIVE');
insert into virtual_account (id, invoice_number, account_number, account_type, invoice_type, name, amount, create_time, expire_date, account_status)
values ('7579fcce-be7b-48cf-b065-f05d25aba01d', '20181123005', '084234567896', 'OPEN', 'TAZKIAINF2', 'Test Open Account 005', 10005, '2018-11-01 23:59:59', '2019-02-01', 'ACTIVE');
|
<reponame>alexbudarov/sample-gis-datatypes
create table CRUISESAMPLE_ROUTE_PORT_LINK (
ROUTE_ID varchar(36) not null,
PORT_ID varchar(36) not null,
primary key (ROUTE_ID, PORT_ID)
);
|
<filename>server/app/service/oms/migrations/20210407102311_oms_company_address.up.sql
CREATE TABLE `oms_company_address` (
`id` bigint(20) unsigned NOT NULL,
`app_id` bigint(20) unsigned NULL DEFAULT NULL ,
`address_name` varchar(200) DEFAULT NULL COMMENT '地址名称',
`send_status` int(1) DEFAULT NULL COMMENT '默认发货地址:0->否;1->是',
`receive_status` int(1) DEFAULT NULL COMMENT '是否默认收货地址:0->否;1->是',
`name` varchar(64) DEFAULT NULL COMMENT '收发货人姓名',
`phone` varchar(64) DEFAULT NULL COMMENT '收货人电话',
`province` varchar(64) DEFAULT NULL COMMENT '省/直辖市',
`city` varchar(64) DEFAULT NULL COMMENT '市',
`region` varchar(64) DEFAULT NULL COMMENT '区',
`detail_address` varchar(200) DEFAULT NULL COMMENT '详细地址',
`create_by` bigint(20) DEFAULT NULL,
`update_by` bigint(20) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='公司收发货地址表'; |
DROP FUNCTION IF EXISTS finance.get_cash_repository_id_by_cash_repository_name(text);
CREATE FUNCTION finance.get_cash_repository_id_by_cash_repository_name(text)
RETURNS integer
AS
$$
BEGIN
RETURN
(
SELECT cash_repository_id
FROM finance.cash_repositories
WHERE finance.cash_repositories.cash_repository_name=$1
AND NOT finance.cash_repositories.deleted
);
END
$$
LANGUAGE plpgsql;
|
PRAGMA foreign_keys=OFF;
BEGIN EXCLUSIVE TRANSACTION;
PRAGMA user_version = 9;
CREATE TABLE shared_path_new (
path_id INTEGER PRIMARY KEY,
path VARCHAR NOT NULL,
path_label VARCHAR NOT NULL,
owner_app_name TEXT NOT NULL,
UNIQUE (path)
);
CREATE TABLE app_private_sharing_new (
target_app_name TEXT NOT NULL,
path_id INTEGER NOT NULL,
counter INTEGER NOT NULL,
PRIMARY KEY (target_app_name, path_id)
FOREIGN KEY (path_id) REFERENCES shared_path (path_id)
);
INSERT INTO shared_path_new
SELECT shared_path.path_id, path, path_label, owner_app_name
FROM shared_path, app_private_sharing
WHERE shared_path.path_id = app_private_sharing.path_id;
INSERT INTO app_private_sharing_new
SELECT target_app_name, path_id, counter
FROM app_private_sharing;
DROP TABLE shared_path;
DROP TABLE app_private_sharing;
ALTER TABLE shared_path_new RENAME TO shared_path;
ALTER TABLE app_private_sharing_new RENAME TO app_private_sharing;
PRAGMA foreign_key_check;
COMMIT TRANSACTION;
PRAGMA foreign_keys=ON;
|
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Servidor: localhost
-- Tiempo de generación: 12-09-2015 a las 11:20:49
-- Versión del servidor: 5.6.26
-- Versión de PHP: 5.5.9-1ubuntu4.11
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 */;
--
-- Base de datos: `sigym`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `auth_assignment`
--
CREATE TABLE IF NOT EXISTS `auth_assignment` (
`item_name` varchar(64) COLLATE utf8_spanish_ci NOT NULL,
`user_id` varchar(64) COLLATE utf8_spanish_ci NOT NULL,
`created_at` int(11) DEFAULT NULL,
PRIMARY KEY (`item_name`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `auth_item`
--
CREATE TABLE IF NOT EXISTS `auth_item` (
`name` varchar(64) COLLATE utf8_spanish_ci NOT NULL,
`type` int(11) NOT NULL,
`description` text COLLATE utf8_spanish_ci,
`rule_name` varchar(64) COLLATE utf8_spanish_ci DEFAULT NULL,
`data` text COLLATE utf8_spanish_ci,
`created_at` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
PRIMARY KEY (`name`),
KEY `rule_name` (`rule_name`),
KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `auth_item_child`
--
CREATE TABLE IF NOT EXISTS `auth_item_child` (
`parent` varchar(64) COLLATE utf8_spanish_ci NOT NULL,
`child` varchar(64) COLLATE utf8_spanish_ci NOT NULL,
PRIMARY KEY (`parent`,`child`),
KEY `child` (`child`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `auth_rule`
--
CREATE TABLE IF NOT EXISTS `auth_rule` (
`name` varchar(64) COLLATE utf8_spanish_ci NOT NULL,
`data` text COLLATE utf8_spanish_ci,
`created_at` int(11) DEFAULT NULL,
`updated_at` int(11) DEFAULT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `ejercicio`
--
CREATE TABLE IF NOT EXISTS `ejercicio` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`musculoid` int(10) unsigned NOT NULL,
`ejercicio` varchar(80) COLLATE utf8_spanish_ci NOT NULL COMMENT '\n',
`descripcion` text COLLATE utf8_spanish_ci NOT NULL COMMENT '\n\n',
`imagen` varchar(255) COLLATE utf8_spanish_ci NOT NULL,
`video` varchar(255) COLLATE utf8_spanish_ci DEFAULT NULL,
`usuariocrea` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechacrea` datetime DEFAULT NULL,
`usuariomodifica` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechamodifica` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `fk_ejercicio_musculo1_idx` (`musculoid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci AUTO_INCREMENT=8 ;
--
-- Volcado de datos para la tabla `ejercicio`
--
INSERT INTO `ejercicio` (`id`, `musculoid`, `ejercicio`, `descripcion`, `imagen`, `video`, `usuariocrea`, `fechacrea`, `usuariomodifica`, `fechamodifica`) VALUES
(7, 1, 'BICEPS EN BANCO', ' Lorem ipsum dolor sit amet, consectetur adipiscing elit. In nec odio eu quam efficitur dignissim. Donec eu neque dolor. Sed facilisis mollis turpis eget feugiat. Nunc pretium eros pellentesque dui consectetur, in malesuada dui tincidunt. Sed convallis, arcu eget porttitor cursus, quam magna efficitur nibh, tincidunt porttitor turpis sapien id neque. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Aliquam volutpat, nibh sed aliquam suscipit, metus felis aliquet lorem, sit amet interdum erat lectus quis sem. Quisque sed quam sed est sagittis gravida. Proin ac rhoncus massa. Vivamus mollis, lorem in porta tincidunt, arcu quam efficitur mauris, id hendrerit libero odio sit amet massa. Nullam ut metus aliquam, dictum sem viverra, cursus lectus. In hac habitasse platea dictumst. Quisque in lectus ac purus elementum blandit.', 'uploads/ejerciciodesubidadeimagen.png', '<iframe width="560" height="315" src="https://www.youtube.com/embed/q10Vm7YVpLM" frameborder="0" allowfullscreen></iframe>', '1', '2015-09-09 17:48:00', '1', '2015-09-12 10:02:24');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `estado`
--
CREATE TABLE IF NOT EXISTS `estado` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`estado` varchar(45) COLLATE utf8_spanish_ci NOT NULL,
`usuariocrea` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechacrea` datetime DEFAULT NULL,
`usuariomodifica` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechamodifica` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci AUTO_INCREMENT=3 ;
--
-- Volcado de datos para la tabla `estado`
--
INSERT INTO `estado` (`id`, `estado`, `usuariocrea`, `fechacrea`, `usuariomodifica`, `fechamodifica`) VALUES
(1, 'ACTIVO', '1', '2015-09-07 17:05:06', '1', '2015-09-07 17:05:31'),
(2, 'INACTIVO', '1', '2015-09-07 17:05:20', '1', '2015-09-07 17:05:20');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `membresia`
--
CREATE TABLE IF NOT EXISTS `membresia` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`estadoid` int(10) unsigned NOT NULL,
`membresia` varchar(80) COLLATE utf8_spanish_ci NOT NULL,
`descripcion` text COLLATE utf8_spanish_ci NOT NULL,
`valor` double NOT NULL,
`cantidadmeses` int(11) NOT NULL,
`cantidaddias` int(11) NOT NULL,
`usuariocrea` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechacrea` datetime DEFAULT NULL,
`usuariomodifica` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechamodifica` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `fk_membresia_estado1_idx` (`estadoid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci AUTO_INCREMENT=4 ;
--
-- Volcado de datos para la tabla `membresia`
--
INSERT INTO `membresia` (`id`, `estadoid`, `membresia`, `descripcion`, `valor`, `cantidadmeses`, `cantidaddias`, `usuariocrea`, `fechacrea`, `usuariomodifica`, `fechamodifica`) VALUES
(1, 1, 'MEMBRESÍA PARA UN DÍA', 'esta membresía le permite a la persona permanecer 1 día en el gymnasio', 3000, 0, 1, '1', '2015-09-07 17:43:17', '1', '2015-09-07 17:52:25'),
(2, 1, 'MEMBRESÍA PARA UN MES', 'Esta membresía le permite al usuario hacer parte del centro de acondicionamiento físico por un periodo no mayor a 30 días', 40000, 1, 30, '1', '2015-09-09 18:22:10', '1', '2015-09-09 18:22:10'),
(3, 1, 'MEMBRESIA PARA TRES MESES', 'ESTA MEMBRESÍA LE PERMITE AL CLIENTE HACER PARTE DE EL GYM POR UN PERIODO DE TIEMPO NO MAYOR A 3 MESES', 120000, 3, 90, '1', '2015-09-10 10:51:07', '1', '2015-09-10 10:51:07');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `musculo`
--
CREATE TABLE IF NOT EXISTS `musculo` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`musculo` varchar(50) COLLATE utf8_spanish_ci NOT NULL,
`usuariocrea` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechacrea` datetime DEFAULT NULL,
`usuariomodifica` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechamodifica` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci AUTO_INCREMENT=2 ;
--
-- Volcado de datos para la tabla `musculo`
--
INSERT INTO `musculo` (`id`, `musculo`, `usuariocrea`, `fechacrea`, `usuariomodifica`, `fechamodifica`) VALUES
(1, 'BICEPS', '1', '2015-09-08 08:31:15', '1', '2015-09-08 08:32:12');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `persona`
--
CREATE TABLE IF NOT EXISTS `persona` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`sexoid` int(10) unsigned NOT NULL,
`tipodocumentoid` int(10) unsigned NOT NULL,
`documento` varchar(16) COLLATE utf8_spanish_ci NOT NULL,
`primernombre` varchar(45) COLLATE utf8_spanish_ci NOT NULL,
`segundonombre` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`primerapellido` varchar(45) COLLATE utf8_spanish_ci NOT NULL,
`segundoapellido` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`direccion` varchar(80) COLLATE utf8_spanish_ci DEFAULT NULL,
`telefono` varchar(15) COLLATE utf8_spanish_ci DEFAULT NULL,
`email` varchar(80) COLLATE utf8_spanish_ci NOT NULL,
`estatura` double NOT NULL,
`peso` double NOT NULL,
`edad` int(11) NOT NULL,
`imc` double NOT NULL,
`pgc` double NOT NULL,
`usuariocrea` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechacrea` datetime DEFAULT NULL,
`usuariomodifica` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechamodifica` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `fk_persona_tipodocumento_idx` (`tipodocumentoid`),
KEY `fk_persona_sexo1_idx` (`sexoid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci AUTO_INCREMENT=3 ;
--
-- Volcado de datos para la tabla `persona`
--
INSERT INTO `persona` (`id`, `sexoid`, `tipodocumentoid`, `documento`, `primernombre`, `segundonombre`, `primerapellido`, `segundoapellido`, `direccion`, `telefono`, `email`, `estatura`, `peso`, `edad`, `imc`, `pgc`, `usuariocrea`, `fechacrea`, `usuariomodifica`, `fechamodifica`) VALUES
(1, 1, 1, '1054556735', 'CRISTIAN', 'FABIAN', 'CASTILLO', 'LOPEZ', 'K 3 20 60', '3128296605', '<EMAIL>', 1.73, 90, 23, 30, 25.09, '1', '2015-09-09 00:00:00', '1', '2015-09-09 00:00:00'),
(2, 1, 1, '1054552330', 'NILSON', 'FERNANDO', 'CASTILLO', 'LOPEZ', 'K 3 20 60', '', '<EMAIL>', 1.72, 71, 25, 23.666666666667, 17.95, '1', '2015-09-09 00:00:00', '1', '2015-09-09 00:00:00');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `personamembresia`
--
CREATE TABLE IF NOT EXISTS `personamembresia` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`personaid` int(10) unsigned NOT NULL,
`membresiaid` int(10) unsigned NOT NULL,
`estadoid` int(10) unsigned NOT NULL,
`fechainicio` date NOT NULL,
`fechafin` date NOT NULL,
`usuariocrea` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechacrea` datetime DEFAULT NULL,
`usuariomodifica` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechamodifica` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `fk_persona_has_membresia_membresia1_idx` (`membresiaid`),
KEY `fk_persona_has_membresia_persona1_idx` (`personaid`),
KEY `fk_personamembresia_estado1_idx` (`estadoid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci AUTO_INCREMENT=5 ;
--
-- Volcado de datos para la tabla `personamembresia`
--
INSERT INTO `personamembresia` (`id`, `personaid`, `membresiaid`, `estadoid`, `fechainicio`, `fechafin`, `usuariocrea`, `fechacrea`, `usuariomodifica`, `fechamodifica`) VALUES
(1, 1, 2, 2, '2015-09-09', '2015-10-09', '1', '2015-09-10 00:00:00', '1', '2015-09-10 00:00:00'),
(2, 2, 1, 1, '2015-09-09', '2015-09-10', '1', '2015-09-10 00:00:00', '1', '2015-09-10 00:00:00'),
(3, 2, 2, 1, '2015-09-01', '2015-10-01', '1', '2015-09-10 00:00:00', '1', '2015-09-10 00:00:00'),
(4, 1, 2, 1, '2015-09-10', '2015-10-10', NULL, NULL, NULL, NULL);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `sexo`
--
CREATE TABLE IF NOT EXISTS `sexo` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`sexo` varchar(45) COLLATE utf8_spanish_ci NOT NULL,
`usuariocrea` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechacrea` datetime DEFAULT NULL,
`usuariomodifica` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechamodifica` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id_UNIQUE` (`id`),
UNIQUE KEY `sexo_UNIQUE` (`sexo`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci AUTO_INCREMENT=3 ;
--
-- Volcado de datos para la tabla `sexo`
--
INSERT INTO `sexo` (`id`, `sexo`, `usuariocrea`, `fechacrea`, `usuariomodifica`, `fechamodifica`) VALUES
(1, 'MASCULINO', '1', '2015-09-08 17:27:07', '1', '2015-09-08 17:27:07'),
(2, 'FEMENINO', '1', '2015-09-10 10:54:16', '1', '2015-09-10 10:54:16');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `tipodocumento`
--
CREATE TABLE IF NOT EXISTS `tipodocumento` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`abreviatura` varchar(4) COLLATE utf8_spanish_ci NOT NULL,
`tipodocumento` varchar(80) COLLATE utf8_spanish_ci NOT NULL,
`usuariocrea` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechacrea` datetime DEFAULT NULL,
`usuariomodifica` varchar(45) COLLATE utf8_spanish_ci DEFAULT NULL,
`fechamodifica` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci AUTO_INCREMENT=3 ;
--
-- Volcado de datos para la tabla `tipodocumento`
--
INSERT INTO `tipodocumento` (`id`, `abreviatura`, `tipodocumento`, `usuariocrea`, `fechacrea`, `usuariomodifica`, `fechamodifica`) VALUES
(1, 'C.C', 'CÉDULA DE CIUDADANÍA', '1', '2015-09-08 16:52:53', '1', '2015-09-08 16:52:53'),
(2, 'T.I', 'TARJETA DE IDENTIDAD', '1', '2015-09-08 16:53:11', '1', '2015-09-08 16:53:11');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `user`
--
CREATE TABLE IF NOT EXISTS `user` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`username` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`auth_key` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`password_hash` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password_reset_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`status` smallint(6) NOT NULL DEFAULT '10',
`fechacrea` datetime NOT NULL,
`fechamodifica` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
--
-- Volcado de datos para la tabla `user`
--
INSERT INTO `user` (`id`, `name`, `username`, `auth_key`, `password_hash`, `password_reset_token`, `email`, `status`, `fechacrea`, `fechamodifica`) VALUES
(1, 'admin', 'admin', 'p<PASSWORD>WPm-kgPI9rBduF-RONfIcq', <PASSWORD>', NULL, '<EMAIL>', 10, '2015-06-22 15:18:33', '2015-06-22 15:18:33');
--
-- Restricciones para tablas volcadas
--
--
-- Filtros para la tabla `auth_assignment`
--
ALTER TABLE `auth_assignment`
ADD CONSTRAINT `auth_assignment_ibfk_1` FOREIGN KEY (`item_name`) REFERENCES `auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Filtros para la tabla `auth_item`
--
ALTER TABLE `auth_item`
ADD CONSTRAINT `auth_item_ibfk_1` FOREIGN KEY (`rule_name`) REFERENCES `auth_rule` (`name`) ON DELETE SET NULL ON UPDATE CASCADE;
--
-- Filtros para la tabla `auth_item_child`
--
ALTER TABLE `auth_item_child`
ADD CONSTRAINT `auth_item_child_ibfk_1` FOREIGN KEY (`parent`) REFERENCES `auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `auth_item_child_ibfk_2` FOREIGN KEY (`child`) REFERENCES `auth_item` (`name`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Filtros para la tabla `ejercicio`
--
ALTER TABLE `ejercicio`
ADD CONSTRAINT `fk_ejercicio_musculo1` FOREIGN KEY (`musculoid`) REFERENCES `musculo` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Filtros para la tabla `membresia`
--
ALTER TABLE `membresia`
ADD CONSTRAINT `fk_membresia_estado1` FOREIGN KEY (`estadoid`) REFERENCES `estado` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Filtros para la tabla `persona`
--
ALTER TABLE `persona`
ADD CONSTRAINT `fk_persona_sexo1` FOREIGN KEY (`sexoid`) REFERENCES `sexo` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT `fk_persona_tipodocumento` FOREIGN KEY (`tipodocumentoid`) REFERENCES `tipodocumento` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION;
--
-- Filtros para la tabla `personamembresia`
--
ALTER TABLE `personamembresia`
ADD CONSTRAINT `fk_persona_has_membresia_membresia1` FOREIGN KEY (`membresiaid`) REFERENCES `membresia` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT `fk_persona_has_membresia_persona1` FOREIGN KEY (`personaid`) REFERENCES `persona` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT `fk_personamembresia_estado1` FOREIGN KEY (`estadoid`) REFERENCES `estado` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION;
DELIMITER $$
--
-- Eventos
--
CREATE DEFINER=`root`@`localhost` EVENT `ActualizaEstadoPersonaMembresia` ON SCHEDULE EVERY 1 DAY STARTS '2015-01-01 00:00:00' ON COMPLETION NOT PRESERVE ENABLE DO UPDATE personamembresia SET estadoid = 2, fechamodifica = NOW() where fechafin < NOW()$$
DELIMITER ;
/*!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 */;
|
/*
add_african_languages.sql is a MySQL script intended to add
multiple African (and some other) languages to ISFDB
Version: $Revision: 15 $
Date: $Date: 2017-10-31 16:32:38 -0400 (Tue, 31 Oct 2017) $
(C) COPYRIGHT 2018 Ahasuerus
ALL RIGHTS RESERVED
The copyright notice above does not evidence any actual or
intended publication of such source code.
*/
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (116, 'ssa','Nilo-Saharan language');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (117, 'bam','Bambara');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (118, 'bnt','Bantu language');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (119, 'nic','Niger-Kordofanian language');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (120, 'ewe','Ewe');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (121, 'ibo','Igbo');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (122, 'kam','Kamba');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (123, 'kan','Kannada');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (124, 'kik','Kikuyu/Gikuyu');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (125, 'kur','Kurdish');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (126, 'lin','Lingala');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (127, 'cpf','Creole or pidgin, French-based');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (128, 'cai','Central American Indian language');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (129, 'niq','Nandi');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (130, 'cpe','Creole or pidgin, English-based');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (131, 'tig','Tigre');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (132, 'tir','Tigrinya');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (133, 'tso','Tsonga');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (134, 'tsn','Tswana');
INSERT INTO languages (lang_id, lang_code, lang_name) VALUES (135, 'zul','Zulu');
|
<filename>database/update-2017-08-09.sql
CREATE TABLE IF NOT EXISTS `grab`.`double_continuity` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`alias` VARCHAR(100) NOT NULL COMMENT '别名',
`package_a` TEXT NOT NULL,
`package_b` TEXT NOT NULL,
`status` TINYINT(1) NOT NULL DEFAULT 0 COMMENT '报警\n0 = > 关闭\n1 = > 开启',
`start` CHAR(3) NOT NULL,
`end` CHAR(3) NOT NULL,
`number` TINYINT(3) NOT NULL COMMENT '报警期数',
PRIMARY KEY (`id`))
ENGINE = MyISAM
DEFAULT CHARACTER SET = utf8
COMMENT = '双包玩法'; |
-- @testpoint: 列存普通表,创建主键\唯一约束\唯一索引,验证支持字段数量,部分step合理报错
--测试点一:创建列存表,声明多字段(32),创建主键约束
--step1:测试点一,创建普通列存表,声明多个字段,同时声明主键约束 expect:成功
drop table if exists t_columns_unique_index_0078_01;
create table t_columns_unique_index_0078_01(
id1 smallint, id2 integer, id3 decimal, id4 bigint, id5 tinyint,
id6 smallint, id7 integer, id8 decimal, id9 bigint, id10 tinyint,
id11 smallint, id12 integer, id13 decimal, id14 bigint, id15 tinyint,
id16 smallint, id17 integer, id18 decimal, id19 bigint, id20 tinyint,
id21 smallint, id22 integer, id23 decimal, id24 bigint, id25 tinyint,
id26 smallint, id27 integer, id28 decimal, id29 bigint, id30 tinyint,
id31 smallint, id32 integer,
primary key(id1,id2,id3,id4,id5,id6,id7,id8,id9,id10,id11,id12,id13,id14,id15,id16,id17,id18,id19,id20,
id21,id22,id23,id24,id25,id26,id27,id28,id29,id30,id31,id32)) with(orientation=column);
--step2:测试点一,插入数据 expect:成功
insert into t_columns_unique_index_0078_01 values(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32);
--step3:测试点一,再次插入重复数据 expect:插入失败
insert into t_columns_unique_index_0078_01 values(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32);
--step4:测试点一,清理环境 expect:成功
drop table t_columns_unique_index_0078_01;
--测试点二:创建列存表,声明多字段(32),创建唯一约束
--step1:测试点二,创建普通列存表,声明多个字段,同时声明唯一约束 expect:成功
drop table if exists t_columns_unique_index_0078_02;
create table t_columns_unique_index_0078_02(
id1 smallint, id2 integer, id3 decimal, id4 bigint, id5 tinyint,
id6 smallint, id7 integer, id8 decimal, id9 bigint, id10 tinyint,
id11 smallint, id12 integer, id13 decimal, id14 bigint, id15 tinyint,
id16 smallint, id17 integer, id18 decimal, id19 bigint, id20 tinyint,
id21 smallint, id22 integer, id23 decimal, id24 bigint, id25 tinyint,
id26 smallint, id27 integer, id28 decimal, id29 bigint, id30 tinyint,
id31 smallint, id32 integer,
constraint const_78 unique(id1,id2,id3,id4,id5,id6,id7,id8,id9,id10,id11,id12,id13,id14,id15,id16,id17,id18,id19,id20,
id21,id22,id23,id24,id25,id26,id27,id28,id29,id30,id31,id32)) with(orientation=column);
--step2:测试点二,插入数据 expect:成功
insert into t_columns_unique_index_0078_02 values(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32);
--step3:测试点二,再次插入重复数据 expect:插入失败
insert into t_columns_unique_index_0078_02 values(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32);
--step4:测试点二,清理环境 expect:成功
drop table t_columns_unique_index_0078_02;
--测试点三:创建列存表,声明多字段(32),创建唯一索引
--step1:测试点三,创建普通列存表,声明多个字段 expect:成功
drop table if exists t_columns_unique_index_0078_03;
create table t_columns_unique_index_0078_03(
id1 smallint, id2 integer, id3 decimal, id4 bigint, id5 tinyint,
id6 smallint, id7 integer, id8 decimal, id9 bigint, id10 tinyint,
id11 smallint, id12 integer, id13 decimal, id14 bigint, id15 tinyint,
id16 smallint, id17 integer, id18 decimal, id19 bigint, id20 tinyint,
id21 smallint, id22 integer, id23 decimal, id24 bigint, id25 tinyint,
id26 smallint, id27 integer, id28 decimal, id29 bigint, id30 tinyint,
id31 smallint, id32 integer) with(orientation=column);
--step2:测试点三,创建唯一索引,指定多个字段 expect:成功
create unique index i_columns_unique_index_0078 on t_columns_unique_index_0078_03 using btree(id1,id2,id3,id4,id5,id6,id7,id8,id9,id10,id11,id12,id13,id14,id15,id16,id17,id18,id19,id20,id21,id22,id23,id24,id25,id26,id27,id28,id29,id30,id31,id32);
--step2:测试点三,插入数据 expect:成功
insert into t_columns_unique_index_0078_03 values(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32);
--step3:测试点三,再次插入重复数据 expect:插入失败
insert into t_columns_unique_index_0078_03 values(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32);
--step4:测试点三,清理环境 expect:成功
drop table t_columns_unique_index_0078_03;
|
-- Adminer 4.7.5 MySQL dump
SET NAMES utf8;
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
DROP TABLE IF EXISTS `customers`;
CREATE TABLE `customers` (
`customer_id` int(11) NOT NULL AUTO_INCREMENT,
`customer_name` varchar(50) NOT NULL,
`customer_mobile` varchar(50) NOT NULL,
`customer_email` varchar(50) NOT NULL,
PRIMARY KEY (`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- 2021-08-04 10:59:37 |
<filename>db_dump.sql
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Versión del servidor: 5.6.13 - MySQL Community Server (GPL)
-- SO del servidor: Win32
-- HeidiSQL Versión: 9.4.0.5125
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Volcando estructura de base de datos para wedding
DROP DATABASE IF EXISTS `wedding`;
CREATE DATABASE IF NOT EXISTS `wedding` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `wedding`;
-- Volcando estructura para tabla wedding.categories
DROP TABLE IF EXISTS `categories`;
CREATE TABLE IF NOT EXISTS `categories` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Name` char(50) NOT NULL DEFAULT '0',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
-- La exportación de datos fue deseleccionada.
-- Volcando estructura para tabla wedding.foods
DROP TABLE IF EXISTS `foods`;
CREATE TABLE IF NOT EXISTS `foods` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Name` char(50) NOT NULL DEFAULT '0',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
-- La exportación de datos fue deseleccionada.
-- Volcando estructura para tabla wedding.invitations
DROP TABLE IF EXISTS `invitations`;
CREATE TABLE IF NOT EXISTS `invitations` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`Name` char(255) NOT NULL,
`Email` char(255) NOT NULL,
`UniqueKey` char(8) NOT NULL,
`Created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`Send` timestamp NULL DEFAULT NULL,
`Open` timestamp NULL DEFAULT NULL,
`OpenedTimes` int(5) DEFAULT NULL,
`OptionalText` varchar(300) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `Email` (`Email`),
UNIQUE KEY `UniqueKey` (`UniqueKey`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
-- La exportación de datos fue deseleccionada.
-- Volcando estructura para tabla wedding.guests
DROP TABLE IF EXISTS `guests`;
CREATE TABLE IF NOT EXISTS `guests` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Id_Invitation` int(11) unsigned NOT NULL,
`Name` char(255) NOT NULL,
`Id_Food` int(11) DEFAULT NULL,
`Id_Category` int(11) DEFAULT NULL,
`Accept` int(1) DEFAULT NULL,
PRIMARY KEY (`Id`),
KEY `Food` (`Id_Food`),
KEY `Category` (`Id_Category`),
KEY `Invitation` (`Id_Invitation`),
CONSTRAINT `Category` FOREIGN KEY (`Id_Category`) REFERENCES `categories` (`Id`),
CONSTRAINT `Food` FOREIGN KEY (`Id_Food`) REFERENCES `foods` (`Id`),
CONSTRAINT `Invitation` FOREIGN KEY (`Id_Invitation`) REFERENCES `invitations` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
-- La exportación de datos fue deseleccionada.
-- Volcando estructura para vista wedding.overview
DROP VIEW IF EXISTS `overview`;
-- Creando tabla temporal para superar errores de dependencia de VIEW
CREATE TABLE `overview` (
`Id` INT(11) NOT NULL,
`Id_Invitation` INT(11) UNSIGNED NOT NULL,
`Name` CHAR(255) NOT NULL COLLATE 'latin1_swedish_ci',
`SendTo` CHAR(255) NULL COLLATE 'latin1_swedish_ci',
`UniqueKey` CHAR(8) NULL COLLATE 'latin1_swedish_ci',
`Created` TIMESTAMP NULL,
`Send` TIMESTAMP NULL,
`Open` TIMESTAMP NULL,
`Accept` INT(1) NULL,
`Id_Food` INT(11) NULL,
`Food` CHAR(50) NULL COLLATE 'latin1_swedish_ci',
`Category` CHAR(50) NULL COLLATE 'latin1_swedish_ci',
`OpenedTimes` INT(5) NULL
) ENGINE=MyISAM;
-- Volcando estructura para vista wedding.overview
DROP VIEW IF EXISTS `overview`;
-- Eliminando tabla temporal y crear estructura final de VIEW
DROP TABLE IF EXISTS `overview`;
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` VIEW `overview` AS SELECT
Guest.Id,
Guest.Id_Invitation,
Guest.Name,
Invitation.Email as `SendTo`,
Invitation.UniqueKey,
Invitation.Created,
Invitation.Send,
Invitation.Open,
Guest.Accept,
Food.Id as `Id_Food`,
Food.Name as `Food`,
Category.Name as `Category`,
Invitation.OpenedTimes
FROM `guests` as `Guest`
LEFT JOIN `invitations` as `Invitation`
ON Invitation.Id = Guest.Id_Invitation
LEFT JOIN `foods` as `Food`
ON Food.Id = Guest.Id_Food
LEFT JOIN `categories` as `Category`
ON Category.Id = Guest.Id_Category ;
-- Volcando datos para la tabla wedding.categories: ~0 rows (aproximadamente)
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` (`Id`, `Name`) VALUES
(1, 'Cat_1'),
(2, 'Cat_2'),
(3, 'Cat_3'),
(4, 'Cat_4'),
(5, 'Cat_5');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
-- Volcando datos para la tabla wedding.foods: ~0 rows (aproximadamente)
/*!40000 ALTER TABLE `foods` DISABLE KEYS */;
INSERT INTO `foods` (`Id`, `Name`) VALUES
(1, 'Food_1'),
(2, 'Food_2'),
(3, 'Food_3'),
(4, 'Food_4');
/*!40000 ALTER TABLE `foods` ENABLE KEYS */;
|
<filename>DB/sikepa.sql
-- phpMyAdmin SQL Dump
-- version 5.0.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Apr 06, 2021 at 11:06 AM
-- Server version: 10.4.17-MariaDB
-- PHP Version: 7.4.13
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 */;
--
-- Database: `sikepa`
--
-- --------------------------------------------------------
--
-- Table structure for table `artikel`
--
CREATE TABLE `artikel` (
`id` int(100) NOT NULL,
`judul` varchar(250) NOT NULL,
`deskripsi` mediumtext NOT NULL,
`gambar` varchar(255) NOT NULL,
`slug` varchar(300) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `artikel`
--
INSERT INTO `artikel` (`id`, `judul`, `deskripsi`, `gambar`, `slug`, `created_at`, `updated_at`) VALUES
(2, '<NAME>', 'KOMPAS.com – Tahun ini, Hari Raya Nyepi berlangsung pada Minggu (14/3/2021). Jika menilik sejumlah artikel di internet, banyak ucapan Hari Raya Nyepi yang menggunakan Bahasa Bali. Namun, Guru Besar Pariwisata Universitas Udayana I Gede Pitana menyarankan agar orang-orang tetap menggunakan Bahasa Indonesia saat memberikan ucapan Hari Raya Nyepi. Baca juga: 4 Rangkaian Hari Raya Nyepi Beserta Makna di Baliknya “Paling bagus mengucapkan dengan Bahasa Indonesia. Kenapa? Untuk mengurangi kesalahan pengertian,” ujarnya kepada Kompas.com, Selasa (9/3/2021). Saat mengirimkan ucapan Hari Raya Nyepi dalam Bahasa Bali, belum tentu penulisannya benar, atau pengirim benar-benar paham artinya. Baca juga: Perang Api, Tradisi Turun-Temurun Umat Hindu Lombok Sambut Nyepi “Nanti jadi ada masalah di pihak penerima. Jadi, penggunaan Bahasa Indonesia untuk mengurangi kesalahan yang tidak perlu,” kata Pitana. Dalam ucapan Hari Raya Nyepi, Pitana mengatakan bahwa komponennya terdiri dari pengucapan selamat dan harapan. Sebagai contoh, kamu bisa menulisnya sebagai berikut: “Selamat Hari Raya Nyepi. Semoga kebaikan-kebaikan akan terjadi di masa yang akan datang. Semoga perayaan ini membawa hal yang baik, dan semoga makna Hari Raya Nyepi dapat dilaksanakan dalam kehidupan sehari-hari.” Kapan waktu yang tepat untuk mengirim ucapan Hari Raya Nyepi? Dalam melaksanakan Nyepi, ada empat hal yang dilarang yang bernama Catur Brata Penyepian. Adapun, empat larangan tersebut adalah amati karya, amati lelungan, amati lelanguan, dan amati geni. Artinya adalah tidak bekerja, tidak bepergian, tidak bersenang-senang, dan tidak menyalakan api. Untuk amati lelanguan, Pitana mengatakan bahwa umat Hindu tidak boleh menghibur atau membuat hiburan. Baca juga: Bagaimana Perayaan Nyepi di Tengah Virus Corona? “Tidak boleh menghibur atau membuat hiburan seperti nonton televisi, video, bermain game, menyalakan musik, bernyanyi, dan sebagainya,” kata Pitana dalam wawancara pada Selasa (24/3/2020). Oleh karena itu, ada beberapa orang yang tidak menyalakan gawai saat Hari Raya Nyepi. Agar ucapanmu sampai dan dibaca oleh orang yang dituju, kamu bisa mengirimnya sebelum, saat, atau sesudah Nyepi. Namun jika kamu mengirim ucapan Hari Raya Nyepi saat perayaan sedang berlangsung, jangan heran jika pesanmu belum dibalas atau belum dikirim.\r\n\r\nArtikel ini telah tayang di Kompas.com dengan judul \"Ucapan Hari Raya Nyepi, Pakai Bahasa Indonesia atau Bahasa Bali?\", Klik untuk baca: https://travel.kompas.com/read/2021/03/13/150700727/ucapan-hari-raya-nyepi-pakai-bahasa-indonesia-atau-bahasa-bali-.\r\nPenulis : <NAME>\r\nEditor : Ni Luh Made Pertiwi F.\r\n\r\nDownload aplikasi Kompas.com untuk akses berita lebih mudah dan cepat:\r\nAndroid: https://bit.ly/3g85pkA\r\niOS: https://apple.co/3hXWJ0L', 'adads.jpg', 'selamat-hari-raya-nyepi', '2021-03-19 10:39:26', '2021-03-19 12:22:39'),
(3, 'Sepak Terjang Bapak Sampah Desa Korleko untuk Kegemilangan Desa', '\"Bumi ini adalah titipan Allah. Karena titipan, maka harus dijaga kestabilannya dengan menjaga lingkungan\" Ucap Selpin Riawan di hadapan puluhan anak SD, sesekali melantangkan \"zero waste...zero waste... zero waste\" bersambut teriakan anak- anak dengan jari- jari tangan membentuk angka nol dan hurup W. Itulah gambaran suasana sosialisasi Zero Waste oleh Selpin Riawan di Sekolah Dasar Islam Korleko, Rabu, (02/10/19).\r\n\r\nPergantian pucuk pimpinan NTB membawa arah baru, penyempurnaan kemajuan yang dilakukan Gubernur sebelumnya, Dr. <NAME>, atau akrab disapa publik dengan Tuan Guru Bajang. Melalui Tagline terkenal, \"NTB Gemilang\" semua langkah digerakkan pemerintah ZulRohmi, untuk mewujudkan kegemilangan NTB di banyak sektor: wisata, pendidikan, kesehatan, kebersihan lingkungan, industrialisasi, dan lain- lain.\r\n\r\nSejalan dengan program pemerintah daerah dan pusat, hajatan baik ini disambut baik seorang pemuda desa,asal Korleko, Selpin Riawan. Bergerak dari lingkungan dan desanya, ia mulai berusaha dan berjuang, menyongsong kegemilangan NTB dari lingkup terkecil. \r\n\r\nTentu, detak- pacu pergerakannya tidak mudah, apalagi berhadapan dengan masyarakat, sindiran, sikap sinis, nyinyiran, sudah banyak didapat.\r\n\r\nPencicip Pendidikan Kota Yang Tinggalkan Gengsi\r\n\r\n Sebelum fokus bergerak di desa, Selpin Riawan dikenal sebagai lulusan S2 di salah satu Universitas di Jakarta. Usai S2, ia sempat bekerja di Kantor BAPPEDA Provinsi NTB. \r\n\r\nIa juga mengajar di salah satu kampus di Lombok Timur. Pekerjaan ini membuatnya tidak memiliki banyak waktu di desa, karena harus masuk kantor di Mataram dan mengajar di Pancor.\r\n\r\nJalan hidup cepat sekali berubah, disebabkan alasan tertentu, ia berhenti dari BAPPEDA, pun begitu, ia diberhentikan dari dunia dosen. Benar kata mutiara, di balik semua kejadian selalu ada hikmahnya. Kini ia fokus bergerak membangun desa tercinta.\r\n\r\nIa benar- benar mulai dari bawah, gerakan penanggulangan sampah menjadi hal pertama yang dilakukan. Hal ini menimbulkan banyak ujaran sinis, sindiran dan tekanan. Baik dari masyarakat bahkan keluarga. \r\n\r\nTidak mudah, namun ia tetap bergerak, mengedukasi mulai dari lingkungan sekitar. \"melawan gengsi\" dengan gelar pendidikan kota dan dosen yang telah diraih menjadi tantangan awal yang harus dirobohkan.\r\n\r\nKemaslahatan Umat Menjadi Titik Gerak', 'Sepak Terjang Bapak Sampah Desa Korleko untuk Kegemilangan Desa.jpg', 'sepak-terjang-bapak-sampah-desa-korleko-untuk-kegemilangan-desa', '2021-03-19 23:27:44', '2021-03-19 23:27:44');
-- --------------------------------------------------------
--
-- Table structure for table `faq`
--
CREATE TABLE `faq` (
`id` int(100) NOT NULL,
`pertanyaan` varchar(1000) NOT NULL,
`jawaban` varchar(1000) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `faq`
--
INSERT INTO `faq` (`id`, `pertanyaan`, `jawaban`, `created_at`, `updated_at`) VALUES
(2, 'Apa itu SIKEPA?', 'Sistem Informasi Kelurahan Pagesangan', '2021-03-30 07:59:05', '2021-03-30 07:59:05'),
(3, 'Apa Manfaat SIKEPA?', 'Membantu Masyarat mengetahui profil maupun Pelayanan dan berita terbaru di kelurahan pagesangan\r\n', '2021-03-30 07:59:45', '2021-03-30 07:59:45'),
(4, 'Keunggulan SIKEPA?', 'Bisa diakses disegala macam teknologi informasi (Website)', '2021-03-30 08:00:50', '2021-03-30 08:00:50'),
(5, 'Siapa Pembuatan SIKEPA?', 'I Gede Bagus WIrawan', '2021-03-30 08:01:24', '2021-03-30 08:01:24');
-- --------------------------------------------------------
--
-- Table structure for table `galeri`
--
CREATE TABLE `galeri` (
`id` int(100) NOT NULL,
`gambar` varchar(255) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `galeri`
--
INSERT INTO `galeri` (`id`, `gambar`, `created_at`, `updated_at`) VALUES
(3, '1616988453_ccd837e98482554d8a75.png', '2021-03-28 22:27:33', '2021-03-28 22:27:33'),
(4, '1616989408_0aa77d63cefa728f2b11.jpg', '2021-03-28 22:43:28', '2021-03-28 22:43:28');
-- --------------------------------------------------------
--
-- Table structure for table `misi`
--
CREATE TABLE `misi` (
`id` int(100) NOT NULL,
`misi` varchar(255) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `misi`
--
INSERT INTO `misi` (`id`, `misi`, `created_at`, `updated_at`) VALUES
(1, 'Mewujudkan masyarakat Kelurahan Pagesangan sebagai Kelurahan yang merupakan nama Ibu kota Mataram dan Nama Ibu Kota Provinsi NTB sebagai kota yang indah (MISI No 1).', '2021-03-28 09:50:50', '2021-03-28 09:51:20'),
(2, 'Meningkatkan kualitas pelayanan publik berdasarkan prinsip tata pemerintahan yang baik dalam bentuk penataan administrasi, pemerintahan, pembangunan dan pelayanan (MISI No 2)', '2021-03-28 09:57:29', '2021-03-28 09:57:29'),
(3, 'Mewujudkan masyarakat Kelurahan Pagesangan yang penduduknya haterogen untuk tetap memelihara keamanan, ketentraman, ketertiban dan kedamaian ditengah masyarakat dan saling berketerima ( toleransi ) yang dijiwai oleh nilai-nilai agama/religi dan kearifan l', '2021-03-28 09:57:45', '2021-03-28 09:57:45'),
(4, ' Meningkatkan kwalitas SDM yang handal untuk mendorong daya saing daerah (MISI No 4)', '2021-03-28 09:57:58', '2021-03-28 09:57:58');
-- --------------------------------------------------------
--
-- Table structure for table `pelayanan`
--
CREATE TABLE `pelayanan` (
`id` int(100) NOT NULL,
`nama` varchar(250) NOT NULL,
`syarat` mediumtext NOT NULL,
`deskripsi` mediumtext NOT NULL,
`slug` varchar(300) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `pelayanan`
--
INSERT INTO `pelayanan` (`id`, `nama`, `syarat`, `deskripsi`, `slug`, `created_at`, `updated_at`) VALUES
(1, 'Surat Keterangan Kelahiran dan Akta', 'KTP\r\nKK', 'Mantap', 'surat-keterangan-kelahiran-dan-akta', '2021-03-19 05:14:58', '2021-03-19 23:22:22'),
(4, 'Surat Keterangan Rahasia', 'KTP\r\nKK', 'Nice', 'surat-keterangan-rahasia', '2021-03-19 23:22:44', '2021-03-19 23:22:44');
-- --------------------------------------------------------
--
-- Table structure for table `struktur`
--
CREATE TABLE `struktur` (
`id` int(11) NOT NULL,
`isi` mediumtext NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `struktur`
--
INSERT INTO `struktur` (`id`, `isi`, `created_at`, `updated_at`) VALUES
(2, 'Gambar_Struktur.jpg', NULL, '2021-04-06 03:35:10');
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE `user` (
`id` int(100) NOT NULL,
`nama` varchar(100) NOT NULL,
`username` varchar(50) NOT NULL,
`password` varchar(255) NOT NULL,
`level` varchar(20) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`id`, `nama`, `username`, `password`, `level`, `created_at`, `updated_at`) VALUES
(1, 'Admin SIKEPA', 'admin', <PASSWORD>I3oDEYKyAdMnShAsva1L41sqO', 'admin', '2021-03-18 20:18:26', '2021-03-30 07:50:09'),
(2, '<NAME>', 'andak', '$2y$10$.JQA73IhwlvaecdeM1NHYOZasNwUTcHFbavnnluRA3eIA1d1XcTfC', 'operator', '2021-03-18 22:31:40', '2021-03-19 23:23:29');
-- --------------------------------------------------------
--
-- Table structure for table `visi`
--
CREATE TABLE `visi` (
`id` int(100) NOT NULL,
`visi` varchar(255) NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `visi`
--
INSERT INTO `visi` (`id`, `visi`, `created_at`, `updated_at`) VALUES
(1, 'Mewujudkan Kelurahan Pagesangan Yang Terang Benderang (VISI No 1).', '2021-03-28 09:26:09', '2021-03-28 09:32:21'),
(2, '<NAME>, tertata, Aman, Damai, Maju dan Religius (VISI No 2).', '2021-03-28 09:26:44', '2021-03-28 09:32:28');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `artikel`
--
ALTER TABLE `artikel`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `faq`
--
ALTER TABLE `faq`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `galeri`
--
ALTER TABLE `galeri`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `misi`
--
ALTER TABLE `misi`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `pelayanan`
--
ALTER TABLE `pelayanan`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `struktur`
--
ALTER TABLE `struktur`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `visi`
--
ALTER TABLE `visi`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `artikel`
--
ALTER TABLE `artikel`
MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `faq`
--
ALTER TABLE `faq`
MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `galeri`
--
ALTER TABLE `galeri`
MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `misi`
--
ALTER TABLE `misi`
MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `pelayanan`
--
ALTER TABLE `pelayanan`
MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `struktur`
--
ALTER TABLE `struktur`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `user`
--
ALTER TABLE `user`
MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `visi`
--
ALTER TABLE `visi`
MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
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 */;
|
<filename>db/sql/04_simulate_volumes_of_data.sql
insert into exchange_rates (
select ts, from_currency, to_currency, rate from (
select date_trunc('second', dd + (random() * 60) * '1 second':: interval) as ts, case when random()*2 < 1 then 'EUR' else 'USD' end as from_currency,
'GBP' as to_currency, (200 * random():: int )/100 as rate
FROM generate_series
( '2018-04-01'::timestamp
, '2018-04-02'::timestamp
, '1 minute'::interval) dd
) a
where ts not in (select ts from exchange_rates)
order by ts
)
;
insert into transactions (
SELECT dd + (random()*5) * '1 second'::interval as ts, (random() * 1000)::int as user_id,
case when random()*2 < 1 then 'EUR' else 'USD' end as currency,
(random() * 10000) :: int / 100 as amount
FROM generate_series
( '2018-04-01'::timestamp
, '2018-04-02'::timestamp
, '1 second'::interval) dd
)
;
|
-- DDL
-- Data Definition Language
CREATE DATABASE MovieDb;
-- Schemas are like Namespaces
GO
CREATE SCHEMA Movie;
GO
-- Create Table
CREATE TABLE Movie.Movie (
-- list of columns, constraints, etc.
-- each column: name, and then type, and then constraints
MovieId INT NOT NULL
)
SELECT * FROM Movie.Movie
-- we can use ALTER TABLE to add/delete columns, modify things
ALTER TABLE Movie.Movie ADD
Title NVARCHAR(200);
-- DROP TABLE to delete tables entirely
-- DROP TABLE Movie.Movie;
-- constraints
-- NOT NULL: NULL not allowed in the column
-- NULL: explicitly allowing NULL for documentation
-- (maybe not really a constraint, already default)
-- PRIMARY KEY
-- enforces uniqueness and NOT NULL, sets clustered index
-- UNIQUE: the column cannot have any duplicate values
-- can be set on sets of columns, as well as just one
-- DEFAULT: provide a default value for this column
-- either this or NULL is necessary when adding a new column
-- FOREIGN KEY
-- can set "cascade" behavior... ON DELETE CASCADE, ON DELETE SET NULL, ON UPDATE
-- CHECK: catch all, any boolean expression you want to write
-- to validate the values in a row
-- IDENTITY(start-1, increment-1): useful for integer primary keys
-- prevents inserts or updates on the column, and gives automatic incrementing ID
-- (it is possible to switch on IDENTITY_INSERT)
DROP TABLE Movie.Movie;
CREATE TABLE Movie.Movie (
MovieId INT NOT NULL IDENTITY,
Title NVARCHAR(200) NOT NULL,
ReleaseDate DATE NOT NULL,
DateModified DATETIME2 NOT NULL DEFAULT(GETDATE()),
Active BIT NOT NULL DEFAULT(1),
CONSTRAINT PK_MovieId PRIMARY KEY(MovieId),
CONSTRAINT U_Title_ReleaseDate UNIQUE(Title, ReleaseDate),
CONSTRAINT CK_DateNotTooEarly CHECK(ReleaseDate > '1900')
);
INSERT INTO Movie.Movie(Title, ReleaseDate) VALUES(
'Avengers: Endgame', '2019'
);
CREATE TABLE Movie.Genre (
GenreId INT NOT NULL IDENTITY,
Name NVARCHAR(100) NOT NULL UNIQUE,
DateModified DATETIME2 NOT NULL DEFAULT(GETDATE()),
Active BIT NOT NULL DEFAULT(1),
);
ALTER TABLE Movie.Genre ADD
CONSTRAINT PK_GenreId PRIMARY KEY(GenreId)
INSERT INTO Movie.Genre(Name) VALUES(
'Action'
)
ALTER TABLE Movie.Movie ADD
GenreId INT NOT NULL DEFAULT(1),
CONSTRAINT FK_Movie_Genre FOREIGN KEY(GenreId)
REFERENCES Movie.Genre(GenreId)
ON DELETE CASCADE;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.